/* ============================================================
   imigz.com — design system
   Source of truth: design_handoff_imigz_website/README.md
   Hard rule: the system contains NO red anywhere.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* dark (default) */
  --bg: #0B0C0F;      /* Carbon */
  --surface: #16181D;
  --line: #262A31;
  --text: #F4F2EE;    /* Chalk */
  --muted: #A6ACB6;   /* Smoke */
  --ember: #5E9EFF;   /* accent — CTAs, streaks, countdown, hero numerals ONLY (rebranded to azure 7/20; var name kept) */
  --meadow: #93C9A0;  /* success */
  --ochre: #E3BA62;   /* warning */
  --harbor: #B9A8E3;  /* Break Free / support surfaces — heather violet, steady, never an alarm (was powder blue; renamed role, var name kept) */
  --ember-soft: rgba(94,158,255,.14);
  --harbor-soft: rgba(185,168,227,.10);
  /* on-ember text: dark carbon on the bright dark-theme ember */
  --on-ember: #0B0C0F;

  --font-display: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Schibsted Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --pad-section: clamp(72px, 9vw, 128px);
  --gutter: clamp(20px, 4vw, 48px);
  --maxw: 1200px;

  --r-card: 16px;
  --r-tile: 14px;
  --r-btn: 10px;
  --r-chip: 8px;
}
[data-theme="light"] {
  --bg: #F5F4F0; --surface: #FFFFFF; --line: #DAD7CF;
  --text: #232A36; --muted: #5B6370; --ember: #2563EB; /* AA-deepened — never lighten */
  --meadow: #4F8B60; --ochre: #8A6A1F; --harbor: #6B5CA8;
  --ember-soft: rgba(37,99,235,.10); --harbor-soft: rgba(107,92,168,.08);
  /* deep light-theme ember needs light text for AA */
  --on-ember: #FFFFFF;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* anchor jumps land below the fixed nav */
[id] { scroll-margin-top: 76px; }
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--text); }
::selection { background: rgba(94,158,255,.35); }
img { max-width: 100%; display: block; }

h1, h2, h3, p { margin: 0; }

/* ---------- Motion primitives ---------- */
@keyframes imzBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.014); } }
@keyframes imzSlide { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--ember { color: var(--ember); }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--muted); }

.btn {
  font-weight: 700;
  font-size: 17px;
  padding: 15px 28px;
  border-radius: var(--r-btn);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  font-family: var(--font-body);
}
.btn--ember { background: var(--ember); color: var(--on-ember); }
.btn--ember:hover { filter: brightness(1.08); color: var(--on-ember); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
  background: rgba(22,24,29,.5);
}
[data-theme="light"] .btn--ghost { background: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--muted); color: var(--text); }
.btn--sm { font-size: 15px; padding: 11px 20px; border-radius: 8px; }

/* Wordmark: im + dotless ı + gz, risen Ember dot. Never detach/recolor the dot. */
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.wordmark:hover { color: var(--text); }
.wordmark .wm-i { position: relative; display: inline-block; }
.wordmark .wm-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.42em;
  width: 0.15em;
  height: 0.15em;
  border-radius: 50%;
  background: var(--ember);
}

/* Scroll reveal targets (JS sets initial state; class here only for discovery) */
[data-reveal] { /* revealed via IntersectionObserver in js/site.js */ }

