/* ============================================================
   Ghost — marketing surface (cloud AI operator).
   Dark-first "audit instrument" look: deep canvas, teal accent,
   editorial serif headers, precise mono labels. Proof-first.
   ============================================================ */

:root {
  color-scheme: dark;

  /* ── Canvas & raised surfaces ── */
  --bg: #070a10;
  --bg-2: #0a0e15;
  --surface: #0d131c;
  --surface-2: #111926;
  --surface-3: #16202f;
  --raised: #0f1622;

  /* ── Hairlines ── */
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.22);

  /* ── Ink ── */
  --paper: #e8eef6;
  --paper-strong: #f6f9fc;
  --muted: #9aa8ba;
  --faint: #6b7889;

  /* ── Spectral teal (brand) ── */
  --teal: #2dd4bf;
  --teal-bright: #5eead4;
  --teal-deep: #0f9d8c;
  --teal-wash: rgba(45, 212, 191, 0.12);
  --teal-line: rgba(45, 212, 191, 0.34);

  /* aliases kept so existing component rules resolve */
  --violet: var(--teal);
  --violet-bright: var(--teal-bright);
  --violet-deep: var(--teal-deep);
  --violet-wash: var(--teal-wash);
  --violet-line: var(--teal-line);
  --spectral: var(--teal-bright);

  /* ── Semantic (brightened for dark) ── */
  --green: #34d399;
  --green-wash: rgba(52, 211, 153, 0.13);
  --amber: #fbbf24;
  --amber-wash: rgba(251, 191, 36, 0.14);
  --red: #f87171;
  --red-wash: rgba(248, 113, 113, 0.13);

  /* ── Type ── */
  --display: "Newsreader", "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  /* ── Shape & depth ── */
  --r-sm: 10px;
  --r: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 14px 34px -22px rgba(0, 0, 0, 0.8);
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 44px 80px -40px rgba(0, 0, 0, 0.85);
  --shadow-glow: 0 40px 130px -50px rgba(45, 212, 191, 0.5);

  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: "ss01" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--bg);
  position: relative;
}
/* faint dotted grid, masked at top/bottom */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
body > * { position: relative; z-index: 1; }

h1, h2, h3 { line-height: 1.06; letter-spacing: -0.02em; margin: 0; font-weight: 600; font-family: var(--display); color: var(--paper-strong); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--paper-strong); }
code { font-family: var(--mono); }

/* ── Inline icon system ── */
.i { width: 1em; height: 1em; flex: none; stroke: currentColor; fill: none;
     stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--teal); color: #041210;
  padding: 8px 14px; border-radius: 8px; z-index: 100; font-weight: 700;
}
.skip-link:focus { left: 12px; }

