/* pregAI landing - design tokens mirrored from packages/theme */
:root {
  /* Brand - Organic Sage */
  --primary: #8EB07C;
  --primary-dark: #2E7D32;
  --primary-light: #F1F7F3;
  --sage-deep: #5C7A4E;
  --sage-cta: #5F8A4C;
  /* Accent - Coral Soft */
  --coral: #FF9F85;
  --coral-strong: #FF9168;
  --coral-container: #FCEDE6;
  --on-coral: #B45309;
  /* Semantic */
  --safe: #22C55E;
  --safe-container: #DCFCE7;
  --on-safe-container: #166534;
  --avoid-container: #FEE2E2;
  --on-avoid-container: #991B1B;
  --mod-container: #E9EEFC;
  --on-mod-container: #3B4CB8;
  /* Surfaces & text */
  --background: #FCFBF9;
  --white: #FFFFFF;
  --text-primary: #1F2937;
  --text-muted: #6B7280;
  --outline: #E5E7EB;
  --outline-variant: #F3F4F6;
  /* Source brand accents */
  --who: #0093D5;
  --nhs: #005EB4;
  --has: #12807A;
  --anses: #2C6E9B;
  --efsa: #5C9A2E;
  /* Radius */
  --r-xs: 8px; --r-s: 12px; --r-m: 16px; --r-l: 24px; --r-xl: 32px; --r-pill: 100px;
  /* Spacing */
  --s-xs: 4px; --s-s: 8px; --s-sm: 12px; --s-m: 16px; --s-l: 24px; --s-xl: 32px; --s-xxl: 48px; --s-xxxl: 64px;
  /* Gradients */
  --grad-header: linear-gradient(135deg, #9BBE88 0%, #86A977 52%, #7BA06C 100%);
  --grad-cta: linear-gradient(225deg, #9DC089 0%, #79A263 100%);
  --grad-tip: linear-gradient(135deg, #EEF4EA 0%, #E3EEDD 100%);
  /* Shadows */
  --sh-card: 0 2px 8px rgba(0,0,0,0.05);
  --sh-btn: 0 12px 24px -8px rgba(76,159,112,0.30);
  --sh-elevated: 0 4px 20px rgba(0,0,0,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--s-l); }
.section { padding: var(--s-xxxl) 0; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: var(--s-sm);
}
h1, h2, h3 { letter-spacing: -0.3px; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
.lead { font-size: 1.125rem; line-height: 1.6; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-s);
  font-size: 1.0625rem; font-weight: 700; padding: 16px 28px; border-radius: var(--r-l);
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-cta); color: var(--white); box-shadow: var(--sh-btn); }
.btn-light { background: var(--white); color: var(--sage-cta); box-shadow: var(--sh-elevated); }
.btn-outline { background: var(--white); color: var(--text-primary); border: 1px solid var(--outline); }
.btn-block { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,251,249,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline-variant);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: var(--s-s); font-weight: 800; font-size: 1.25rem; }
.brand img { width: 36px; height: 36px; border-radius: var(--r-s); }
.nav-links { display: flex; align-items: center; gap: var(--s-l); }
.nav-links a { font-weight: 600; color: var(--text-muted); font-size: .95rem; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.nav-cta { background: var(--grad-cta); color: var(--white); padding: 10px 18px; border-radius: var(--r-pill); font-size: .9rem; box-shadow: var(--sh-btn); }
.nav-links a.nav-cta:hover { color: var(--white); }

/* Language switcher */
.lang { display: inline-flex; background: var(--outline-variant); border-radius: var(--r-pill); padding: 3px; }
.lang button {
  border: none; background: transparent; cursor: pointer; font: inherit; font-size: .78rem; font-weight: 700;
  padding: 5px 10px; border-radius: var(--r-pill); color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px;
  transition: color .15s ease;
}
.lang button:hover { color: var(--text-primary); }
.lang button.active { background: var(--white); color: var(--sage-cta); box-shadow: var(--sh-card); }

/* Hero */
.hero { padding: var(--s-xxxl) 0 var(--s-xxl); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-xxl); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: var(--s-s); background: var(--safe-container);
  color: var(--on-safe-container); font-size: .8rem; font-weight: 700; padding: 7px 14px; border-radius: var(--r-pill);
  margin-bottom: var(--s-l);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--safe); box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.hero h1 { margin-bottom: var(--s-m); }
.hero h1 .accent { color: var(--sage-cta); }
.hero .lead { margin-bottom: var(--s-l); max-width: 42ch; }
.hero-note { margin-top: var(--s-s); font-size: .85rem; color: var(--text-muted); }
.hero-trust { margin-top: var(--s-m); font-size: .9rem; color: var(--sage-deep); font-weight: 600; display: flex; align-items: flex-start; gap: var(--s-s); max-width: 46ch; }
.hero-trust .shield { flex: none; margin-top: 1px; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--safe-container); color: var(--on-safe-container); font-size: .7rem; font-weight: 800; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: ""; position: absolute; inset: -8% -4% 4%; z-index: 0;
  background: radial-gradient(60% 55% at 50% 40%, rgba(142,176,124,.28), transparent 70%);
  filter: blur(8px);
}
.hero-visual .device { position: relative; z-index: 1; }

