:root {
  --bg: #050506;
  --text: #ffffff;
  --text-dim: rgba(255,255,255,0.72);
  --text-dimmer: rgba(255,255,255,0.5);
  --line: rgba(62, 200, 255, 0.16);
  --line-strong: rgba(255, 45, 45, 0.45);
  --fill-ghost: rgba(62, 200, 255, 0.06);
  --fill-solid: #e31b1b;
  --gutter: clamp(20px, 5vw, 100px);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --surface: #0c0c12;
  --ink: var(--text);
  --mute: var(--text-dim);
  --dim: var(--text-dimmer);
  --ok: #3dde8a;
  --accent: #ff2d2d;
  --accent-deep: #e31b1b;
  --cyan: #3ec8ff;
  --font-display: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --sans: var(--font-display);
  --display: var(--font-display);
  --mono: var(--font-mono);
  --max: 920px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-video { display: none; }
}

body {
  font-family: var(--font-display);
  font-weight: 500;
  background-color: #050506;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #050506;
}
.page-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-bg-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}
body > *:not(.page-bg):not(.buybar) { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .page-bg video { display: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-body {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #ff2d2d;
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-body .wrap { width: min(100% - 2.4rem, var(--max)); }

/* NAV — pinned, letterspaced mono */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(20px, 2.4vw, 34px) var(--gutter);
  padding-top: max(clamp(20px, 2.4vw, 34px), env(safe-area-inset-top));
  z-index: 60;
}
body > .nav {
  position: sticky; top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.88) 70%, rgba(0,0,0,.72) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.hero .nav {
  position: relative;
  background: linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 58%, rgba(0,0,0,0) 100%);
  border: 0;
  padding-bottom: 2.2rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  color: #fff;
}
.brand .cine,
.brand em,
.hero h1 em,
.sec-h em,
.sec-p em,
.buybar-name em,
.footer em {
  color: #ff2d2d;
  font-style: normal;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 40px);
}
.nav-links a {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(11px, 0.78vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: color .25s ease;
}
.nav-links a:hover { color: var(--text-dim); }
.nav-links .btn { color: #fff; }
.nav-links .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
}
.nav-toggle i {
  position: absolute;
  left: 50%;
  width: 22px; height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform .45s var(--ease-premium), opacity .25s ease;
}
.nav-toggle i:nth-child(1) { top: 16px; }
.nav-toggle i:nth-child(2) { top: 22px; }
.nav-toggle i:nth-child(3) { top: 28px; }
.nav.is-open .nav-toggle i:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.nav.is-open .nav-toggle i:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.nav.is-open .nav-toggle i:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-deep);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: 0;
  padding: clamp(12px, 1vw, 17px) clamp(20px, 1.8vw, 32px);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(11px, 0.78vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { background: var(--accent); border-color: #ff6a6a; }
.btn-ghost {
  background: rgba(62, 200, 255, 0.08);
  color: var(--cyan);
  border-color: rgba(62, 200, 255, 0.35);
}
.btn-ghost:hover { background: rgba(62, 200, 255, 0.16); color: #fff; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.72vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

/* HERO — full viewport video + right panel */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  top: 100px;
  z-index: -1;
  background: #000;
}
.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 32%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent 0%, transparent 45%, rgba(0,0,0,.45) 72%, rgba(0,0,0,.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.55) 0%, transparent 22%, transparent 78%, rgba(0,0,0,.65) 100%);
}
.hero > *:not(.hero-media) { position: relative; z-index: 1; }

