/* ============================================================
   FAST JET PARTS — Proposal Landing Page
   Luxurious industrial · red / black / white
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/IBMPlexMono-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/IBMPlexMono-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Saira Stencil One';
  src: url('../fonts/SairaStencilOne.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #08080a;
  --bg-panel: #0e0e11;
  --bg-card: #121216;
  --bg-elev: #17171c;
  --paper: #f5f3ee;
  --paper-card: #fdfcfa;
  --ink: #f6f5f2;
  --ink-dim: #a9a9b0;
  --ink-faint: #6f6f78;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --red: #c8102e;
  --red-deep: #8e0b21;
  --red-glow: rgba(200, 16, 46, 0.35);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --radius-lg: 22px;
  --radius-md: 15px;
  --radius-sm: 9px;
  --font-sans: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-stencil: 'Saira Stencil One', var(--font-sans);
  --container: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Logo marks (SVG symbols) ---------- */
.lk-text {
  font-family: var(--font-sans);
  font-variation-settings: 'wdth' 124, 'wght' 860;
  letter-spacing: 0.05em;
  fill: currentColor;
}
.lk-stencil { font-family: var(--font-stencil); fill: var(--streamer-ink, #fff); }
.rd-text { font-family: var(--font-stencil); fill: currentColor; letter-spacing: 0.24em; }
.mk-accent { fill: var(--red); }
.mk-ring { stroke: var(--red); }

/* ---------- Design-language column ---------- */
.dl-col { display: flex; flex-direction: column; gap: 16px; }
.dl-col .rule-card { flex: 1; }

/* ---------- Film grain (fixed, pointer-safe) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.sec { padding: 130px 0; position: relative; }
.sec--paper {
  background: var(--paper);
  --ink: #131316;
  --ink-dim: #55555c;
  --ink-faint: #85858d;
  --line: rgba(12, 12, 16, 0.1);
  --line-strong: rgba(12, 12, 16, 0.2);
  color: var(--ink);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 7px 16px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red-glow);
}

.h-display {
  font-weight: 800; font-stretch: 118%;
  letter-spacing: -0.015em; line-height: 1.02;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  text-wrap: balance; margin: 26px 0 22px;
}
.h-display em { font-style: normal; color: var(--red); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-dim); max-width: 46em; text-wrap: pretty; }
.lede strong { color: var(--ink); font-weight: 600; }

.sec-head { max-width: 760px; margin-bottom: 64px; }
.mono { font-family: var(--font-mono); }

/* ---------- Double-bezel tray ---------- */
.tray {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.tray > .tray-core {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.sec--paper .tray { background: rgba(12, 12, 16, 0.04); }
.sec--paper .tray > .tray-core {
  background: var(--paper-card);
  box-shadow: 0 24px 60px -30px rgba(20, 20, 24, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border-radius: 999px; padding: 8px 10px 8px 24px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  background: var(--red); color: #fff;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
  box-shadow: 0 14px 34px -14px var(--red-glow);
}
.btn .btn-ico {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.16); font-size: 14px;
  transition: transform 0.45s var(--ease);
}
.btn:hover { background: var(--red-deep); }
.btn:hover .btn-ico { transform: translate(2px, -1px) scale(1.05); }
.btn:active { transform: scale(0.98); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong); box-shadow: none;
}
.btn--ghost .btn-ico { background: rgba(255, 255, 255, 0.08); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.05); }
.sec--paper .btn--ghost:hover { background: rgba(12, 12, 16, 0.05); }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--line-strong); border-radius: 6px;
  padding: 5px 10px; color: var(--ink-dim); white-space: nowrap;
}
.chip--red { color: var(--red); border-color: rgba(200, 16, 46, 0.45); }
.chip--ok { color: #3ba55d; border-color: rgba(59, 165, 93, 0.4); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100; display: flex; align-items: center; gap: 6px;
  background: rgba(14, 14, 18, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 10px 8px 18px;
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.8);
  max-width: calc(100vw - 32px);
}
.nav-brand { display: flex; align-items: center; gap: 10px; margin-right: 10px; }
.nav-brand svg { height: 16px; width: auto; }
.nav-brand span {
  font-weight: 800; font-stretch: 122%; font-size: 13.5px;
  letter-spacing: 0.14em; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-dim);
  padding: 8px 13px; border-radius: 999px;
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.06); }
.nav-cta {
  margin-left: 8px; background: var(--red); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  padding: 9px 18px; border-radius: 999px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-deep); }