/* ── Direction banner (product pivot notice) ── */
.dir-banner {
  position: relative; z-index: 60;
  padding: 12px 24px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(251, 191, 36, 0.14), rgba(45, 212, 191, 0.12)),
    var(--surface-2);
  border-bottom: 1px solid var(--amber);
}
.dir-banner strong { color: var(--paper-strong); font-weight: 650; }
.dir-banner em { font-style: normal; color: var(--teal-bright); }
.dir-banner a {
  color: var(--teal-bright);
  font-weight: 600;
  margin-left: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dir-banner a:hover { color: var(--paper-strong); }
@media (max-width: 720px) {
  .dir-banner { text-align: left; font-size: 13px; padding: 12px 16px; }
}

/* ───────────────────────── Buttons ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: var(--teal);
  color: #04120f; font-weight: 650; font-size: 15px;
  padding: 11px 19px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, var(--shadow-sm);
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease), background 0.16s;
}
.btn:hover { transform: translateY(-1.5px); background: var(--teal-bright); box-shadow: var(--shadow-glow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--teal-bright); outline-offset: 3px; }
.btn .i { font-size: 17px; stroke-width: 1.9; }

.btn--secondary { background: rgba(255, 255, 255, 0.04); color: var(--paper); border-color: var(--line-2); box-shadow: none; }
.btn--secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--line-strong); box-shadow: none; }
.btn--ghost { background: transparent; color: var(--muted); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { color: var(--paper-strong); border-color: var(--line-2); background: rgba(255, 255, 255, 0.05); box-shadow: none; }
.btn--sm { padding: 8px 13px; font-size: 13.5px; border-radius: 9px; }
.btn--lg { padding: 14px 24px; font-size: 16px; border-radius: 13px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ── Mono micro-label with a leading tick ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 11.5px; font-weight: 500;
  color: var(--teal-bright); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: currentColor; opacity: 0.7; }

.grad { color: var(--teal-bright); }

/* ───────────────────────── Nav ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  max-width: var(--maxw); margin: 0 auto; padding: 15px 24px;
  backdrop-filter: blur(14px) saturate(1.3);
  background: rgba(7, 10, 16, 0.66);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(7, 10, 16, 0.9); box-shadow: 0 12px 40px -26px rgba(0, 0, 0, 0.9); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--paper-strong); }
.brand__mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.22), rgba(15, 157, 140, 0.06));
  border: 1px solid var(--teal-line);
  box-shadow: 0 0 24px -8px rgba(45, 212, 191, 0.4);
}
.ghost-logo { width: 22px; height: 22px; display: block; }
.brand__mark--sm .ghost-logo { width: 18px; height: 18px; }

.nav__links { display: flex; gap: 4px; margin-left: 14px; margin-right: auto; }
.nav__links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 7px 12px; border-radius: 999px; transition: color 0.15s, background 0.15s;
}
.nav__links a:hover { color: var(--paper-strong); background: rgba(255, 255, 255, 0.06); }
.nav__links a.is-active { color: var(--paper-strong); background: rgba(255, 255, 255, 0.09); }
.nav__end { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; }

/* ───────────────────────── Hero shell ───────────────────────── */
.hero-shell {
  background:
    radial-gradient(1000px 500px at 74% -10%, rgba(45, 212, 191, 0.18), transparent 58%),
    radial-gradient(680px 400px at 4% 8%, rgba(94, 234, 212, 0.07), transparent 56%);
  border-bottom: 1px solid var(--line);
}

.hero {
  max-width: var(--maxw); margin: 0 auto; padding: 72px 24px 44px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-bright); margin-bottom: 22px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--teal-line);
  background: rgba(45, 212, 191, 0.08);
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.18);
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }
.hero__copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.04; font-weight: 600;
  letter-spacing: -0.025em; margin-bottom: 20px; max-width: 15ch;
}
.lede { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.62; }
.lede strong { color: var(--paper-strong); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 16px; }
.hero__note { color: var(--faint); font-size: 13.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero__note .i { font-size: 15px; color: var(--teal-bright); }

/* Hero mock — a proposed plan awaiting approval */
.mock {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow: var(--shadow-glow), var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-1.8deg) rotateX(0.8deg);
  backdrop-filter: blur(12px);
}
.mock__bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.mock__bar span { width: 11px; height: 11px; border-radius: 50%; background: #2b3543; }
.mock__bar span:nth-child(1) { background: #ff6b6b; }
.mock__bar span:nth-child(2) { background: #ffcf6b; }
.mock__bar span:nth-child(3) { background: #56d19a; }
.mock__bar em { margin-left: 8px; color: var(--faint); font-style: normal; font-size: 12.5px; font-family: var(--mono); }
.mock__body { padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.mock__row {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #dbe4ee;
  font-family: var(--mono); padding: 9px 11px; background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  min-width: 0; overflow-wrap: anywhere;
}
.mock__row--warn { border-color: rgba(251, 191, 36, 0.35); }
.mock__row--deny { color: var(--muted); }
.mock__foot { display: flex; align-items: center; gap: 10px; margin-top: 7px; }
.mock__foot .btn { pointer-events: none; }
.mock__foot .btn--sm { background: var(--teal); color: #04120f; }
.mock__foot .btn--ghost { color: var(--muted); border-color: var(--line); }
.mock__mark { margin-left: auto; opacity: 0.95; }

.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  padding: 3px 8px; border-radius: 6px; white-space: nowrap;
}
.tag .i { font-size: 12px; }
.tag--new { background: var(--teal-wash); color: var(--teal-bright); }
.tag--move { background: var(--green-wash); color: var(--green); }
.tag--rename { background: var(--teal-wash); color: var(--teal-bright); }
.tag--warn { background: var(--amber-wash); color: var(--amber); }
.tag--deny { background: var(--red-wash); color: var(--red); }
.trust-strip .i { font-size: 17px; color: var(--teal-bright); }

/* ───────────────────────── Section shell ───────────────────────── */
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 24px; }
.section__head { max-width: 700px; margin-bottom: 40px; }
.section__head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.03; }
.section__sub { color: var(--muted); font-size: 17px; margin-top: 14px; line-height: 1.6; }
.v2-card__ico .i { font-size: 21px; }
.demo__tab .i { font-size: 16px; }
.demo__tab.is-active { color: var(--paper-strong); background: var(--surface-2); border-color: var(--line); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes itemin { to { opacity: 1; transform: none; } }
.demo__ba-item .i { flex: none; font-size: 16px; }
.demo__ba-item--before .i { color: var(--red); }
.demo__ba-item--after .i { color: var(--green); }
.vert-card__ico .i { font-size: 21px; }

/* ───────────────────────── Niche cards (who it's for) ───────────────────────── */
.niche-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.niche-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 22px; background: var(--surface);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.niche-card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.niche-card h3 { font-size: 19px; margin: 15px 0 9px; }
.niche-card p { color: var(--muted); font-size: 15px; }
.niche-card__ico .i { font-size: 20px; }

/* ───────────────────────── Pipeline ───────────────────────── */
/* Six steps: an explicit 3-up reads as a deliberate 3×2 grid, where auto-fit
   would leave the sixth orphaned on its own row at common desktop widths. */
.pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pipeline li {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.pipeline li:hover { border-color: var(--teal-line); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pipeline__n {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
  background: var(--teal-wash); color: var(--teal-bright); border: 1px solid var(--teal-line);
  font-family: var(--mono); font-weight: 600; font-size: 13px; margin-bottom: 14px;
}
.pipeline h3 { font-size: 16px; margin-bottom: 7px; letter-spacing: 0; }
.pipeline p { color: var(--muted); font-size: 14.5px; }
.arch-strip .i { color: var(--teal-bright); }
.privacy__card .privacy__ico .i { font-size: 19px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; background: var(--surface-2);
  color: var(--muted); border: 1px solid var(--line-2);
}

/* ── Niche / customers ── */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.niche-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--surface);
}
.niche-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: 0; }
.niche-card p { color: var(--muted); font-size: 14.5px; }

.never-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 8px;
}
.never-row span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--surface);
  color: var(--muted); font-size: 14px; font-weight: 500;
}
.never-row .i { color: var(--red); }

