:root {
  --ink: #123f44;
  --ink-soft: #255d62;
  --teal: #176d70;
  --teal-bright: #15968d;
  --mint: #a8e5dc;
  --lime: #dff08d;
  --plum: #76529c;
  --coral: #f27964;
  --gold: #e4b85e;
  --paper: #f8f6f3;
  --cream: #f1ede6;
  --white: #fff;
  --muted: #607477;
  --line: rgba(18, 63, 68, .14);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 26px 70px rgba(19, 55, 59, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.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; }
.skip-link { position: fixed; z-index: 1000; top: -70px; left: 16px; padding: 12px 16px; color: var(--ink); background: white; border-radius: 8px; }
.skip-link:focus { top: 14px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(248, 246, 243, .94); border-color: var(--line); box-shadow: 0 8px 24px rgba(18,63,68,.07); backdrop-filter: blur(16px); }
.header-inner { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { width: 120px; overflow: hidden; border-radius: 7px; box-shadow: 0 7px 20px rgba(23,61,65,.13); }
.wordmark img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: clamp(19px, 2.6vw, 36px); }
.site-nav a { position: relative; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 680; text-decoration: none; }
.scrolled .site-nav a { color: var(--ink); }
.site-nav a:not(.nav-demo)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--mint); transition: right .2s; }
.site-nav a:hover::after { right: 0; }
.site-nav .nav-demo { padding: 11px 18px; color: var(--ink); background: var(--mint); border-radius: 999px; }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; background: var(--mint); border: 0; border-radius: 50%; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--ink); border-radius: 2px; }

