/* EatSense landing — Editorial Bold (fresh green + ink). Zero-build. */

:root {
  --base: #FAF9F5;
  --base-2: #F3F1EA;
  --ink: #14181A;
  --ink-2: #5B6360;
  --ink-3: #8A8F8B;
  --accent: #0FB678;
  --accent-press: #0C9A65;
  --accent-deep: #0A3D2E;
  --mint: #EAF6EF;
  --white: #FFFFFF;
  --line: #E7E6E0;

  --shadow-sm: 0 1px 2px rgba(20, 24, 26, 0.05);
  --shadow-md: 0 18px 40px -22px rgba(20, 24, 26, 0.30);
  --shadow-lg: 0 40px 80px -32px rgba(10, 61, 46, 0.32);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;

  --font-display: 'Unbounded', 'Manrope', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------------- Layout helpers ---------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-press);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.04;
  font-size: clamp(2rem, 4.6vw, 3.25rem); color: var(--ink);
}
.section-sub { margin-top: 16px; font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--ink-2); }
em { font-style: normal; color: var(--accent); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem; text-decoration: none;
  padding: .95rem 1.6rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -10px rgba(15, 182, 120, .7); }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(15, 182, 120, .8); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------------- Store badges ---------------- */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff; text-decoration: none;
  padding: 11px 20px 11px 17px; border-radius: 14px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge-text small { font-size: .62rem; letter-spacing: .04em; opacity: .8; text-transform: uppercase; }
.store-badge-text strong { font-size: 1.02rem; font-weight: 700; }

/* ---------------- Nav ---------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 18px 0; transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease); }
.nav.scrolled {
  padding: 10px 0;
  background: rgba(250, 249, 245, .8);
  backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(20, 24, 26, .06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: -.03em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { text-decoration: none; color: var(--ink-2); font-size: .92rem; font-weight: 600; transition: color .25s ease; position: relative; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--accent); border-radius: 2px; transition: width .3s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* lang switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 8px 13px; border-radius: 100px; border: 1px solid var(--line); background: var(--white);
  font-family: var(--font-body); font-size: .82rem; font-weight: 700; color: var(--ink-2);
  transition: border-color .25s ease, color .25s ease;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent-press); }
.lang-btn svg { width: 14px; height: 14px; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 150px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 6px; display: none; z-index: 10;
}
.lang-menu.open { display: block; }
.lang-option {
  display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 9px 12px; border-radius: 9px; font-family: var(--font-body); font-size: .9rem; font-weight: 600; color: var(--ink-2);
  transition: background .2s ease, color .2s ease;
}
.lang-option:hover { background: var(--mint); color: var(--ink); }
.lang-option.active { color: var(--accent-press); background: var(--mint); }

.mobile-menu-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-btn span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: clamp(130px, 18vw, 190px) 0 clamp(60px, 8vw, 90px); overflow: hidden; }
.hero-glow {
  position: absolute; top: -10%; right: -8%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at center, rgba(15, 182, 120, .22), rgba(15, 182, 120, 0) 62%);
  pointer-events: none; z-index: 0; filter: blur(8px);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  padding: 7px 14px; border-radius: 100px; background: var(--mint); color: var(--accent-deep);
  font-size: .8rem; font-weight: 700; letter-spacing: .01em;
}
.hero-badge svg { width: 15px; height: 15px; }
.hero-title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -.03em; line-height: 1.02;
  font-size: clamp(2.6rem, 6.4vw, 5rem); color: var(--ink);
}
.hero-subtitle { margin-top: 22px; max-width: 540px; font-size: clamp(1.04rem, 1.7vw, 1.26rem); color: var(--ink-2); }
.hero-ctas { margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: .9rem; color: var(--ink-2); }
.hero-stars { color: #F5A623; letter-spacing: 2px; font-size: 1rem; }

/* phone mockup */
.hero-visual { display: flex; justify-content: center; }
.hero-phone {
  position: relative; width: min(310px, 78vw); aspect-ratio: 9 / 19; background: var(--ink);
  border-radius: 42px; padding: 11px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.2);
}
.hero-phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 110px; height: 24px; background: var(--ink); border-radius: 0 0 16px 16px; z-index: 3; }
.hero-phone-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--mint); }
.hero-phone-img { width: 100%; height: 100%; object-fit: cover; }
.screen-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--accent); }
.screen-placeholder svg { width: 48px; height: 48px; }

/* ---------------- Stats band ---------------- */
.stats { background: var(--ink); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: clamp(36px, 5vw, 56px) 0; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3rem); color: var(--white); letter-spacing: -.02em; }
.stat-num em { color: var(--accent); }
.stat-label { margin-top: 6px; font-size: .86rem; color: rgba(255, 255, 255, .62); }
.stat + .stat { position: relative; }