/* ============================================================
   1. NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wordmark { font-size: 26px; }
.nav-links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* stable on mobile — no jump when the address bar collapses */
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* video layers over the still; if the file is absent the img shows through */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(11,12,15,.94) 0%, rgba(11,12,15,.78) 46%, rgba(11,12,15,.62) 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(720px 480px at 78% 62%, rgba(94,158,255,.16), transparent 70%);
}
.hero-grid {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter) 72px;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
/* Hero copy sits on the carbon photo scrim in BOTH themes — pin scrim palette */
.hero-copy { color: #F4F2EE; }
.hero-copy .eyebrow { margin-bottom: 20px; color: #A6ACB6; }
.hero-h1 { color: #F4F2EE; }
.hero-h1 .accent { color: #5E9EFF; }
.hero-copy .hero-sub { color: #A6ACB6; }
.hero .btn--ember { background: #5E9EFF; color: #0B0C0F; }
.hero .btn--ghost { border-color: #262A31; color: #F4F2EE; background: rgba(22,24,29,.5); }
.hero .btn--ghost:hover { border-color: #A6ACB6; }
.hero .store-badge { border-color: #262A31; background: rgba(11,12,15,.6); color: #F4F2EE; }
.hero .store-badge small { color: #A6ACB6; }
.hero .store-badge:hover { border-color: #A6ACB6; }
.hero .chip { border-color: #262A31; color: #A6ACB6; }
.hero .chip[aria-pressed="true"] { border-color: #5E9EFF; color: #5E9EFF; }
.hero-h1 {
  font-stretch: 78%;
  font-size: clamp(44px, 7.2vw, 96px);
  line-height: .94;
  margin: 0 0 22px;
  text-wrap: balance;
  animation: imzSlide 500ms ease-out both;
}
.hero-h1 .accent { color: var(--ember); }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 16px;
  min-height: 44px;
  background: rgba(11,12,15,.6);
  color: var(--text);
}
[data-theme="light"] .store-badge { background: rgba(255,255,255,.6); }
.store-badge:hover { border-color: var(--muted); color: var(--text); }
.store-badge small { font-size: 10px; color: var(--muted); }
.store-badge strong { font-weight: 700; font-size: 15px; }

/* Countdown card */
.hero-card-col { justify-self: end; width: min(360px, 100%); }
.breathe { animation: imzBreathe 4.8s ease-in-out infinite; }
.countdown {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(94,158,255,.08);
}
.countdown-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.countdown-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; color: var(--muted); }
.countdown-live { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); }
.countdown-days {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 112px;
  line-height: 1;
  color: var(--ember);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: .06em;
  margin: 2px 0 20px;
}
.countdown-bar { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; margin-bottom: 20px; }
.countdown-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(94,158,255,.5), var(--ember));
  transition: width .9s ease-out;
}
.countdown-today { border-top: 1px solid var(--line); padding-top: 16px; font-size: 14.5px; color: var(--muted); }
.countdown-today strong { color: var(--text); font-weight: 600; }

.chip-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; justify-content: flex-end; }
.chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  padding: 10px 14px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-chip);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.chip[aria-pressed="true"] { border-color: var(--ember); color: var(--ember); }

/* ============================================================
   3. PROBLEM STRIP
   ============================================================ */
.problem { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.problem .wrap {
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-line {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 66%;
  text-transform: uppercase;
  font-size: clamp(30px, 5.4vw, 68px);
  line-height: 1.02;
  color: var(--muted);
}
.problem-line--answer { color: var(--text); }
.problem-line--answer .accent { color: var(--ember); }

/* ============================================================
   4. HOW IT WORKS
   ============================================================ */
.how { max-width: var(--maxw); margin: 0 auto; padding: var(--pad-section) var(--gutter); }
.how .eyebrow { margin-bottom: 14px; }
.how .h2 { margin-bottom: 48px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.step-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; }
.step-card > p { color: var(--muted); font-size: 15.5px; text-wrap: pretty; }
.step-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; color: var(--muted); }

.peek {
  margin-top: auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.peek-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--muted); margin-bottom: 10px; }
.peek-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; margin-bottom: 12px; }
.peek-date {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px;
  font-family: var(--font-mono); font-size: 13px; color: var(--text);
}
.peek-date .accent { color: var(--ember); }
.peek--plan { display: flex; flex-direction: column; gap: 12px; }
.peek-row { display: flex; justify-content: space-between; font-size: 13.5px; }
.peek-row strong { font-weight: 600; }
.peek-row span:last-child { font-family: var(--font-mono); color: var(--muted); }
.peek-streak-wrap { border-top: 1px solid var(--line); padding-top: 12px; }
.peek-streak-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--muted); margin-bottom: 8px; }
.streak { display: flex; gap: 5px; }
.streak i { width: 14px; height: 14px; border-radius: 4px; background: var(--ember); }
.streak i.miss { background: var(--line); }
.peek-caption { font-size: 12.5px; color: var(--muted); margin-top: 8px; }
.peek-ledger-days { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.peek-ledger-days .accent { color: var(--ember); font-size: 16px; }
.peek-ledger-stats { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.peek-ledger-line { font-size: 14px; font-weight: 600; margin-top: 10px; }

/* ============================================================
   5. FEATURE GRID
   ============================================================ */
.features { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features .wrap { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }
.features .h2 { margin-bottom: 48px; }
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.tile {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-tile);
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.tile:hover { transform: translateY(-4px); border-color: var(--muted); }
.tile-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; color: var(--ember); margin-bottom: 12px; }
.tile h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0 0 8px; }
.tile p { color: var(--muted); font-size: 15px; text-wrap: pretty; }
/* Break Free tile switches register: harbor, lowercase, Schibsted, no lift/glow */
.tile--breakfree {
  background: var(--harbor-soft);
  border-color: color-mix(in srgb, var(--harbor) 32%, var(--line));
}
.tile--breakfree:hover { transform: none; border-color: color-mix(in srgb, var(--harbor) 32%, var(--line)); }
.tile--breakfree .tile-eyebrow { color: var(--harbor); letter-spacing: .14em; text-transform: none; }
.tile--breakfree h3 { font-family: var(--font-body); font-weight: 700; }

/* ============================================================
   6. PHOTO BAND
   ============================================================ */
.band { position: relative; min-height: 64vh; display: flex; align-items: flex-end; overflow: hidden; }
.band-bg { position: absolute; inset: 0; }
.band-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,12,15,.5), rgba(11,12,15,.92) 78%);
}
.band-content {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter) 72px;
  pointer-events: none;
}
.band-h2 {
  font-stretch: 70%;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: .96;
}
.band-h2 .accent { color: var(--ember); }
.band-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.band-stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.band-stat-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .16em; color: var(--muted); margin-top: 8px; }
/* photo-band text sits on the carbon scrim in BOTH themes */
.band .band-h2, .band .band-stat-num { color: #F4F2EE; }
.band .band-h2 .accent { color: #5E9EFF; }
.band .band-stat-label { color: #A6ACB6; }

/* ============================================================
   7. MOMENT GALLERY
   ============================================================ */
.gallery { padding: var(--pad-section) 0; overflow: hidden; }
.gallery-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.gallery-head .eyebrow { margin-bottom: 14px; }
.gallery-head .h2 { margin-bottom: 12px; }
.gallery-sub { color: var(--muted); font-size: 17px; margin: 0 0 40px; max-width: 52ch; }
.gallery-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px var(--gutter) 12px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.gallery-row::-webkit-scrollbar { height: 0; }
.moment-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 400px;
  background: var(--surface);
  transition: transform .25s ease, border-color .25s ease;
}
.moment-card:hover { transform: translateY(-6px); border-color: var(--muted); }
.moment-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.moment-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,12,15,.1), rgba(11,12,15,.92) 68%);
}
.moment-body {
  position: absolute; inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}
