/* ============================================================
   AstroOwl — marketing site
   Palette: base #080810 / #0A0F1E · surfaces #0F1020–#111520
   amber #FBB024 (soft #F0B25A) · indigo #6366F1 (light #A5B4FC)
   teal #64FFDA · text #E8EAF6 · muted #8892B0 · coral #FF6B6B
   Fonts: Bricolage Grotesque (headings) · Hanken Grotesk (body)
   ============================================================ */

:root {
  --bg: #080810;
  --bg-deep: #0A0F1E;
  --surface: #0F1020;
  --surface-2: #0c0d18;
  --amber: #FBB024;
  --amber-soft: #F0B25A;
  --amber-hover: #ffc04a;
  --indigo: #6366F1;
  --indigo-light: #A5B4FC;
  --teal: #64FFDA;
  --coral: #FF6B6B;
  --text: #E8EAF6;
  --text-2: #cdd2ea;
  --text-3: #aeb4d2;
  --muted: #8892B0;
  --muted-2: #5b6488;
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(251, 176, 36, .3); }

h1, h2, h3, h4 { margin: 0; }
img, svg { display: block; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---- keyframes ---- */
@keyframes ao-twinkle { 0%,100%{opacity:.35} 50%{opacity:1} }
@keyframes ao-float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes ao-pulse   { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.78)} }

/* ============================================================
   Fixed background layers
   ============================================================ */
#ao-hero-photo {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: var(--bg) url('assets/hero-sky.jpg') center top / cover no-repeat;
}
#ao-stars {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
}
#ao-band {
  position: fixed; top: -20vh; left: -10vw;
  width: 130vw; height: 90vh; z-index: 0; pointer-events: none;
  transform: rotate(-24deg);
  background: radial-gradient(60% 38% at 50% 50%, rgba(165,180,252,.10), rgba(99,102,241,.05) 45%, transparent 72%);
  filter: blur(14px);
  opacity: .9;
}

.page { position: relative; z-index: 2; }

/* shared containers */
.container { max-width: 1180px; margin: 0 auto; }
.container--narrow { max-width: 1000px; }
.center { text-align: center; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8,8,16,.62);
  border-bottom: 1px solid rgba(165,180,252,.10);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--text);
}
.brand-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 20px; letter-spacing: -.01em;
}
.brand-name--sm { font-size: 18px; }

