/* ==========================================================================
   DARK HORSE POLITICAL — Cinematic rebuild
   Ink black. Cream. Signal red. Anton display. IBM Plex voice.
   ========================================================================== */

:root {
  --ink: #070708;
  --ink-2: #0c0c0f;
  --ink-3: #121218;
  --cream: #efe7d6;
  --cream-dim: rgba(239, 231, 214, 0.64);
  --cream-faint: rgba(239, 231, 214, 0.38);
  --red: #e23227;
  --blue: #3d63ff;
  --line: rgba(239, 231, 214, 0.14);
  --line-strong: rgba(239, 231, 214, 0.28);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --pad: clamp(20px, 4vw, 56px);
  --header-h: 72px;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ------- film grain ------- */
.grain {
  position: fixed; inset: -100px; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.055;
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-34px, 22px); }
  50% { transform: translate(18px, -40px); }
  75% { transform: translate(-26px, -14px); }
  100% { transform: translate(30px, 28px); }
}

/* ------- header ------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(7, 7, 8, 0.82), rgba(7, 7, 8, 0));
  transition: background 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 8, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.22em;
  white-space: nowrap;
}
.brand img { height: 34px; width: 34px; object-fit: contain; filter: invert(1) brightness(1.4); mix-blend-mode: screen; }
.brand .dot { color: var(--red); }
.site-nav { display: flex; gap: clamp(14px, 2vw, 30px); align-items: center; }
.site-nav a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream-dim);
  position: relative; padding: 6px 0;
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.site-nav a:hover, .site-nav a.is-active { color: var(--cream); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle { display: none; z-index: 1102; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 1100; background: rgba(7, 7, 8, 0.97);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--pad);
  visibility: hidden; opacity: 0; transition: opacity 0.35s ease, visibility 0.35s;
}
.nav-open .mobile-nav { visibility: visible; opacity: 1; }
.mobile-nav a {
  font-family: var(--font-display); font-size: clamp(2.4rem, 9vw, 4.4rem);
  text-transform: uppercase; line-height: 1.12; color: var(--cream);
  border-bottom: 1px solid var(--line); padding: 10px 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mobile-nav a:hover { color: var(--red); padding-left: 12px; }
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ------- typography helpers ------- */
.t-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream-dim);
}
.t-eyebrow .dot, .dot { color: var(--red); }
.t-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--red); margin-bottom: 28px;
}
.display {
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; line-height: 0.92; letter-spacing: 0.005em;
  color: var(--cream);
}
h2.display { font-size: clamp(2.4rem, 6vw, 5rem); margin-bottom: 30px; }
h3 { font-weight: 600; font-size: 1.15em; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--cream); }

.kin-line { display: block; overflow: hidden; }
.kin-line .ch { display: inline-block; will-change: transform; }

/* ------- layout ------- */
.container { max-width: 1280px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.container--narrow { max-width: 880px; }
section.block { padding: clamp(80px, 12vh, 150px) 0; position: relative; }
section.block + section.block { border-top: 1px solid var(--line); }
.u-flow > * + * { margin-top: 1.2em; }
.u-flow-lg > * + * { margin-top: 2em; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 36px); }
@media (max-width: 820px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.lede { font-size: clamp(1.15rem, 1.7vw, 1.5rem); font-weight: 300; line-height: 1.55; color: var(--cream); }
.muted { color: var(--cream-dim); }

.reveal { opacity: 0; transform: translateY(44px); }

/* ------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 34px; border: 1px solid var(--cream);
  background: var(--cream); color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.btn:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); border-color: var(--line-strong); }
.btn--ghost:hover { background: transparent; color: var(--red); border-color: var(--red); }
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ------- cards ------- */
.card {
  border: 1px solid var(--line); padding: clamp(26px, 3vw, 42px);
  background: linear-gradient(160deg, rgba(239, 231, 214, 0.028), rgba(239, 231, 214, 0));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 50, 39, 0.55);
  box-shadow: 0 30px 60px -30px rgba(226, 50, 39, 0.28);
}
.card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.6rem, 2.4vw, 2.2rem); letter-spacing: 0.01em; margin-bottom: 14px; }
.card .t-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em; color: var(--red); margin-bottom: 16px; }
.card p + p { margin-top: 0.9em; }
.card p { color: var(--cream-dim); }
.card p strong, .card p em { color: var(--cream); }