/* ── Early access CTA ── */
.access { max-width: var(--maxw); margin: 0 auto; padding: 24px 24px 40px; }
.access__inner {
  text-align: center;
  border: 1px solid var(--teal-line);
  border-radius: var(--r-xl);
  padding: 56px 28px;
  background:
    radial-gradient(760px 340px at 50% -20%, rgba(45, 212, 191, 0.2), transparent 62%),
    var(--surface);
  box-shadow: var(--shadow-glow);
}
.access__inner h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.access__sub { color: var(--muted); font-size: 17px; margin: 14px auto 0; max-width: 640px; }
.access__actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin: 28px 0 16px; }
.access__note { color: var(--faint); font-size: 13px; max-width: 520px; margin: 0 auto; }

.proof-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.proof-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  list-style: none;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.proof-list .i {
  margin-top: 3px;
  color: var(--teal-bright);
  font-size: 18px;
  flex: none;
}
.proof-list li:last-child .i { color: var(--amber); }
.proof-list strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: 0;
  font-family: var(--sans);
}
.proof-list span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.proof-list code {
  font-size: 12.5px;
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--surface-3);
  border: 1px solid var(--line);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.stack-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  background: var(--surface);
}
.stack-card h3 {
  font-size: 15px;
  letter-spacing: 0;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--teal-bright);
  margin-bottom: 8px;
}
.stack-card p { color: var(--muted); font-size: 14.5px; line-height: 1.45; }