/* owl-eyes mark */
.owl-mark {
  display: inline-flex; gap: 3px; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(145deg, #15172a, #0b0c16);
  border: 1px solid rgba(165,180,252,.22);
}
.owl-mark--sm { width: 32px; height: 32px; border-radius: 9px; }
.owl-mark--lg {
  width: 58px; height: 58px; border-radius: 16px; gap: 5px;
  border-color: rgba(251,176,36,.4);
  box-shadow: 0 0 28px rgba(251,176,36,.18);
}
.eye { width: 10px; height: 10px; border-radius: 50%; border: 2px solid; }
.eye-amber  { border-color: var(--amber);  box-shadow: 0 0 5px rgba(251,176,36,.6); }
.eye-indigo { border-color: var(--indigo); box-shadow: 0 0 5px rgba(99,102,241,.6); }
.owl-mark--sm .eye { width: 9px; height: 9px; }
.owl-mark--lg .eye { width: 14px; height: 14px; border-width: 2.5px; }
.owl-mark--lg .eye-amber  { box-shadow: 0 0 6px rgba(251,176,36,.7); }
.owl-mark--lg .eye-indigo { box-shadow: 0 0 6px rgba(99,102,241,.7); }

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-links { display: none; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }

/* amber button */
.btn-amber {
  background: var(--amber); color: #0a0a12;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700;
  font-size: 15.5px; padding: 14px 24px; border-radius: 11px;
  box-shadow: 0 8px 26px rgba(251,176,36,.3);
  transition: background .2s ease;
  flex: 0 0 auto;
}
.btn-amber:hover { background: var(--amber-hover); }
.btn-amber--sm {
  font-size: 14.5px; padding: 10px 18px; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(251,176,36,.28);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center;
  padding: 70px 24px 90px;
  background: linear-gradient(180deg, rgba(8,8,16,0) 0%, rgba(10,15,30,.35) 70%, var(--bg-deep) 100%);
}
.hero-wrap { max-width: 1180px; margin: 0 auto; width: 100%; }
.hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(165,180,252,.22);
  font-size: 13.5px; color: var(--indigo-light); font-weight: 600;
  margin: 0 0 30px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
  animation: ao-pulse 2.4s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(48px, 8vw, 92px); line-height: 1.02;
  letter-spacing: -.03em; margin: 0 0 18px;
}
.grad-amber {
  background: linear-gradient(120deg, var(--amber), var(--amber-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px); line-height: 1.6;
  color: #c2c7e0; max-width: 620px; margin: 0 auto 36px;
}
.hero-sub em { color: var(--text); font-style: normal; }

.hero-form-wrap { max-width: 480px; margin: 0 auto; }

/* waitlist form */
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-form--center { max-width: 480px; margin: 0 auto; }
.email-input {
  flex: 1 1 220px; min-width: 0;
  background: rgba(15,16,32,.85);
  border: 1px solid rgba(165,180,252,.22);
  color: var(--text); font-size: 15.5px; font-family: inherit;
  padding: 14px 16px; border-radius: 11px; outline: none;
  transition: border-color .2s ease;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: var(--indigo); }

.waitlist-success {
  background: rgba(100,255,218,.08);
  border: 1px solid rgba(100,255,218,.3);
  color: #9affe4; padding: 15px 18px; border-radius: 11px;
  font-weight: 600; font-size: 15.5px;
}
.waitlist-success--center { max-width: 480px; margin: 0 auto; padding: 16px 18px; }
[hidden] { display: none !important; }

.form-note { font-size: 13.5px; color: var(--muted); margin: 14px 0 0; }

/* hero phone */
.hero-phone { margin-top: 62px; display: flex; justify-content: center; }

/* ============================================================
   Phone mockups (static)
   ============================================================ */
.phone {
  width: 268px; flex: 0 0 auto;
  border-radius: 38px; padding: 9px;
  background: linear-gradient(160deg, #23263b, #0c0d18);
  border: 1px solid rgba(165,180,252,.16);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 50px rgba(99,102,241,.10);
}
.phone--float { animation: ao-float 6s ease-in-out infinite; }
.phone-screen {
  position: relative; border-radius: 31px; overflow: hidden;
  background: var(--bg-deep); height: 556px;
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 7px; border-radius: 99px; background: #05060c; z-index: 5;
}

/* ── TEMP: placeholder treatment ────────────────────────────────────────
   The phone mockups are stand-ins. Blur the screen content (frame + notch
   stay crisp) and show a small label until real screenshots are dropped in.
   To restore the sharp mockups: delete this block AND the .screen-badge
   <span>s in index.html. To swap in real screenshots: replace each phone's
   inner markup with an <img>, then remove this block. */
.phone-screen > *:not(.phone-notch):not(.screen-badge) {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
.screen-badge {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6; white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: .03em;
  color: var(--indigo-light);
  background: rgba(8, 8, 16, .6);
  border: 1px solid rgba(165, 180, 252, .28);
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .4);
}
/* ──────────────────────────────────────────────────────────────────────── */
.screen-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 18px 12px; font-size: 12px; color: var(--muted);
}
.sb-title { color: var(--text); font-weight: 600; }
.dot-teal { color: var(--teal); }

/* shared mini starfield (static, no runtime) */
.ministars {
  position: absolute; inset: 0; pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(1px 1px at 8% 14%,  rgba(223,227,255,.75), transparent),
    radial-gradient(1px 1px at 17% 42%, rgba(223,227,255,.55), transparent),
    radial-gradient(1.4px 1.4px at 24% 76%, rgba(223,227,255,.8), transparent),
    radial-gradient(1px 1px at 31% 22%, rgba(223,227,255,.5), transparent),
    radial-gradient(1px 1px at 39% 58%, rgba(223,227,255,.65), transparent),
    radial-gradient(1.3px 1.3px at 45% 12%, rgba(223,227,255,.7), transparent),
    radial-gradient(1px 1px at 52% 86%, rgba(223,227,255,.45), transparent),
    radial-gradient(1px 1px at 58% 34%, rgba(223,227,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 64% 64%, rgba(223,227,255,.85), transparent),
    radial-gradient(1px 1px at 71% 18%, rgba(223,227,255,.55), transparent),
    radial-gradient(1px 1px at 76% 48%, rgba(223,227,255,.6), transparent),
    radial-gradient(1.2px 1.2px at 83% 78%, rgba(223,227,255,.7), transparent),
    radial-gradient(1px 1px at 88% 28%, rgba(223,227,255,.5), transparent),
    radial-gradient(1px 1px at 93% 60%, rgba(223,227,255,.65), transparent),
    radial-gradient(1px 1px at 14% 90%, rgba(223,227,255,.5), transparent),
    radial-gradient(1px 1px at 36% 92%, rgba(223,227,255,.45), transparent),
    radial-gradient(1px 1px at 67% 8%,  rgba(223,227,255,.6), transparent),
    radial-gradient(1px 1px at 96% 14%, rgba(223,227,255,.55), transparent),
    radial-gradient(1px 1px at 5% 56%,  rgba(223,227,255,.5), transparent),
    radial-gradient(1.2px 1.2px at 49% 44%, rgba(223,227,255,.7), transparent);
}

/* ---- Plan mockup ---- */
.plan-body { padding: 0 16px 14px; }
.plan-titlerow {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.plan-target { font-size: 17px; font-weight: 700; color: var(--text); }
.pill-amber {
  font-size: 11px; color: var(--amber);
  background: rgba(251,176,36,.12); padding: 3px 9px; border-radius: 99px;
}
.plan-loc { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }
.plan-sky {
  position: relative; height: 150px; border-radius: 13px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #161a33, #0a0c18 70%);
}
.plan-arc { position: absolute; inset: 0; width: 100%; height: 100%; }
.plan-peak {
  position: absolute; bottom: 7px; left: 10px;
  font-size: 10px; color: var(--amber);
}
.plan-nights { padding: 2px 16px; }
.plan-sublabel {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted-2); margin-bottom: 9px;
}
.night-row { display: flex; align-items: center; gap: 11px; margin-bottom: 9px; }
.night-day { font-size: 12.5px; color: var(--text-2); width: 46px; }
.night-bar {
  flex: 1; height: 7px; border-radius: 99px;
  background: rgba(136,146,176,.18); overflow: hidden;
}
.night-fill { height: 100%; border-radius: 99px; }
.night-score { font-size: 12px; font-weight: 700; width: 26px; text-align: right; }

/* ---- Compose mockup ---- */
.compose-sky {
  position: relative; height: 300px; overflow: hidden;
  background: radial-gradient(130% 90% at 40% 10%, #1a1f3d, #0a0c18 70%);
}
.mw-wisp {
  position: absolute; left: -8%; top: 30%; width: 120%; height: 46%;
  transform: rotate(-22deg);
  background: radial-gradient(45% 50% at 50% 50%, rgba(180,190,255,.22), transparent 72%);
  filter: blur(4px);
}
.frame-rect {
  position: absolute; left: 22px; right: 22px; top: 64px; bottom: 74px;
  border: 1.5px solid var(--amber); border-radius: 4px;
  box-shadow: 0 0 0 9999px rgba(8,8,16,.35);
}
.frame-tag {
  position: absolute; top: -10px; left: 8px;
  font-size: 9.5px; color: var(--amber);
  background: var(--bg-deep); padding: 0 5px;
}
.frame-reticle {
  position: absolute; left: 50%; top: 50%;
  width: 13px; height: 13px; margin: -7px 0 0 -7px;
  border: 1px solid rgba(251,176,36,.7); border-radius: 50%;
}
.technique-chips { padding: 13px 16px 0; display: flex; gap: 7px; }
.chip {
  font-size: 11px; color: var(--text-3);
  background: rgba(99,102,241,.1); padding: 5px 11px; border-radius: 99px;
}
.chip--active { font-weight: 700; color: #0a0a12; background: var(--indigo); }
.stat-row { padding: 14px 16px 0; display: flex; justify-content: space-between; }
.stat { text-align: center; }
.stat-label {
  font-size: 10px; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: .08em;
}
.stat-val { font-size: 15px; font-weight: 700; color: var(--text); margin-top: 2px; }
.play-row { padding: 16px; display: flex; align-items: center; gap: 13px; }
.play-btn {
  width: 46px; height: 46px; border-radius: 50%; background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 22px rgba(251,176,36,.4); flex: 0 0 auto;
}
.play-tri {
  display: block;
  border-left: 13px solid #0a0a12;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.play-meter { flex: 1; }
.play-sharp { font-size: 11.5px; color: var(--teal); margin-bottom: 4px; }
.meter-track {
  height: 6px; border-radius: 99px;
  background: rgba(136,146,176,.18); overflow: hidden;
}
.meter-fill { height: 100%; background: linear-gradient(90deg, var(--indigo), var(--indigo-light)); }

/* ---- Shoot mockup ---- */
.shoot-conn-wrap { padding: 4px 16px 0; }
.shoot-conn {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; margin-bottom: 16px;
  background: rgba(100,255,218,.06);
  border: 1px solid rgba(100,255,218,.22); border-radius: 12px;
}
.conn-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
}
.conn-name { font-size: 13px; color: var(--text); font-weight: 600; }
.conn-sub { font-size: 10.5px; color: var(--muted); }
.shoot-recipe { padding: 0 16px; }
.recipe-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 18px; }
.ring-wrap {
  display: flex; justify-content: center; position: relative; margin-bottom: 8px;
}
.progress-ring { width: 130px; height: 130px; transform: rotate(-90deg); }
.ring-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center;
}
.ring-count {
  font-size: 23px; font-weight: 700; color: var(--text);
  font-family: var(--font-head);
}
.ring-total { font-size: 13px; color: var(--muted); }
.ring-cap { font-size: 10.5px; color: var(--teal); }
.shoot-stats { display: flex; justify-content: space-around; padding: 6px 16px 0; }
.shoot-stat { text-align: center; }
.shoot-stat-label { font-size: 10px; color: var(--muted-2); }
.shoot-stat-val { font-size: 13.5px; color: var(--text-2); font-weight: 600; }
.shoot-note-wrap { padding: 16px; }
.shoot-note {
  text-align: center; font-size: 11px; color: var(--teal);
  background: rgba(100,255,218,.06);
  border: 1px solid rgba(100,255,218,.18);
  padding: 9px; border-radius: 10px;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: 96px 24px; }
.section--problem { background: var(--bg-deep); border-top: 1px solid rgba(165,180,252,.07); }
.section--how { padding: 104px 24px 60px; background: var(--bg-deep); }
.section--features { padding: 100px 24px; background: var(--bg); }
.section--why { padding: 100px 24px; background: var(--bg-deep); border-top: 1px solid rgba(165,180,252,.07); }
.section--waitlist { padding: 110px 24px 100px; background: linear-gradient(180deg, var(--bg-deep), var(--bg)); position: relative; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .18em;
  font-size: 12.5px; font-weight: 700; margin: 0 0 16px;
}
.eyebrow--amber  { color: var(--amber); }
.eyebrow--indigo { color: var(--indigo-light); }

.h2 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 54px); line-height: 1.05;
  letter-spacing: -.02em; margin: 0 0 18px;
}
.h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(27px, 3.4vw, 40px); line-height: 1.1;
  letter-spacing: -.02em; margin: 0 0 16px;
}
.lead { font-size: 18px; line-height: 1.65; color: var(--text-3); margin: 0; max-width: 560px; }
.lead--center { max-width: 600px; margin-left: auto; margin-right: auto; }
.lead em { color: var(--text); font-style: normal; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 76px; }
.section-head--narrow { max-width: 640px; margin-bottom: 60px; }
.section-head .lead { line-height: 1.6; }

