/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --sky:       #A7D6FF;
  --zest:      #C6FF4D;
  --bubblegum: #FF6EC7;
  --tangerine: #FF8A3D;
  --lilac:     #C4B6FF;
  --coconut:   #FFF7EC;
  --palm:      #0E2D23;

  --bg:        #FFF7EC;
  --bg-alt:    #F0E8D5;
  --bg-dark:   #0E2D23;

  --text-900:  #0E2D23;
  --text-600:  #3A5E4C;
  --text-400:  #7A9A8A;

  --border:    rgba(14,45,35,.06);
  --border-md: rgba(14,45,35,.10);

  /* Liquid glass — light surfaces */
  --glass-bg:        rgba(255,255,255,.60);
  --glass-bg-strong: rgba(255,255,255,.78);
  --glass-border:    rgba(255,255,255,.75);
  --glass-blur:      blur(40px) saturate(200%);
  --glass-sh:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(14,45,35,.03),
    0 8px 32px rgba(14,45,35,.06),
    0 2px 6px rgba(14,45,35,.03);

  /* Liquid glass — dark surfaces */
  --glass-dark-bg:     rgba(255,247,236,.08);
  --glass-dark-border: rgba(255,247,236,.14);
  --glass-dark-sh:
    inset 0 1px 0 rgba(255,247,236,.18),
    inset 0 -1px 0 rgba(0,0,0,.08),
    0 8px 32px rgba(0,0,0,.18);

  --font-display: 'Fredoka', -apple-system, sans-serif;
  --font:         'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --sh-sm:  0 2px 8px rgba(14,45,35,.05), 0 1px 2px rgba(14,45,35,.03);
  --sh-md:  0 4px 24px rgba(14,45,35,.07), 0 2px 4px rgba(14,45,35,.03);
  --sh-lg:  0 12px 48px rgba(14,45,35,.09), 0 3px 10px rgba(14,45,35,.04);
  --sh-xl:  0 24px 64px rgba(14,45,35,.12), 0 6px 18px rgba(14,45,35,.05);

  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-900);
  overflow-x: hidden;
}

img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

.text-accent { color: var(--bubblegum); font-style: italic; }
.text-zest   { color: var(--zest); }
.text-sky    { color: var(--sky); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all .22s var(--ease-out);
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--sky);
  color: var(--palm);
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(167,214,255,.40);
}
.btn-primary:hover {
  background: #8ecbff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(167,214,255,.50);
}

.btn-ghost {
  color: var(--text-600);
  padding: 14px 20px;
  font-size: 15px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-sh);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.82);
  color: var(--text-900);
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--palm);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  box-shadow: 0 2px 12px rgba(14,45,35,.20);
}
.btn-nav:hover {
  background: #1a4535;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(14,45,35,.28);
}

.btn-cta {
  background: var(--zest);
  color: var(--palm);
  padding: 18px 36px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(198,255,77,.35);
}
.btn-cta:hover {
  background: #b4f030;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(198,255,77,.45);
}

.btn-manifesto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--palm);
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-full);
  font-family: var(--font);
  transition: all .22s var(--ease-out);
  box-shadow: 0 4px 20px rgba(167,214,255,.35);
}
.btn-manifesto:hover {
  background: #8ecbff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(167,214,255,.50);
}

/* ============================================================
   EYEBROWS
   ============================================================ */
.eyebrow-sm {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-400);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text-900);
  margin-bottom: 20px;
}
.section-p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text-600);
  max-width: 52ch;
}
.section {
  padding: clamp(80px, 10vw, 128px) clamp(20px, 5vw, 40px);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-head .section-p { margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(20px,4vw,40px);
  background: rgba(255,247,236,.12);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,247,236,.48);
  box-shadow: 0 4px 32px rgba(14,45,35,.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo { margin-right: auto; display: flex; align-items: center; }
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-600);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text-900); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-900);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding: 116px clamp(20px,5vw,40px) 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 72% 50%, rgba(167,214,255,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196,182,255,.10) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--text-900);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--text-600);
  max-width: 44ch;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof { display: flex; }