.hero-body {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--gutter);
  min-height: 0;
}
.hero-panel {
  width: min(34vw, 520px);
  min-width: min(380px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(18px, 2vw, 28px) clamp(18px, 2vw, 32px);
}
.kicker {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(11px, 0.72vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255, 45, 45, 0.18);
  color: #fff;
  padding: clamp(9px, .8vw, 14px) clamp(14px, 1.1vw, 20px);
  line-height: 1;
  border-left: 3px solid var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.2vw, 64px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-top: clamp(20px, 2.4vw, 36px);
  max-width: 12ch;
}
.hero-lede {
  margin-top: clamp(14px, 1.4vw, 24px);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(11px, 0.94vw, 15px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.4;
  max-width: 28rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 3.2vw, 48px);
  width: 100%;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 140px; }
.hero-legal {
  padding: clamp(16px, 1.5vw, 24px) var(--gutter);
  padding-bottom: max(clamp(16px, 1.5vw, 24px), env(safe-area-inset-bottom));
  border-top: 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(11px, 0.78vw, 13px);
  color: var(--text-dim);
  line-height: 1.5;
}

/* TICKER — two identical sets, -50% is seamless */
.ticker {
  overflow: hidden;
  border-block: 0;
  padding: .7rem 0;
  background: linear-gradient(90deg, rgba(255,45,45,.08), rgba(62,200,255,.06), rgba(255,45,45,.08));
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-set {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.ticker-set b { color: var(--accent); font-weight: 600; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sec-h {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  margin: .35rem 0 .6rem;
}
.sec-p { color: var(--mute); max-width: 36rem; }

/* Numbered bands */
.band {
  padding: 3.2rem 0 2.8rem;
  border-top: 0;
}
.band-head { margin-bottom: .5rem; }
.band-split { padding-bottom: 4.5rem; }

/* 01 — composed stage */
.stage {
  position: relative;
  max-width: 1100px;
  margin: 2.8rem auto 0;
  min-height: 420px;
  padding: 1.5rem 0 4.5rem;
}
.stage-main {
  width: min(74%, 780px);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
  transform: perspective(1400px) rotateX(7deg);
  box-shadow: 0 36px 80px rgba(0,0,0,.55);
}
.stage-main img { width: 100%; display: block; }
.chip {
  position: absolute;
  margin: 0;
  width: 200px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.chip img { width: 100%; display: block; }
.chip figcaption {
  padding: .4rem .55rem .5rem;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mute);
}
.chip-encode { left: 3%; top: 12%; width: 176px; transform: rotate(-3deg); }
.chip-store { right: 4%; bottom: 6%; width: 210px; transform: rotate(2.5deg); }

/* 02 / 04 — split */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.split-flip { grid-template-columns: .85fr 1.15fr; }
.split-copy p { color: var(--mute); max-width: 34rem; }
.split-visual { position: relative; min-height: 280px; }
.inset {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
  box-shadow: 0 20px 44px rgba(0,0,0,.4);
}
.inset-queue { width: 88%; }
.inset-queue img { width: 100%; display: block; }
.inset-run {
  position: absolute;
  right: 0;
  bottom: -1.4rem;
  width: 48%;
  transform: rotate(2deg);
}
.inset-run img { width: 100%; display: block; }
.inset-run figcaption {
  padding: .35rem .5rem .45rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mute);
}

/* 03 — overlapping color frames */
.pair {
  position: relative;
  width: min(720px, 92vw);
  height: 360px;
  margin: 2.6rem auto 1.5rem;
}
.frame {
  position: absolute;
  margin: 0;
  width: 56%;
  background: #0a0a0a;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
}
.frame img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.frame figcaption {
  padding: .4rem .6rem .5rem;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mute);
}
.frame-back { left: 0; top: 0; border-color: rgba(62, 200, 255, 0.28); }
.frame-front { right: 0; bottom: 0; border-color: rgba(255, 45, 45, 0.4); }
.frame-front figcaption { color: var(--accent); }
.frame-back figcaption { color: var(--cyan); }

/* 04 — metadata as a real panel, not a banner */
.meta-stage { display: flex; justify-content: center; }
.panel {
  width: min(260px, 70%);
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.panel img { width: 100%; display: block; }

/* 05 */
.features { padding-top: 4.2rem; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.3rem;
}
.feat-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.15rem 1.2rem;
}
.feat-grid h3 { font-size: 1.05rem; margin-bottom: .35rem; font-weight: 700; }
.feat-grid p { color: var(--mute); font-size: .94rem; }
.feat-do { margin-top: 2rem; }
.more { margin-top: 1rem; }
.more a {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.more a:hover { color: #fff; }
.grade-head { margin-top: 2.4rem; }
#get .faq { padding-bottom: 0; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.2rem;
}
.compare article {
  border: 1px solid var(--line);
  background: var(--fill-ghost);
  padding: 1rem 1.05rem 1.1rem;
}
.compare article:first-child { border-color: rgba(62, 200, 255, 0.32); }
.compare article:last-child { border-color: rgba(255, 45, 45, 0.32); }
.compare h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: .35rem 0 .4rem;
}
.compare p { color: var(--mute); font-size: .9rem; }

/* CALCULATOR */
.calc-sec { padding: 3.2rem 0 2.8rem; border-top: 0; }
.calc {
  margin-top: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.35rem 1.4rem;
}
.calc-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat span { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.stat strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -.04em;
  font-weight: 800;
}
.stat.ok strong { color: var(--ok); }
input[type="range"] {
  width: 100%;
  margin: 1.15rem 0 .35rem;
  accent-color: var(--accent);
}
.ticks {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .7rem; color: var(--dim);
}
.calc-note { margin-top: .85rem; color: var(--mute); font-size: .88rem; }

.proof { margin-top: 1.6rem; width: 100%; border-collapse: collapse; font-size: .9rem; }
.proof th, .proof td { text-align: left; padding: .55rem .35rem; border-bottom: 1px solid var(--line); }
.proof th { color: var(--dim); font-weight: 500; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.proof td.save { color: var(--ok); font-family: var(--mono); }
.proof .total td { font-weight: 700; border-bottom: 0; padding-top: .85rem; }

/* BUY */
.buy { padding: 1rem 0 3.5rem; }
.buy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.faq-wrap { width: min(100% - 2.4rem, 1100px); }
#get .faq { max-width: none; }
.buy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.4rem 1.3rem;
}
.amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.4rem;
  letter-spacing: -.05em;
  line-height: .95;
  margin: .4rem 0 .3rem;
}
.plats { display: flex; flex-wrap: wrap; gap: .4rem; margin: .9rem 0 1rem; }
.plats span {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: .22rem .65rem;
  font-size: .75rem;
  color: var(--mute);
  font-family: var(--mono);
}
.plats span:not(.soon-tag) {
  background: rgba(62, 200, 255, 0.08);
  border-color: rgba(62, 200, 255, 0.35);
  color: #fff;
}
.plats .soon-tag {
  background: rgba(62, 200, 255, 0.08);
  border-color: rgba(62, 200, 255, 0.35);
  color: #fff;
}
.store {
  display: inline-flex; align-items: center;
  background: #111; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 0.65rem 0.975rem;
  min-width: 218px;
}
.store em { display: block; font-style: normal; font-size: .81rem; letter-spacing: .08em; text-transform: uppercase; color: #888; }
.store b { display: block; font-size: 1.17rem; }
.store[data-store="mac"],
.store[data-store="windows"] {
  background: rgba(62, 200, 255, 0.08);
  color: #fff;
  border-color: rgba(62, 200, 255, 0.35);
  box-shadow: none;
  transition: background .25s ease, border-color .25s ease;
}
.store[data-store="mac"] em,
.store[data-store="windows"] em {
  color: #fff;
}
.store:not(.disabled):hover {
  background: rgba(62, 200, 255, 0.16);
  border-color: rgba(62, 200, 255, 0.55);
}
.store.disabled { opacity: .7; pointer-events: none; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}
.fine { color: var(--mute); font-size: .9rem; }
.fine em { color: #ff2d2d; font-style: normal; }

.commerce { padding: 2rem 0 3rem; }
.commerce .amt { margin-top: 1rem; }
.commerce-os {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.2rem;
}
.commerce-os a {
  font-family: var(--mono);
  font-size: .8rem;
  padding: .4rem .75rem;
  border: 1px solid var(--line);
  text-decoration: none;
}
.commerce-os a.is-on {
  border-color: var(--accent);
  color: #fff;
  background: rgba(255, 45, 45, 0.18);
}
.checkout {
  display: grid;
  gap: .75rem;
  max-width: 28rem;
}
.checkout label {
  display: grid;
  gap: .25rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}
.checkout input {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  color: #fff;
  font: 500 1rem var(--sans);
  padding: .65rem .75rem;
}
.checkout-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--dim);
}

/* FAQ */
.faq { display: grid; gap: .55rem; padding-bottom: 3rem; }
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .85rem 1rem;
}
summary { cursor: pointer; font-weight: 650; }
details p { color: var(--mute); margin-top: .4rem; }