/* ------- pullquote ------- */
.pullquote {
  border-left: 2px solid var(--red);
  padding: 10px 0 10px clamp(24px, 3vw, 44px);
  margin: 2.4em 0;
}
.pullquote p:first-child {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.45; font-weight: 300; color: var(--cream);
}
.pullquote .attr { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; color: var(--cream-dim); }

/* ==========================================================================
   HOME — cinematic hero orbit scrub
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 3000; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader .pct { font-family: var(--font-display); font-size: clamp(3.4rem, 10vw, 7rem); color: var(--cream); line-height: 1; }
.preloader .tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim); }
.preloader .bar { width: min(320px, 60vw); height: 1px; background: var(--line); position: relative; overflow: hidden; }
.preloader .bar i { position: absolute; inset: 0; background: var(--red); transform: scaleX(0); transform-origin: left; }

.hero-scrub { position: relative; height: 480vh; }
.hero-scrub__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.hero-scrub__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrub__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(7,7,8,0) 42%, rgba(7,7,8,0.62) 100%),
    linear-gradient(to bottom, rgba(7,7,8,0.35), rgba(7,7,8,0) 26%, rgba(7,7,8,0) 72%, rgba(7,7,8,0.75));
}
.hero-scrub__content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 var(--pad) 9vh;
  pointer-events: none;
}
.hero-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.2rem, 12.5vw, 13.5rem);
  line-height: 0.88; letter-spacing: 0.005em; color: var(--cream);
}
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .ch { display: inline-block; will-change: transform, opacity; }
.hero-sub {
  margin-top: 3vh; display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap;
}
.hero-sub .tagline {
  font-family: var(--font-mono); font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--cream);
}
.hero-sub .tagline .dot { color: var(--red); }
.hero-eyebrow {
  position: absolute; top: calc(var(--header-h) + 3vh); left: var(--pad);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream-dim);
}
.hero-scroll-cue {
  position: absolute; right: var(--pad); bottom: 9vh;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream-faint); writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll-cue::after {
  content: ''; width: 1px; height: 56px; background: linear-gradient(to bottom, var(--red), transparent);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(1) translateY(18px); opacity: 0; } }

/* statement act inside hero scrub */
.hero-statement {
  position: absolute; inset: 0; display: flex; align-items: center;
  padding: 0 var(--pad); opacity: 0; pointer-events: none;
}
.hero-statement__inner { max-width: 900px; pointer-events: auto; }
.hero-statement h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 6.4vw, 6.4rem); line-height: 0.96; margin: 18px 0 26px;
}
.hero-statement h1 .dot { color: var(--red); }
.hero-statement p { max-width: 620px; color: var(--cream-dim); }
.hero-statement p + p { margin-top: 0.9em; }
.hero-statement p em, .hero-statement p strong { color: var(--cream); }
.hero-statement .btn-row { margin-top: 34px; }

/* ------- stats strip ------- */
.stats-strip { border-top: 1px solid var(--line); }
.stats-strip__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}
.stat-cell {
  border-right: 1px solid var(--line); padding: clamp(30px, 4vw, 60px) clamp(22px, 3vw, 44px);
  position: relative; overflow: hidden;
}
.stat-cell::before {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--red); transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.stat-cell.is-in::before { width: 100%; }
.stat-cell .num {
  font-family: var(--font-display); font-size: clamp(3.6rem, 7.5vw, 7rem);
  line-height: 1; color: var(--cream);
}
.stat-cell .num sup { font-size: 0.35em; color: var(--red); }
.stat-cell .stat-h { margin-top: 14px; font-weight: 600; color: var(--cream); }
.stat-cell .stat-p { margin-top: 6px; font-size: 0.92em; color: var(--cream-dim); }
@media (max-width: 820px) { .stats-strip__grid { grid-template-columns: 1fr; } .stat-cell { border-bottom: 1px solid var(--line); } }

