:root {
  --peach-700: #ff8a5b;
  --peach-500: #ffb085;
  --peach-300: #ffd7bf;
  --cream-100: #fff5ee;
  --ink-900: #1b1b1f;
  --ink-700: #3d3d43;
  --ink-500: #5c5c62;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 30, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--cream-100);
  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(1180px, 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: 20px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 245, 238, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 160, 120, 0.2);
}

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

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

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

.brand span {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 13px;
  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: 20px;
}

.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: 96px 0 112px;
}

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

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

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

.hero h1 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 0.96;
  margin: 16px 0 16px;
  text-transform: none;
}

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

.hero-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.hero-mascot {
  position: absolute;
  top: -6%;
  right: -2%;
  max-width: 150px;
  z-index: 3;
  pointer-events: none;
}

.hero-mascot img {
  width: 100%;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fruit {
  position: absolute;
  width: 64px;
  height: 64px;
  opacity: 0.92;
  animation: fruit-float 6.5s ease-in-out infinite;
}

.fruit-banana {
  top: 0;
  left: 4%;
  transform: rotate(-12deg);
  animation-delay: 0.2s;
}

.fruit-strawberry {
  top: 12%;
  right: 6%;
  transform: rotate(10deg);
  animation-delay: 0.6s;
}

.fruit-avocado {
  bottom: 6%;
  left: 0;
  transform: rotate(-6deg);
  animation-delay: 1s;
}

.fruit-broccoli {
  bottom: 2%;
  right: 12%;
  transform: rotate(8deg);
  animation-delay: 1.4s;
}

.fruit-carrot {
  top: 48%;
  left: -4%;
  transform: rotate(12deg);
  animation-delay: 1.8s;
}

.fruit-pear {
  top: 52%;
  right: -2%;
  transform: rotate(-10deg);
  animation-delay: 2.2s;
}

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

.hero-card .fruit,
.hero-card .hero-mascot img {
  border-radius: 0;
  box-shadow: none;
}

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

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

.hero-bg-right {
  right: -6%;
  bottom: 2%;
  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;
}

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

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

.section {
  padding: 88px 0;
}

.section-title {
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  text-transform: none;
  margin-bottom: 10px;
}

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

.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, 160, 120, 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(--peach-300);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--peach-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(--peach-700);
}

.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, 160, 120, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.cta {
  background: linear-gradient(135deg, var(--peach-700), var(--peach-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.6rem);
  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);
}

@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);
  }
}

@keyframes fruit-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@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.1rem, 9vw, 2.7rem);
    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);
  }

  .fruit {
    width: 44px;
    height: 44px;
  }

  .hero-mascot {
    top: -10%;
    right: 4%;
    max-width: 110px;
  }

  .page-decor img {
    width: 48px;
    height: 48px;
    opacity: 0.2;
  }
}