.nav-cta:active { transform: scale(0.97); }

.nav-burger { display: none; position: relative; width: 38px; height: 38px; border-radius: 50%; }
.nav-burger span {
  position: absolute; left: 10px; right: 10px; height: 1.6px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 22px; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 34px; visibility: hidden; opacity: 0;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
body.menu-open .menu { visibility: visible; opacity: 1; transition-delay: 0s; }
.menu a {
  font-size: clamp(2rem, 8vw, 3rem); font-weight: 800; font-stretch: 115%;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  transform: translateY(34px); opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), color 0.4s var(--ease);
}
.menu a:hover { color: var(--red); }
body.menu-open .menu a { transform: translateY(0); opacity: 1; }
body.menu-open .menu a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .menu a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .menu a:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .menu a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .menu a:nth-child(5) { transition-delay: 0.32s; }
body.menu-open .menu a:nth-child(6) { transition-delay: 0.38s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100dvh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding: 150px 0 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 600px at 78% -10%, rgba(200, 16, 46, 0.13), transparent 62%),
    radial-gradient(900px 520px at 12% 108%, rgba(255, 255, 255, 0.05), transparent 60%),
    linear-gradient(180deg, #0a0a0d 0%, var(--bg) 58%);
}
.hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.34;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.95) 30%, transparent 96%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95) 30%, transparent 96%);
}
.hero-floor {
  position: absolute; inset: auto 0 0 0; height: 44%; z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 110px),
    linear-gradient(180deg, transparent, rgba(200, 16, 46, 0.035) 88%);
  transform: perspective(700px) rotateX(58deg) scale(1.6);
  transform-origin: bottom center;
}
.hero .container { position: relative; }
.hero-mark { margin-bottom: 34px; }
.hero-mark svg { height: clamp(60px, 9vw, 96px); width: auto; }
.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.6rem);
  font-weight: 850; font-stretch: 121%;
  line-height: 0.99; letter-spacing: -0.018em;
  max-width: 11.5em; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero .lede { margin: 30px 0 40px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.ticker {
  margin-top: 88px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex; gap: 54px; width: max-content;
  animation: tick 46s linear infinite;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--ink-faint); text-transform: uppercase; white-space: nowrap;
}
.ticker-track b { color: var(--ink-dim); font-weight: 600; }
.ticker-track .tick-red { color: var(--red); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION: THE GAP
   ============================================================ */
.rivals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.rival {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--bg-panel); padding: 22px 20px;
}
.rival h4 { font-size: 15px; font-weight: 700; font-stretch: 108%; margin-bottom: 6px; }
.rival p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; }
.rival .chip { margin-top: 14px; }

.vs-table { width: 100%; border-collapse: collapse; }
.vs-table th, .vs-table td { padding: 16px 22px; text-align: left; border-top: 1px solid var(--line); }
.vs-table th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); border-top: 0; padding-top: 22px; }
.vs-table th:nth-child(2), .vs-table td:nth-child(2) { text-align: center; width: 170px; }
.vs-table th:nth-child(3), .vs-table td:nth-child(3) {
  text-align: center; width: 190px;
  background: linear-gradient(180deg, rgba(200, 16, 46, 0.09), rgba(200, 16, 46, 0.03));
}
.vs-table td:first-child { font-weight: 500; font-size: 15.5px; }
.vs-table .no { color: var(--ink-faint); font-family: var(--font-mono); }
.vs-table .yes { color: var(--red); font-weight: 700; font-family: var(--font-mono); }
.gap-kicker {
  margin-top: 56px; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 750; font-stretch: 115%; letter-spacing: -0.01em; max-width: 22em;
}
.gap-kicker em { font-style: normal; color: var(--red); }

