*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-soft:   #40916C;
  --green-light:  #74C69D;
  --green-pale:   #D8F3DC;
  --green-bg:     #F0FBF4;
  --coral:        #FF6B4A;
  --coral-light:  #FFB4A2;
  --amber:        #FFB347;
  --teal:         #5EEAD4;
  --white:        #FFFFFF;
  --text-dark:    #0D1F16;
  --text-muted:   #4A7162;
  --telegram:     #229ED9;
  --radius:       18px;
  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
  --ease-out:     cubic-bezier(.22,1,.36,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--green-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-head); }
svg * { transform-box: fill-box; }

/* ═══════════════ GLOBAL FX ═══════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--green-soft), var(--green-light), var(--telegram));
  box-shadow: 0 0 12px rgba(116,198,157,.6);
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(116,198,157,.22) 0%, rgba(116,198,157,.08) 35%, transparent 65%);
  pointer-events: none; z-index: 1; opacity: 0; transition: opacity .5s;
  will-change: transform;
}

/* ═══════════════ NAV ═══════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 5%;
  background: rgba(240, 251, 244, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(116, 198, 157, 0.2);
  transition: padding .3s, box-shadow .3s;
}
nav.scrolled { padding: 10px 5%; box-shadow: 0 8px 30px rgba(27,67,50,.08); }

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, #2D6A4F 0%, #40916C 55%, #74C69D 100%);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(45,106,79,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.logo-icon svg { width: 34px; height: 34px; }
.logo-text { font-family: 'Fredoka', var(--font-head); font-weight: 700; font-size: 1.35rem; line-height: 1; color: var(--green-dark); letter-spacing: -.3px; }
.logo-text .lt-my { color: var(--coral); }.brand { font-family: 'Fredoka', var(--font-head); font-weight: 700; letter-spacing: -.2px; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  position: relative; text-decoration: none; color: var(--green-mid); font-weight: 600; font-size: .92rem;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--green-soft); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 50px; text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 700;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  will-change: transform;
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .65s ease;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-sm { padding: 10px 22px; font-size: .88rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-xl { padding: 19px 48px; font-size: 1.12rem; width: 100%; max-width: 420px; }

.btn-telegram { background: var(--telegram); color: #fff; box-shadow: 0 8px 28px rgba(34,158,217,.32); }
.btn-telegram:hover { box-shadow: 0 16px 40px rgba(34,158,217,.45); }
.btn-green { background: linear-gradient(135deg, var(--green-soft), var(--green-mid)); color: #fff; box-shadow: 0 8px 28px rgba(45,106,79,.3); }
.btn-green:hover { box-shadow: 0 16px 40px rgba(45,106,79,.42); }
.btn-ghost {
  background: transparent; color: var(--green-dark); border: 2px solid rgba(45,106,79,.25);
  padding: 15px 30px; font-size: 1rem;
}
.btn-ghost:hover { border-color: var(--green-soft); background: rgba(216,243,220,.5); }
.btn-ghost::after { display: none; }

.btn-pulse { animation: glowPulse 2.2s ease-out infinite; }
@keyframes glowPulse {
  0%   { box-shadow: 0 10px 32px rgba(34,158,217,.35), 0 0 0 0 rgba(34,158,217,.55); }
  100% { box-shadow: 0 10px 32px rgba(34,158,217,.35), 0 0 0 18px rgba(34,158,217,0); }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; padding: 110px 5% 60px;
}
.blob {
  position: absolute; filter: blur(50px); opacity: .55; pointer-events: none;
  border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
  animation: morph 14s ease-in-out infinite alternate;
}
.blob-1 { width: 560px; height: 560px; background: #B7F0C8; top: -160px; left: -160px; }
.blob-2 { width: 460px; height: 460px; background: #FFD6C2; bottom: -140px; right: -100px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: #FFF1B8; top: 30%; right: 25%; opacity: .35; animation-delay: -9s; }
@keyframes morph {
  0%   { border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; transform: translate(0,0) rotate(0deg); }
  100% { border-radius: 58% 42% 40% 60% / 55% 55% 45% 45%; transform: translate(40px,30px) rotate(25deg); }
}

.float-food {
  position: absolute; left: var(--x); top: var(--y);
  font-size: var(--s, 2rem); opacity: .5; pointer-events: none; user-select: none;
  animation: floaty var(--d, 8s) ease-in-out infinite; animation-delay: var(--dl, 0s);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.08));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-26px) rotate(8deg); }
}

.hero-grid {
  position: relative; z-index: 2; width: 100%; max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; animation: fadeUp .6s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-soft); border: 1px solid rgba(64,145,108,.25);
  padding: 8px 16px; border-radius: 50px; font-size: .8rem; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 4px 14px rgba(45,106,79,.08);
}
.hero-badge.alt { color: var(--coral); border-color: rgba(255,107,74,.3); }
.badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,.08); }
}

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px;
  color: var(--green-dark); margin-bottom: 22px;
}
.w {
  display: inline-block; opacity: 0; transform: translateY(40px) rotate(4deg);
  animation: wordIn .8s var(--ease-out) forwards; animation-delay: calc(var(--i) * .07s + .15s);
}
@keyframes wordIn { to { opacity: 1; transform: translateY(0) rotate(0); } }
.hl-fire, .hl-green {
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hl-fire  { background-image: linear-gradient(90deg, #FF6B4A, #FF9F43, #FF6B4A); }
.hl-green { background-image: linear-gradient(90deg, #2D6A4F, #52B788, #2D6A4F); }
.w.hl-fire, .w.hl-green { animation: wordIn .8s var(--ease-out) forwards, shimmer 3s linear infinite; animation-delay: calc(var(--i) * .07s + .15s), 0s; }
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); max-width: 520px; margin-bottom: 36px; animation: fadeUp .6s .5s ease both; }
.hero-sub strong { color: var(--green-dark); }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; animation: fadeUp .6s .65s ease both; }
.hero-note { width: 100%; font-size: .82rem; color: var(--text-muted); }

/* Hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; animation: fadeUp .8s .3s ease both; transition: transform .2s ease-out; }
.stomach-wrap { position: relative; width: 100%; max-width: 380px; aspect-ratio: 320/360; cursor: pointer; user-select: none; }
.stomach { width: 100%; height: 100%; overflow: visible; }

.stomach-body { animation: wobble 3s ease-in-out infinite; transform-origin: 50% 55%; }
.stomach-wrap.ouch .stomach-body { animation: ouch .55s ease-in-out; }
@keyframes wobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%      { transform: rotate(-2.2deg) scale(1.02); }
  75%      { transform: rotate(2.2deg) scale(.985); }
}
@keyframes ouch {
  0%, 100% { transform: translateX(0) rotate(0); }
  20% { transform: translateX(-10px) rotate(-4deg) scale(1.06); }
  40% { transform: translateX(10px) rotate(4deg) scale(1.06); }
  60% { transform: translateX(-7px) rotate(-3deg); }
  80% { transform: translateX(7px) rotate(3deg); }
}
.glow-pulse { animation: glowScale 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes glowScale { 0%, 100% { transform: scale(1); opacity: .28; } 50% { transform: scale(1.12); opacity: .45; } }

.flame { transform-origin: 50% 100%; animation: flicker .55s ease-in-out infinite alternate; }
.f1 { animation-delay: -.1s; } .f2 { animation-delay: -.3s; animation-duration: .45s; } .f3 { animation-delay: -.2s; animation-duration: .6s; }
@keyframes flicker { 0% { transform: scaleY(.88) scaleX(1.04) rotate(-2deg); } 100% { transform: scaleY(1.14) scaleX(.96) rotate(2deg); } }

.bubble { animation: rise var(--bd, 3.2s) ease-in infinite; animation-delay: var(--bdl, 0s); }
@keyframes rise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  15%  { opacity: .75; } 85% { opacity: .55; }
  100% { transform: translateY(-165px) scale(1.15); opacity: 0; }
}
.eyes { animation: blink 4.2s infinite; transform-origin: center; }
@keyframes blink { 0%, 44%, 50%, 100% { transform: scaleY(1); } 47% { transform: scaleY(.08); } }
.sweat { animation: drip 1.6s ease-in infinite; }
@keyframes drip { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(28px); opacity: 0; } }
.stress-marks { animation: flash 1.1s ease-in-out infinite alternate; }
@keyframes flash { from { opacity: .35; } to { opacity: 1; } }
.mouth { animation: quiver .5s ease-in-out infinite alternate; transform-origin: center; }
@keyframes quiver { from { transform: translateY(0); } to { transform: translateY(1.5px); } }

.tag {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border-radius: 50px; padding: 8px 14px;
  font-size: .82rem; font-weight: 700; color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(27,67,50,.14); border: 1px solid rgba(116,198,157,.25);
  animation: floaty var(--d, 5s) ease-in-out infinite; animation-delay: var(--dl, 0s); white-space: nowrap;
}
.tag-1 { top: 8%; right: -4%; } .tag-2 { top: 42%; left: -10%; } .tag-3 { bottom: 12%; right: -2%; }

.speech {
  position: absolute; top: -6%; left: 50%; transform: translate(-50%, 10px) scale(.8);
  background: var(--green-dark); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  padding: 8px 16px; border-radius: 14px; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .3s var(--ease-spring); z-index: 4;
}
.speech::after { content: ''; position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: var(--green-dark); border-bottom: 0; }
.stomach-wrap.ouch .speech { opacity: 1; transform: translate(-50%, 0) scale(1); }
.tap-hint { position: absolute; bottom: -8%; left: 50%; transform: translateX(-50%); font-size: .75rem; color: var(--text-muted); white-space: nowrap; letter-spacing: .5px; animation: fadeUp .6s 1.4s ease both; }

/* ═══════════════ TICKER ═══════════════ */
.ticker {
  position: relative; z-index: 3; overflow: hidden; background: var(--green-dark); color: #fff; padding: 15px 0;
  transform: rotate(-1.2deg) scale(1.03); margin: -10px 0 30px; box-shadow: 0 10px 30px rgba(27,67,50,.25);
}
.ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 30px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.ticker-item::after { content: '•'; margin-left: 30px; color: var(--green-light); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 90px 5%; max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green-soft); margin-bottom: 14px; padding: 6px 14px; border-radius: 50px; background: var(--green-pale);
}
.center { text-align: center; }
.section-title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -1px; color: var(--green-dark); max-width: 720px; margin: 0 auto 16px; line-height: 1.12; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 56px; }