/* Waitlist form (inline) */
.waitlist { display: grid; gap: var(--s-s); margin: 0; }
.waitlist-row { display: flex; gap: var(--s-s); }
.waitlist-row input[type=email] { flex: 1; min-width: 0; }
.waitlist input[type=email] {
  width: 100%; font: inherit; font-size: 1rem; padding: 15px 18px; border-radius: var(--r-l);
  border: 1px solid var(--outline); background: var(--white); color: var(--text-primary);
}
.waitlist input::placeholder { color: var(--text-muted); }
.waitlist input:focus { outline: none; border-color: var(--sage-cta); box-shadow: 0 0 0 3px var(--primary-light); }
.waitlist .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.waitlist button[disabled] { opacity: .6; cursor: default; transform: none; }
.waitlist-ok { color: var(--on-safe-container); font-weight: 700; }
.waitlist-err { color: var(--on-avoid-container); font-weight: 600; }

/* ===== App mockup device (reproduced from Claude Design + app goldens) ===== */
.device {
  position: relative; width: 100%; max-width: 274px; margin: 0 auto;
  aspect-ratio: 9 / 19.2; border-radius: 40px; background: var(--white);
  border: 1px solid var(--outline);
  box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 44px 80px -34px rgba(0,0,0,.45);
  padding: 7px; flex: none;
}
.device::before {
  content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 18px; background: var(--text-primary); opacity: .9;
  border-radius: 0 0 12px 12px; z-index: 3;
}
.screen {
  position: relative; width: 100%; height: 100%; border-radius: 33px; overflow: hidden;
  background: var(--background); text-align: left;
}

/* Home screen */
.screen-home { display: flex; flex-direction: column; }
.home-header {
  background: var(--grad-header); color: var(--white);
  padding: 40px 18px 16px; border-radius: 0 0 26px 26px;
}
.hh-top { display: flex; align-items: flex-start; justify-content: space-between; }
.hh-greeting { font-size: 1.25rem; font-weight: 800; }
.hh-gear { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: rgba(255,255,255,.22); color: var(--white); }
.hh-tri {
  display: inline-block; margin-top: 12px; background: rgba(255,255,255,.24); color: var(--white);
  font-size: .62rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill);
}
.hh-week { display: block; margin-top: 8px; font-size: 1rem; font-weight: 800; }
.hh-progress { display: block; margin-top: 8px; height: 5px; border-radius: 4px; background: rgba(255,255,255,.28); overflow: hidden; }
.hh-progress-fill { display: block; height: 100%; width: 24%; background: var(--white); border-radius: 4px; }

.home-body { flex: 1; padding: 16px 16px 0; }
.mock-eyebrow { font-size: .6rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 8px; }
.home-body .mock-eyebrow + * { margin-bottom: 18px; }

.analyze-card {
  display: flex; align-items: center; gap: 11px; background: var(--grad-cta);
  border-radius: 18px; padding: 15px 14px; color: var(--white); box-shadow: var(--sh-btn);
}
.analyze-ic { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.22); color: var(--white); }
.analyze-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.analyze-title { font-weight: 800; font-size: .95rem; }
.analyze-sub { font-size: .72rem; color: rgba(255,255,255,.9); line-height: 1.3; }
.analyze-chevron { flex: none; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.22); font-size: 1.05rem; line-height: 1; }