/* ============================================================
   SECTION: STOREFRONT MOCKS (paper)
   ============================================================ */
.store-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 20px; align-items: start; }
.store-col { display: flex; flex-direction: column; gap: 20px; }

.mock { font-size: 14px; }
.mock-pad { padding: 24px; }

.mock-search-field {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 13px 16px; background: #fff;
  font-family: var(--font-mono); font-size: 14.5px;
}
.mock-search-field .cursor { width: 1.5px; height: 18px; background: var(--red); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.mock-suggest { margin-top: 10px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.mock-suggest > div { padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid var(--line); }
.mock-suggest > div:first-child { border-top: 0; }
.mock-suggest .pn { font-family: var(--font-mono); font-weight: 600; font-size: 13.5px; }
.mock-suggest .note { font-size: 12px; color: var(--ink-dim); }
.mock-suggest .hit { background: linear-gradient(90deg, rgba(200, 16, 46, 0.06), transparent); }

.hangar-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 18px; flex-wrap: wrap;
}
.hangar-chip .plane { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 14.5px; }
.hangar-chip .plane svg { width: 22px; height: 22px; }

/* PDP mock */
.pdp { display: grid; grid-template-columns: 1fr 1fr; }
.pdp-photo {
  position: relative; min-height: 320px;
  background:
    radial-gradient(400px 300px at 30% 20%, rgba(255, 255, 255, 0.09), transparent 60%),
    linear-gradient(160deg, #17171c, #0b0b0e 70%);
  display: flex; align-items: center; justify-content: center;
}
.pdp-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-photo img ~ .ph-mark { display: none; }
.pdp-photo .ph-mark { opacity: 0.16; width: 42%; }
.pdp-photo .ph-count {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75); background: rgba(8, 8, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 6px; padding: 5px 9px;
}
.pdp-body { padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 13px; }
.pdp-body h3 { font-size: 19px; font-weight: 750; font-stretch: 110%; line-height: 1.2; }
.pdp-pn { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-dim); letter-spacing: 0.05em; }
.pdp-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.pdp-specs { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 11px 0; display: grid; gap: 6px; }
.pdp-specs div { display: flex; justify-content: space-between; font-size: 13px; }
.pdp-specs dt { color: var(--ink-dim); }
.pdp-specs dd { font-family: var(--font-mono); font-weight: 600; }
.pdp-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pdp-price { font-size: 30px; font-weight: 800; font-stretch: 112%; letter-spacing: -0.01em; }
.pdp-price small { font-size: 12.5px; color: var(--ink-dim); font-weight: 500; }
.pdp-deposit {
  border: 1px dashed rgba(200, 16, 46, 0.5); border-radius: 10px;
  padding: 11px 14px; font-size: 13px; background: rgba(200, 16, 46, 0.04);
}
.pdp-deposit b { color: var(--red); }
.pdp-freight { font-size: 13px; display: grid; gap: 5px; }
.pdp-freight div { display: flex; justify-content: space-between; gap: 10px; }
.pdp-freight .mono { font-weight: 600; }
.pdp-freight .quote-note { color: var(--ink-dim); font-size: 12px; }
.pdp-cta { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.pdp-cta .btn { padding: 6px 8px 6px 18px; font-size: 13.5px; }
.pdp-cta .btn .btn-ico { width: 26px; height: 26px; font-size: 12px; }
.aog {
  display: flex; align-items: center; gap: 10px;
  background: #131316; color: #f4f3f0; border-radius: 10px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 10px 14px;
}
.aog::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 9px var(--red-glow); animation: pulse 1.6s var(--ease) infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

.store-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.store-note { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; background: var(--paper-card); }
.store-note h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; display: flex; gap: 9px; align-items: center; }
.store-note h4 .idx { font-family: var(--font-mono); color: var(--red); font-size: 12px; }
.store-note p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.55; }