.u { position: relative; display: inline-block; white-space: nowrap; }
.u::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: .08em; height: .32em; z-index: -1;
  background: linear-gradient(90deg, rgba(116,198,157,.55), rgba(255,179,71,.55));
  border-radius: 4px; transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease-out) .3s;
}
.visible .u::after, .u.visible::after { transform: scaleX(1); }

.wave { display: block; width: 100%; height: 70px; }
.wave svg { width: 100%; height: 100%; display: block; }

/* ═══════════════ PAIN CARDS ═══════════════ */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.pain-card {
  position: relative; overflow: hidden; background: var(--green-bg); border: 1px solid rgba(116,198,157,.22);
  border-radius: var(--radius); padding: 30px 26px 26px; transform-style: preserve-3d;
}
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--accent, var(--green-soft)); }
.pain-card:hover { box-shadow: 0 24px 50px rgba(45,106,79,.18); border-color: var(--accent, var(--green-soft)); }
.pain-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 16px; font-size: 1.8rem;
  background: #fff; box-shadow: 0 6px 18px rgba(45,106,79,.1); margin-bottom: 18px; transition: transform .35s var(--ease-spring);
}
.pain-card:hover .pain-icon { transform: rotate(-12deg) scale(1.15) translateZ(30px); }
.pain-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; }
.pain-desc { font-size: .93rem; color: var(--text-muted); }
.pain-desc a { color: var(--green-mid); font-weight: 600; }
.app-fix-grid { text-align: left; margin: 36px 0 34px; }
.app-steps { max-width: 700px; margin: 6px auto 34px; text-align: left; color: var(--text-muted); font-size: .95rem; }
.app-steps li { margin-bottom: 12px; padding-left: 6px; }
.app-steps li::marker { color: var(--green-soft); font-weight: 700; font-family: var(--font-mono); }
.app-steps strong { color: var(--green-dark); }
.app-fix .cta-sub-note { margin-top: 12px; }