.tip-card { background: var(--grad-tip); border-radius: 18px; padding: 14px; }
.tip-head { display: flex; align-items: center; gap: 8px; }
.tip-ic { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--sage-cta); color: var(--white); }
.tip-tri { font-size: .58rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--sage-deep); }
.tip-sources { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; background: var(--white); color: var(--sage-deep); font-size: .62rem; font-weight: 700; padding: 4px 9px; border-radius: var(--r-pill); box-shadow: var(--sh-card); }
.tip-sources .ts-ic { font-size: .7rem; }
.tip-title { display: block; margin-top: 12px; font-size: 1rem; font-weight: 800; color: var(--text-primary); }
.tip-body { margin-top: 4px; font-size: .78rem; line-height: 1.45; color: #4B5563; }

.home-nav {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-top: 1px solid var(--outline-variant); padding: 10px 30px 12px;
}
.hn-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--text-muted); }
.hn-item.active { color: var(--sage-cta); }
.hn-item em { font-style: normal; font-size: .56rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.hn-fab {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad-cta); color: var(--white);
  display: grid; place-items: center; font-size: 1.6rem; font-weight: 400; box-shadow: 0 10px 22px -6px rgba(76,159,112,.55);
}

/* Menu scan result screen (hero) - mirrors the app's MenuResultView */
.screen-menu { padding: 30px 16px 16px; overflow: hidden; }
.menu-photo {
  display: grid; place-items: center; width: 100%; height: 68px;
  background: linear-gradient(160deg, #EEF5EC, #E4EFE0); border-radius: 14px; color: var(--sage-cta);
  margin-bottom: 12px;
}
.menu-title { display: block; font-weight: 800; font-size: 1.02rem; color: var(--text-primary); }
.menu-summary { margin-top: 4px; font-size: .78rem; line-height: 1.4; color: var(--text-muted); }
.menu-count { display: block; margin: 12px 0 8px; font-weight: 800; font-size: .82rem; color: var(--text-primary); }
.dish-card { border: 1px solid var(--outline-variant); background: var(--white); border-radius: 12px; margin-bottom: 8px; }
.dish-row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-s); padding: 10px 12px; }
.dish-name { font-weight: 700; font-size: .88rem; color: var(--text-primary); }
.dish-row .res-badge { flex: none; }
.dish-questions { border-top: 1px solid var(--outline-variant); padding: 8px 12px 10px; }
.dq-label { font-size: .64rem; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--text-muted); }
.dq-item { display: flex; gap: 6px; margin-top: 5px; font-size: .74rem; line-height: 1.35; color: var(--text-primary); }
.dq-bullet { color: var(--sage-cta); font-weight: 800; }
.screen-menu .res-card { margin-top: 10px; }