/* ============================================================
   SECTION: BACK OFFICE
   ============================================================ */
.bo-window { font-size: 14px; }
.bo-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.bo-chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.bo-chrome .addr {
  margin-left: 12px; font-family: var(--font-mono); font-size: 11.5px;
  color: var(--ink-faint); letter-spacing: 0.06em;
  border: 1px solid var(--line); border-radius: 7px; padding: 5px 12px;
}
.bo-main { display: grid; grid-template-columns: 200px 1fr; min-height: 430px; }
.bo-side { border-right: 1px solid var(--line); padding: 18px 12px; display: flex; flex-direction: column; gap: 3px; }
.bo-side button {
  text-align: left; padding: 10px 14px; border-radius: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-dim);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  display: flex; justify-content: space-between; align-items: center;
}
.bo-side button:hover { background: rgba(255, 255, 255, 0.045); color: var(--ink); }
.bo-side button[aria-selected="true"] { background: rgba(200, 16, 46, 0.12); color: var(--ink); }
.bo-side button[aria-selected="true"]::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.bo-side .side-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); padding: 12px 14px 6px; }
.bo-view { padding: 24px; display: none; }
.bo-view.active { display: block; animation: fadeup 0.55s var(--ease); }
@keyframes fadeup { from { opacity: 0; transform: translateY(10px); } }

.order-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px;
  background: var(--bg-card);
}
.order-row .who { font-size: 13.5px; }
.order-row .who b { display: block; font-size: 14px; }
.order-row .who span { color: var(--ink-faint); font-family: var(--font-mono); font-size: 11.5px; }
.order-row .amt { font-family: var(--font-mono); font-weight: 600; font-size: 14px; }
.order-flow {
  border: 1px solid rgba(200, 16, 46, 0.35); background: rgba(200, 16, 46, 0.05);
  border-radius: 12px; padding: 16px 18px; margin-top: 16px; font-size: 13.5px; line-height: 1.6;
}
.order-flow b { color: var(--red); }
.order-flow .flow-line { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--ink-dim); margin-top: 8px; display: block; }

.inv-form { display: grid; gap: 16px; max-width: 520px; }
.inv-field label { display: block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 7px; }
.inv-input {
  border: 1px solid var(--line-strong); border-radius: 10px; padding: 11px 14px;
  font-family: var(--font-mono); font-size: 14px; background: var(--bg-card); color: var(--ink);
}
.inv-toggle { display: flex; gap: 8px; }
.inv-toggle button {
  flex: 1; border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 11px 8px; font-size: 13px; font-weight: 600; color: var(--ink-dim);
  transition: all 0.35s var(--ease);
}
.inv-toggle button[aria-pressed="true"] { border-color: var(--red); color: var(--ink); background: rgba(200, 16, 46, 0.1); }
.inv-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inv-note { font-size: 12.5px; color: var(--ink-dim); border-left: 2px solid var(--red); padding-left: 12px; line-height: 1.55; }

.mkt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mkt-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: var(--bg-card); }
.mkt-card h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.mkt-card .mono { font-size: 12px; color: var(--ink-dim); }
.mkt-card .count { font-size: 26px; font-weight: 800; font-stretch: 112%; margin: 8px 0 2px; }

/* ============================================================
   SECTION: FEATURES / PHASES (bento)
   ============================================================ */