.moment-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; color: #A6ACB6; }
.moment-days { font-family: var(--font-display); font-weight: 900; font-size: 96px; line-height: 1; color: #5E9EFF; }
.moment-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 80%;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .06em;
  margin: 4px 0 18px;
  color: #F4F2EE;
}
.moment-bar { height: 5px; border-radius: 3px; background: rgba(244,242,238,.22); }
.moment-bar-fill { height: 100%; border-radius: 3px; background: #5E9EFF; }
/* Harbor variant (Break Free) — quiet register */
.moment-card--harbor { border-color: color-mix(in srgb, var(--harbor) 32%, var(--line)); background: var(--harbor-soft); }
.moment-card--harbor:hover { border-color: color-mix(in srgb, var(--harbor) 32%, var(--line)); }
.moment-card--harbor .moment-eyebrow { letter-spacing: .14em; color: #B9A8E3; }
.moment-card--harbor .moment-days { color: #B9A8E3; }
.moment-card--harbor .moment-sub { font-size: 15px; color: #A6ACB6; margin: 4px 0 18px; }
.moment-card--harbor .moment-bar-fill { background: #B9A8E3; }

/* ============================================================
   8. SOCIAL PROOF
   ============================================================ */
.proof { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof .wrap { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }
.proof .h2 { margin-bottom: 48px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.quote-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-tile);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, border-color .25s ease;
}
.quote-card:hover { transform: translateY(-4px); border-color: var(--muted); }
.quote-badge {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--ember);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
  align-self: flex-start;
}
.quote-badge--harbor { color: var(--harbor); }
.quote-card blockquote { margin: 0; font-size: 17px; line-height: 1.55; text-wrap: pretty; }
.quote-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.avatar { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%; object-fit: cover; }
.avatar--anon {
  background: var(--harbor-soft);
  border: 1px solid color-mix(in srgb, var(--harbor) 32%, var(--line));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--harbor);
  font-family: var(--font-mono);
  font-size: 13px;
}
.press {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  justify-content: center;
  opacity: .55;
}
.press span { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--muted); }

/* ============================================================
   9. PRICING
   ============================================================ */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: var(--pad-section) var(--gutter); }
.pricing .eyebrow { margin-bottom: 14px; }
.pricing .h2 { margin-bottom: 12px; }
.pricing-sub { color: var(--muted); font-size: 17px; margin: 0 0 48px; max-width: 56ch; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.price-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0 0 6px; }
.price-num { font-family: var(--font-mono); font-size: 26px; font-weight: 600; }
.price-num small { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-note { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--muted); }
.price-list li { display: flex; gap: 10px; }
.price-list .tick { color: var(--meadow); }
.price-cta { margin-top: auto; text-align: center; padding: 13px 20px; font-size: 16px; }
.price-card--best { border: 2px solid var(--ember); position: relative; }
.price-card--best:hover { transform: none; border-color: var(--ember); }
.price-tag {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--ember);
  color: var(--on-ember);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ============================================================
   10. FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter) var(--pad-section); }
