/* Icon Breaking Agency — standalone design system.
   NOT related to Helius. Light editorial / brutalist masthead aesthetic. */

:root {
  --paper-0: #efe9d8;       /* warmest page */
  --paper-1: #ebe4d0;       /* default page */
  --paper-2: #e3dcc4;       /* raised */
  --paper-3: #d6cdb3;       /* deeper */
  --paper-4: #c0b698;       /* hairlines */

  --ink-0: #0a0a08;          /* pure ink */
  --ink-1: #1a1a16;          /* heavy text */
  --ink-2: #34322a;          /* body */
  --ink-3: #5c5848;          /* muted */
  --ink-4: #807a64;          /* dim caption */

  --red-0: #e51c1c;          /* hot signal red — BREAK stamp */
  --red-1: #c41818;          /* red ink */
  --red-2: #8e1212;          /* deep red */

  --blue: #1a45a6;           /* secondary accent (rare) */
  --green: #146b3f;          /* affirmative */

  --font-display: "Antonio", "Oswald", Impact, sans-serif;
  --font-editorial: "Newsreader", "Times New Roman", serif;
  --font-grotesque: "Inter Tight", "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;

  --page-max: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
  --rule: 1px solid var(--ink-0);
  --rule-thin: 1px solid var(--paper-4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--paper-1);
  color: var(--ink-1);
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

::selection { background: var(--ink-0); color: var(--red-0); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }

/* Newsprint grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: 0.10; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAnIGhlaWdodD0nMjAwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9JzAuOScgbnVtT2N0YXZlcz0nMicgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScgb3BhY2l0eT0nMC42Jy8+PC9zdmc+");
}

/* ─── Typography ─── */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--ink-0);
}
.editorial {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
}
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.smcap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.muted { color: var(--ink-3); }
.dim { color: var(--ink-4); }
.red { color: var(--red-0); }
.tabular { font-variant-numeric: tabular-nums; }
.italic { font-style: italic; }

/* ─── Layout ─── */

.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-wide {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding-top: clamp(60px, 9vh, 110px);
  padding-bottom: clamp(60px, 9vh, 110px);
  position: relative;
}
.section-bordered {
  border-top: var(--rule);
}

/* ─── Masthead (top nav) ─── */

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper-0);
  border-bottom: var(--rule);
}
.masthead-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px var(--gutter);
}
.mast-brand {
  display: flex; align-items: baseline; gap: 12px;
}
.mast-stamp {
  display: inline-block;
  background: var(--red-0);
  color: var(--paper-0);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 6px 9px 4px;
  text-transform: uppercase;
}
.mast-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--ink-0);
  text-transform: uppercase;
}
.mast-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.mast-nav {
  display: flex; gap: 28px; justify-content: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
}
.mast-nav a { transition: color .15s; }
.mast-nav a:hover { color: var(--red-0); }
.mast-nav .idx { color: var(--ink-4); margin-right: 4px; font-size: 9px; }

.mast-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 14px;
  background: var(--ink-0);
  color: var(--paper-0);
  border: 1px solid var(--ink-0);
  transition: all .2s;
}
.mast-cta:hover { background: var(--red-0); border-color: var(--red-0); }
.mast-cta .arrow { transition: transform .2s; }
.mast-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 1100px) {
  .mast-nav { display: none; }
  .masthead-row { grid-template-columns: 1fr auto; }
}