.tilt { transition: transform .15s ease-out, box-shadow .3s, border-color .3s; will-change: transform; }
.tilt.reveal:not(.visible) { transition: opacity .7s ease, transform .7s var(--ease-out); }

/* ═══════════════ STORY ═══════════════ */
.story { position: relative; padding: 100px 5% 80px; overflow: hidden; }
.story-head { max-width: 760px; margin: 0 auto 70px; }
.story-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.story-sticky { position: sticky; top: 100px; }

/* Endoscopy monitor */
.scan-card {
  position: relative; background: #07110E; border-radius: 24px; padding: 18px;
  box-shadow: 0 30px 70px rgba(7,17,14,.45), inset 0 0 0 1px rgba(94,234,212,.15);
  overflow: hidden;
}
.scan-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px);
}
.scan-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; color: var(--teal); margin-bottom: 8px;
}
.rec { display: inline-flex; align-items: center; gap: 6px; color: #FF5A4A; }
.rec::before { content: ''; width: 8px; height: 8px; background: #FF5A4A; border-radius: 50%; animation: recBlink 1s steps(1) infinite; }
@keyframes recBlink { 50% { opacity: .15; } }
.scan-svg { width: 100%; height: auto; display: block; border-radius: 14px; background: radial-gradient(circle at 50% 40%, rgba(94,234,212,.08), transparent 70%); }
.scan-outline path, .scan-outline rect { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.visible .scan-outline path, .visible .scan-outline rect { animation: draw 2.4s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.scanline { animation: scan 3.2s linear infinite; }
@keyframes scan { from { transform: translateY(-70px); } to { transform: translateY(380px); } }
.ring { fill: none; stroke: #FF5A4A; stroke-width: 2; transform-origin: center; animation: ringOut 2.4s ease-out infinite; }
.r2 { animation-delay: -1.2s; }
@keyframes ringOut { 0% { transform: scale(.25); opacity: .9; } 100% { transform: scale(1.4); opacity: 0; } }
.patch { transform-origin: center; animation: throb 1.4s ease-in-out infinite alternate; }
@keyframes throb { from { transform: scale(.95); opacity: .75; } to { transform: scale(1.08); opacity: 1; } }
.callout { opacity: 0; transition: opacity .6s 2s; }
.visible .callout { opacity: 1; }
.scan-foot {
  margin-top: 12px; display: flex; gap: 10px; align-items: flex-start;
  font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.45;
}
.scan-foot b { color: #FF8A7A; }
/* Fast-eating damage animation */
.damage-wrap { max-width: 1000px; margin: 10px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; text-align: left; }
.damage-anim { background: linear-gradient(160deg,#FFF6F0,#FFE7DA); border: 1px solid rgba(255,107,74,.2); border-radius: var(--radius); padding: 26px 18px; box-shadow: 0 24px 55px rgba(255,107,74,.12); }
.damage-svg { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
.dmg-food { animation: dmgDrop 1s linear infinite; }
.dmg-food.f2 { animation-delay: .25s; } .dmg-food.f3 { animation-delay: .5s; } .dmg-food.f4 { animation-delay: .75s; }
@keyframes dmgDrop { 0% { transform: translateY(-30px); opacity: 0; } 12% { opacity: 1; } 92% { opacity: 1; } 100% { transform: translateY(130px); opacity: 0; } }
.dmg-jet { animation: dmgJet 2.4s ease-in-out infinite; }
@keyframes dmgJet { 0%,50% { transform: translateY(0); opacity: 0; } 58% { opacity: .95; } 82% { transform: translateY(-104px); opacity: .95; } 90%,100% { transform: translateY(-104px); opacity: 0; } }
.dmg-body { transform-box: fill-box; transform-origin: center; animation: dmgSwell 2.4s ease-in-out infinite; }
@keyframes dmgSwell { 0%,100% { transform: scale(1); } 45% { transform: scale(1.05); } }
.dmg-pool { animation: dmgSlosh 3s ease-in-out infinite; }
@keyframes dmgSlosh { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.dmg-burn { transform-box: fill-box; transform-origin: center; opacity: .2; animation: dmgBurn 1.5s ease-in-out infinite; }
.dmg-burn.b2 { animation-delay: .4s; }
@keyframes dmgBurn { 0%,100% { opacity: .15; transform: scale(.8); } 50% { opacity: .6; transform: scale(1.1); } }
.damage-steps { margin-top: 0; }
@media (max-width: 900px) { .damage-wrap { grid-template-columns: 1fr; } }
.report-card { margin-top: 26px; background: #fff; border-radius: var(--radius); padding: 12px; box-shadow: 0 24px 55px rgba(27,67,50,.14); transform: rotate(2deg); }
.report-card img { width: 100%; display: block; border-radius: 10px; }
.report-cap { font-family: var(--font-mono); font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); text-align: center; padding: 10px 0 2px; }
.scan-foot .chip { flex-shrink: 0; font-family: var(--font-mono); font-size: .68rem; padding: 3px 8px; border-radius: 6px; background: rgba(255,90,74,.15); color: #FF8A7A; border: 1px solid rgba(255,90,74,.35); }

/* Timeline */
.timeline { position: relative; list-style: none; padding-left: 64px; }
.tl-line { position: absolute; left: 25px; top: 10px; bottom: 10px; width: 4px; background: rgba(116,198,157,.25); border-radius: 4px; overflow: hidden; }
.tl-progress { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--coral), var(--amber), var(--green-soft)); border-radius: 4px; transition: height .15s linear; }
.tl-item { position: relative; margin-bottom: 30px; }
.tl-dot {
  position: absolute; left: -64px; top: 6px; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: #fff; border: 3px solid rgba(116,198,157,.35); box-shadow: 0 6px 20px rgba(27,67,50,.1);
  transition: transform .4s var(--ease-spring), border-color .3s, box-shadow .3s;
}
.tl-item.active .tl-dot { transform: scale(1.12); border-color: var(--dot, var(--green-soft)); box-shadow: 0 0 0 8px color-mix(in srgb, var(--dot, var(--green-soft)) 18%, transparent), 0 10px 26px rgba(27,67,50,.15); }
.tl-card {
  background: #fff; border: 1px solid rgba(116,198,157,.22); border-radius: var(--radius); padding: 24px 26px;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.tl-item.active .tl-card { border-color: color-mix(in srgb, var(--dot, var(--green-soft)) 45%, transparent); box-shadow: 0 18px 44px rgba(27,67,50,.1); }
.tl-card:hover { transform: translateX(6px); }
.tl-when { display: inline-block; font-family: var(--font-mono); font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dot, var(--green-soft)); margin-bottom: 8px; }
.tl-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--green-dark); margin-bottom: 8px; letter-spacing: -.3px; }
.tl-card p { color: var(--text-muted); font-size: .95rem; }
.tl-card p strong { color: var(--green-dark); }

/* Stats */
.stats { max-width: 1100px; margin: 70px auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  position: relative; overflow: hidden; background: #fff; border-radius: var(--radius); padding: 26px 22px; text-align: center;
  border: 1px solid rgba(116,198,157,.22); transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.stat:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(27,67,50,.12); }
.stat::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--c, var(--green-soft)); }
.stat-num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1.5px; color: var(--c, var(--green-dark)); line-height: 1; }
.stat-num small { font-size: .45em; font-weight: 800; letter-spacing: 0; margin-left: 2px; }
.stat-label { margin-top: 8px; font-size: .86rem; color: var(--text-muted); font-weight: 600; }

/* Founder quote */
.quote-wrap { max-width: 860px; margin: 60px auto 0; position: relative; border-radius: 26px; padding: 3px; overflow: hidden; }
.quote-wrap::before {
  content: ''; position: absolute; inset: -60%;
  background: conic-gradient(from 0deg, transparent 0 55%, var(--green-light) 70%, var(--telegram) 80%, var(--coral) 90%, transparent 100%);
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.quote-inner { position: relative; background: #fff; border-radius: 24px; padding: 40px 44px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
.quote-mark { font-family: var(--font-head); font-size: 6rem; line-height: .6; color: var(--green-light); font-weight: 900; margin-top: 18px; }
.quote-text { font-family: var(--font-head); font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--green-dark); line-height: 1.4; letter-spacing: -.3px; }
.quote-by { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--green-soft), var(--green-light)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 6px 16px rgba(64,145,108,.3); }
.quote-by b { display: block; color: var(--green-dark); font-size: .95rem; }
.quote-by span { font-size: .82rem; color: var(--text-muted); }
.disclaimer { max-width: 860px; margin: 18px auto 0; text-align: center; font-size: .78rem; color: var(--text-muted); }


/* ═══════════════ TEASER ═══════════════ */
.teaser-wrap {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: 32px; padding: 64px 6%; display: grid; grid-template-columns: 1fr .8fr; gap: 30px; align-items: center;
  max-width: 1000px; margin: 0 auto; box-shadow: 0 30px 70px rgba(27,67,50,.3);
}
.teaser-wrap::before { content: ''; position: absolute; top: -120px; right: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(116,198,157,.25) 0%, transparent 70%); pointer-events: none; }
.teaser-wrap::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%); pointer-events: none; }
.teaser-copy { position: relative; z-index: 2; }
.teaser-wrap .section-label { background: rgba(255,255,255,.12); color: var(--green-light); }
.teaser-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -1px; color: #fff; margin-bottom: 14px; line-height: 1.12; }
.teaser-sub { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 30px; max-width: 460px; }

.mystery-boxes { display: flex; gap: 10px; margin-bottom: 34px; flex-wrap: wrap; }
.mystery-box {
  position: relative; overflow: hidden; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; padding: 9px 18px; color: #fff; font-size: .86rem; font-weight: 600; backdrop-filter: blur(6px);
}
.mystery-box::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%); animation: sweep 3.5s ease-in-out infinite; animation-delay: var(--dl, 0s);
}
@keyframes sweep { 0%, 60% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.teaser-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.happy-wrap { width: 100%; max-width: 300px; aspect-ratio: 320/360; position: relative; }
.happy-body { animation: bob 3.4s ease-in-out infinite; transform-origin: 50% 55%; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
.sparkle { animation: twinkle var(--td, 2s) ease-in-out infinite; animation-delay: var(--tdl, 0s); transform-origin: center; }
@keyframes twinkle { 0%, 100% { transform: scale(.4) rotate(0deg); opacity: .2; } 50% { transform: scale(1.15) rotate(45deg); opacity: 1; } }
.leaf { animation: leafFloat 4s ease-in-out infinite; animation-delay: var(--ld, 0s); transform-origin: center; }
@keyframes leafFloat { 0%, 100% { transform: translateY(0) rotate(-10deg); } 50% { transform: translateY(-14px) rotate(10deg); } }

/* ═══════════════ CTA ═══════════════ */
.cta-section { position: relative; padding: 100px 5%; text-align: center; overflow: hidden; }
.cta-section .blob { opacity: .45; }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-section .section-sub { margin-bottom: 40px; }
.cta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 38px; text-align: left; }
.cta-card {
  background: #fff; border: 1px solid rgba(116,198,157,.22); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; transform-style: preserve-3d;
}
.cta-card:hover { box-shadow: 0 16px 36px rgba(45,106,79,.14); }
.cta-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.cta-card-text { font-size: .86rem; color: var(--text-muted); font-weight: 500; }
.cta-card-text strong { display: block; color: var(--green-dark); font-size: .95rem; margin-bottom: 2px; font-family: var(--font-head); }
.cta-sub-note { font-size: .82rem; color: var(--text-muted); margin-top: 16px; }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: var(--green-dark); color: rgba(255,255,255,.55); text-align: center; padding: 38px 5%; font-size: .85rem; }
footer strong { color: var(--green-light); font-family: var(--font-head); }
footer p + p { margin-top: 8px; font-size: .78rem; }