/* Result screen (safe / moderation / avoid) */
.screen-result { padding: 34px 16px 16px; overflow: hidden; }
.res-photo {
  display: grid; place-items: center; width: 100%; aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #EEF5EC, #E4EFE0); border-radius: 16px; color: var(--sage-cta);
  margin-bottom: 14px; background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* Dish photos layer over the gradient fallback (shown if the file is missing) */
.dish-camembert { background-image: url('../img/dishes/camembert.webp'), linear-gradient(160deg, #EEF5EC, #E4EFE0); }
.dish-lemon-pie { background-image: url('../img/dishes/lemon-meringue-pie.jpg'), linear-gradient(160deg, #EEF5EC, #E4EFE0); }
.res-head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--s-s); }
.res-titles { display: flex; flex-direction: column; }
.res-dish { font-weight: 800; font-size: 1.02rem; color: var(--text-primary); line-height: 1.2; }
.res-brand { font-size: .78rem; color: var(--text-muted); }
.res-badge {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-size: .66rem; font-weight: 700; padding: 5px 10px; border-radius: var(--r-pill);
}
.res-badge.safe { background: var(--safe-container); color: var(--on-safe-container); }
.res-badge.avoid { background: var(--avoid-container); color: var(--on-avoid-container); }
.res-badge.moderation { background: var(--mod-container); color: var(--on-mod-container); }
.res-badge .ic { font-size: .72rem; }
.res-desc { margin-top: 12px; color: var(--text-primary); font-size: .88rem; line-height: 1.45; }
.res-section { margin-top: 16px; font-weight: 800; font-size: .88rem; color: var(--text-primary); }
.res-card { display: flex; gap: var(--s-s); margin-top: 12px; padding: 12px; border-radius: var(--r-m); font-size: .78rem; line-height: 1.4; }
.res-card.safe { background: var(--safe-container); color: var(--on-safe-container); }
.res-card.info { background: var(--white); color: var(--text-muted); border: 1px solid var(--outline); }
.res-card .ic { flex: none; font-weight: 800; }
.res-point { display: flex; gap: var(--s-s); margin-top: 10px; align-items: flex-start; }
.res-point .ic-x { flex: none; color: var(--on-avoid-container); font-weight: 800; font-size: .95rem; line-height: 1.2; }
.rp-title { display: block; color: var(--on-avoid-container); font-weight: 700; font-size: .8rem; }
.res-point p { color: var(--text-muted); font-size: .76rem; line-height: 1.4; margin-top: 2px; }

/* Personalized tracking card (coral) */
.res-track { display: flex; gap: 10px; margin-top: 14px; padding: 13px; border-radius: var(--r-m); background: var(--coral-container); }
.rt-ic { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--coral); color: var(--white); font-size: .85rem; }
.rt-label { display: block; font-size: .58rem; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; color: var(--on-coral); }
.rt-title { display: block; margin-top: 2px; font-weight: 800; font-size: .9rem; color: var(--text-primary); }
.res-track p { margin-top: 4px; font-size: .76rem; line-height: 1.45; color: #57534E; }

/* Question card (coral left border) */
.res-question { display: flex; gap: 9px; margin-top: 10px; padding: 12px 13px; border-radius: var(--r-m); background: var(--white); border: 1px solid var(--outline-variant); border-left: 4px solid var(--coral); box-shadow: var(--sh-card); }
.rq-ic { flex: none; color: var(--coral-strong); margin-top: 2px; }
.rq-title { display: block; font-weight: 700; font-size: .82rem; color: var(--text-primary); line-height: 1.3; }
.res-question p { margin-top: 3px; font-size: .74rem; line-height: 1.4; color: var(--text-muted); }

/* ===== Sources trust bar ===== */
.sources-bar-wrap { padding: var(--s-l) 0 var(--s-s); }
.sources-bar-title { text-align: center; font-size: .95rem; font-weight: 600; color: var(--text-muted); margin-bottom: var(--s-l); }
.sources-bar { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s-m); }
.src-chip {
  display: inline-flex; align-items: center; justify-content: center; height: 58px; padding: 0 var(--s-m);
  background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--r-m); box-shadow: var(--sh-card);
}
.src-logo { height: 28px; width: auto; max-width: 132px; object-fit: contain; display: block; }
.src-logo-text { color: var(--nhs); font-weight: 800; font-size: .95rem; letter-spacing: -.2px; line-height: 1.1; }
.src-chip .src-logo-text { font-size: .85rem; white-space: nowrap; }

/* Source cards (detailed) */
.source-cards { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-m); margin-top: var(--s-xl); }
.source-card {
  display: flex; flex-direction: column; gap: var(--s-m); align-items: flex-start;
  background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--r-l);
  padding: var(--s-l); box-shadow: var(--sh-card);
}
.src-logo-tile { display: flex; align-items: center; height: 44px; }
.src-logo-tile img { height: 38px; width: auto; max-width: 100%; object-fit: contain; display: block; }
.src-topic { font-size: .9rem; color: var(--text-muted); line-height: 1.45; }
.source-note { text-align: center; margin-top: var(--s-l); font-size: .8rem; color: var(--text-muted); }

/* Problem */
.problem { background: var(--grad-tip); border-radius: var(--r-xl); }
.problem-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-xxl); align-items: center; }
.problem-points { list-style: none; margin-top: var(--s-l); display: grid; gap: var(--s-sm); }
.problem-points li { display: flex; gap: var(--s-sm); align-items: flex-start; font-weight: 600; }
.problem-points .x { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--avoid-container); color: var(--on-avoid-container); display: grid; place-items: center; font-size: .85rem; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-l); margin-top: var(--s-xl); }
.step { background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--r-l); padding: var(--s-l); box-shadow: var(--sh-card); }
.step .num {
  width: 44px; height: 44px; border-radius: var(--r-m); background: var(--primary-light); color: var(--sage-cta);
  display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; margin-bottom: var(--s-m);
}
.step h3 { margin-bottom: var(--s-s); }
.step p { color: var(--text-muted); }
.how-head { text-align: center; max-width: 44ch; margin: 0 auto; }

/* Features */
.features-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-xxl); align-items: center; }
.feature-list { list-style: none; margin-top: var(--s-l); display: grid; gap: var(--s-l); }
.feature-list li { display: flex; gap: var(--s-m); align-items: flex-start; }
.feat-ic { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--safe-container); color: var(--on-safe-container); display: grid; place-items: center; font-size: .85rem; font-weight: 800; margin-top: 2px; }
.feat-title { display: block; font-weight: 700; font-size: 1.05rem; color: var(--text-primary); margin-bottom: 3px; }
.feature-list p { color: var(--text-muted); font-size: .98rem; line-height: 1.5; }

/* Offer */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-xxl); align-items: center; }
.offer-card {
  background: var(--white); border-radius: var(--r-xl); padding: var(--s-xl); box-shadow: var(--sh-elevated);
  border: 1px solid var(--outline-variant); position: relative;
}
.guarantee { text-align: center; font-size: .85rem; color: var(--text-muted); margin-top: var(--s-sm); }