/* Sub-masthead bar (issue / date / volume) */
.mast-meta {
  border-top: var(--rule-thin);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.mast-meta > * {
  padding: 8px var(--gutter);
  border-right: var(--rule-thin);
  display: flex; align-items: center; gap: 6px;
}
.mast-meta > *:last-child { border-right: 0; }
.mast-meta .live { color: var(--red-0); }
.mast-meta .live::before {
  content: ""; width: 6px; height: 6px; background: var(--red-0);
  display: inline-block; margin-right: 4px;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%, 60% { opacity: 1; } 70%, 100% { opacity: 0; } }
@media (max-width: 700px) {
  .mast-meta { grid-template-columns: 1fr 1fr; }
  .mast-meta > *:nth-child(2) { border-right: 0; }
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--ink-0);
  transition: all .2s;
  background: transparent;
}
.btn-primary {
  background: var(--ink-0);
  color: var(--paper-0);
}
.btn-primary:hover {
  background: var(--red-0);
  border-color: var(--red-0);
}
.btn-ghost {
  color: var(--ink-0);
}
.btn-ghost:hover {
  background: var(--ink-0);
  color: var(--paper-0);
}
.btn-red {
  background: var(--red-0);
  border-color: var(--red-0);
  color: var(--paper-0);
}
.btn-red:hover {
  background: var(--ink-0);
  border-color: var(--ink-0);
}

/* ─── Hero ─── */

.hero {
  border-bottom: var(--rule);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
}
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-main {
  padding: 56px var(--gutter) 48px;
  border-right: var(--rule);
}
@media (max-width: 1100px) { .hero-main { border-right: 0; border-bottom: var(--rule); } }

.hero-issue {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-3);
  text-transform: uppercase;
  display: flex; gap: 24px; align-items: center;
  margin-bottom: 36px;
}
.hero-issue::after {
  content: ""; flex: 1; height: 1px; background: var(--ink-0);
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-0);
  margin-bottom: 28px;
}
.hero-h1 .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 0.78em;
  color: var(--red-0);
}
.hero-h1 .stamp {
  display: inline-block;
  background: var(--ink-0);
  color: var(--paper-0);
  padding: 0 0.14em 0.04em;
  margin-right: 0.06em;
  line-height: 0.95;
}
.hero-h1 .stamp-red {
  background: var(--red-0);
  color: var(--paper-0);
}

.hero-sub {
  font-family: var(--font-editorial);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  max-width: 60ch;
  color: var(--ink-1);
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--red-0); font-weight: 500; font-style: italic; }
.hero-sub em { color: var(--ink-0); font-style: italic; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero side: live pitch log */
.hero-side {
  background: var(--ink-0);
  color: var(--paper-0);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  display: flex; flex-direction: column;
}
.hero-side-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--ink-2);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-side-head .live {
  color: var(--red-0);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-side-head .live::before {
  content: ""; width: 6px; height: 6px; background: var(--red-0);
  display: inline-block;
  animation: blink 1.4s infinite;
}
.hero-side-body {
  padding: 12px 18px;
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
  min-height: 380px;
}
.hero-side-foot {
  padding: 14px 18px;
  border-top: 1px solid var(--ink-2);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: flex; justify-content: space-between;
}

.hero-side-line {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  gap: 10px;
  align-items: baseline;
}
.hero-side-line .t {
  font-weight: 500;
  letter-spacing: 0.08em;
}
.hero-side-line .t.PITCH { color: #f5b842; }
.hero-side-line .t.BOOK  { color: #6ed47f; }
.hero-side-line .t.SYNC  { color: #6ab3ff; }
.hero-side-line .t.DM    { color: var(--paper-0); }
.hero-side-line .t.ROYAL { color: var(--red-0); }
.hero-side-line .t.PR    { color: #c89dff; }
.hero-side-line .n { color: var(--paper-2); }
.hero-side-line .a { color: var(--ink-4); text-align: right; }
.hero-side-line.first { color: var(--paper-0); animation: type-in .4s ease; }
@keyframes type-in {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ─── Marquee strip ─── */

.marquee {
  border-bottom: var(--rule);
  background: var(--ink-0);
  color: var(--paper-0);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: tick 60s linear infinite;
  padding: 13px 0;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 10px; }
.marquee-dot { width: 5px; height: 5px; background: var(--red-0); }
.m-pitch { color: #f5b842; }
.m-book  { color: #6ed47f; }
.m-sync  { color: #6ab3ff; }
.m-royal { color: var(--red-0); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Numbers / Stats ─── */

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--rule);
}
.number {
  padding: 36px 28px;
  border-right: var(--rule-thin);
  display: flex; flex-direction: column; gap: 8px;
}
.number:last-child { border-right: 0; }
.number .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
}
.number .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--ink-0);
  text-transform: uppercase;
}
.number .v .accent { color: var(--red-0); }
@media (max-width: 900px) {
  .numbers { grid-template-columns: 1fr 1fr; }
  .number:nth-child(2) { border-right: 0; }
  .number:nth-child(1), .number:nth-child(2) { border-bottom: var(--rule-thin); }
}

/* ─── Section heads ─── */

.sec-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.sec-num::before, .sec-num::after {
  content: ""; flex: 1; height: 1px; background: var(--ink-0);
}

.sec-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: var(--rule);
}
.sec-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-0);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.sec-head .eyebrow::before {
  content: ""; width: 8px; height: 8px; background: var(--red-0);
  display: inline-block;
  animation: blink 2s infinite;
}
.sec-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-0);
  max-width: 18ch;
}
.sec-head h2 .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--red-0);
}
.sec-head p {
  font-family: var(--font-editorial);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 52ch;
}

