/* VÉL landing page — tokens mirror mobile/theme.js so the site and app read as one brand */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/jost-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/jost-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/jost-400.woff2') format('woff2');
}

:root {
  --bg: #EFE7DA;
  --surface: #FBF7F0;
  --card: #FFFFFF;
  --ink: #2A241E;
  --muted: #8C8073;
  --faint: #B7AC9D;
  --line: rgba(42,36,30,0.10);
  --accent: #A87B4E;
  --accent-deep: #855E36;
  --accent-soft: #E8D7C0;
  --positive: #5F6B41;
  --positive-soft: #E4E7D3;
  --on-accent: #FBF7F0;
  --cap-bg: #1A140E;
  --cap-bg-2: #120D08;
  --cap-ink: #F1E7D7;
  --cap-muted: rgba(241,231,215,0.6);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239,231,218,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 6px;
  color: var(--ink);
  line-height: 1.1;
}
.wordmark-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 400;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--ink); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--on-accent);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(133,94,54,0.28); }
.btn-small { height: 42px; padding: 0 20px; font-size: 13px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--cap-bg), var(--cap-bg-2));
  color: var(--cap-ink);
  padding: 90px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 480px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 16px;
}
.eyebrow-dark { color: var(--cap-muted); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.06;
  margin: 0 0 20px;
  color: var(--ink);
}
.display-dark { color: var(--cap-ink); }

.lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 420px;
}
.lede-dark { color: var(--cap-muted); }
.lede.center { max-width: 520px; margin: 40px auto 0; text-align: center; }

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
}
.waitlist-form input {
  flex: 1;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(241,231,215,0.22);
  background: rgba(241,231,215,0.06);
  padding: 0 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cap-ink);
  outline: none;
}
.waitlist-form input::placeholder { color: var(--cap-muted); }
.waitlist-form input:focus { border-color: var(--accent); }

.waitlist-form-center { margin: 0 auto; }

.fineprint {
  font-size: 11px;
  color: var(--faint);
  margin: 14px 0 0;
}
.fineprint-dark { color: var(--cap-muted); }

.hero-visual { display: flex; justify-content: center; }
.phone-frame {
  width: 260px;
  aspect-ratio: 402 / 824;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(241,231,215,0.14);
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}
.phone-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-cta { padding: 110px 0; }
.hero-cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-cta .display { text-align: center; }
.hero-cta .fineprint { text-align: center; }

/* ── Sections ────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-tint { background: linear-gradient(180deg, #F4EEE3, #EBE1D2); }
.section .eyebrow, .section .display, .section .lede { text-align: left; }
.section .display { max-width: 560px; }

#value > .wrap > .display,
#value > .wrap > .lede:not(.center) {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Process ─────────────────────────────────────────────────────────── */
.process-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.process-step {
  flex: 1;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 12px;
  right: -22px;
  width: 12px;
  height: 1px;
  background: var(--faint);
}
.process-num {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--ink);
}
.process-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ── Features tour ───────────────────────────────────────────────────── */
.features-layout {
  display: grid;
  grid-template-columns: 372px 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: center;
}
.features-phone-col {
  position: relative;
}
.features-phone-frame {
  width: 350px;
  aspect-ratio: 402 / 836;
  margin: 0 auto;
  border-radius: 46px;
  background: var(--cap-bg);
  border: 1px solid rgba(42,36,30,0.12);
  box-shadow: 0 30px 60px rgba(42,36,30,0.18);
  overflow: hidden;
  position: relative;
}
.feature-screen {
  position: absolute;
  inset: 0;
  padding: 32px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  overflow-y: auto;
  scrollbar-width: none;
}
.feature-screen::-webkit-scrollbar { display: none; }
.feature-screen[data-screen="scan"] { background: var(--cap-bg); }
.feature-screen.active { opacity: 1; visibility: visible; }

/* ── scan screen (capture) ─────────────────────────────────────────── */
.fscap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
}
.fscap-iconbtn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(241,231,215,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--cap-ink); flex: none;
}
.fscap-counter { text-align: center; }
.fscap-num { font-family: var(--serif); font-size: 20px; line-height: 1.1; margin: 0; }
.fscap-cur { color: var(--accent); }
.fscap-of { color: var(--cap-ink); opacity: 0.4; }
.fscap-mark { font-family: var(--sans); font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cap-muted); margin: 2px 0 0; }