.phases { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.phase { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-panel); padding: 30px; position: relative; overflow: hidden; }
.phase--1 { grid-column: span 7; }
.phase--2 { grid-column: span 5; }
.phase--road { grid-column: span 12; }
.phase-tag { display: flex; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.phase-tag .pnum { font-family: var(--font-mono); font-size: 12px; color: var(--red); letter-spacing: 0.16em; }
.phase-tag h3 { font-size: 22px; font-weight: 750; font-stretch: 112%; }
.phase-tag .when { margin-left: auto; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); letter-spacing: 0.08em; text-transform: uppercase; }
.phase p.sub { color: var(--ink-dim); font-size: 14px; margin-bottom: 18px; }
.feat-list { list-style: none; display: grid; gap: 9px; }
.phase--1 .feat-list { grid-template-columns: 1fr 1fr; }
.phase--road .feat-list { grid-template-columns: repeat(4, 1fr); }
.feat-list li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; align-items: flex-start; }
.feat-list li::before {
  content: ''; flex: 0 0 auto; width: 14px; height: 14px; margin-top: 4px;
  background: var(--red);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%, 50% 78%);
  opacity: 0.9;
}
.phase--road .feat-list li::before { background: var(--ink-faint); }
.phase--road { background: linear-gradient(180deg, var(--bg-panel), rgba(255,255,255,0.015)); }

/* ============================================================
   SECTION: LOGOS (paper)
   ============================================================ */
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.logo-card { display: flex; flex-direction: column; }
.logo-stage {
  background: #0b0b0e; border-radius: calc(var(--radius-lg) - 8px);
  min-height: 210px; display: flex; align-items: center; justify-content: center;
  padding: 34px 24px; position: relative; overflow: hidden;
}
.logo-stage::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(340px 200px at 50% 0%, rgba(255,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.logo-stage svg { width: 100%; max-width: 300px; height: auto; position: relative; z-index: 1; }
.logo-meta { padding: 20px 22px 22px; }
.logo-meta .dir { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: 0.2em; text-transform: uppercase; }
.logo-meta h3 { font-size: 18px; font-weight: 750; font-stretch: 110%; margin: 6px 0 8px; }
.logo-meta p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.55; }
.mono-strip { display: flex; gap: 8px; margin-top: 16px; }
.mono-cell {
  flex: 1; border-radius: 9px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.mono-cell svg { height: 26px; width: auto; max-width: 86%; }
.mono-cell--dark { background: #0b0b0e; color: #fff; }
.mono-cell--light { background: #fff; color: #0b0b0e; }
.mono-cell--red { background: #c8102e; color: #fff; }
.mono-cell .m-only * { fill: currentColor !important; stroke: none !important; }
.merch-shot { margin: 16px 0 0; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); position: relative; }
.merch-shot img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.merch-shot figcaption {
  position: absolute; right: 8px; bottom: 8px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 8, 10, 0.55); padding: 4px 8px; border-radius: 5px;
}
.logo-foot { margin-top: 26px; display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-dim); }
.logo-foot .chip { flex: 0 0 auto; }

/* ============================================================
   SECTION: DESIGN LANGUAGE
   ============================================================ */
.dl-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 20px; align-items: stretch; }
.swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.swatch { border-radius: 12px; border: 1px solid var(--line); overflow: hidden; }
.swatch .sw { height: 84px; }
.swatch figcaption { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--ink-dim); padding: 9px 10px; text-transform: uppercase; background: var(--bg-panel); }
.type-spec { padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.type-spec .t-display { font-size: 40px; font-weight: 850; font-stretch: 124%; line-height: 1; letter-spacing: -0.01em; }
.type-spec .t-body { font-size: 15px; color: var(--ink-dim); max-width: 30em; }
.type-spec .t-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }
.provenance {
  border: 1px solid var(--line-strong); border-radius: 12px; padding: 16px 18px;
  font-family: var(--font-mono); display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 12.5px; letter-spacing: 0.05em; background: var(--bg-card);
}
.provenance b { color: var(--red); font-weight: 600; }
.dl-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.rule-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; background: var(--bg-panel); }
.rule-card h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; }
.rule-card--do h4 { color: var(--red); }
.rule-card--no h4 { color: var(--ink-faint); }
.rule-card ul { list-style: none; display: grid; gap: 9px; font-size: 14px; color: var(--ink-dim); }
.rule-card li { padding-left: 18px; position: relative; }
.rule-card--do li::before { content: '—'; position: absolute; left: 0; color: var(--red); }
.rule-card--no li::before { content: '×'; position: absolute; left: 0; color: var(--ink-faint); }