@media (max-width: 900px) {
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Proof (receipts + sidebar) ─── */

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 24px;
}
@media (max-width: 1000px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-left h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-0);
  margin: 16px 0 18px;
  max-width: 14ch;
}
.proof-left h3 .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--red-0);
}
.proof-left p { color: var(--ink-2); max-width: 44ch; margin-bottom: 24px; }

.proof-meta {
  border-top: var(--rule-thin);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.04em;
}
.proof-meta span.red { font-weight: 500; }

.terminal {
  background: var(--ink-0);
  color: var(--paper-0);
  font-family: var(--font-mono); font-size: 12px;
  line-height: 1.6;
}
.terminal-head {
  padding: 12px 18px;
  border-bottom: 1px solid var(--ink-2);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.terminal-head .live {
  color: var(--red-0);
  display: inline-flex; align-items: center; gap: 6px;
}
.terminal-head .live::before {
  content: ""; width: 6px; height: 6px; background: var(--red-0);
  animation: blink 1.4s infinite;
}
.terminal-body {
  padding: 14px 0;
  min-height: 380px;
}
.term-row {
  display: grid;
  grid-template-columns: 60px 180px 1fr 56px;
  gap: 14px;
  padding: 5px 18px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--paper-2);
}
.term-row:first-child {
  color: var(--paper-0);
  border-left: 2px solid var(--red-0);
  background: rgba(229, 28, 28, 0.07);
  animation: termin .4s ease;
}
@keyframes termin {
  from { opacity: 0; transform: translateY(-3px); background: rgba(229,28,28,0.18); }
  to   { opacity: 1; transform: none; background: rgba(229,28,28,0.07); }
}
.term-t { font-weight: 500; letter-spacing: 0.08em; }
.term-t.PITCH { color: #f5b842; }
.term-t.BOOK  { color: #6ed47f; }
.term-t.SYNC  { color: #6ab3ff; }
.term-t.DM    { color: var(--paper-0); }
.term-t.ROYAL { color: var(--red-0); }
.term-t.PR    { color: #c89dff; }
.term-k { color: var(--paper-0); }
.term-n { color: var(--paper-3); }
.term-a { color: var(--ink-4); text-align: right; }

/* ─── Doctrine: NOT X / IS Y cards ─── */

.doctrine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--rule);
  border-left: var(--rule);
  margin-top: 0;
}
.doc-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--paper-0);
}
.doc-card .tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.26em;
  color: var(--red-0);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.doc-card .not {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--ink-3);
  font-size: 15px;
}
.doc-card .not::before {
  content: "Not. ";
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-right: 4px;
}
.doc-card .is-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-0);
  max-width: 18ch;
}
.doc-card .is-h .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--red-0);
}
.doc-card .body {
  color: var(--ink-2);
  max-width: 44ch;
  font-size: 16px;
}
@media (max-width: 900px) {
  .doctrine-grid { grid-template-columns: 1fr; }
}