.proof-pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-600);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: var(--r-full);
  box-shadow: var(--glass-sh);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phones {
  position: relative;
  width: 440px;
  height: 600px;
}

.hero-phone { position: absolute; }

.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.hero-phone-back {
  width: 192px;
  left: 0;
  top: 72px;
  transform: rotate(-5deg);
  z-index: 1;
  filter: drop-shadow(0 32px 64px rgba(14,45,35,.16)) drop-shadow(0 8px 16px rgba(14,45,35,.08));
}

.hero-phone-front {
  width: 240px;
  right: 0;
  top: 8px;
  transform: rotate(3deg);
  z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(14,45,35,.20)) drop-shadow(0 8px 20px rgba(14,45,35,.10));
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--palm);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,247,236,.05);
  border-bottom: 1px solid rgba(255,247,236,.05);
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--coconut);
  white-space: nowrap;
  padding: 0 32px;
}
.marquee-sep {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 -6px;
}
.msep-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.22));
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--bg-alt); position: relative; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px,3vw,32px);
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* Step number color variants */
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  padding: 5px 13px;
  border-radius: var(--r-full);
  align-self: flex-start;
}
.sn-sky       { background: var(--sky);       color: var(--palm); }
.sn-zest      { background: var(--zest);      color: var(--palm); }
.sn-pink      { background: var(--bubblegum); color: #fff; }

.step-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(14,45,35,.13)) drop-shadow(0 4px 10px rgba(14,45,35,.07));
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  color: var(--text-900);
}
.step-content p { font-size: 14px; line-height: 1.65; color: var(--text-600); }

/* ============================================================
   FEATURE SECTION
   ============================================================ */
.feature-section { background: var(--bg); position: relative; }

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; }

/* Feature icon color variants */
.fi-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 10px rgba(14,45,35,.10);
}
.fi-sky       { background: var(--sky);       color: var(--palm); }
.fi-bubblegum { background: var(--bubblegum); color: #fff; }
.fi-zest      { background: var(--zest);      color: var(--palm); }
.fi-lilac     { background: var(--lilac);     color: var(--palm); }

.fi-text { display: flex; flex-direction: column; gap: 3px; }
.fi-text strong { font-size: 15px; font-weight: 700; color: var(--text-900); line-height: 1.3; }
.fi-text span { font-size: 13px; color: var(--text-600); line-height: 1.5; }

.feature-phone-col { display: flex; justify-content: center; }

.feature-img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(14,45,35,.16)) drop-shadow(0 8px 20px rgba(14,45,35,.08));
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */
.manifesto-section {
  background: var(--bg-dark);
  padding: clamp(100px, 14vw, 180px) clamp(20px, 5vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto-glow {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(167,214,255,.10) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.manifesto-inner { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,247,236,.30);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.manifesto-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--coconut);
  margin-bottom: 24px;
}
.manifesto-sub {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: rgba(255,247,236,.32);
  margin-bottom: 52px;
  font-style: italic;
  letter-spacing: -.01em;
}
.deco { display: inline-block; line-height: 1; font-style: normal; }

/* ============================================================
   TASTE SECTION
   ============================================================ */
.taste-decos {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 24px;
  color: var(--palm);
  margin-bottom: 16px;
}

.taste-section {
  background: var(--zest);
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 40px);
  text-align: center;
  overflow: hidden;
}
.taste-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.taste-h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 700;
  color: var(--palm);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.taste-sub {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(14,45,35,.55);
  margin-bottom: 36px;
  font-weight: 500;
}
.btn-taste {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--palm);
  color: var(--coconut);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  font-family: var(--font);
  transition: all .22s var(--ease-out);
  box-shadow: 0 4px 20px rgba(14,45,35,.25);
  border: none;
  text-decoration: none;
}
.btn-taste:hover {
  background: #1a4535;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,45,35,.35);
}

/* ============================================================
   DISCOVER
   ============================================================ */
.discover-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.discover-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.discover-text { }
.discover-phone-col {
  display: flex;
  justify-content: center;
}

.discover-img {
  width: clamp(180px, 20vw, 300px);
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(14,45,35,.15)) drop-shadow(0 8px 20px rgba(14,45,35,.08));
}