/* ============================================================
   SECTION: INVESTMENT
   ============================================================ */
.invest-grid { display: grid; grid-template-columns: 6fr 6fr; gap: 20px; align-items: stretch; }
.price-card { padding: 40px 38px; display: flex; flex-direction: column; }
.price-big { font-size: clamp(4rem, 8vw, 6.2rem); font-weight: 850; font-stretch: 122%; letter-spacing: -0.02em; line-height: 1; }
.price-big sup { font-size: 0.35em; font-weight: 700; vertical-align: super; margin-right: 4px; }
.price-sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); margin-top: 12px; }
.price-divider { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }
.hosting-line { display: flex; align-items: baseline; gap: 12px; }
.hosting-line .hprice { font-size: 34px; font-weight: 800; font-stretch: 112%; }
.hosting-line .hper { color: var(--ink-dim); font-size: 14px; }
.included { list-style: none; display: grid; gap: 10px; margin-top: 18px; font-size: 14.5px; }
.included li { display: flex; gap: 11px; align-items: flex-start; }
.included li::before { content: ''; flex: 0 0 auto; width: 13px; height: 13px; margin-top: 5px; background: var(--red); clip-path: polygon(0% 100%, 50% 0%, 100% 100%, 50% 78%); }
.included li.dim { color: var(--ink-dim); }
.included li.dim::before { background: var(--ink-faint); }
.terms-note { margin-top: auto; padding-top: 24px; font-size: 13px; color: var(--ink-dim); line-height: 1.6; }
.terms-note b { color: var(--ink); }

.math-card { padding: 38px; display: flex; flex-direction: column; gap: 26px; }
.math-row { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.math-row:last-child { border-bottom: 0; padding-bottom: 0; }
.math-row .m-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px; }
.math-row .m-line { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; font-size: 15px; }
.math-row .m-line + .m-line { margin-top: 7px; }
.math-row .m-line .val { font-family: var(--font-mono); font-weight: 600; }
.math-row .m-line.hot .val, .math-row .m-line.hot { color: var(--red); font-weight: 700; }
.math-foot { font-size: 13px; color: var(--ink-faint); }

/* ============================================================
   SECTION: TIMELINE
   ============================================================ */
.tl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.tl-step { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-panel); padding: 30px; position: relative; }
.tl-step .tnum { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; }
.tl-step h3 { font-size: 20px; font-weight: 750; font-stretch: 112%; margin: 10px 0 10px; }
.tl-step p { font-size: 14px; color: var(--ink-dim); line-height: 1.6; }
.tl-step .tbar { height: 3px; border-radius: 2px; background: var(--line-strong); margin-top: 22px; overflow: hidden; position: relative; }
.tl-step .tbar i { position: absolute; inset: 0; background: var(--red); transform-origin: left; }
.tl-step:nth-child(1) .tbar i { transform: scaleX(0.16); }
.tl-step:nth-child(2) .tbar i { transform: scaleX(0.55); }
.tl-step:nth-child(3) .tbar i { transform: scaleX(1); opacity: 0.55; }

.tl-note {
  margin-top: 26px; font-size: 13.5px; color: var(--ink-dim);
  border-left: 2px solid var(--red); padding-left: 14px;
  max-width: 56em; line-height: 1.6;
}

/* ============================================================
   SECTION: NEXT STEPS / FOOTER
   ============================================================ */