/* ─── Protocol (R.O.S.T.E.R.) ─── */

.protocol-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-top: var(--rule);
  border-bottom: var(--rule);
}
@media (max-width: 1000px) { .protocol-grid { grid-template-columns: 1fr; } }

.protocol-list {
  border-right: var(--rule);
}
@media (max-width: 1000px) { .protocol-list { border-right: 0; border-bottom: var(--rule); } }

.protocol-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 28px;
  border-bottom: var(--rule-thin);
  text-align: left;
  transition: background .15s;
  background: transparent;
}
.protocol-row:last-child { border-bottom: 0; }
.protocol-row:hover { background: var(--paper-2); }
.protocol-row.active {
  background: var(--ink-0);
  color: var(--paper-0);
}
.protocol-row.active .p-letter,
.protocol-row.active .p-name,
.protocol-row.active .p-sub,
.protocol-row.active .p-idx {
  color: var(--paper-0);
}
.protocol-row.active .p-letter { color: var(--red-0); }
.p-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.8;
  color: var(--ink-3);
  text-transform: uppercase;
  transition: color .15s;
}
.protocol-row:hover .p-letter { color: var(--ink-0); }
.p-meta { display: flex; flex-direction: column; gap: 4px; }
.p-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-0);
}
.p-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
}
.p-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  text-align: right;
}

.protocol-detail {
  padding: 40px;
  background: var(--paper-0);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 500px;
}
.protocol-detail .tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--red-0); text-transform: uppercase;
}
.protocol-detail .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.protocol-detail .title .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--red-0);
}
.protocol-detail .body { color: var(--ink-2); max-width: 52ch; font-size: 17px; }
.protocol-detail .mini {
  margin-top: auto;
  border-top: var(--rule-thin);
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 0;
}
.mini-row {
  display: grid; grid-template-columns: 100px 1fr;
  font-family: var(--font-mono); font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--paper-4);
}
.mini-row:last-child { border-bottom: 0; }
.mini-row .k { color: var(--ink-4); letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; }
.mini-row .v { color: var(--ink-0); }
.mini-row .v.red { color: var(--red-0); font-weight: 500; }

/* ─── Stack (surfaces) ─── */

.stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}
.stack-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 36px 28px;
  background: var(--paper-0);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 420px;
  position: relative;
}
.stack-card .head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-4);
}
.stack-card .head .red { color: var(--red-0); }
.stack-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-0);
}
.stack-card .sub {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--ink-3);
  font-size: 15px;
}
.stack-card .body { color: var(--ink-2); font-size: 16px; }
.stack-card .targets {
  margin-top: auto;
  border-top: var(--rule-thin);
  padding-top: 14px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.stack-card .targets span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper-2);
  color: var(--ink-1);
  padding: 4px 8px;
  border: 1px solid var(--paper-4);
}

@media (max-width: 900px) { .stack { grid-template-columns: 1fr; } }

/* ─── The Fight ─── */

.fight {
  border: var(--rule);
  background: var(--paper-0);
}
.fight-head {
  display: grid;
  grid-template-columns: 140px repeat(5, 1fr);
  border-bottom: var(--rule);
  background: var(--ink-0);
  color: var(--paper-0);
}
.fight-corner {
  padding: 18px 16px;
  border-right: 1px solid var(--ink-2);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-4);
  display: flex; align-items: flex-end;
}
.fight-col {
  padding: 18px 16px;
  border-right: 1px solid var(--ink-2);
  display: flex; flex-direction: column; gap: 4px;
}
.fight-col:last-child { border-right: 0; }
.fight-col.us {
  background: var(--red-0);
  color: var(--paper-0);
  position: relative;
}
.fight-col .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--paper-2);
}
.fight-col.us .name { color: var(--paper-0); font-size: 22px; }
.fight-col .tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.fight-col.us .tag { color: var(--paper-2); }

