@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --green: #2e7d32;
  --green-deep: #0f3d21;
  --green-dark: #082c19;
  --green-soft: #e7f3e4;
  --mint: #d7efdd;
  --amber: #ffb300;
  --amber-soft: #fff0c7;
  --cream: #fbfaf4;
  --surface: #ffffff;
  --ink: #142019;
  --muted: #607068;
  --line: rgba(20, 32, 25, 0.11);
  --shadow: 0 22px 70px rgba(18, 66, 35, 0.12);
  --font-display: 'Manrope', 'Avenir Next', Arial, sans-serif;
  --font-body: 'DM Sans', 'Avenir Next', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.04em; }
p { line-height: 1.65; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.page-width { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  padding: 12px 0;
  transition: background .25s, box-shadow .25s, padding .25s;
}
.site-header.scrolled { padding: 8px 0; background: rgba(251,250,244,.88); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(18px); }
.nav-wrap { width: min(1220px, calc(100% - 28px)); margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 102; width: 186px; }
.brand img { width: 100%; }
.menu-toggle { position: relative; z-index: 102; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.72); cursor: pointer; }
.menu-toggle span:not(.sr-only) { position: absolute; left: 12px; width: 19px; height: 2px; border-radius: 2px; background: var(--ink); transition: .25s; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:nth-child(2) { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
.main-nav { position: fixed; top: 0; left: 0; width: 100vw; height: 100dvh; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px; background: rgba(248,250,243,.98); font: 700 1.25rem var(--font-display); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-100%); transition: transform .35s ease, opacity .2s ease, visibility .35s; }
.main-nav.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.nav-cta { padding: 14px 24px; color: white; background: var(--green); border-radius: 99px; }

.hero { position: relative; min-height: 800px; padding-top: 136px; padding-bottom: 74px; background: radial-gradient(circle at 20% 10%, #fff 0, transparent 30%), linear-gradient(135deg, #f7faef 0%, #edf6e8 48%, #e4f1e6 100%); overflow: hidden; }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 58px; align-items: center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .75; }
.hero-glow-one { width: 360px; height: 360px; right: -130px; top: 90px; background: rgba(255,179,0,.16); }
.hero-glow-two { width: 420px; height: 420px; left: -240px; bottom: -150px; background: rgba(46,125,50,.1); }
.eyebrow, .section-label { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--green); font: 700 .73rem var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { padding: 8px 12px; border: 1px solid rgba(46,125,50,.18); border-radius: 99px; background: rgba(255,255,255,.6); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(255,179,0,.16); }
.hero h1 { margin-bottom: 24px; font-size: clamp(3.25rem, 13vw, 5.8rem); line-height: .98; letter-spacing: -.07em; }
.hero h1 span { color: var(--green); }
.hero-lede { max-width: 560px; margin-bottom: 10px; font-size: 1.25rem; font-weight: 700; line-height: 1.45; }
.hero-support { max-width: 600px; margin-bottom: 30px; color: var(--muted); font-size: 1rem; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; }
.button { min-height: 54px; display: inline-flex; justify-content: center; align-items: center; gap: 10px; padding: 0 23px; border: 1px solid transparent; border-radius: 16px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--green); box-shadow: 0 12px 30px rgba(46,125,50,.23); }
.button-primary:hover { background: #236a28; box-shadow: 0 15px 36px rgba(46,125,50,.3); }
.button-primary svg { width: 20px; }
.button-secondary, .button-quiet { color: var(--ink); background: rgba(255,255,255,.75); border-color: var(--line); }
.play-icon { width: 29px; height: 29px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 50%; }
.play-icon svg { width: 16px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 19px; margin-top: 25px; color: #4e6156; font-size: .82rem; font-weight: 600; }
.hero-proof span { display: inline-flex; align-items: center; gap: 5px; }
.hero-proof svg { width: 17px; color: var(--green); stroke-width: 2.5; }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.phone { position: relative; width: 292px; padding: 10px; color: #152019; background: #121714; border: 1px solid rgba(255,255,255,.35); border-radius: 42px; box-shadow: 0 35px 70px rgba(12,48,25,.26), inset 0 0 0 2px rgba(255,255,255,.08); overflow: hidden; }
.hero-phone { z-index: 3; transform: rotate(2deg); }
.phone-top { position: absolute; z-index: 5; top: 13px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; color: #1c2820; font-size: .58rem; font-weight: 800; }
.phone-island { width: 72px; height: 20px; background: #111; border-radius: 99px; }
.phone-body { min-height: 570px; padding: 46px 14px 12px; background: linear-gradient(145deg,#fbfcf8,#f1f7ef); border-radius: 33px; overflow: hidden; }
.app-header { display: flex; justify-content: space-between; align-items: center; margin: 5px 2px 16px; }
.app-header div:first-child { display: flex; flex-direction: column; gap: 3px; }
.app-kicker { color: #7b897f; font-size: .5rem; font-weight: 800; letter-spacing: .09em; }
.app-header strong { font: 800 .92rem var(--font-display); letter-spacing: -.03em; }
.avatar { width: 31px; height: 31px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 11px; font-size: .72rem; font-weight: 800; }
.daily-card { padding: 16px 13px 13px; color: white; background: linear-gradient(150deg,#348a45,#0e4527); border-radius: 24px; box-shadow: 0 15px 25px rgba(25,85,43,.22); }
.daily-card-head { display: flex; justify-content: space-between; }
.daily-card-head div { display: flex; flex-direction: column; }
.daily-card-head span { color: rgba(255,255,255,.7); font-size: .55rem; }
.daily-card-head strong { margin-top: 2px; font-size: .75rem; }
.trend-pill { height: fit-content; padding: 4px 7px; color: white !important; background: rgba(255,255,255,.14); border-radius: 99px; }
.calorie-ring { width: 122px; height: 122px; display: grid; place-items: center; margin: 8px auto; border-radius: 50%; background: conic-gradient(var(--amber) 0 72%,rgba(255,255,255,.17) 72%); position: relative; }
.calorie-ring::before { content: ''; position: absolute; inset: 10px; background: #1b6134; border-radius: 50%; }
.calorie-ring div { position: relative; display: flex; flex-direction: column; align-items: center; }
.calorie-ring strong { font: 800 1.38rem var(--font-display); }
.calorie-ring span { color: rgba(255,255,255,.68); font-size: .54rem; }
.macro-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.14); }
.macro-row div { display: grid; grid-template-columns: 8px auto; align-items: center; gap: 2px 5px; }
.macro-row strong { font-size: .65rem; }
.macro-row small { grid-column: 2; color: rgba(255,255,255,.6); font-size: .48rem; }
.macro-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.macro-dot.fibre { background: #91d8e5; }.macro-dot.carbs { background: #eea7a7; }
.screen-section-title { display: flex; justify-content: space-between; align-items: center; margin: 17px 2px 9px; }
.screen-section-title strong { font-size: .75rem; }.screen-section-title span { color: var(--green); font-size: .55rem; font-weight: 700; }
.meal-row { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 9px; margin-bottom: 7px; padding: 9px; background: white; border: 1px solid rgba(0,0,0,.04); border-radius: 14px; }
.meal-icon { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; }.meal-icon.green { color: var(--green); background: var(--green-soft); }.meal-icon.amber { color: #a66a00; background: var(--amber-soft); }
.meal-row div:nth-child(2) { display: flex; flex-direction: column; gap: 2px; }.meal-row strong { font-size: .62rem; }.meal-row span { color: #839087; font-size: .47rem; }.meal-row b { font-size: .62rem; }
.phone-nav { position: absolute; left: 10px; right: 10px; bottom: 10px; height: 53px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; background: rgba(255,255,255,.96); border-top: 1px solid rgba(0,0,0,.06); border-radius: 0 0 32px 32px; }
.phone-nav span { display: flex; flex-direction: column; align-items: center; gap: 1px; color: #8b958e; font-size: .9rem; }.phone-nav small { font-size: .43rem; }.phone-nav .active { color: var(--green); }
.floating-insight, .floating-food { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.8); border-radius: 17px; box-shadow: 0 16px 40px rgba(25,72,39,.16); backdrop-filter: blur(12px); }
.floating-insight { top: 95px; left: -2px; }.floating-food { right: -3px; bottom: 95px; }
.floating-insight div, .floating-food div { display: flex; flex-direction: column; gap: 2px; }.floating-insight small, .floating-food small { color: var(--muted); font-size: .52rem; }.floating-insight strong, .floating-food strong { font-size: .65rem; }
.insight-icon, .floating-food > span { width: 29px; height: 29px; display: grid; place-items: center; color: #875a00; background: var(--amber-soft); border-radius: 10px; font-weight: 800; }.floating-food > span { color: var(--green); background: var(--green-soft); }
.orbit { position: absolute; border: 1px solid rgba(46,125,50,.13); border-radius: 50%; }.orbit-one { width: 470px; height: 470px; }.orbit-two { width: 570px; height: 570px; }

.demo-strip { padding: 76px 0; color: white; background: var(--green-dark); position: relative; overflow: hidden; }
.demo-strip::after { content: ''; position: absolute; width: 450px; height: 450px; top: -200px; right: -100px; border-radius: 50%; background: rgba(255,179,0,.09); }
.demo-grid { position: relative; z-index: 1; display: grid; gap: 42px; align-items: center; }
.light-label { color: #9ed9a5; }
.demo-copy h2, .section-heading h2, .vision-copy h2, .signup-copy h2, .coach-intro h2 { font-size: clamp(2.25rem, 9vw, 4rem); line-height: 1.08; }
.demo-copy h2 { margin-bottom: 18px; }.demo-copy p { max-width: 480px; color: rgba(255,255,255,.65); }
.example-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.example-pills button { padding: 9px 12px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: .72rem; cursor: pointer; }
.parser-card { padding: 22px; color: var(--ink); background: #fbfcf8; border-radius: 27px; box-shadow: 0 30px 70px rgba(0,0,0,.23); }
.parser-card > label { display: block; margin-bottom: 10px; color: #637068; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.parser-input-wrap { position: relative; }
.parser-input-wrap textarea { width: 100%; padding: 16px 54px 16px 16px; color: var(--ink); background: white; border: 1.5px solid #d8e3d8; border-radius: 16px; outline: none; resize: none; font: 700 .92rem/1.45 var(--font-body); transition: border .2s, box-shadow .2s; }
.parser-input-wrap textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(46,125,50,.1); }
.parser-input-wrap button { position: absolute; right: 10px; bottom: 11px; width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--green); border: 0; border-radius: 12px; cursor: pointer; }
.parser-input-wrap svg { width: 20px; }
.parser-status { display: flex; align-items: center; gap: 7px; margin: 10px 2px 16px; color: #77847b; font-size: .58rem; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46,125,50,.1); }
.parser-results { display: grid; gap: 7px; }
.result-item { display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 8px; padding: 10px; background: var(--green-soft); border-radius: 12px; animation: resultIn .35s both; }
.result-item > span { width: 24px; height: 24px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .68rem; }.result-item strong { font-size: .74rem; }.result-item small { color: #56705d; font-size: .62rem; }
.result-item.unknown { background: #fff5df; }.result-item.unknown > span { color: #815800; background: var(--amber); }
.parser-total { display: flex; justify-content: space-between; margin-top: 13px; padding: 14px 3px 0; border-top: 1px solid var(--line); font-size: .75rem; }.parser-total span { color: var(--muted); }
@keyframes resultIn { from { opacity: 0; transform: translateY(5px); } }

.section-heading { max-width: 680px; margin-bottom: 42px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin-bottom: 14px; }.section-heading p { color: var(--muted); font-size: 1.02rem; }
.problem { background: #f8f5ec; }
.problem-grid { display: grid; gap: 13px; }
.problem-card { position: relative; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; padding: 19px; background: rgba(255,255,255,.78); border: 1px solid rgba(30,50,36,.08); border-radius: 20px; }
.mismatch-icon { width: 39px; height: 39px; display: grid; place-items: center; color: #ba3c3c; background: #fee7e3; border-radius: 13px; font-size: 1.35rem; }
.problem-card > div:nth-child(2) { display: flex; flex-direction: column; }.problem-card small { color: var(--muted); font-size: .6rem; }.problem-card strong { font-size: .84rem; }
.wrong-match { grid-column: 1 / -1; padding: 9px 11px; color: #8c4c3d; background: #fff1ed; border-radius: 9px; font-size: .7rem; }.wrong-match span { color: #a37e75; margin-right: 5px; }
.problem-statement { max-width: 730px; margin: 36px auto 0; text-align: center; color: var(--muted); font-size: 1.1rem; }.problem-statement strong { color: var(--green); }

.features { background: white; }
.feature-bento { display: grid; gap: 14px; }
.feature-card { position: relative; padding: 25px; border: 1px solid var(--line); border-radius: 25px; background: #f9fbf7; overflow: hidden; }
.feature-card h3 { margin: 12px 0 8px; font-size: 1.38rem; }.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.feature-icon { width: 43px; height: 43px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 13px; }.feature-icon svg { width: 22px; }
.amber-icon { color: #9b6800; background: var(--amber-soft); }.blue-icon { color: #356b9e; background: #e5f0fb; }.mint-icon { color: #137b65; background: #ddf5ed; }.rose-icon { color: #a9505b; background: #fae8ea; }
.card-number { position: absolute; top: 23px; right: 24px; color: #9ca7a0; font: 700 .62rem var(--font-display); letter-spacing: .09em; }
.language-demo { margin-top: 25px; padding: 15px; background: white; border-radius: 17px; box-shadow: 0 10px 28px rgba(20,60,30,.07); }
.typed-meal { padding: 11px; font: 700 .9rem var(--font-display); border-bottom: 1px solid var(--line); }.typed-meal span { color: var(--green); }
.understood { display: flex; align-items: center; gap: 8px; padding-top: 11px; color: var(--green); font-size: .7rem; font-weight: 700; }.understood span { width: 20px; height: 20px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .55rem; }
.region-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }.region-cloud span { padding: 9px 12px; color: #805a08; background: #fff5d9; border: 1px solid #f5e1ab; border-radius: 99px; font-size: .68rem; font-weight: 700; }
.coach-bubble { display: flex; gap: 11px; margin-top: 25px; padding: 14px; background: #eff6fd; border-radius: 15px; }.coach-bubble > span { color: #3d76a9; }.coach-bubble p { display: flex; flex-direction: column; font-size: .69rem; line-height: 1.5; }.coach-bubble strong { color: var(--ink); }
.compact-card { display: flex; align-items: center; gap: 15px; }.compact-card h3 { margin: 0 0 3px; font-size: 1.08rem; }.compact-card .card-number { display: none; }

.how { background: linear-gradient(180deg,#edf6e9,#f9faf4); }
.steps-grid { display: grid; gap: 15px; counter-reset: steps; }
.step-card { position: relative; padding: 24px; background: rgba(255,255,255,.75); border: 1px solid rgba(46,125,50,.1); border-radius: 24px; }
.step-number { position: absolute; top: 22px; right: 22px; width: 31px; height: 31px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 50%; font: 800 .74rem var(--font-display); }
.step-card h3 { margin: 22px 0 8px; font-size: 1.22rem; }.step-card p { margin-bottom: 0; color: var(--muted); font-size: .86rem; }
.step-visual { height: 128px; display: flex; align-items: center; justify-content: center; background: #f3f6ef; border-radius: 18px; overflow: hidden; }
.profile-visual { gap: 12px; }.mini-profile { width: 51px; height: 51px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 16px; font-weight: 800; }.profile-lines { display: grid; gap: 7px; }.profile-lines i { display: block; width: 70px; height: 7px; background: #dce6da; border-radius: 5px; }.profile-lines i:nth-child(2) { width: 50px; }.profile-lines i:nth-child(3) { width: 61px; }.goal-pill { position: absolute; margin: 86px 0 0 60px; padding: 5px 9px; color: #8a5e00; background: var(--amber-soft); border-radius: 99px; font-size: .55rem; font-weight: 700; }
.log-visual { flex-direction: column; gap: 10px; }.chat-line { padding: 12px 15px; color: white; background: var(--green); border-radius: 15px 15px 4px 15px; font-size: .74rem; font-weight: 700; transform: translateX(15px); }.typing-dots { align-self: flex-start; display: flex; gap: 3px; margin-left: 44px; padding: 9px 12px; background: white; border-radius: 13px 13px 13px 3px; }.typing-dots i { width: 5px; height: 5px; background: #a5b0a8; border-radius: 50%; }
.insight-visual { gap: 8px; flex-wrap: wrap; }.mini-chart { width: 130px; height: 68px; display: flex; align-items: end; gap: 7px; padding: 8px; background: white; border-radius: 12px; }.mini-chart i { flex: 1; background: var(--green-soft); border-radius: 3px; }.mini-chart i:nth-child(1){height:30%}.mini-chart i:nth-child(2){height:52%}.mini-chart i:nth-child(3){height:42%}.mini-chart i:nth-child(4){height:70%;background:var(--green)}.mini-chart i:nth-child(5){height:86%;background:var(--amber)}.insight-visual > span { padding: 5px 8px; color: var(--green); background: white; border-radius: 99px; font-size: .52rem; font-weight: 700; }
.activity-visual { position: relative; gap: 16px; }.activity-ring { width: 82px; height: 82px; display: grid; place-items: center; align-content: center; background: conic-gradient(var(--green) 0 72%,#dce9d9 72%); border-radius: 50%; position: relative; }.activity-ring::before { content: ''; position: absolute; inset: 8px; background: #f3f6ef; border-radius: 50%; }.activity-ring strong,.activity-ring span { position: relative; display: block; text-align: center; }.activity-ring strong { font: 800 .78rem var(--font-display); }.activity-ring span { color: var(--muted); font-size: .46rem; }.activity-sync { display: flex; align-items: center; gap: 7px; color: var(--green); font-size: .58rem; font-weight: 700; }.activity-sync i { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(46,125,50,.1); }

.complete-picture { background: #f8f5ec; }
.picture-grid { display: grid; gap: 35px; align-items: center; }
.picture-dashboard { padding: 20px; background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.picture-meal { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }.picture-meal > div:nth-child(2) { display: flex; flex-direction: column; }.picture-meal small { color: var(--muted); font-size: .6rem; }.picture-meal strong { font-size: .84rem; }.picture-meal > span { padding: 6px 9px; color: var(--green); background: var(--green-soft); border-radius: 99px; font-size: .52rem; font-weight: 700; }
.picture-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin: 17px 0; }.picture-metrics div { padding: 14px; background: #f4f7f1; border-radius: 14px; }.picture-metrics small,.picture-metrics span,.picture-metrics strong { display: block; }.picture-metrics small { color: var(--muted); font-size: .55rem; }.picture-metrics strong { margin: 5px 0 1px; font: 800 1.35rem var(--font-display); letter-spacing: -.05em; }.picture-metrics span { color: #8b968f; font-size: .5rem; }
.picture-coach { display: flex; gap: 12px; padding: 16px; color: white; background: linear-gradient(145deg,#348a45,#0e4527); border-radius: 17px; }.picture-coach .insight-icon { flex: 0 0 31px; }.picture-coach div { display: flex; flex-direction: column; gap: 3px; }.picture-coach small { color: rgba(255,255,255,.62); font-size: .55rem; }.picture-coach strong { font-size: .74rem; line-height: 1.45; }.picture-coach p { margin: 0; color: rgba(255,255,255,.76); font-size: .63rem; line-height: 1.5; }

.product { background: white; }
.product-grid { display: grid; gap: 50px; align-items: center; }
.product-copy > p { color: var(--muted); }.product-copy h2 { font-size: clamp(2.5rem,9vw,4rem); }
.screen-tabs { display: grid; margin-top: 28px; border-top: 1px solid var(--line); }
.screen-tab { display: flex; align-items: center; gap: 14px; padding: 16px 2px; color: #77837b; background: none; border: 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 700; cursor: pointer; transition: color .2s, padding .2s; }.screen-tab span { color: #aeb7b1; font-size: .62rem; }.screen-tab.active { padding-left: 12px; color: var(--green); }
.product-stage { position: relative; min-height: 620px; display: grid; place-items: center; background: linear-gradient(145deg,#f0f7ed,#f8f1dc); border-radius: 36px; overflow: hidden; }
.product-phone { z-index: 2; width: 286px; }.product-phone .phone-body { min-height: 555px; }
.stage-circle { position: absolute; border-radius: 50%; }.circle-one { width: 380px; height: 380px; background: rgba(46,125,50,.09); }.circle-two { width: 540px; height: 540px; border: 1px solid rgba(46,125,50,.14); }
.screen-page { animation: screenIn .35s ease; }.screen-page-title { margin: 8px 3px 15px; }.screen-page-title span { color: #7d8a81; font-size: .52rem; }.screen-page-title h4 { margin: 2px 0 0; font: 800 1.1rem var(--font-display); letter-spacing: -.04em; }
@keyframes screenIn { from { opacity: 0; transform: translateY(8px); } }
.add-meal-box { padding: 15px; background: white; border: 1px solid #dae4d8; border-radius: 17px; min-height: 120px; color: #77827b; font-size: .7rem; line-height: 1.5; }.add-meal-box strong { color: var(--ink); display: block; font-size: .88rem; margin-bottom: 9px; }.meal-type-row { display: flex; gap: 5px; margin-bottom: 12px; }.meal-type-row span { flex: 1; padding: 7px 3px; text-align: center; color: #718078; background: white; border-radius: 8px; font-size: .48rem; }.meal-type-row .selected { color: white; background: var(--green); }.quick-label { margin: 15px 3px 7px; font-size: .58rem; font-weight: 800; }.quick-chips { display: flex; flex-wrap: wrap; gap: 5px; }.quick-chips span { padding: 7px 8px; background: var(--green-soft); border-radius: 99px; font-size: .5rem; }.mock-button { margin-top: 17px; padding: 12px; color: white; background: var(--green); border-radius: 12px; text-align: center; font-size: .66rem; font-weight: 800; }
.analysis-head { padding: 13px; color: white; background: var(--green); border-radius: 17px; }.analysis-head small { opacity: .65; font-size: .52rem; }.analysis-head strong { display: block; margin-top: 3px; font-size: .78rem; }.analysis-list { display: grid; gap: 7px; margin-top: 12px; }.analysis-row { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 8px; padding: 10px; background: white; border-radius: 12px; }.analysis-check { width: 22px; height: 22px; display: grid; place-items: center; color: white; background: var(--green); border-radius: 50%; font-size: .5rem; }.analysis-row strong { font-size: .62rem; }.analysis-row small { display: block; color: #879289; font-size: .46rem; }.analysis-row b { font-size: .58rem; }.nutrition-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-top: 12px; }.nutrition-summary div { padding: 10px 4px; text-align: center; background: #edf5ea; border-radius: 10px; }.nutrition-summary strong,.nutrition-summary span { display:block }.nutrition-summary strong { font-size:.68rem }.nutrition-summary span { color:#718077;font-size:.44rem }
.insight-card-ui { margin-bottom: 9px; padding: 13px; background: white; border-radius: 15px; }.insight-card-ui div { display:flex;gap:8px;align-items:center;margin-bottom:6px }.insight-card-ui i { width:25px;height:25px;display:grid;place-items:center;background:var(--amber-soft);border-radius:8px;font-style:normal;font-size:.6rem }.insight-card-ui strong {font-size:.66rem}.insight-card-ui p {margin:0;color:#708077;font-size:.53rem;line-height:1.45}.week-bars { display:flex;gap:6px;align-items:end;height:105px;padding:13px;background:white;border-radius:15px }.week-bars i { flex:1;background:#cfe5ce;border-radius:4px;height:40% }.week-bars i:nth-child(2){height:65%}.week-bars i:nth-child(3){height:53%}.week-bars i:nth-child(4){height:85%;background:var(--green)}.week-bars i:nth-child(5){height:75%}.week-bars i:nth-child(6){height:90%;background:var(--amber)}.week-bars i:nth-child(7){height:68%}
.profile-card-ui { text-align:center;padding:18px;background:white;border-radius:18px }.profile-avatar-ui { width:62px;height:62px;display:grid;place-items:center;margin:0 auto 9px;color:white;background:var(--green);border-radius:20px;font-weight:800 }.profile-card-ui h5 {margin:0;font:800 .82rem var(--font-display)}.profile-card-ui p {margin:2px 0 0;color:#7d8981;font-size:.52rem}.profile-stats-ui {display:grid;grid-template-columns:repeat(3,1fr);gap:6px;margin-top:13px}.profile-stats-ui div{padding:9px 3px;background:#f1f6ef;border-radius:9px}.profile-stats-ui strong,.profile-stats-ui span{display:block}.profile-stats-ui strong{font-size:.65rem}.profile-stats-ui span{color:#7f8c83;font-size:.42rem}.settings-list{display:grid;gap:7px;margin-top:11px}.settings-list div{display:flex;justify-content:space-between;padding:11px;background:white;border-radius:11px;font-size:.58rem;font-weight:700}.settings-list span{color:#9aa49d}

.nutrition-coach { background: linear-gradient(180deg,#edf6e9,#f9faf4); }
.coach-grid { display: grid; gap: 35px; align-items: center; }.coach-intro > p { color: var(--muted); }.coach-intro h2 { margin-bottom: 15px; }
.protein-progress { margin-top: 27px; padding: 20px; background: white; border: 1px solid rgba(46,125,50,.1); border-radius: 21px; }.protein-progress > div:first-child { display: flex; justify-content: space-between; align-items: end; }.protein-progress span { color: var(--muted); font-size: .7rem; font-weight: 700; }.protein-progress strong { font: 800 1.55rem var(--font-display); }.protein-progress strong small { color: var(--muted); font-size: .7rem; }.progress-track { height: 9px; margin: 14px 0 11px; background: #e4ece1; border-radius: 99px; overflow: hidden; }.progress-track i { display: block; width: 49%; height: 100%; background: linear-gradient(90deg,var(--green),#63ad67); border-radius: inherit; }.protein-progress p { margin: 0; color: var(--muted); font-size: .72rem; }
.coach-insights { display: grid; gap: 11px; }.coach-insights article { display: flex; align-items: center; gap: 13px; padding: 18px; background: rgba(255,255,255,.82); border: 1px solid rgba(46,125,50,.1); border-radius: 19px; }.coach-insights article div { display: flex; flex-direction: column; gap: 3px; }.coach-insights small { color: var(--muted); font-size: .56rem; text-transform: uppercase; letter-spacing: .07em; }.coach-insights strong { font-size: .8rem; line-height: 1.45; }.coach-insight-mark { flex: 0 0 39px; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; font-weight: 800; }.green-mark { color: var(--green); background: var(--green-soft); }.amber-mark { color: #956400; background: var(--amber-soft); }.rose-mark { color: #a9505b; background: #fae8ea; }

.health-roadmap { background: white; }.roadmap-grid { display: grid; gap: 13px; }.roadmap-card { position: relative; padding: 22px; background: #f9fbf7; border: 1px solid var(--line); border-radius: 22px; }.roadmap-card > span { position: absolute; top: 21px; right: 21px; color: #a0aaa3; font-size: .58rem; font-weight: 700; }.roadmap-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 12px; font-weight: 800; }.roadmap-card h3 { margin: 17px 0 7px; font-size: 1.08rem; }.roadmap-card p { min-height: 48px; margin-bottom: 16px; color: var(--muted); font-size: .76rem; line-height: 1.5; }.roadmap-card small { padding: 6px 9px; color: #895e00; background: var(--amber-soft); border-radius: 99px; font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

.comparison { background: #f8f5ec; }.comparison-grid { display: grid; gap: 14px; max-width: 930px; margin: auto; }.comparison-card { padding: 25px; border-radius: 25px; }.generic-card { background: rgba(255,255,255,.72); border: 1px solid var(--line); }.aahaara-card { color: white; background: linear-gradient(145deg,#348a45,#0e4527); box-shadow: 0 20px 45px rgba(25,85,43,.2); }.comparison-label { display: inline-block; margin-bottom: 18px; padding: 7px 10px; border-radius: 99px; font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.generic-card .comparison-label { color: var(--muted); background: #e8ece7; }.aahaara-card .comparison-label { color: #d5f1d7; background: rgba(255,255,255,.12); }.comparison-card h3 { margin-bottom: 19px; font-size: 1.45rem; }.comparison-card > p { margin: 19px 0 0; font-size: .76rem; }.generic-card > p { color: var(--muted); }.aahaara-card > p { color: rgba(255,255,255,.7); }
.generic-result { display: flex; align-items: center; gap: 11px; padding: 14px; background: #fff1ed; border-radius: 14px; }.generic-result > span { width: 30px; height: 30px; display: grid; place-items: center; color: #a95345; background: white; border-radius: 9px; font-weight: 800; }.generic-result div { display: flex; flex-direction: column; }.generic-result small { color: #9d766d; font-size: .52rem; }.generic-result strong { font-size: .76rem; }.alias-list { display: flex; flex-wrap: wrap; gap: 7px; }.alias-list span { padding: 9px 11px; color: #e9f7ea; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: .65rem; font-weight: 700; }

.foods { position: relative; color: white; background: var(--green-dark); overflow: hidden; }
.foods-pattern { position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(circle at center,white 1px,transparent 1.5px); background-size: 27px 27px; }
.foods-content { position: relative; }.foods .section-heading p { color: rgba(255,255,255,.62); }
.food-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.food-cloud span { padding: 11px 15px; color: rgba(255,255,255,.84); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: .75rem; transition: background .2s, color .2s, transform .2s; }.food-cloud span:nth-child(3n) { color: #ffd979; background: rgba(255,179,0,.11); border-color: rgba(255,179,0,.2); }.food-cloud span:hover { transform: translateY(-3px); color: var(--green-dark); background: white; }
.food-stats { display: grid; gap: 12px; margin-top: 45px; }.food-stats div { padding: 18px; text-align: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 17px; }.food-stats strong,.food-stats span { display: block; }.food-stats strong { color: var(--amber); font: 800 1.65rem var(--font-display); letter-spacing: -.05em; }.food-stats span { margin-top: 3px; color: rgba(255,255,255,.62); font-size: .66rem; }

.community { background: #f8f5ec; }
.community-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); overflow: hidden; }
.community-copy h2 { font-size: clamp(2.25rem,9vw,3.6rem); }.community-copy p { color: var(--muted); }.community-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 25px; }
.community-visual { position: relative; min-height: 300px; margin-top: 35px; background: radial-gradient(circle at center,#dfeedd,transparent 65%); }
.community-visual::before { content: ''; position: absolute; inset: 50% auto auto 50%; width: 130px; height: 130px; transform: translate(-50%,-50%); background: url('assets/branding/app_icon.svg') center/contain no-repeat; filter: drop-shadow(0 15px 22px rgba(22,74,36,.18)); }
.contribution-card { position: absolute; display: flex; align-items: center; gap: 9px; padding: 11px 13px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 30px rgba(24,68,35,.12); }.contribution-card > span { width: 27px; height: 27px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); border-radius: 8px; font-weight: 800; }.contribution-card div { display:flex;flex-direction:column }.contribution-card strong {font-size:.62rem}.contribution-card small{color:var(--muted);font-size:.48rem}.contribution-one{top:12px;left:0}.contribution-two{right:0;top:104px}.contribution-three{bottom:8px;left:10px}

.vision { background: white; }
.vision-grid { display: grid; gap: 40px; align-items: center; }
.vision-mark { display: grid; place-items: center; min-height: 320px; background: linear-gradient(145deg,var(--green-soft),#fff3ce); border-radius: 32px; }.vision-mark svg { width: 200px; color: var(--green); stroke-width: 8; }.vision-mark .filled { fill: var(--green); }.vision-mark circle { fill: white; stroke-width: 5; }
.vision-copy p { color: var(--muted); font-size: 1rem; }.vision-copy blockquote { margin: 25px 0 0; padding: 18px 0 18px 20px; border-left: 3px solid var(--amber); font: 600 1rem/1.6 var(--font-display); }

.early-access { padding-top: 30px; background: white; }
.signup-card { padding: 35px 25px; color: white; background: linear-gradient(135deg,#28763a,#0b3c23); border-radius: 32px; box-shadow: 0 25px 70px rgba(25,91,47,.25); }
.signup-copy p { color: rgba(255,255,255,.65); }.signup-copy h2 { margin-bottom: 14px; }
.signup-form { display: grid; gap: 12px; margin-top: 30px; }.signup-form label { display: flex; flex-direction: column; gap: 7px; }.signup-form label span { color: rgba(255,255,255,.72); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }.signup-form input { width: 100%; height: 52px; padding: 0 15px; color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 13px; outline: none; }.signup-form input::placeholder { color: rgba(255,255,255,.43); }.signup-form input:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.15); }
.signup-button { margin-top: 5px; color: var(--green-dark); background: var(--amber); }.signup-button:hover { background: #ffc233; }.form-note { margin: 0; color: rgba(255,255,255,.48); font-size: .65rem; text-align: center; }.form-note.success { color: #c7f4cd; font-weight: 700; }
.signup-actions { display: flex; flex-direction: column; gap: 9px; margin-top: 24px; }.signup-actions .signup-button { margin: 0; }.signup-secondary { color: white; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }.signup-secondary:hover { background: rgba(255,255,255,.16); }

.footer { padding: 75px 0 25px; color: rgba(255,255,255,.7); background: #071f13; }
.footer-grid { display: grid; gap: 45px; }.footer-logo { color: white; font: 800 1.45rem var(--font-display); letter-spacing: -.04em; }.footer-logo span { color: #62bd6c; }.footer-brand p { margin: 7px 0; color: white; }.footer-brand small { color: rgba(255,255,255,.4); }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 35px; }.footer-links div { display: flex; flex-direction: column; gap: 11px; }.footer-links strong { margin-bottom: 4px; color: white; font-size: .76rem; }.footer-links a { font-size: .72rem; transition: color .2s; }.footer-links a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; gap: 15px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.37); font-size: .64rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }.reveal-delay { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (min-width: 620px) {
  .page-width { width: min(1160px, calc(100% - 64px)); }
  .hero-actions, .community-actions { flex-direction: row; }
  .hero-actions .button { min-width: 170px; }
  .problem-grid, .steps-grid { grid-template-columns: repeat(2,1fr); }
  .feature-bento { grid-template-columns: repeat(2,1fr); }.feature-language,.feature-regions,.feature-coach { grid-column: span 2; }
  .signup-form { grid-template-columns: repeat(2,1fr); }.signup-button { align-self: end; }.form-note { grid-column: 1/-1; }
  .picture-metrics { grid-template-columns: repeat(4,1fr); }.roadmap-grid { grid-template-columns: repeat(2,1fr); }.comparison-grid { grid-template-columns: repeat(2,1fr); }.food-stats { grid-template-columns: repeat(3,1fr); }.signup-actions { flex-direction: row; }
  .footer-links { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 900px) {
  .section-pad { padding: 120px 0; }
  .site-header { padding: 17px 0; }.menu-toggle { display: none; }.main-nav { position: static; width: auto; height: auto; flex-direction: row; gap: 30px; background: none; font: 600 .78rem var(--font-body); opacity: 1; visibility: visible; pointer-events: auto; transform: none; }.nav-cta { padding: 12px 19px; }
  .hero { padding-top: 155px; padding-bottom: 110px; }.hero-grid { grid-template-columns: 1.08fr .92fr; gap: 35px; }.hero h1 { font-size: clamp(4.8rem,7.2vw,6.6rem); }.hero-lede { font-size: 1.4rem; }.hero-support { font-size: 1.04rem; }.hero-visual { min-height: 620px; }.hero-phone { width: 306px; }.floating-insight{left:-12px}.floating-food{right:-2px}
  .demo-grid { grid-template-columns: .9fr 1.1fr; gap: 90px; }.parser-card { padding: 26px; }
  .problem-grid { grid-template-columns: repeat(4,1fr); }.problem-card { align-content: start; }.wrong-match { margin-top: 6px; }
  .feature-bento { grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto auto; }.feature-language { grid-column: 1; grid-row: 1 / span 2; min-height: 490px; display:flex;flex-direction:column;justify-content:space-between;padding:34px }.feature-regions { grid-column: 2; grid-row: 1; }.feature-coach { grid-column: 2; grid-row: 2; }.compact-card { grid-column: auto; padding: 26px; }.feature-card h3 { font-size: 1.55rem; }.language-demo { margin-top: 65px; padding: 20px; }.typed-meal { font-size: 1.08rem; }
  .steps-grid { grid-template-columns: repeat(4,1fr); }.step-card { padding: 24px; }.step-card:nth-child(1)::after,.step-card:nth-child(2)::after,.step-card:nth-child(3)::after { content:'→';position:absolute;z-index:3;right:-22px;top:50%;width:28px;height:28px;display:grid;place-items:center;color:var(--green);background:white;border:1px solid var(--line);border-radius:50%;font-size:.7rem }
  .picture-grid { grid-template-columns: .78fr 1.22fr; gap: 75px; }.picture-dashboard { padding: 27px; }.coach-grid { grid-template-columns: .9fr 1.1fr; gap: 80px; }.roadmap-grid { grid-template-columns: repeat(3,1fr); }.comparison-card { padding: 34px; }
  .product-grid { grid-template-columns: .78fr 1.22fr; gap: 75px; }.product-stage { min-height: 700px; }.product-phone { width: 305px; }.product-phone .phone-body { min-height: 592px; }
  .food-cloud { gap: 12px; }.food-cloud span { padding: 13px 19px; font-size: .85rem; }
  .community-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 55px; }.community-visual { margin-top: 0; min-height: 390px; }
  .vision-grid { grid-template-columns: .9fr 1.1fr; gap: 90px; }.vision-mark { min-height: 480px; }.vision-copy p { font-size: 1.08rem; }
  .signup-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; padding: 58px; }.signup-form { margin-top: 0; grid-template-columns: repeat(2,1fr); }.signup-form label:first-child { grid-column:1/-1 }.form-note { text-align:left; }
  .footer-grid { grid-template-columns: 1fr 1.2fr; }
}

@media (min-width: 1180px) {
  .hero-grid { grid-template-columns: 1.12fr .88fr; }.floating-insight{left:-45px}.floating-food{right:-32px}.feature-card{padding:31px}
}

@media (max-width: 370px) {
  .page-width { width: min(100% - 28px,1160px); }.brand { width: 165px; }.hero h1 { font-size: 3rem; }.phone { width: 266px; }.hero-visual { min-height: 570px; }.floating-insight { left: -8px; }.floating-food { right: -7px; }.community-card { padding: 22px; }
}