.next { text-align: left; }
.next-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 20px; align-items: stretch; }
.next-steps-list { list-style: none; display: grid; gap: 0; counter-reset: ns; }
.next-steps-list li {
  counter-increment: ns; display: flex; gap: 20px; align-items: baseline;
  padding: 22px 4px; border-bottom: 1px solid var(--line); font-size: 16.5px;
}
.next-steps-list li::before {
  content: counter(ns, decimal-leading-zero);
  font-family: var(--font-mono); color: var(--red); font-size: 13px; font-weight: 600;
}
.next-steps-list li b { font-weight: 650; }
.next-steps-list li span { color: var(--ink-dim); font-size: 14px; }
.contact-card { padding: 34px; display: flex; flex-direction: column; }
.contact-card .streamer-mini { margin-bottom: 26px; }
.contact-card h3 { font-size: 22px; font-weight: 750; font-stretch: 112%; }
.contact-card p { color: var(--ink-dim); font-size: 14px; margin-top: 8px; }
.contact-card .c-row { margin-top: auto; padding-top: 28px; display: flex; flex-direction: column; gap: 6px; }
.contact-card .c-row a { font-family: var(--font-mono); font-size: 14px; color: var(--ink); transition: color 0.35s var(--ease); }
.contact-card .c-row a:hover { color: var(--red); }
.contact-card .c-row span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); letter-spacing: 0.14em; text-transform: uppercase; }

.footer { border-top: 1px solid var(--line); padding: 34px 0 44px; }
.footer .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer p { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--ink-faint); text-transform: uppercase; }
.footer svg { height: 15px; width: auto; opacity: 0.75; }

/* ============================================================
   Reveal choreography
   ============================================================ */
.rv { opacity: 0; transform: translateY(30px); filter: blur(7px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.rv.in { opacity: 1; transform: translateY(0); filter: blur(0); }
.rv-1 { transition-delay: 0.06s; } .rv-2 { transition-delay: 0.14s; }
.rv-3 { transition-delay: 0.22s; } .rv-4 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; filter: none; transition: none; }
  .ticker-track { animation: none; }
  .aog::before { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .rivals { grid-template-columns: 1fr 1fr; }
  .store-grid, .dl-grid, .invest-grid, .next-grid { grid-template-columns: 1fr; }
  .phase--1, .phase--2 { grid-column: span 12; }
  .phase--1 .feat-list { grid-template-columns: 1fr 1fr; }
  .phase--road .feat-list { grid-template-columns: 1fr 1fr; }
  .logo-grid { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .sec { padding: 84px 0; }
  .container { padding: 0 20px; }
  .nav { top: 12px; padding: 7px 8px 7px 15px; gap: 4px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero { padding-top: 120px; }
  .hero .lede { margin: 24px 0 32px; }
  .ticker { margin-top: 60px; }
  .rivals { grid-template-columns: 1fr; }
  .vs-table th, .vs-table td { padding: 13px 12px; font-size: 13.5px; }
  .vs-table th:nth-child(2), .vs-table td:nth-child(2) { width: auto; }
  .vs-table th:nth-child(3), .vs-table td:nth-child(3) { width: auto; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-photo { min-height: 230px; }
  .store-notes { grid-template-columns: 1fr; }
  .bo-main { grid-template-columns: 1fr; min-height: 0; }
  .bo-side { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 10px; }
  .bo-side .side-label { display: none; }
  .bo-side button { white-space: nowrap; }
  .phase--1 .feat-list, .phase--road .feat-list { grid-template-columns: 1fr; }
  .mkt-grid { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .swatch:last-child { grid-column: span 2; }
  .dl-rules { grid-template-columns: 1fr; }
  .tl { grid-template-columns: 1fr; }
  .price-card, .math-card, .contact-card { padding: 28px 24px; }
  .mock-pad { padding: 18px; }
  .inv-pair { grid-template-columns: 1fr; }
}