/* ------- the record (big number) ------- */
.record { text-align: left; }
.record .rec-num {
  font-family: var(--font-display); color: var(--cream);
  font-size: clamp(3.4rem, 13.5vw, 14rem); line-height: 0.95; letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.record .rec-num .sep { color: var(--red); }
.record .rec-body { max-width: 720px; margin-top: 30px; }
.record .rec-body p + p { margin-top: 0.9em; }
.record .rec-body strong { color: var(--cream); }

/* ------- video acts (pillars / work) ------- */
.act { position: relative; }
.act__media { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.act__media video, .act__media img { width: 100%; height: 100%; object-fit: cover; }
.act__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(7,7,8,0.1) 30%, rgba(7,7,8,0.72) 100%),
    linear-gradient(to bottom, rgba(7,7,8,0.66), rgba(7,7,8,0.22) 30%, rgba(7,7,8,0.22) 70%, rgba(7,7,8,0.85));
}
.act__label {
  position: absolute; top: calc(var(--header-h) + 2vh); left: var(--pad); z-index: 3;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
}
.act__overlay { position: relative; z-index: 2; margin-top: -100vh; }
.act__panel { min-height: 100vh; display: flex; align-items: center; padding: 12vh var(--pad); }
.act__panel-inner { max-width: 980px; margin: 0 auto; width: 100%; }

.pillar { display: grid; grid-template-columns: minmax(200px, 320px) 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 820px) { .pillar { grid-template-columns: 1fr; } }
.pillar__logo {
  border: 1px solid var(--line-strong); background: var(--ink-2); padding: 0;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
  position: relative; overflow: hidden;
}
.pillar__logo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pillar__logo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(239,231,214,0.14) 50%, transparent 70%);
  transform: translateX(-120%);
}
.pillar:hover .pillar__logo::after { transition: transform 0.9s ease; transform: translateX(120%); }
.pillar__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; color: var(--red); margin-bottom: 14px; }
.pillar h3 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1; margin-bottom: 8px;
}
.pillar h3 .dot { color: var(--red); }
.pillar .pillar__tag { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 20px; }
.pillar p { color: var(--cream-dim); max-width: 560px; }
.pillar p + p { margin-top: 0.85em; }
.pillar p em, .pillar p strong { color: var(--cream); }
.pillar .pillar__cta { margin-top: 24px; display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--red); padding-bottom: 5px; }
.pillar .pillar__cta:hover { color: var(--red); }

/* work cards over closer clip */
.work-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); }
@media (max-width: 900px) { .work-cards { grid-template-columns: 1fr; } }
.work-card {
  border: 1px solid var(--line-strong); background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: clamp(24px, 2.6vw, 40px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.5s ease;
  will-change: transform;
}
.work-card:hover {
  transform: translateY(-12px) rotate(-0.6deg);
  border-color: var(--red);
  background: rgba(12, 12, 15, 0.86);
  box-shadow: 0 40px 80px -30px rgba(226, 50, 39, 0.35);
}
.work-card .t-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.26em; color: var(--red); margin-bottom: 14px; }
.work-card h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.5rem, 2vw, 2rem); margin-bottom: 12px; line-height: 1.05; }
.work-card .pitch { color: var(--cream); font-weight: 400; }
.work-card .detail { margin-top: 12px; color: var(--cream-dim); font-size: 0.92em; }
.work-card .detail em { color: var(--cream); }

/* ------- finale ------- */
.finale {
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center;
  padding: 16vh var(--pad); position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.finale .finale-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3rem, 11.5vw, 12rem); line-height: 0.9; color: var(--cream);
}
.finale .finale-title .dot { color: var(--red); }
.finale .btn-row { margin-top: 6vh; }
.finale .finale-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 3vh; }

/* ------- footer ------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(60px, 8vw, 110px) 0 40px; background: var(--ink); position: relative; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: clamp(28px, 3vw, 48px); }
@media (max-width: 980px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand .wordmark { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.4rem); text-transform: uppercase; line-height: 1; }
.site-footer__brand .wordmark .dot { color: var(--red); }
.site-footer__brand p { margin-top: 14px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; color: var(--cream-dim); }
.site-footer h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; font-weight: 500; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; font-size: 0.95em; color: var(--cream-dim); }
.site-footer li a { color: var(--cream-dim); transition: color 0.25s ease; }
.site-footer li a:hover { color: var(--cream); }
.site-footer__meta {
  margin-top: clamp(50px, 6vw, 80px); padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--cream-faint); letter-spacing: 0.06em;
}
.site-footer__meta .parabellum { color: var(--cream-dim); letter-spacing: 0.24em; text-transform: uppercase; }
.site-footer__meta .parabellum .dot { color: var(--red); }

/* ==========================================================================
   INTERIOR PAGES — shared cinematic hero
   ========================================================================== */