.fight-row {
  display: grid;
  grid-template-columns: 140px repeat(5, 1fr);
  border-bottom: var(--rule-thin);
}
.fight-row:last-child { border-bottom: 0; }
.fight-rowk {
  padding: 16px 16px;
  border-right: var(--rule-thin);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center;
  background: var(--paper-1);
}
.fight-cell {
  padding: 16px 16px;
  border-right: var(--rule-thin);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
  display: flex; align-items: center; gap: 8px;
}
.fight-cell:last-child { border-right: 0; }
.fight-cell.empty { color: var(--ink-4); font-style: italic; }
.fight-cell.us {
  background: rgba(229, 28, 28, 0.08);
  color: var(--ink-0);
  font-weight: 500;
}
.fight-dot {
  width: 5px; height: 5px;
  background: var(--red-0);
  flex-shrink: 0;
}
.fight-foot {
  padding: 18px 24px;
  border-top: var(--rule);
  background: var(--ink-0);
  color: var(--paper-0);
  text-align: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15px;
}
.fight-foot .red { color: var(--red-0); font-weight: 500; }

@media (max-width: 1100px) {
  .fight { overflow-x: auto; }
  .fight-head, .fight-row { min-width: 1000px; }
}

/* ─── Plans ─── */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
}
.plan {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 36px 28px;
  background: var(--paper-0);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.plan.featured {
  background: var(--ink-0);
  color: var(--paper-0);
}
.plan-flag {
  position: absolute; top: 0; right: 0;
  background: var(--red-0); color: var(--paper-0);
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 10px;
}
.plan-head {
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 18px;
  border-bottom: var(--rule-thin);
}
.plan.featured .plan-head { border-bottom-color: var(--ink-2); }
.plan .tier {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-3);
}
.plan.featured .tier { color: var(--red-0); }
.plan-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; line-height: 0.95;
  letter-spacing: -0.005em; text-transform: uppercase;
}
.plan-price { display: flex; flex-direction: column; gap: 4px; }
.plan-price .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px; line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.plan.featured .plan-price .v { color: var(--red-0); }
.plan-price .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.plan.featured .plan-price .k { color: var(--paper-3); }

.plan-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.plan-bullets li {
  display: grid; grid-template-columns: 14px 1fr; gap: 10px;
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink-2);
}
.plan.featured .plan-bullets li { color: var(--paper-2); }
.plan-bullets .dot {
  width: 6px; height: 6px;
  background: var(--red-0);
  margin-top: 7px;
}
.plan .btn { align-self: flex-start; }
.plan.featured .btn-ghost { color: var(--paper-0); border-color: var(--paper-0); }
.plan.featured .btn-ghost:hover { background: var(--paper-0); color: var(--ink-0); }

@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

/* ─── FAQ ─── */

.faq { border-top: var(--rule); }
.faq-item {
  border-bottom: var(--rule);
  cursor: pointer;
}
.faq-item:hover { background: var(--paper-0); }
.faq-q {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 24px var(--gutter);
}
.faq-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; color: var(--ink-3);
}
.faq-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink-0);
}
.faq-text .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  color: var(--red-0);
}
.faq-toggle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--red-0);
  text-align: right;
  line-height: 1;
}
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 var(--gutter) 0 calc(var(--gutter) + 84px);
  font-family: var(--font-editorial);
  color: var(--ink-2);
  font-size: 17px;
  max-width: 70ch;
  transition: max-height .4s, padding .4s;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 var(--gutter) 28px calc(var(--gutter) + 84px);
}

/* ─── Dispatch (booking) ─── */

.dispatch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--rule);
  background: var(--paper-0);
}
@media (max-width: 1000px) { .dispatch { grid-template-columns: 1fr; } }