/* ---- Problem section ---- */
.problem-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
.problem-visual {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 3vw, 34px); flex-wrap: wrap;
  padding: 34px 20px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(165,180,252,.10); border-radius: 20px;
}
.app-cluster { display: flex; gap: 12px; }
.app-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.app-cluster .app-icon { opacity: .55; }
.app-tile {
  width: 54px; height: 54px; border-radius: 14px;
  background: #1a1c2e; border: 1px solid rgba(136,146,176,.25);
}
.app-cap { font-size: 11.5px; color: var(--muted); }
.app-cap--amber { font-size: 12.5px; color: var(--amber); font-weight: 700; }
.arrow { font-size: 30px; color: var(--indigo); font-weight: 300; }
.arrow--lg { font-size: 34px; }

/* ---- How it works ---- */
.mode-grid {
  display: grid; grid-template-columns: 1fr; gap: 46px; align-items: center;
  margin-bottom: 110px;
}
.mode-grid--last { margin-bottom: 64px; }
.mode-phone { display: flex; justify-content: center; }

.mode-tag {
  text-transform: uppercase; letter-spacing: .18em;
  font-size: 12px; font-weight: 700; margin: 0 0 14px;
}
.mode-tag--amber  { color: var(--amber); }
.mode-tag--indigo { color: var(--indigo); }
.mode-tag--teal   { color: var(--teal); }
.mode-copy { font-size: 17px; line-height: 1.62; color: var(--text-3); margin: 0 0 22px; max-width: 520px; }

.ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--text-2); }
.tick { margin-top: 1px; }
.tick--amber  { color: var(--amber); }
.tick--indigo { color: var(--indigo); }
.tick--teal   { color: var(--teal); }

.mode-note { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(165,180,252,.12); }
.mode-note p { font-size: 14px; line-height: 1.55; color: var(--text-3); margin: 0 0 14px; max-width: 500px; }
.mode-note strong { color: var(--text); font-weight: 600; }
.goal-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.goal-chip {
  font-size: 12.5px; font-weight: 600; color: var(--text-2);
  padding: 7px 13px; border-radius: 999px;
  background: rgba(15,16,32,.7); border: 1px solid rgba(251,176,36,.22);
}

.rehearse-banner {
  margin: 30px auto 0; max-width: 860px; text-align: center;
  padding: 42px 28px; border-radius: 22px;
  background: linear-gradient(120deg, rgba(251,176,36,.08), rgba(99,102,241,.08));
  border: 1px solid rgba(165,180,252,.16);
}
.rehearse-banner p {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(22px, 3vw, 34px); line-height: 1.2;
  letter-spacing: -.02em; margin: 0; color: var(--text);
}

/* ---- Features ---- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px;
}
.feature-card {
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(165,180,252,.10); border-radius: 18px;
}
.feature-card--accent { border-color: rgba(251,176,36,.22); }
.feature-icon { font-size: 20px; margin-bottom: 14px; }
.feature-icon--svg { height: 20px; display: flex; align-items: center; }
.feature-icon--amber { font-size: 20px; color: var(--amber); margin: 0; }
.feature-card h4 { font-size: 16.5px; font-weight: 700; margin: 0 0 7px; color: var(--text); }
.feature-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.feature-card-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.badge-soon {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--amber); background: rgba(251,176,36,.12);
  padding: 3px 9px; border-radius: 99px;
}

/* ---- Why ---- */
.why-lead { margin-bottom: 50px; }
.why-compare {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 40px); flex-wrap: wrap; margin-bottom: 54px;
}
.why-stack { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.why-old {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; background: var(--surface);
  border: 1px solid rgba(136,146,176,.18); border-radius: 12px; opacity: .6;
}
.why-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); }
.why-old span:last-child { font-size: 14.5px; color: var(--text-3); }
.why-one {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 30px 34px;
  background: linear-gradient(160deg, rgba(251,176,36,.1), rgba(99,102,241,.08));
  border: 1px solid rgba(251,176,36,.35); border-radius: 18px;
  box-shadow: 0 0 40px rgba(251,176,36,.12);
}
.why-one .owl-mark--lg { width: 56px; height: 56px; box-shadow: none; gap: 6px; }
.why-one-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.why-one-sub { font-size: 13px; color: var(--muted); }