.disc-center { animation: floatY 5s ease-in-out infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--bg); position: relative; }
.trust-head { text-align: center; margin-bottom: 60px; }
.trust-head .section-p { margin: 0 auto; }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.trust-card {
  padding: clamp(28px, 2.5vw, 40px);
  border-radius: var(--r-2xl);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-sh);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    0 24px 56px rgba(14,45,35,.10),
    0 6px 14px rgba(14,45,35,.05);
}

.tc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(14,45,35,.12);
}
.tc-sky       { background: var(--sky);       color: var(--palm); }
.tc-bubblegum { background: var(--bubblegum); color: #fff; }
.tc-zest      { background: var(--zest);      color: var(--palm); }

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-900);
  margin-bottom: 10px;
}
.trust-card p { font-size: 14px; line-height: 1.65; color: var(--text-600); }

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social-section {
  background: var(--bubblegum);
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 40px);
  text-align: center;
}
.social-inner { max-width: 800px; margin: 0 auto; }
.social-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 16px;
}
.social-handle {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.social-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-bottom: 36px;
}
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--bubblegum);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-full);
  font-family: var(--font);
  transition: all .22s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  border: none;
  text-decoration: none;
}
.btn-social:hover {
  background: var(--coconut);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--sky);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 40px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,110,199,.14) 0%, transparent 65%);
  top: -140px; left: -80px;
  pointer-events: none;
}
.cta-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,255,77,.18) 0%, transparent 65%);
  bottom: -100px; right: -60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: rgba(14,45,35,.40);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--palm);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(14,45,35,.55);
  max-width: 48ch;
  margin: 0 auto 40px;
}
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 56px; }
.cta-note { font-size: 13px; color: rgba(14,45,35,.40); font-weight: 500; }
.cta-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-sh);
  min-width: 120px;
}
.cta-stat strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--palm);
  letter-spacing: -.01em;
  line-height: 1;
}
.cta-stat span { font-size: 12px; color: rgba(14,45,35,.40); font-weight: 500; }
.cta-stat-div { display: none; }

/* ============================================================
   STICKERS
   ============================================================ */
.sticker {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 10;
}

/* Hero — top right, overlapping phone area */
.sticker-hero {
  width: clamp(150px, 15vw, 205px);
  top: 10%;
  right: 2%;
  transform: rotate(-11deg);
  filter: drop-shadow(0 12px 30px rgba(14,45,35,.15));
}

/* Feature — top left, above heading */
.sticker-feature {
  width: clamp(150px, 14vw, 192px);
  top: 48px;
  left: 2%;
  transform: rotate(-8deg);
  filter: drop-shadow(0 10px 26px rgba(14,45,35,.13));
}

/* Discover — top right */
.sticker-discover {
  width: clamp(140px, 13vw, 182px);
  top: 44px;
  right: 2%;
  transform: rotate(10deg);
  filter: drop-shadow(0 10px 26px rgba(14,45,35,.13));
}

/* Taste — big heart, top right on zest bg */
.sticker-taste {
  width: clamp(190px, 20vw, 260px);
  top: 20px;
  right: 3%;
  transform: rotate(-13deg);
  filter: drop-shadow(0 14px 36px rgba(14,45,35,.20));
}

/* Trust — large badge, bottom left */
.sticker-trust {
  width: clamp(180px, 18vw, 235px);
  bottom: 36px;
  left: 2%;
  transform: rotate(12deg);
  filter: drop-shadow(0 12px 30px rgba(14,45,35,.13));
}

.footer-sticker-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.footer-sticker-mid img {
  width: clamp(140px, 13vw, 190px);
  transform: rotate(-4deg);
  filter: drop-shadow(0 8px 22px rgba(14,45,35,.12));
}

@media (max-width: 768px) {
  .sticker-hero     { width: 110px; top: auto; bottom: 6%; right: 2%; transform: rotate(-11deg); }
  .sticker-feature  { width: 100px; top: 24px; left: 1%; }
  .sticker-discover { width: 96px; top: 24px; right: 1%; }
  .sticker-taste    { width: 130px; top: 16px; right: 2%; }
  .sticker-trust    { width: 118px; bottom: 24px; left: 2%; }
  .footer-sticker-mid { display: none; }
}