.hero__note a { color: var(--teal-bright); text-decoration: underline; text-underline-offset: 3px; }
.hero__note a:hover { color: var(--paper-strong); }

.legacy .section__sub { max-width: 720px; }
.legacy-download .download__inner {
  border-color: var(--line-2);
  box-shadow: none;
  background: var(--surface);
}
.legacy-download .download__inner .pill { margin-bottom: 16px; }

/* ───────────────────────── Download ───────────────────────── */
.download { max-width: var(--maxw); margin: 0 auto; padding: 44px 24px 120px; }
.download__inner {
  text-align: center; border: 1px solid var(--teal-line); border-radius: var(--r-xl);
  padding: 64px 28px; overflow: hidden;
  background:
    radial-gradient(760px 340px at 50% -20%, rgba(45, 212, 191, 0.2), transparent 62%),
    var(--surface);
  color: var(--paper-strong);
  box-shadow: var(--shadow-glow);
}
.download__inner h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.download__sub { color: var(--muted); font-size: 17px; margin-top: 13px; }
.download__actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin: 32px 0 18px; }
.download__note { color: var(--faint); font-size: 13.5px; max-width: 620px; margin: 0 auto; line-height: 1.55; }
.download__note a { color: var(--teal-bright); }
body[data-platform="mac"] #dl-win,
body[data-platform="windows"] #dl-mac { background: rgba(255, 255, 255, 0.05); color: var(--muted); border: 1px solid var(--line-2); box-shadow: none; }

/* ───────────────────────── Footer ───────────────────────── */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 44px 24px 64px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; }
.footer__brand p { color: var(--faint); font-size: 13.5px; margin-top: 8px; font-family: var(--mono); letter-spacing: 0.02em; }
.footer__links { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: 14px; }
.footer__links a:hover { color: var(--paper-strong); }
.footer__fine { width: 100%; color: var(--faint); font-size: 13px; padding-top: 8px; }

/* ───────────────────────── Reveal + eyes ───────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.ghost-eye { transition: transform 0.12s linear; will-change: transform; }

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 900px) {
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; padding-top: 44px; gap: 38px; }
  .mock { transform: none; }
  .nav__links, .nav__end { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: transparent; border: 1px solid var(--line-2); border-radius: 10px; padding: 10px; cursor: pointer;
  }
  .nav__toggle span { width: 20px; height: 2px; background: var(--paper); border-radius: 2px; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 100%; left: 12px; right: 12px;
    flex-direction: column; gap: 4px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r); padding: 12px; margin: 8px 0 0; box-shadow: var(--shadow);
  }
  .nav.is-open .nav__links a { padding: 10px 12px; border-radius: 8px; }
  .nav.is-open .nav__links a:hover { background: var(--surface-2); }
  .section { padding: 72px 22px; }
}
@media (max-width: 520px) {
  .pipeline { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .hero__copy h1 { font-size: 2rem; line-height: 1.06; max-width: none; }
  .lede, .section__sub { font-size: 16px; }
  .hero__actions .btn, .download__actions .btn { width: 100%; }
}

/* ───────────────────────── Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .ghost-eye { transition: none; }
  .mock { transform: none; }
}
