:root {
  --orange-700: #ff5a00;
  --orange-600: #ff6b00;
  --orange-500: #ff7a00;
  --orange-300: #ffb072;
  --orange-100: #ffe8d4;
  --ink-900: #0e0e10;
  --ink-700: #2a2a2e;
  --ink-500: #4b4b52;
  --ink-200: #d9d9df;
  --paper: #fffaf6;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Epilogue", system-ui, sans-serif;
  background: radial-gradient(1200px 800px at 10% 10%, rgba(255, 208, 167, 0.5), transparent 60%),
    radial-gradient(1000px 800px at 90% 20%, rgba(255, 145, 85, 0.4), transparent 60%),
    var(--paper);
  color: var(--ink-900);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}

.header {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 246, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 150, 90, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.brand span {
  font-family: "Teko", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
}

.store-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  width: max-content;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-link {
  display: inline-flex;
  align-items: center;
}

.store-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 192px;
  height: 56px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--ink-900);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-kicker {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.store-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 4px;
}

.store-title-sm {
  font-size: 1.08rem;
}

.hero {
  padding: 100px 0 120px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-100);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-600);
}

.hero h1 {
  font-family: "Teko", sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  line-height: 0.95;
  margin: 18px 0 18px;
  text-transform: uppercase;
}

.hero p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--ink-700);
  max-width: 520px;
}

.hero-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  width: min(200px, 52vw);
  z-index: 0;
  opacity: 0.95;
}

.hero-bg-left {
  left: 8%;
  top: 12%;
  transform: rotate(-8deg);
  animation: float-left 7s cubic-bezier(0.2, 0.8, 0.2, 1.1) infinite;
}

.hero-bg-right {
  right: 6%;
  bottom: 6%;
  transform: rotate(6deg);
  animation: float-right 7.5s cubic-bezier(0.2, 0.8, 0.2, 1.1) infinite;
}

.hero-main {
  position: relative;
  width: min(300px, 66vw);
  z-index: 2;
  animation: float-main 8s cubic-bezier(0.2, 0.8, 0.2, 1.1) infinite;
}

@keyframes float-left {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  45% {
    transform: rotate(-5deg) translateY(-14px);
  }
  55% {
    transform: rotate(-7deg) translateY(-6px);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: rotate(6deg) translateY(0);
  }
  45% {
    transform: rotate(3deg) translateY(16px);
  }
  55% {
    transform: rotate(5deg) translateY(6px);
  }
}

@keyframes float-main {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-18px);
  }
  55% {
    transform: translateY(-8px);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-top: 22px;
  color: var(--ink-700);
}

.badge::before {
  content: "★★★★★";
  color: var(--orange-600);
  letter-spacing: 0.15em;
}

.section {
  padding: 96px 0;
}

.section-title {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--ink-500);
  max-width: 650px;
  margin: 0;
}

.feature-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  background: var(--white);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 150, 90, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.feature-list a {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.feature-card {
  background: var(--white);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 150, 90, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.feature-card p {
  color: var(--ink-500);
  margin: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--orange-100);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--orange-700);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.step {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.step strong {
  font-size: 2rem;
  font-family: "Teko", sans-serif;
  color: var(--orange-600);
}

.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.screen-card {
  background: var(--white);
  border-radius: 30px;
  padding: 14px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
}

.screen-card:hover {
  transform: translateY(-8px) rotate(-0.3deg);
}

.screen-card img {
  border-radius: 22px;
}

.social-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.proof-card {
  background: var(--white);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 150, 90, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.cta {
  background: linear-gradient(135deg, var(--orange-700), var(--orange-500));
  color: var(--white);
  border-radius: 36px;
  padding: 60px 48px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: "";
  position: absolute;
  inset: -40% 20% auto auto;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.cta h2 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.footer {
  padding: 40px 0 60px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.85rem;
}

.footer-links span {
  font-weight: 600;
  color: var(--ink-700);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 600px) {
  .store-cta-link {
    padding: 8px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    max-width: 150px;
    text-align: center;
    line-height: 1.2;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 3.2rem);
    word-break: break-word;
    hyphens: auto;
  }

  .section {
    padding: 72px 0;
  }

  .cta {
    padding: 48px 28px;
  }

  .store-pill {
    width: 100%;
  }

  .hero-card {
    min-height: 420px;
  }

  .hero-bg {
    width: min(170px, 52vw);
  }

  .hero-main {
    width: min(260px, 70vw);
  }
}