.nav-cta[hidden] { display: none; }

/* Confirmation page, still the success_url of the live Stripe payment links */
.offer-launch { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--sh-elevated); }
.launch-points { list-style: none; margin: var(--s-m) 0 var(--s-l); display: grid; gap: var(--s-s); }
.launch-points li { position: relative; padding-left: 26px; color: var(--text-primary); font-size: .95rem; }
.launch-points li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--safe-container); color: var(--on-safe-container); display: grid; place-items: center; font-size: .7rem; font-weight: 800; }

/* Plans */
.plans { list-style: none; display: grid; gap: var(--s-sm); margin-top: var(--s-l); }
.plan {
  display: flex; align-items: center; gap: var(--s-sm);
  background: var(--white); border: 1px solid var(--outline-variant); border-radius: var(--r-m);
  padding: var(--s-m) var(--s-l);
}
.plan.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.plan-name { font-weight: 700; }
.plan-badge {
  font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--safe-container); color: var(--on-safe-container); text-transform: uppercase; letter-spacing: .5px;
}
.plan-price { margin-left: auto; display: flex; align-items: baseline; gap: 2px; }
.price-sm { font-size: 1.5rem; font-weight: 800; color: var(--sage-cta); letter-spacing: -.5px; }
.price-unit { color: var(--text-muted); font-weight: 600; }
.plan-note { margin-top: var(--s-m); font-size: .88rem; color: var(--text-muted); }

/* Closing CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad-header); border-radius: var(--r-xl); color: var(--white);
  text-align: center; max-width: 820px; margin: 0 auto; padding: var(--s-xxl) var(--s-l);
}
.cta-glow { position: absolute; inset: -40% 30% auto; height: 120%; background: radial-gradient(50% 60% at 50% 0, rgba(255,255,255,.25), transparent 70%); pointer-events: none; }
.cta-band h2 { margin-bottom: var(--s-sm); position: relative; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 48ch; margin: 0 auto var(--s-l); position: relative; }
.cta-form { max-width: 460px; margin: 0 auto; position: relative; }
.cta-form .waitlist-row input[type=email] { border: none; }
.cta-note { margin-top: var(--s-m); font-size: .85rem; color: rgba(255,255,255,.85); position: relative; }
.cta-band .waitlist-ok, .cta-band .waitlist-err { color: var(--white); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: var(--s-xl); }
.faq-item { border: 1px solid var(--outline-variant); border-radius: var(--r-m); margin-bottom: var(--s-sm); background: var(--white); overflow: hidden; }
.faq-item summary { cursor: pointer; padding: var(--s-m) var(--s-l); font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-m); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--sage-cta); font-size: 1.5rem; font-weight: 400; }
.faq-item[open] summary::after { content: '\2013'; }
.faq-item p { padding: 0 var(--s-l) var(--s-m); color: var(--text-muted); }

/* Footer */
.footer { border-top: 1px solid var(--outline-variant); padding: var(--s-xl) 0; }
.footer-inner { display: flex; flex-direction: column; gap: var(--s-sm); align-items: center; text-align: center; }
.footer .brand { font-size: 1.1rem; }
.footer p { color: var(--text-muted); font-size: .85rem; max-width: 60ch; }
.footer .disclaimer { font-size: .78rem; opacity: .85; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-m); margin-top: var(--s-xs); }
.footer-legal a { color: var(--text-muted); font-size: .85rem; font-weight: 600; }
.footer-legal a:hover { color: var(--sage-deep); text-decoration: underline; }

[hidden] { display: none !important; }

/* Responsive */
@media (max-width: 940px) {
  .source-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid, .problem-grid, .offer-grid, .features-grid, .trust-grid { grid-template-columns: 1fr; }
  .features-grid .hero-visual { order: -1; }
  .problem-grid .device { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .nav-links .nav-link { display: none; }
  .waitlist-row { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-inner { height: 60px; gap: var(--s-s); }
  .brand { font-size: 1.05rem; }
  .brand img { width: 30px; height: 30px; }
  .nav-links { gap: var(--s-sm); }
  .nav-links a.nav-cta { padding: 8px 12px; font-size: .8rem; white-space: nowrap; }
  .lang button { padding: 4px 7px; font-size: .7rem; }
}
@media (max-width: 400px) {
  .brand span { display: none; }
}
@media (max-width: 560px) {
  .source-cards { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .section { padding: var(--s-xl) 0; }
  .sources-bar { gap: var(--s-sm); }
}