.hero { position: relative; min-height: 860px; overflow: hidden; padding: 155px 0 0; color: white; background: linear-gradient(137deg, #513566 0%, #245e69 52%, #176d70 100%); }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; bottom: -220px; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; box-shadow: 0 0 0 85px rgba(255,255,255,.025), 0 0 0 170px rgba(255,255,255,.02); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 280px; height: 280px; top: 80px; left: -140px; background: rgba(168,229,220,.08); }
.hero-orb-two { width: 110px; height: 110px; top: 150px; left: 48%; border: 1px solid rgba(168,229,220,.2); }
.hero-grid { position: relative; display: grid; grid-template-columns: .97fr 1.03fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.hero-copy { position: relative; z-index: 2; padding-bottom: 82px; }
.kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--mint); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.kicker > span { width: 26px; height: 1px; background: currentColor; }
.kicker.dark { color: var(--teal); }
.kicker.light { color: var(--mint); }
.hero h1 { margin: 0; max-width: 660px; font: 400 clamp(58px, 6.5vw, 94px)/.89 var(--serif); letter-spacing: -.057em; }
.hero h1 em, .section-heading h2 em, .camera-copy h2 em, .family-copy h2 em { color: var(--lime); font-weight: 400; }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.73); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { min-height: 48px; padding: 13px 21px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--mint); box-shadow: 0 12px 28px rgba(8,43,47,.16); }
.button-quiet { color: white; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.05); }
.button-dark { color: white; background: var(--ink); }
.button-lime { color: var(--ink); background: var(--lime); }
.button-outline { border-color: var(--ink); }
.launch-note { display: flex; align-items: center; gap: 8px; margin: 25px 0 0; color: rgba(255,255,255,.56); font-size: 11px; }
.launch-note span { color: var(--lime); font-size: 8px; }
.hero-visual { position: relative; min-height: 600px; }
.hero-photo { position: absolute; inset: 0 0 0 6%; overflow: hidden; border-radius: 48% 48% 8px 8px; box-shadow: 0 35px 90px rgba(6,36,39,.36); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(13,43,43,.34)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.floating-card { position: absolute; z-index: 3; padding: 14px 17px; display: flex; align-items: center; gap: 12px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.8); border-radius: 14px 3px 14px 3px; box-shadow: 0 15px 34px rgba(6,43,45,.2); backdrop-filter: blur(10px); }
.floating-card div { display: flex; flex-direction: column; }
.floating-card small { color: var(--muted); font-size: 7px; font-weight: 850; letter-spacing: .11em; }
.floating-card strong { margin-top: 4px; font: 400 14px/1.1 var(--serif); }
.mini-icon { width: 35px; height: 35px; display: grid; place-items: center; color: white; background: var(--plum); border-radius: 50%; }
.mini-icon.camera { color: var(--ink); background: var(--mint); }
.taste-card { top: 19%; left: -3%; }
.camera-card { right: -3%; bottom: 18%; }
.promise-seal { position: absolute; z-index: 4; right: -20px; top: -30px; width: 104px; height: 104px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); background: var(--lime); border-radius: 50%; transform: rotate(8deg); box-shadow: 0 14px 28px rgba(19,55,59,.2); }
.promise-seal strong { margin: 2px 0; font: 700 31px var(--serif); }
.promise-seal span { font-size: 7px; font-weight: 850; letter-spacing: .14em; }
.trust-row { position: relative; z-index: 2; min-height: 91px; margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-top: 1px solid rgba(255,255,255,.14); }
.trust-row span { padding: 0 20px; color: rgba(255,255,255,.62); font-size: 11px; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.trust-row span:last-child { border: 0; }
.trust-row b { display: block; margin-bottom: 5px; color: white; font: 400 20px var(--serif); }

.intro-section, .pricing-section { padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading h2, .camera-copy h2, .health-copy h2, .family-copy h2, .demo-copy h2, .waitlist-copy h2 { margin: 0; font: 400 clamp(42px, 5vw, 67px)/.98 var(--serif); letter-spacing: -.045em; }
.section-heading h2 em { color: var(--plum); }
.section-heading > p:last-child { max-width: 680px; margin: 23px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.centered .kicker { justify-content: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 445px; overflow: hidden; padding: 31px; color: white; border-radius: 28px 5px 28px 5px; }
.feature-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -115px; bottom: -120px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025); }
.feature-plum { background: #6e4b8e; }
.feature-teal { background: var(--teal); }
.feature-coral { background: #d96857; }
.feature-number { color: rgba(255,255,255,.6); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.feature-symbol { width: 64px; height: 64px; margin: 42px 0 30px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font: 400 31px var(--serif); }
.feature-card h3 { margin: 0 0 14px; font: 400 29px var(--serif); }
.feature-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; }
.feature-card ul { margin: 24px 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.feature-card li { margin: 9px 0; color: rgba(255,255,255,.86); font-size: 11px; }
.feature-card li::before { content: "✓"; margin-right: 9px; color: var(--lime); font-weight: 900; }

.personalization-section { padding: 115px 0; background: #e3ede8; }
.personalization-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: clamp(55px, 9vw, 120px); }
.personalization-copy h2 { margin: 0; font: 400 clamp(42px, 5vw, 65px)/.98 var(--serif); letter-spacing: -.045em; }
.personalization-copy > p:not(.kicker) { margin: 25px 0 30px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.impact-map { position: relative; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 28px 5px 28px 5px; box-shadow: var(--shadow); }
.impact-profile { width: fit-content; margin: 0 auto; padding: 11px 16px 11px 11px; display: flex; align-items: center; gap: 10px; color: white; background: var(--ink); border-radius: 999px; }
.impact-profile img { width: 34px; height: 34px; border-radius: 50%; }
.impact-profile > span { display: flex; flex-direction: column; }.impact-profile small { color: var(--mint); font-size: 6px; font-weight: 850; letter-spacing: .11em; }.impact-profile strong { margin-top: 3px; font: 400 13px var(--serif); }
.impact-lines { position: relative; height: 45px; margin: 0 12%; border-bottom: 1px solid #bccbc4; }
.impact-lines::before { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: #bccbc4; }
.impact-lines span { position: absolute; bottom: -5px; width: 9px; height: 9px; background: var(--mint); border: 2px solid white; border-radius: 50%; }.impact-lines span:nth-child(1){left:0}.impact-lines span:nth-child(2){left:33%}.impact-lines span:nth-child(3){left:66%}.impact-lines span:nth-child(4){right:0}
.impact-results { margin-top: 13px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.impact-results article { min-height: 92px; padding: 13px; display: grid; grid-template-columns: 25px 1fr; gap: 8px; background: #f3f1ed; border-radius: 10px 3px 10px 3px; }
.impact-results b { color: var(--teal-bright); font-size: 7px; letter-spacing: .1em; }.impact-results article > span { display: flex; flex-direction: column; }.impact-results strong { font: 400 15px var(--serif); }.impact-results small { margin-top: 5px; color: var(--muted); font-size: 7px; line-height: 1.45; }
.impact-map > p { margin: 16px 0 0; padding: 12px 14px; color: #675d62; background: #eee6ef; border-left: 3px solid var(--plum); font-size: 8px; line-height: 1.55; }

.camera-section { padding: 120px 0; background: #e8e3df; }
.camera-grid { display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: clamp(55px, 9vw, 120px); }
.camera-copy > p:not(.kicker):not(.precision-note) { margin: 27px 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.camera-copy h2 em { color: var(--plum); }
.mode-list { display: grid; gap: 1px; margin: 29px 0; }
.mode-list span { padding: 14px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.mode-list b { color: var(--teal-bright); font-size: 9px; letter-spacing: .12em; }
.precision-note { padding: 15px 17px; color: #5d5b56; background: rgba(255,255,255,.6); border-left: 3px solid var(--gold); font-size: 11px; line-height: 1.55; }
.text-link { display: inline-flex; gap: 12px; margin-top: 10px; color: var(--ink); font-size: 12px; font-weight: 850; text-underline-offset: 5px; }
.camera-preview { position: relative; padding: 18px; background: var(--ink); border-radius: 40px 8px 40px 8px; box-shadow: var(--shadow); }
.scan-frame { position: relative; height: 500px; overflow: hidden; border-radius: 27px 5px 12px 5px; }
.scan-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,37,39,.06), rgba(11,37,39,.3)); }
.scan-frame img { width: 100%; height: 100%; object-fit: cover; }
.corner { position: absolute; z-index: 2; width: 50px; height: 50px; border-color: var(--lime); border-style: solid; }
.corner-a { top: 24px; left: 24px; border-width: 3px 0 0 3px; }
.corner-b { top: 24px; right: 24px; border-width: 3px 3px 0 0; }
.corner-c { bottom: 24px; left: 24px; border-width: 0 0 3px 3px; }
.corner-d { right: 24px; bottom: 24px; border-width: 0 3px 3px 0; }
.food-label { position: absolute; z-index: 3; padding: 8px 11px; color: var(--ink); background: rgba(223,240,141,.9); border-radius: 999px; font-size: 9px; font-weight: 800; box-shadow: 0 6px 20px rgba(13,45,47,.18); }
.food-label::before { content: ""; width: 7px; height: 7px; margin-right: 6px; display: inline-block; background: var(--teal); border-radius: 50%; }
.label-a { top: 31%; left: 22%; }
.label-b { right: 13%; bottom: 27%; }
.analysis-strip { min-height: 96px; padding: 17px 10px 3px; display: grid; grid-template-columns: 1fr .8fr auto; align-items: center; gap: 18px; color: white; }
.analysis-strip > div:first-child { display: flex; flex-direction: column; }
.analysis-strip small { color: rgba(255,255,255,.5); font-size: 7px; font-weight: 850; letter-spacing: .12em; }
.analysis-strip strong { margin-top: 5px; font: 400 20px var(--serif); }
.analysis-strip button { padding: 10px 14px; color: var(--ink); background: var(--mint); border: 0; border-radius: 999px; font-size: 9px; font-weight: 850; }
.confidence { display: flex; gap: 3px; }
.confidence span, .confidence i { width: 26px; height: 4px; background: var(--mint); border-radius: 3px; }
.confidence i { background: rgba(255,255,255,.2); }

.health-section { padding: 130px 0; color: white; background: #183f47; }
.health-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.health-visual { position: relative; }
.health-dashboard { padding: 25px; color: var(--ink); background: #f7f4f4; border: 7px solid rgba(255,255,255,.12); border-radius: 34px 6px 34px 6px; box-shadow: 0 30px 80px rgba(0,0,0,.28); }
.dashboard-head { display: flex; justify-content: space-between; align-items: center; }
.dashboard-head div { display: flex; flex-direction: column; }
.dashboard-head small, .trend-card small, .dashboard-metrics small { color: #778789; font-size: 7px; font-weight: 850; letter-spacing: .11em; }
.dashboard-head strong { margin-top: 4px; font: 400 21px var(--serif); }
.dashboard-head > span { padding: 6px 9px; color: #6b526d; background: #e8dfea; border-radius: 999px; font-size: 8px; font-weight: 800; }
.trend-card { margin: 20px 0 13px; padding: 17px; display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; background: white; border: 1px solid var(--line); border-radius: 15px 3px 15px 3px; }
.trend-card > div { display: flex; flex-direction: column; }
.trend-card strong { margin: 5px 0; font: 400 17px var(--serif); }
.trend-card em { color: #819091; font-size: 8px; font-style: normal; }
.trend-card svg { width: 100%; }
.grid-line { fill: none; stroke: #e7e6e2; stroke-width: 1; }
.area-line { fill: rgba(21,150,141,.13); stroke: none; }
.trend-line { fill: none; stroke: var(--teal-bright); stroke-width: 3; }
.dashboard-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.dashboard-metrics > div { position: relative; padding: 13px 12px 13px 29px; display: flex; flex-direction: column; background: #efede9; border-radius: 10px; }
.dashboard-metrics strong { margin-top: 5px; font-size: 11px; }
.metric-dot { position: absolute; left: 12px; top: 16px; width: 8px; height: 8px; border-radius: 50%; }
.metric-dot.teal { background: var(--teal-bright); }.metric-dot.plum { background: var(--plum); }.metric-dot.coral { background: var(--coral); }.metric-dot.gold { background: var(--gold); }
.source-pill { position: absolute; padding: 11px 14px; color: var(--ink); background: var(--lime); border-radius: 999px; box-shadow: 0 10px 26px rgba(0,0,0,.18); font-size: 9px; font-weight: 850; }
.scale-pill { left: -28px; bottom: 24%; }.result-pill { right: -32px; top: 26%; background: var(--mint); }
.health-copy > p:not(.kicker) { color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
.health-points { margin-top: 31px; }
.health-points article { padding: 20px 0; display: grid; grid-template-columns: 38px 1fr; gap: 15px; border-top: 1px solid rgba(255,255,255,.14); }
.health-points article > span { color: var(--mint); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.health-points h3 { margin: 0 0 7px; font: 400 18px var(--serif); }
.health-points p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.55; }

.family-section { padding: 120px 0; background: #efe7d9; }
.family-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.family-copy h2 em { color: var(--plum); }
.family-copy > p:not(.kicker) { margin: 25px 0 31px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.family-meal { position: relative; padding: 38px; background: #e4d8c6; border-radius: 50% 50% 10px 10px; }
.base-dish { min-height: 180px; padding: 35px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; background: linear-gradient(135deg,#c5523f,#8b372c); border: 9px solid #f8f4eb; border-radius: 50%; box-shadow: 0 16px 35px rgba(90,52,41,.23); }
.base-dish span, .meal-branches span { font-size: 7px; font-weight: 850; letter-spacing: .13em; }
.base-dish strong { margin: 8px 0 5px; font: 400 25px var(--serif); }
.base-dish small { color: rgba(255,255,255,.72); font-size: 9px; }
.meal-branches { position: relative; margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.meal-branches::before { content: ""; position: absolute; top: -31px; left: 16%; right: 16%; height: 1px; background: #b7a990; }
.meal-branches article { position: relative; min-height: 105px; padding: 16px 12px; display: flex; flex-direction: column; background: rgba(255,255,255,.7); border-radius: 12px 3px 12px 3px; }
.meal-branches article::before { content: ""; position: absolute; top: -32px; left: 50%; width: 1px; height: 32px; background: #b7a990; }
.meal-branches span { color: var(--plum); }
.meal-branches strong { margin: 8px 0 4px; font: 400 15px var(--serif); }
.meal-branches small { color: #786f65; font-size: 8px; }

.demo-section { padding: 120px 0; overflow: hidden; color: white; background: linear-gradient(140deg,#684982,#194f59); }
.demo-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(55px, 8vw, 105px); }
.demo-copy > p:not(.kicker):not(.demo-disclaimer) { margin: 27px 0; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.7; }
.demo-disclaimer { padding-left: 13px; color: rgba(255,255,255,.53); border-left: 2px solid var(--coral); font-size: 10px; line-height: 1.5; }
.demo-device { height: 690px; overflow: hidden; background: #e7eeee; border: 8px solid rgba(255,255,255,.17); border-radius: 26px; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.browser-bar { height: 39px; padding: 0 14px; display: flex; align-items: center; gap: 6px; background: #f5f3f1; }
.browser-bar > span { width: 8px; height: 8px; background: #d98a7c; border-radius: 50%; }
.browser-bar > span:nth-child(2) { background: #e4bc6b; }.browser-bar > span:nth-child(3) { background: #80b8a8; }
.browser-bar small { margin-left: 13px; padding: 5px 20px; color: #677678; background: white; border-radius: 999px; font-size: 8px; }
.demo-device iframe { width: 100%; height: calc(100% - 39px); border: 0; background: #dbe6e7; }

.pricing-section { background: var(--paper); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; padding: 35px 30px; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: 22px 4px 22px 4px; }
.price-card.featured { color: white; background: var(--ink); transform: translateY(-12px); box-shadow: var(--shadow); }
.price-card > p { margin: 0; color: var(--teal); font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.price-card.featured > p { color: var(--mint); }
.price-card h3 { margin: 18px 0 4px; font: 400 43px var(--serif); }
.price-card h3 em { font: 400 12px var(--sans); }
.price-card > small { color: var(--muted); font-size: 9px; }.price-card.featured > small { color: rgba(255,255,255,.55); }
.price-card ul { flex: 1; margin: 26px 0 30px; padding: 22px 0 0; list-style: none; border-top: 1px solid var(--line); }
.price-card.featured ul { border-color: rgba(255,255,255,.16); }
.price-card li { margin: 13px 0; color: var(--muted); font-size: 11px; }
.price-card.featured li { color: rgba(255,255,255,.74); }
.price-card li::before { content: "✓"; margin-right: 10px; color: var(--teal-bright); font-weight: 900; }
.price-card.featured li::before { color: var(--lime); }
.price-card.featured .button-primary { background: var(--lime); }
.popular { position: absolute; top: 14px; right: 14px; padding: 6px 8px; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: 6px; font-weight: 900; letter-spacing: .11em; }

.waitlist-section { padding: 105px 0; color: white; background: var(--teal); }
.waitlist-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.waitlist-copy > p:last-child { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.65; }
.waitlist-form { padding: 31px; color: var(--ink); background: white; border-radius: 23px 5px 23px 5px; box-shadow: 0 26px 65px rgba(9,52,54,.26); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.waitlist-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.waitlist-form label > span { font-size: 9px; font-weight: 800; }
.waitlist-form input, .waitlist-form select { width: 100%; min-height: 46px; padding: 11px 13px; color: var(--ink); background: #f4f2ef; border: 1px solid #dcdad5; border-radius: 7px; font-size: 12px; }
.waitlist-form .consent { flex-direction: row; align-items: flex-start; gap: 9px; }
.waitlist-form .consent input { flex: 0 0 auto; width: 16px; min-height: 16px; margin: 0; }
.waitlist-form .consent span { color: var(--muted); font-weight: 500; line-height: 1.45; }
.waitlist-form .button { width: 100%; border: 0; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 18px; margin: 11px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-status.success { color: #18736c; }.form-status.error { color: #b34334; }

.site-footer { padding: 65px 0 28px; color: rgba(255,255,255,.72); background: #102f34; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .6fr 1.4fr; gap: 55px; padding-bottom: 45px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid img { width: 175px; border-radius: 8px; }
.footer-grid p { margin: 11px 0 0; font-size: 10px; line-height: 1.6; }
.footer-grid strong { margin-bottom: 15px; color: white; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a { margin: 5px 0; font-size: 10px; text-decoration: none; }
.footer-grid a:hover { color: var(--mint); }
.footer-bottom { padding-top: 21px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .button { transition: none; } }

/* Legal and utility pages */
.legal-page { padding: 150px 0 100px; }
.legal-intro { max-width: 810px; }
.legal-intro h1 { margin: 0; font: 400 clamp(48px, 6vw, 74px)/.95 var(--serif); letter-spacing: -.045em; }
.legal-intro > p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.legal-meta { padding: 12px 14px; display: inline-block; color: var(--ink); background: #e7eee7; border-radius: 999px; font-size: 10px; font-weight: 750; }
.legal-content { max-width: 810px; margin-top: 58px; }
.legal-content h2 { margin: 42px 0 12px; font: 400 28px var(--serif); }
.legal-content h3 { margin: 27px 0 8px; font-size: 14px; }
.legal-content p, .legal-content li { color: #52686a; font-size: 13px; line-height: 1.75; }
.legal-callout { padding: 18px 20px; background: #efe9f1; border-left: 4px solid var(--plum); }
.utility-page { min-height: 75vh; padding: 170px 0 100px; text-align: center; }
.utility-page h1 { margin: 0; font: 400 72px var(--serif); }
.utility-page p { color: var(--muted); }

@media (max-width: 1020px) {
  .hero { min-height: 800px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1 { font-size: clamp(54px, 7vw, 72px); }
  .hero-visual { min-height: 525px; }
  .feature-card { padding: 25px; }
  .camera-grid, .health-grid, .family-grid, .demo-layout { gap: 55px; }
  .source-pill { display: none; }
  .demo-layout { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 700px); }
  .header-inner { height: 72px; }
  .wordmark { width: 112px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 64px; left: 16px; right: 16px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 2px; background: #f9f7f3; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a, .scrolled .site-nav a { padding: 11px; color: var(--ink); }
  .site-nav .nav-demo { margin-top: 5px; text-align: center; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 35px; }
  .hero-visual { min-height: 580px; }
  .hero-photo { left: 0; }
  .trust-row { grid-template-columns: 1fr 1fr; padding: 15px 0; }
  .trust-row span { min-height: 60px; padding: 12px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-row span:nth-child(2) { border-right: 0; }.trust-row span:nth-child(n+3) { border-bottom: 0; }
  .intro-section, .personalization-section, .camera-section, .health-section, .family-section, .demo-section, .pricing-section { padding: 85px 0; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-symbol { margin: 30px 0 22px; }
  .personalization-grid, .camera-grid, .health-grid, .family-grid, .demo-layout, .waitlist-grid { grid-template-columns: 1fr; }
  .camera-preview { order: -1; }
  .health-visual { order: 2; }
  .demo-device { height: 720px; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 24px, 480px); }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: 49px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-photo { inset: 0; }
  .taste-card { top: 14%; left: -4px; }.camera-card { right: -4px; bottom: 12%; }
  .floating-card { padding: 10px; }.floating-card strong { font-size: 12px; }
  .promise-seal { width: 75px; height: 75px; right: -5px; top: -17px; }.promise-seal strong { font-size: 22px; }
  .trust-row span { font-size: 9px; }
  .section-heading h2, .camera-copy h2, .health-copy h2, .family-copy h2, .demo-copy h2, .waitlist-copy h2 { font-size: 40px; }
  .scan-frame { height: 370px; }
  .analysis-strip { grid-template-columns: 1fr auto; }.confidence { display: none; }
  .family-meal { padding: 18px 12px; }
  .base-dish { min-height: 150px; padding: 20px; }
  .meal-branches { gap: 5px; }
  .meal-branches article { padding: 12px 8px; }.meal-branches strong { font-size: 12px; }
  .demo-device { height: 660px; border-width: 4px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .waitlist-form { padding: 22px 17px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