/* ═══════════════ GUIDE PAGES ═══════════════ */
.hero.hero-guide { min-height: 82vh; }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: .8rem; color: var(--text-muted); margin-bottom: 18px; animation: fadeUp .6s ease both; }
.crumbs a { color: var(--green-mid); font-weight: 600; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.article { max-width: 760px; margin: 0 auto; text-align: left; }
.article h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; letter-spacing: -.6px; color: var(--green-dark); margin: 48px 0 14px; line-height: 1.15; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 1.15rem; font-weight: 800; color: var(--green-dark); margin: 26px 0 8px; }
.article p, .article li { color: var(--text-muted); font-size: 1.02rem; }
.article p { margin-bottom: 16px; }
.article strong { color: var(--green-dark); }
.article ul, .article ol { padding-left: 22px; margin-bottom: 18px; }
.article li { margin-bottom: 8px; }
.article li::marker { color: var(--green-soft); font-weight: 700; }
.article a { color: var(--green-mid); font-weight: 600; }
.callout-box {
  background: var(--green-bg); border: 1px solid rgba(116,198,157,.3); border-left: 5px solid var(--accent, var(--green-soft));
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.callout-box p { margin: 0; }
.callout-box.warn { --accent: var(--coral); background: #FFF4F0; border-color: rgba(255,107,74,.3); }
.article .pain-grid { margin: 24px 0 8px; }
.guide-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; max-width: 1000px; margin: 0 auto; text-align: left; }
.guide-link {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: #fff; border: 1px solid rgba(116,198,157,.22); border-radius: var(--radius); padding: 18px 20px;
  color: var(--green-dark); font-weight: 700; font-family: var(--font-head); font-size: .98rem;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.guide-link:hover { transform: translateY(-4px); border-color: var(--green-soft); box-shadow: 0 16px 36px rgba(45,106,79,.14); }
.guide-link span:first-child { font-size: 1.5rem; }
.guide-link small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.guide-link[aria-current] { border-color: var(--green-soft); background: var(--green-pale); }

/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 18px; border-radius: 999px;
  background: #25D366; color: #fff; text-decoration: none;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  box-shadow: 0 12px 32px rgba(37,211,102,.42), 0 4px 12px rgba(27,67,50,.18);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 18px 42px rgba(37,211,102,.5), 0 6px 16px rgba(27,67,50,.2); }
.wa-float::after {
  content: ''; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid rgba(37,211,102,.55); animation: waPulse 2.2s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes waPulse { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
@media (max-width: 640px) { .wa-float .wa-label { display: none; } .wa-float { padding: 15px; right: 16px; bottom: 16px; } }
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; display: none; } }

/* ═══════════════ REVEAL ═══════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 900px) {
  .hero { padding-top: 100px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { order: -1; }
  .stomach-wrap { max-width: 250px; }
  .hero-badges, .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .tag { font-size: .74rem; padding: 6px 11px; }
  .tag-1 { right: -12%; } .tag-2 { left: -16%; } .tag-3 { right: -10%; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-sticky { position: static; max-width: 440px; margin: 0 auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: 1fr; padding: 30px 26px; gap: 10px; }
  .quote-mark { font-size: 4rem; margin-top: 0; }
  .teaser-wrap { grid-template-columns: 1fr; text-align: center; padding: 50px 6%; }
  .teaser-visual { order: -1; }
  .happy-wrap { max-width: 210px; }
  .mystery-boxes { justify-content: center; }
  .teaser-sub { margin-left: auto; margin-right: auto; }
  .float-food.hide-m, .nav-links .nav-link { display: none; }
  .cursor-glow { display: none; }
}
@media (max-width: 600px) {
  .cta-cards { grid-template-columns: 1fr; }
  nav { padding: 12px 4%; }
  .ticker-item { font-size: .9rem; padding: 0 20px; }
  .timeline { padding-left: 52px; }
  .tl-dot { left: -52px; width: 44px; height: 44px; font-size: 1.15rem; }
  .tl-line { left: 20px; }
  .tl-card { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .w, .callout { opacity: 1; transform: none; }
  .scan-outline path, .scan-outline rect { stroke-dashoffset: 0; }
  .cursor-glow { display: none; }
}