.faq .h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 36px; }
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .marker { color: var(--harbor); transition: transform .2s ease; } /* heather — FAQ is a reassurance surface */
.faq details[open] summary .marker { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: 15.5px; margin: 14px 0 0; text-wrap: pretty; }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist { border-top: 1px solid var(--line); }
.waitlist .wrap {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
  max-width: 720px;
  text-align: center;
}
.waitlist .eyebrow { margin-bottom: 14px; }
.waitlist .h2 { margin-bottom: 12px; }
.waitlist-sub { color: var(--muted); font-size: 17px; margin: 0 0 32px; text-wrap: pretty; }
.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.waitlist-form input[type="email"] {
  font-family: var(--font-mono);
  font-size: 16px; /* ≥16px or iOS Safari auto-zooms the page on focus */
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 13px 18px;
  min-height: 44px;
  min-width: min(320px, 100%);
  transition: border-color .2s;
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ember);
}
.waitlist-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.waitlist-status { min-height: 24px; margin: 16px 0 0; font-size: 15px; }
.waitlist-status.ok { color: var(--meadow); }
.waitlist-status.err { color: var(--ochre); } /* warning tone — never red */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer { background: var(--surface); border-top: 1px solid var(--line); }
.footer .wrap {
  padding-top: 56px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.disclaimer {
  background: var(--harbor-soft);
  border: 1px solid color-mix(in srgb, var(--harbor) 28%, var(--line));
  border-radius: 12px;
  padding: 22px 26px;
  font-size: 14.5px;
  color: var(--muted);
  text-wrap: pretty;
}
.disclaimer .lead { color: var(--harbor); font-weight: 600; }
.disclaimer a { color: var(--harbor); text-decoration: underline; }
.disclaimer a:hover { color: var(--text); }
.footer-cols { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer .wordmark { font-size: 30px; }
.footer-pillar { color: var(--muted); font-size: 14px; max-width: 38ch; margin: 12px 0 0; text-wrap: pretty; }
.footer-links { display: flex; gap: clamp(32px, 5vw, 72px); font-size: 14.5px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--muted); }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--text); }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.theme-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  padding: 8px 14px;
  min-height: 44px;
  border-radius: var(--r-chip);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--harbor); color: var(--harbor); }

/* ============================================================
   12. STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 12px;
}
.sticky-cta .eyebrow { font-size: 10.5px; letter-spacing: .14em; }
.sticky-cta .btn { font-size: 15px; padding: 12px 22px; border-radius: 9px; white-space: nowrap; }
.sticky-cta { transition: transform .3s ease; }
.sticky-cta.is-away { transform: translateY(110%); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cols-3, .quote-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { align-items: start; }
}
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  .nav-links { display: none !important; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 96px; }
  .hero-card-col { justify-self: stretch; width: 100%; }
  .chip-row { justify-content: flex-start; }
  .cols-3, .quote-grid, .price-grid { grid-template-columns: 1fr; }
  .band-stats { grid-template-columns: 1fr; gap: 28px; }
  .footer .wrap { padding-bottom: 140px; } /* keep disclaimer clear of the sticky bar */
  /* waitlist form stacks: full-width input, full-width button */
  .waitlist-form input[type="email"] { width: 100%; }
  .waitlist-form .btn { width: 100%; }
  /* countdown numeral scales down with the narrower card */
  .countdown-days { font-size: clamp(72px, 24vw, 112px); }
  /* gallery: slightly narrower cards so the next one peeks more */
  .moment-card { flex-basis: 280px; }
}