.footer {
  padding: 1.4rem 0 5.5rem;
  color: var(--dim);
  font-size: .84rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 0;
}
.footer a { color: var(--mute); }
.legal {
  margin-top: .45rem;
  max-width: 42rem;
  font-size: .72rem;
  line-height: 1.45;
  color: var(--dim);
}

.buybar {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(16px);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  background: rgba(10, 10, 14, 0.92);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 45, 45, 0.45);
  border-radius: 0;
  padding: .4rem .45rem .4rem 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease, transform .45s var(--ease-premium);
}
.buybar.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0);
}
.buybar-name { font-weight: 700; letter-spacing: 0.04em; }
.buybar-name em { color: #ff2d2d; font-style: normal; }
.buybar strong { font-family: var(--display); letter-spacing: -.03em; font-size: 1.15rem; }
.buybar .btn { padding: .55rem .95rem; }

/* WHY */
.why-hero { padding: 1.6rem 0 .8rem; }
.why-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  max-width: 22ch;
}
.why-hero p { margin-top: .65rem; color: var(--mute); max-width: 38rem; font-size: 1.05rem; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: .4rem 0 2.6rem;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.why-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  background: #000;
}
.why-copy { padding: .75rem .85rem .9rem; }
.why-copy h2 {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: .15rem 0 .35rem;
}
.why-copy p { color: var(--mute); font-size: .95rem; line-height: 1.55; }
.why-hero p strong { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(4,4,6,.94);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav { position: relative; }
  .feat-grid, .buy-grid, .calc-head, .split, .split-flip, .compare { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 2.6rem; }
  .stage { min-height: 0; padding-bottom: 7rem; }
  .stage-main { width: 88%; transform: none; }
  .chip-encode { left: 4%; top: auto; bottom: 2.2rem; }
  .chip-store { right: 4%; bottom: -0.4rem; }
  .split-visual { min-height: 220px; margin-top: 1.2rem; }
  .inset-queue { width: 100%; }
  .inset-run { width: 56%; bottom: -1rem; }
  .pair { height: 300px; }
  .panel { width: min(240px, 80%); }
  .buybar { gap: .5rem; padding-left: .75rem; }
  .hero-body { justify-content: center; }
  .hero-panel { width: 100%; min-width: 0; }
  .hero::after {
    background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%, rgba(0,0,0,.25) 30%, rgba(0,0,0,.75) 100%);
  }
}
@media (max-height: 640px) {
  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(28px, 6vw, 44px); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card img { height: 150px; }
}