@media (max-width: 480px) {
  .sticker-hero     { width: 96px; top: auto; bottom: 4%; right: 2%; transform: rotate(-11deg); }
  .sticker-feature  { width: 88px; top: 12px; left: auto; right: 2%; transform: rotate(-8deg); }
  .sticker-discover { width: 84px; top: 12px; right: 2%; }
  .sticker-taste    { width: 108px; top: 10px; right: 2%; }
  .sticker-trust    { width: 96px; bottom: 16px; left: auto; right: 2%; transform: rotate(12deg); }
  .footer-sticker-mid { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  overflow: hidden;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px clamp(20px,4vw,40px) 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-brand-statement {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  color: var(--text-900);
  line-height: 1.2;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--palm);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-family: var(--font);
  transition: all .2s;
  border: none;
  box-shadow: 0 2px 12px rgba(14,45,35,.18);
}
.footer-app-btn:hover {
  background: #1a4535;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(14,45,35,.28);
}

.footer-nav { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 2px;
}
.footer-col a { font-size: 14px; color: var(--text-400); transition: color .2s; }
.footer-col a:hover { color: var(--text-900); }

/* wordmark zone — one unified block, copyright overlaid */
.footer-wm-zone {
  position: relative;
  text-align: center;
  line-height: 1;
  user-select: none;
  margin-top: -24px;
  padding-bottom: clamp(32px, 5vw, 64px);
}
.footer-wm-img {
  width: clamp(200px, 30vw, 480px);
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.50;
}
.footer-copyright {
  position: absolute;
  bottom: clamp(10px, 2vw, 20px);
  right: clamp(20px, 4vw, 40px);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: -.01em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-phones { width: 360px; height: 500px; }
  .hero-phone-back { width: 158px; }
  .hero-phone-front { width: 200px; }
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .step-card { align-items: center; }
  .trust-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(255,247,236,.94);
    backdrop-filter: blur(48px) saturate(200%);
    -webkit-backdrop-filter: blur(48px) saturate(200%);
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 24px;
    z-index: 99;
    box-shadow: 0 12px 40px rgba(14,45,35,.10);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; font-weight: 600; }
  .hamburger { display: flex; }
  .nav-inner .btn-nav { display: none; }

  .hero { padding-top: 88px; padding-bottom: 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 56px; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }

  .hero-phones { width: 320px; height: 440px; margin: 0 auto; }
  .hero-phone-back { width: 140px; top: 60px; }
  .hero-phone-front { width: 178px; top: 8px; }

  .feature-inner { grid-template-columns: 1fr; text-align: center; }
  .feature-text { order: 1; }
  .feature-phone-col { order: 2; }
  .feature-list li { text-align: left; }
  .section-p { max-width: none; }
  .feature-text .section-p { margin: 0 auto; }
  .feature-img { width: 240px; }

  .step-img { width: 150px; }
  .discover-inner { grid-template-columns: 1fr; text-align: center; }
  .discover-phone-col { justify-content: center; }
  .discover-img { width: 260px; }

  .manifesto-h2 { font-size: clamp(28px, 8vw, 48px); }
  .manifesto-sub { font-size: clamp(15px, 3.5vw, 20px); }

  .taste-h2 { font-size: clamp(44px, 12vw, 80px); }

  .cta-h2 { font-size: clamp(36px, 10vw, 56px); }
  .cta-stats { gap: 16px; }
  .cta-stat { min-width: 100px; padding: 14px 20px; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand-statement { font-size: clamp(24px, 7vw, 36px); }
  .footer-nav { gap: 40px; }
}

@media (max-width: 480px) {
  .marquee-item { font-size: 17px; padding: 0 22px; }
  .hero-phones { width: 280px; height: 380px; }
  .hero-phone-back { width: 120px; top: 50px; }
  .hero-phone-front { width: 158px; top: 6px; }
  .step-img { width: 130px; }
  .cta-stats { flex-wrap: wrap; justify-content: center; }
}