.fscap-stage { flex: 1; display: flex; align-items: center; justify-content: center; }
.fscap-ringwrap { position: relative; width: 68%; max-width: 200px; aspect-ratio: 1 / 1; }
.fscap-arcs { position: absolute; inset: 0; width: 100%; height: 100%; }
.fscap-arc { fill: none; stroke: rgba(241,231,215,0.16); stroke-width: 9; stroke-linecap: round; }
.fscap-arc-active { stroke: var(--accent); stroke-width: 11; }
.fscap-viewport {
  position: absolute; top: 50%; left: 50%; width: 74.5%; height: 74.5%;
  transform: translate(-50%, -50%); border-radius: 50%; overflow: hidden;
  background:
    radial-gradient(120% 62% at 50% 38%, rgba(168,123,78,0.18) 0%, rgba(26,20,14,0) 62%),
    var(--cap-bg-2);
}
.fscreen-guide {
  position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%);
  height: 118%; width: auto; overflow: visible;
}
.fscreen-guide path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.fg-glow { fill: url(#mecheHairGlow); stroke: none; }
.fg-body path { stroke: rgba(241,231,215,0.16); stroke-width: 1; }
.fg-face path { stroke: rgba(241,231,215,0.26); stroke-width: 1; }
.fg-contour { stroke: rgba(232,215,192,0.88); stroke-width: 1.6; }
.fg-strand { stroke: rgba(232,215,192,0.3); stroke-width: 1; }
.fscap-crosshair { position: absolute; inset: 0; width: 100%; height: 100%; }
.fscap-crosshair line { stroke: var(--cap-ink); stroke-width: 0.9; opacity: 0.32; }

.fscap-cue-row { text-align: center; margin-top: 18px; }
.fscap-cue {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: 999px; background: var(--accent-soft); color: var(--accent);
}
.fscap-cue span {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.fscap-biglabel {
  font-family: var(--serif); font-size: 30px; line-height: 1.08; color: var(--cap-ink);
  text-align: center; margin: 10px 0 8px;
}
.fscap-instr {
  font-family: var(--sans); font-size: 12.5px; line-height: 1.5; color: var(--cap-muted);
  text-align: center; max-width: 230px; margin: 0 auto;
}

.fscap-dots { display: flex; justify-content: center; gap: 9px; margin-top: 20px; flex: none; }
.fscap-chip {
  width: 27px; height: 27px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; color: var(--cap-muted);
  background: rgba(241,231,215,0.06); border: 1px solid rgba(241,231,215,0.14);
}
.fscap-chip.active { border-color: var(--accent); color: var(--accent-soft); background: rgba(232,215,192,0.14); }

.fscreen-shutter-row { display: flex; justify-content: center; padding-top: 18px; flex: none; }
.fscreen-shutter {
  width: 62px; height: 62px; border-radius: 50%;
  border: 2px solid rgba(241,231,215,0.45);
  display: flex; align-items: center; justify-content: center;
}
.fscreen-shutter-fill {
  width: 74%; height: 74%; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

/* ── shared light-screen header (read / ritual / progress) ──────────── */
.fshead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex: none; }
.fshead-icon {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.fshead-title {
  flex: 1; text-align: center; font-family: var(--sans); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--ink);
}
.fshead-spacer { width: 30px; flex: none; }
.fshead + * { margin-top: auto; }
.feature-screen:not([data-screen="scan"]) > *:last-child:not(.fsritual-footer) { margin-bottom: auto; }

/* read screen */
.fsread-eyebrow {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); text-align: center; margin: 0 0 12px;
}
.fscreen-ring-wrap { position: relative; width: 152px; height: 152px; margin: 4px auto 18px; }
.fscreen-ring { width: 100%; height: 100%; }
.fscreen-ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.fscreen-ring-label span { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.fscreen-ring-label small { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--faint); }
.fsread-summary {
  font-family: var(--sans); font-size: 12px; line-height: 1.55; color: var(--muted);
  text-align: center; max-width: 230px; margin: 0 auto 20px;
}
.fsread-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; }
.fsread-card-title {
  font-family: var(--sans); font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin: 0 0 8px;
}
.fscreen-metric { padding: 10px 0; }
.fscreen-metric + .fscreen-metric { border-top: 1px solid var(--line); }
.fscreen-metric-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
.fscreen-metric-head span { font-family: var(--sans); font-weight: 500; font-size: 12.5px; color: var(--ink); }
.fscreen-metric-head b { font-family: var(--serif); font-weight: 500; font-size: 14px; color: var(--accent); }
.fscreen-bar-track { height: 7px; border-radius: 4px; background: var(--accent-soft); overflow: hidden; }
.fscreen-bar-fill { display: block; height: 100%; border-radius: 4px; background: var(--bar-color, var(--accent)); }

/* ritual screen */
.fsprod-card { display: flex; gap: 12px; padding: 13px 0; }
.fsprod-card + .fsprod-card { border-top: 1px solid var(--line); }
.fsprod-image {
  width: 44px; height: 56px; border-radius: 11px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
}
.fsprod-image-alt { background: rgba(95,107,65,0.18); }
.fsprod-image-alt2 { background: rgba(168,123,78,0.22); }
.fsprod-image svg { color: var(--accent-deep); }
.fsprod-body { flex: 1; min-width: 0; }
.fsprod-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.fsprod-name { font-family: var(--serif); font-size: 16px; color: var(--ink); margin: 0; line-height: 1.15; }
.fsprod-type { font-family: var(--sans); font-size: 10.5px; color: var(--faint); margin: 2px 0 0; }
.fsprod-match {
  font-family: var(--sans); font-size: 10px; color: var(--accent-deep); background: var(--accent-soft);
  padding: 3px 8px; border-radius: 999px; flex: none;
}
.fsprod-why { font-family: var(--sans); font-size: 11.5px; line-height: 1.5; color: var(--muted); margin: 7px 0 0; }
.fsprod-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; }
.fsprod-price { font-family: var(--sans); font-weight: 500; font-size: 12.5px; color: var(--ink); }
.fsprod-pill {
  font-family: var(--sans); font-weight: 500; font-size: 11px; color: var(--accent-deep);
  background: var(--accent-soft); padding: 5px 11px; border-radius: 999px;
}