.page-hero {
  position: relative; min-height: 74vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: calc(var(--header-h) + 8vh) var(--pad) 7vh;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(7,7,8,0.12) 0%, rgba(7,7,8,0.78) 75%),
    linear-gradient(to bottom, rgba(7,7,8,0.6), rgba(7,7,8,0.28) 40%, rgba(7,7,8,0.94));
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero .t-eyebrow { margin-bottom: 2.5vh; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.4rem, 11vw, 11.5rem); line-height: 0.9; color: var(--cream);
}
.page-hero h1 .dot { color: var(--red); }
.page-hero .page-hero__sub { margin-top: 3vh; max-width: 640px; font-size: clamp(1.05rem, 1.5vw, 1.35rem); color: var(--cream-dim); }

/* article pages (briefings) */
.page-hero--article { min-height: 62vh; }
.page-hero--article h1 { font-size: clamp(2.2rem, 5.6vw, 5.2rem); line-height: 0.98; max-width: 1050px; }
.article-ticker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cream-dim); margin-bottom: 3.5vh; display: flex; gap: 14px; align-items: baseline;
}
.article-ticker .tick-dot { color: var(--red); font-size: 8px; }
.article-ticker .tick-sep { color: var(--cream-faint); }
.article-ticker a { color: var(--cream); border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.article-ticker a:hover { color: var(--red); }
.article-meta {
  margin-top: 2.5vh; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim);
}
.briefing-body h2 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.3rem); color: var(--cream);
  margin-top: 2.2em; line-height: 1.05;
}
.briefing-body a { color: var(--cream); border-bottom: 1px solid var(--red); }
.briefing-body a:hover { color: var(--red); }
.briefing-body .dot { color: var(--red); }
.sig-period { color: var(--red); } /* emitted by the SSR briefing renderer */

/* ARMR tier selector */
.armr-tiers .card { cursor: pointer; user-select: none; }
.armr-tiers .card:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.armr-tiers .card[aria-pressed="true"] {
  border-color: var(--red);
  box-shadow: 0 30px 60px -30px rgba(226, 50, 39, 0.35);
  transform: translateY(-8px);
}
.armr-detail { display: none; border: 1px solid var(--line-strong); border-top: 2px solid var(--red); padding: clamp(26px, 3vw, 44px); margin-top: clamp(20px, 2.5vw, 36px); background: var(--ink-2); }
.armr-detail[data-open="true"] { display: block; }
.armr-detail__sessions { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--cream); margin-bottom: 14px; }
.armr-detail__for { color: var(--cream-dim); max-width: 640px; margin-bottom: 24px; }
.armr-detail__sample { border-left: 2px solid var(--red); padding-left: 20px; }
.armr-detail__sample-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 10px; }
.armr-detail__sample p { font-style: italic; color: var(--cream); max-width: 640px; }

/* WIN book cover */
.win-book { display: grid; grid-template-columns: minmax(240px, 400px) 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 820px) { .win-book { grid-template-columns: 1fr; } }
.win-book figure {
  border: 1px solid var(--line-strong); overflow: hidden; position: relative;
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.95);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease;
}
.win-book figure:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 70px 120px -40px rgba(226, 50, 39, 0.3);
}
.win-book img { width: 100%; display: block; }

/* interior content rhythm */
.section-head { margin-bottom: clamp(30px, 4vw, 50px); }
.reading { max-width: 820px; }
.reading p, .reading li { color: var(--cream-dim); }
.reading p strong, .reading p em, .reading h3 { color: var(--cream); }
.reading h3 { margin-top: 2em; margin-bottom: 0.5em; }

.list-bare { list-style: none; }
.list-bare li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--cream-dim); }

.phase-list { list-style: none; counter-reset: phase; }
.phase-list li {
  padding: 20px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 24px;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem); color: var(--cream); line-height: 1.05;
}
.phase-list li::before {
  counter-increment: phase; content: '0' counter(phase);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em; color: var(--red);
}
.phase-list li .dot { color: var(--red); }

/* book / toc */
.toc { list-style: none; }
.toc li { display: flex; gap: 22px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--cream-dim); }
.toc li .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--red); min-width: 92px; }
.toc li .t { color: var(--cream); font-weight: 400; }

.win-meta { display: grid; grid-template-columns: repeat(3, minmax(120px, max-content)); gap: clamp(20px, 3vw, 50px); margin: 28px 0; }
@media (max-width: 640px) { .win-meta { grid-template-columns: 1fr; } }
.win-meta .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.win-meta .v { color: var(--cream); }