.dispatch-left {
  padding: 64px var(--gutter);
  border-right: var(--rule);
}
@media (max-width: 1000px) { .dispatch-left { border-right: 0; border-bottom: var(--rule); } }
.dispatch-left .eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red-0);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
}
.dispatch-left .eyebrow::before {
  content: ""; width: 8px; height: 8px; background: var(--red-0);
  animation: blink 1.6s infinite;
}
.dispatch-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-0);
  margin-bottom: 24px;
}
.dispatch-title .italic {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--red-0);
}
.dispatch-sub {
  font-family: var(--font-editorial);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: 32px;
}
.dispatch-assure {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.04em;
}

.dispatch-right {
  padding: 64px var(--gutter);
  background: var(--ink-0);
  color: var(--paper-0);
}
.df-frame {
  border: 1px solid var(--ink-2);
  background: rgba(255,255,255,0.02);
}
.df-head {
  padding: 12px 18px;
  border-bottom: 1px solid var(--ink-2);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.df-head .red { color: var(--red-0); }
.df-body { padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.df-line {
  font-family: var(--font-mono); font-size: 13px;
  display: flex; gap: 10px;
  color: var(--paper-0);
}
.df-line .arrow { color: var(--red-0); }
.df-inputs { display: flex; flex-direction: column; gap: 8px; }
.df-inputs input, .df-inputs textarea {
  background: transparent;
  border: 1px solid var(--ink-2);
  color: var(--paper-0);
  padding: 12px 14px;
  font-family: var(--font-mono); font-size: 13px;
  outline: none;
  transition: border-color .15s;
}
.df-inputs textarea {
  font-family: var(--font-editorial); font-size: 15px;
  min-height: 100px; resize: vertical;
}
.df-inputs input:focus, .df-inputs textarea:focus { border-color: var(--red-0); }
.df-inputs input::placeholder, .df-inputs textarea::placeholder { color: var(--ink-4); }

.df-scan {
  height: 2px; background: var(--ink-2);
  overflow: hidden; position: relative;
}
.df-scan-bar {
  position: absolute; inset: 0; width: 30%;
  background: linear-gradient(90deg, transparent, var(--red-0), transparent);
  animation: scan 1.4s infinite linear;
}
@keyframes scan { 0% { left: -30%; } 100% { left: 100%; } }

.df-actions { display: flex; justify-content: space-between; }
.df-receipt {
  border: 1px solid var(--ink-2);
  padding: 14px;
}
.dfr-row {
  display: grid; grid-template-columns: 100px 1fr;
  padding: 5px 0;
  font-family: var(--font-mono); font-size: 12px;
  border-bottom: 1px dashed var(--ink-2);
}
.dfr-row:last-child { border-bottom: 0; }
.dfr-row .k { color: var(--ink-4); letter-spacing: 0.16em; text-transform: uppercase; font-size: 10px; }

/* Reuse btn-primary inside dark dispatch */
.dispatch-right .btn-primary {
  background: var(--red-0); border-color: var(--red-0); color: var(--paper-0);
}
.dispatch-right .btn-primary:hover { background: var(--paper-0); color: var(--ink-0); border-color: var(--paper-0); }
.dispatch-right .btn-ghost { color: var(--paper-0); border-color: var(--paper-0); }
.dispatch-right .btn-ghost:hover { background: var(--paper-0); color: var(--ink-0); }

/* ─── Footer ─── */

.footer {
  background: var(--ink-0);
  color: var(--paper-2);
  padding: 56px var(--gutter) 36px;
  border-top: 1px solid var(--ink-2);
}
.footer .display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--paper-0);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.footer .display .stamp {
  background: var(--red-0); color: var(--paper-0);
  padding: 0 0.12em 0.04em;
}
.footer-meta {
  border-top: 1px solid var(--ink-2);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--ink-4);
  letter-spacing: 0.04em;
}
.footer-meta div { max-width: 60ch; line-height: 1.6; }