.fsritual-footer {
  flex: none;
  margin: 20px -24px -32px;
  padding: 22px 24px calc(32px + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.fsritual-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.fsritual-total span { font-family: var(--sans); font-size: 11.5px; color: var(--muted); }
.fsritual-total b { font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--ink); }
.fsritual-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--on-accent);
}
.fsritual-cta span { font-family: var(--sans); font-weight: 500; font-size: 13px; }

/* progress screen */
.fsprog-hero { font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--ink); text-align: center; margin: 0 0 8px; }
.fsprog-trend-wrap { text-align: center; margin-bottom: 16px; }
.fsprog-trend {
  display: inline-block; font-family: var(--sans); font-weight: 500; font-size: 11.5px;
  color: var(--positive); background: var(--positive-soft); padding: 4px 12px; border-radius: 999px;
}
.fsprog-chart { width: 100%; height: auto; }
.fsprog-grid { stroke: var(--line); stroke-width: 1; }
.fsprog-band { font-family: var(--sans); font-size: 11px; fill: var(--muted); text-anchor: end; }
.fsprog-band-current { fill: var(--accent-deep); }
.fsprog-area { fill: var(--accent-soft); opacity: 0.35; }
.fsprog-line { fill: none; stroke: var(--accent); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.fsprog-dot { fill: var(--faint); }
.fsprog-dot-last { fill: var(--accent-deep); stroke: var(--accent); stroke-width: 2; }
.fsprog-dot-ring { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0.3; }
.fsprog-axis { font-family: var(--sans); font-size: 10.5px; fill: var(--faint); }

.fsprog-stats {
  display: flex;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.fsprog-stat { flex: 1; text-align: center; }
.fsprog-stat + .fsprog-stat { border-left: 1px solid var(--line); }
.fsprog-stat b { display: block; font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); }
.fsprog-stat span {
  display: block; font-family: var(--sans); font-size: 8.5px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

.fscard-head { display: flex; justify-content: space-between; align-items: baseline; }
.fscard-head .fsread-card-title { margin-bottom: 0; }
.fscard-link { font-family: var(--sans); font-size: 11px; color: var(--accent); }

.fsprog-timeline-card { margin-top: 14px; }
.fstl-row { display: flex; align-items: center; gap: 11px; padding: 12px 0; }
.fstl-row:first-of-type { padding-top: 14px; }
.fstl-row + .fstl-row { border-top: 1px solid var(--line); }
.fstl-badge {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  background: var(--accent-soft); color: var(--accent-deep);
  font-family: var(--serif); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.fstl-body { flex: 1; min-width: 0; }
.fstl-body b { display: block; font-family: var(--sans); font-weight: 500; font-size: 12.5px; color: var(--ink); }
.fstl-body span { display: block; font-family: var(--sans); font-size: 10.5px; color: var(--muted); margin-top: 1px; }
.fstl-chip {
  font-family: var(--sans); font-size: 10px; color: var(--positive);
  background: var(--positive-soft); padding: 3px 8px; border-radius: 999px; flex: none;
}

.fsprog-newscan {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--on-accent);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.4px;
}

/* feature list */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  padding: 24px 28px;
  border-radius: 18px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.feature-item:hover { border-color: var(--line); }
.feature-item.active { background: var(--surface); border-color: var(--line); }
.feature-num {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-item h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--ink);
}
.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 380px;
}