/* engage form */
.engage-steps-rail { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(30px, 5vw, 54px); }
.engage-steps-rail .step-chip {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--cream-faint); padding: 8px 14px;
  display: flex; gap: 10px; align-items: center; transition: all 0.3s ease;
}
.engage-steps-rail .step-chip .n { color: var(--red); }
.engage-steps-rail .step-chip.is-active { border-color: var(--red); color: var(--cream); }
.engage-step { display: none; }
.engage-step.is-active { display: block; animation: step-in 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes step-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.engage-step__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.engage-step h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1; margin-bottom: 16px; }
.engage-step h2 .dot { color: var(--red); }
.engage-step .intro { max-width: 640px; color: var(--cream-dim); margin-bottom: 34px; }
.form-field { margin-bottom: 22px; }
.form-field label { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 9px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line);
  color: var(--cream); font-family: var(--font-body); font-size: 16px; font-weight: 300;
  padding: 15px 16px; outline: none; transition: border-color 0.25s ease;
  border-radius: 0; appearance: none; -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e23227' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); }
.form-field .hint { margin-top: 7px; font-size: 0.82em; color: var(--cream-faint); }
.engage-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; gap: 16px; }
.engage-error { color: var(--red); font-family: var(--font-mono); font-size: 13px; margin-top: 18px; min-height: 18px; }
.engage-review-block { border: 1px solid var(--line); padding: 26px; margin-bottom: 14px; }
.engage-review-block .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.engage-review-block .v { margin-top: 6px; color: var(--cream); white-space: pre-wrap; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* briefings */
.briefings-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.briefings-filter .chip {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 8px 16px; color: var(--cream-dim); cursor: pointer;
  transition: all 0.25s ease;
}
.briefings-filter .chip.is-active, .briefings-filter .chip:hover { border-color: var(--red); color: var(--cream); }
.briefing-list { list-style: none; }
.briefing-list li { border-bottom: 1px solid var(--line); padding: 22px 0; color: var(--cream-dim); }
.briefing-list li a { color: var(--cream); font-weight: 400; }
.briefing-list li a:hover { color: var(--red); }
.briefing-empty { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--cream-faint); padding: 30px 0; }

/* modal (briefings signup) */
.overlay {
  position: fixed; inset: 0; z-index: 1500; background: rgba(7, 7, 8, 0.9);
  display: none; align-items: center; justify-content: center; padding: var(--pad);
}
.overlay.is-open { display: flex; }
.overlay__card {
  width: min(620px, 100%); max-height: 88vh; overflow: auto;
  background: var(--ink-2); border: 1px solid var(--line-strong); padding: clamp(26px, 4vw, 44px);
  position: relative;
}
.overlay__close { position: absolute; top: 14px; right: 18px; font-size: 26px; color: var(--cream-dim); }
.overlay__close:hover { color: var(--red); }

/* success card */
.success-card { border: 1px solid var(--red); padding: clamp(30px, 4vw, 50px); }
.success-steps { margin-top: 34px; }
.success-step { display: flex; gap: 22px; padding: 18px 0; border-top: 1px solid var(--line); }
.success-step .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--red); min-width: 78px; }
.success-step .t { font-weight: 600; color: var(--cream); }
.success-step p { color: var(--cream-dim); margin-top: 6px; font-size: 0.94em; }

/* portrait */
.founder-portrait { display: grid; grid-template-columns: minmax(260px, 460px) 1fr; gap: clamp(30px, 5vw, 70px); align-items: end; }
@media (max-width: 820px) { .founder-portrait { grid-template-columns: 1fr; } }
.founder-portrait figure { border: 1px solid var(--line-strong); position: relative; overflow: hidden; }
.founder-portrait img { filter: saturate(0.92); transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.founder-portrait figure:hover img { transform: scale(1.04); }
.founder-portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim); background: linear-gradient(to top, rgba(7,7,8,0.9), transparent);
}

/* marquee divider */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.marquee__track { display: flex; gap: 60px; white-space: nowrap; will-change: transform; width: max-content; }
.marquee__track span {
  font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.2rem, 2.4vw, 2rem);
  color: var(--cream-faint); letter-spacing: 0.02em;
}
.marquee__track span .dot { color: var(--red); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