.why-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.why-tag {
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  padding: 9px 15px; border-radius: 999px;
  background: rgba(15,16,32,.7); border: 1px solid rgba(165,180,252,.18);
}

/* ---- Waitlist ---- */
.waitlist-cta { max-width: 620px; margin: 0 auto; }
.waitlist-cta .h2 {
  font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -.025em;
}
.waitlist-cta .lead { margin-bottom: 34px; }
.waitlist-cta .form-note { font-size: 13px; margin-top: 16px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 54px 24px; background: var(--bg);
  border-top: 1px solid rgba(165,180,252,.10);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 26px;
  justify-content: space-between; align-items: flex-start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 340px; }
.footer-tagline { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-head {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted-2); font-weight: 700;
}
.footer-col a {
  font-size: 14px; color: var(--text-3); text-decoration: none;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--text); }
.footer-link-indigo { color: var(--indigo-light) !important; }
.footer-link-indigo:hover { color: var(--text) !important; }
.footer-social { display: flex; gap: 14px; align-items: center; margin-top: 2px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  color: var(--muted);
  background: rgba(15,16,32,.7);
  border: 1px solid rgba(165,180,252,.14);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.social-link:hover {
  color: var(--text);
  border-color: rgba(165,180,252,.35);
  background: rgba(99,102,241,.12);
  transform: translateY(-1px);
}
.social-link:focus-visible {
  outline: 2px solid var(--indigo-light);
  outline-offset: 2px;
}
.footer-copy {
  max-width: 1180px; margin: 34px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(165,180,252,.07);
  font-size: 12.5px; color: var(--muted-2);
}
.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-copy a:hover { color: var(--text); }

/* ============================================================
   Reveal (JS adds .is-visible); base hidden state
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
/* No-JS fallback lives in a <noscript> block in index.html. */

/* ============================================================
   Responsive — matches the design's matchMedia('(min-width:880px)')
   ============================================================ */
@media (min-width: 880px) {
  .nav-links { display: flex; }

  .problem-grid { grid-template-columns: 1.1fr .9fr; }

  .mode-grid { grid-template-columns: 1fr 1fr; }
  /* Compose row: phone on the left, text on the right */
  .mode-grid--flip > div:first-child { order: 2; }
}

/* ============================================================
   Reduced motion — disable starfield twinkle, parallax, float,
   reveal, smooth scroll (JS also guards these).
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Legal pages (/privacy/, /contact/) — static, no starfield/JS
   ============================================================ */
.legal-page { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }
.legal-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(8,8,16,.7); border-bottom: 1px solid rgba(165,180,252,.10);
}
.legal-nav-inner {
  max-width: 820px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.legal-main { flex: 1; padding: 52px 24px 72px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-back { margin: 0 0 22px; }
.legal-back a { color: var(--indigo-light); text-decoration: none; font-size: 14.5px; }
.legal-back a:hover { color: var(--text); }
.legal-content h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 5vw, 44px); letter-spacing: -.02em;
  line-height: 1.1; margin: 0 0 10px;
}
.legal-updated { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.legal-lead { color: var(--text-3); font-size: 17px; line-height: 1.7; margin: 0 0 28px; }
.legal-content h2 {
  font-family: var(--font-head); font-weight: 600;
  font-size: 20px; letter-spacing: -.01em; color: var(--text);
  margin: 38px 0 12px;
}
.legal-content h3 { font-size: 15.5px; font-weight: 700; color: var(--text); margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-3); font-size: 16px; line-height: 1.7; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 9px; }
.legal-content a { color: var(--indigo-light); }
.legal-content a:hover { color: var(--text); }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-callout {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(165,180,252,.12); border-radius: 14px;
  padding: 18px 20px; margin: 0 0 26px;
}
.legal-callout ul { margin: 0; }
.legal-divider { height: 1px; background: rgba(165,180,252,.1); border: 0; margin: 36px 0; }
.legal-footer { border-top: 1px solid rgba(165,180,252,.10); padding: 28px 24px; }
.legal-footer-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
}
.legal-footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: center; }
.legal-footer-links a { color: var(--text-3); text-decoration: none; font-size: 13.5px; }
.legal-footer-links a:hover { color: var(--text); }
.legal-footer-links .sep { color: var(--muted-2); }
.legal-footer-copy { font-size: 12.5px; color: var(--muted-2); }

/* ============================================================
   Cookie consent — subtle bottom-left card
   ============================================================ */
.consent {
  position: fixed; left: 16px; bottom: 16px; z-index: 200;
  max-width: 336px;
  background: rgba(15, 16, 32, .92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(165, 180, 252, .16);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.consent.is-visible { opacity: 1; transform: none; }
.consent-text {
  margin: 0 0 12px; color: var(--text-3);
  font-size: 12.5px; line-height: 1.5;
}
.consent-text a { color: var(--indigo-light); text-decoration: none; }
.consent-text a:hover { color: var(--text); }
.consent-actions { display: flex; gap: 8px; justify-content: flex-end; }
.consent-btn {
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  padding: 7px 15px; border-radius: 8px; cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.consent-decline {
  background: transparent; color: var(--muted);
  border-color: rgba(136, 146, 176, .3);
}
.consent-decline:hover { color: var(--text); border-color: rgba(165, 180, 252, .4); }
.consent-accept {
  background: var(--amber); color: #0a0a12; border-color: var(--amber);
}
.consent-accept:hover { background: var(--amber-hover); border-color: var(--amber-hover); }
@media (max-width: 480px) {
  .consent { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .consent { transition: none; opacity: 1; transform: none; }
}