/* ---------------- How it works ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.step-num { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--accent); letter-spacing: .04em; }
.step-icon { margin: 18px 0 16px; width: 52px; height: 52px; border-radius: 14px; background: var(--mint); display: flex; align-items: center; justify-content: center; color: var(--accent-press); }
.step-icon svg { width: 26px; height: 26px; }
.step-title { font-family: var(--font-display); font-weight: 500; font-size: 1.22rem; letter-spacing: -.01em; }
.step-desc { margin-top: 10px; color: var(--ink-2); font-size: .98rem; }

/* ---------------- Features ---------------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--accent-deep); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 28px; height: 28px; }
.feature-title { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; letter-spacing: -.01em; }
.feature-desc { margin-top: 12px; color: var(--ink-2); font-size: .98rem; }

/* ---------------- Programs marquee ---------------- */
.programs { background: var(--base-2); overflow: hidden; }
.programs-marquee { position: relative; margin-top: 8px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.programs-track { display: flex; gap: 22px; width: max-content; animation: marquee 46s linear infinite; }
.programs-marquee:hover .programs-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.program-card {
  flex: 0 0 300px; width: 300px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.program-image { height: 150px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.92); }
.program-image svg { width: 46px; height: 46px; }
.program-content { padding: 22px 22px 26px; }
.program-category { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-press); }
.program-name { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin: 8px 0 8px; letter-spacing: -.01em; }
.program-desc { color: var(--ink-2); font-size: .92rem; }
.programs-counter { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-top: 48px; }
.counter-number { font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 8vw, 5.5rem); color: var(--accent); line-height: 1; letter-spacing: -.03em; }
.counter-label { font-size: 1.05rem; color: var(--ink-2); max-width: 180px; }

/* ---------------- Biomarkers ---------------- */
.bio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bio-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 20px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.bio-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.bio-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--mint); color: var(--accent-press); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.bio-icon svg { width: 22px; height: 22px; }
.bio-name { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; }
.bio-desc { margin-top: 5px; font-size: .82rem; color: var(--ink-2); }

/* ---------------- Values / Trust ---------------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--mint); color: var(--accent-press); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-icon svg { width: 26px; height: 26px; }
.value-title { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; letter-spacing: -.01em; }
.value-desc { margin-top: 12px; color: var(--ink-2); font-size: .98rem; }

/* ---------------- Pricing ---------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: stretch; }
.pricing-card {
  position: relative; display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow-lg); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 13px; border-radius: 100px; }
.pricing-card:not(.featured) .pricing-badge { background: var(--accent-deep); }
.pricing-name { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-top: 6px; }
.pricing-desc { font-size: .82rem; color: var(--ink-2); margin-top: 4px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.65); }
.pricing-price { margin: 18px 0; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.pricing-amount { font-family: var(--font-display); font-weight: 600; font-size: 2rem; letter-spacing: -.02em; }
.pricing-period { font-size: .8rem; color: var(--ink-2); white-space: nowrap; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.6); }
.pricing-features { list-style: none; margin-bottom: 22px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; margin-bottom: 9px; color: var(--ink-2); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.82); }
.pricing-features svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pricing-btn { display: block; text-align: center; text-decoration: none; padding: 12px; border-radius: 100px; font-weight: 700; font-size: .9rem; background: var(--base-2); color: var(--ink); transition: background .25s var(--ease), transform .25s var(--ease); }
.pricing-btn:hover { transform: translateY(-2px); background: var(--mint); }
.pricing-card.featured .pricing-btn { background: var(--accent); color: #fff; }
.pricing-card.featured .pricing-btn:hover { background: var(--accent-press); }
.pricing-note { text-align: center; margin-top: 30px; font-size: .88rem; color: var(--ink-2); }

/* ---------------- Creators ---------------- */
.creators-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; background: var(--accent-deep); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); }
.creators-text h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; line-height: 1.05; }
.creators-text h2 em { color: var(--accent); }
.creators-text > p { margin-top: 16px; color: rgba(255,255,255,.78); font-size: 1.04rem; }
.creators-benefits { list-style: none; margin: 26px 0; }
.creators-benefits li { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; color: rgba(255,255,255,.92); }
.benefit-icon { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.12); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon svg { width: 16px; height: 16px; }
.creators-visual { display: flex; flex-direction: column; gap: 14px; }
.creator-card { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); padding: 16px 18px; transition: transform .3s var(--ease), background .3s var(--ease); }
.creator-card:hover { transform: translateX(6px); background: rgba(255,255,255,.12); }
.creator-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.creator-avatar svg { width: 22px; height: 22px; }
.creator-info h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; }
.creator-info p { font-size: .84rem; color: rgba(255,255,255,.7); }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative;
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1rem, 2vw, 1.18rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); font-family: var(--font-body); font-weight: 400; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 44px 24px 4px; color: var(--ink-2); font-size: 1rem; }

/* ---------------- Final CTA ---------------- */
.finalcta { background: var(--ink); color: #fff; text-align: center; }
.finalcta h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.02em; line-height: 1.05; }
.finalcta p { margin: 16px auto 30px; max-width: 540px; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.finalcta .store-badges { justify-content: center; }
.finalcta .store-badge { background: var(--white); color: var(--ink); }

/* ---------------- Footer ---------------- */
.footer { background: var(--base-2); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--ink-2); font-size: .92rem; max-width: 280px; }
.footer-column h4 { font-family: var(--font-display); font-weight: 500; font-size: 1rem; margin-bottom: 14px; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 9px; }
.footer-column a { color: var(--ink-2); text-decoration: none; font-size: .9rem; transition: color .2s ease; }
.footer-column a:hover { color: var(--accent-press); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; flex-wrap: wrap; }
.footer-copy { color: var(--ink-3); font-size: .85rem; }
.footer-badges { display: flex; gap: 18px; }
.footer-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); font-size: .82rem; font-weight: 600; }
.footer-badge svg { width: 16px; height: 16px; color: var(--accent-press); }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas .store-badges, .hero-trust { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .creators-inner { grid-template-columns: 1fr; gap: 36px; }
  .features-grid, .steps, .values-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column;
    align-items: flex-start; gap: 22px; background: var(--white); padding: 100px 32px 32px;
    transform: translateX(110%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); z-index: 150;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; }
  .mobile-menu-btn { display: flex; z-index: 210; position: relative; }
  .nav-actions .nav-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .bio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