/* ── Stat grid ───────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px;
}
.stat-index {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.stat-card h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--ink);
}
.stat-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ── Value chart ─────────────────────────────────────────────────────── */
.value-columns {
  margin-top: 44px;
}
.chart-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px 56px 44px;
}
.bottle-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.bottles-hook {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.16;
  color: var(--ink);
  margin: 0;
  text-align: center;
}
.bottle-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px 26px;
  margin-top: 44px;
}
.bottle {
  width: 100%;
  height: auto;
  display: block;
}
.bottle-missed { color: rgba(42,36,30,0.13); --band: rgba(42,36,30,0.07); }
.bottle-kept   { color: var(--accent);       --band: var(--accent-soft); }

/* Staggered reveal — only armed once the observer in script.js runs, so the
   bottles stay visible if JS never loads. */
.bottle-grid.reveal-ready .bottle { opacity: 0; transform: translateY(10px); }
.bottle-grid.reveal-ready.in .bottle {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1);
  transition-delay: calc(var(--i) * 45ms);
}
@media (prefers-reduced-motion: reduce) {
  .bottle-grid.reveal-ready .bottle { opacity: 1; transform: none; transition: none; }
}

.bottle-legend {
  margin: 44px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 760px;
  display: flex;
}
.bottle-legend-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 0 34px;
}
.bottle-legend-row + .bottle-legend-row { border-left: 1px solid var(--line); }
.bottle-key { width: 19px; height: auto; flex: none; }
.bottle-legend-label {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
  flex: 1;
}
.bottle-legend-figure { font-family: var(--serif); font-size: 34px; line-height: 1; }
.bottle-legend-figure-muted { color: var(--muted); }
.bottle-legend-figure-accent { color: var(--accent-deep); }

.chart-note {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 26px auto 0;
  max-width: 620px;
  text-align: center;
}
.chart-note strong { color: var(--accent-deep); font-weight: 500; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--cap-bg-2);
  color: var(--cap-muted);
  padding: 36px 0 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(241,231,215,0.12);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.wordmark-footer { color: var(--cap-ink); font-size: 13px; }
.footer p { margin: 0; font-size: 12px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--cap-muted);
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.3px;
}
.footer-links a:hover { color: var(--cap-ink); }

.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.badge-note {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cap-muted);
}
.badge-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border-radius: 9px;
  transition: opacity 0.15s ease;
}
.badge-link:hover { opacity: 0.8; }

/* ── Legal pages ─────────────────────────────────────────────────────── */
.legal-hero { padding: 64px 0 48px; }
.legal-hero .display { margin-bottom: 8px; }
.legal-updated {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}
.draft-banner {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--accent-deep);
  margin-top: 28px;
  max-width: 640px;
}
.legal-body {
  padding: 0 0 100px;
}
.legal-section {
  max-width: 720px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.legal-section:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.legal-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-section p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 14px;
}
.legal-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.legal-section li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 8px;
}
.legal-section a { color: var(--accent-deep); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-visual { order: -1; }
  .phone-frame { width: 200px; }
  .display { font-size: 38px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { flex-direction: column; gap: 28px; }
  .process-step:not(:last-child)::after { display: none; }
  .chart-card { padding: 30px 22px 26px; border-radius: 18px; }
  .bottles-hook { font-size: 30px; }
  .bottle-grid { gap: 16px 10px; margin-top: 30px; }
  .bottle-legend { flex-direction: column; gap: 16px; margin-top: 32px; padding-top: 24px; }
  .bottle-legend-row { padding: 0; }
  .bottle-legend-row + .bottle-legend-row { border-left: 0; }
  .bottle-legend-label { font-size: 13.5px; }
  .bottle-legend-figure { font-size: 27px; }
  .chart-note { font-size: 12.5px; }
  .features-layout { grid-template-columns: 1fr; }
  .features-phone-col { margin-bottom: 28px; }
  .features-phone-frame { width: 250px; }
  .feature-screen { padding: 26px 18px; }
  .fsritual-footer { margin: 14px -18px -26px; padding: 16px 18px calc(26px + env(safe-area-inset-bottom, 0px)); }
  .fscap-ringwrap { max-width: 155px; }
  .fscap-biglabel { font-size: 26px; }
  .fscap-dots { gap: 7px; }
  .fscap-chip { width: 24px; height: 24px; font-size: 10px; }
  .fscreen-shutter { width: 54px; height: 54px; }
  .fsprog-hero { font-size: 36px; }
  .feature-item { min-height: 0; padding: 26px; }
  .waitlist-form { flex-direction: column; }
  .btn { width: 100%; }
}
