/* ============================================================
   0700 · The 07:00 Brief — Morning Origination Intelligence
   Design: Swiss private-bank meets editorial finance
   ============================================================ */

:root {
  /* ink / surfaces */
  --ink:      #090B10;
  --ink-1:    #0C0F16;
  --ink-2:    #10141D;
  --ink-3:    #161B26;
  --line:     rgba(233, 228, 216, 0.09);
  --line-2:   rgba(233, 228, 216, 0.16);

  /* type */
  --text:     #ECE8DE;
  --text-2:   #A5A9B2;
  --text-3:   #6C7280;

  /* dawn accent */
  --gold:     #C6A15B;
  --gold-2:   #E4C784;
  --gold-dim: rgba(198, 161, 91, 0.14);

  /* paper (specimen document) */
  --paper:    #F4F1E8;
  --paper-2:  #ECE7D9;
  --paper-ink:#181712;
  --paper-mut:#5C574B;
  --paper-line: rgba(24, 23, 18, 0.14);
  --red:      #B23B2E;
  --green:    #3C7A5A;

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, monospace;

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

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sec-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.sec-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.sec-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.sec-lede {
  margin-top: 22px;
  max-width: 62ch;
  color: var(--text-2);
  font-size: 18px;
}
.sec-lede--lg {
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.55;
  max-width: 58ch;
  font-weight: 300;
}
.sec-lede--lg em { color: var(--text); }

.section { padding: clamp(88px, 12vw, 150px) 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #16110A;
  font-weight: 500;
}
.btn--gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--line-2);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn--lg { padding: 17px 34px; font-size: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(9, 11, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__mark {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand__colon { color: var(--gold); }
.brand__sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 5px;
}
.nav__links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--text-2);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold-2); }
.nav__cta { margin-left: 6px; }
.nav__burger {
  display: none;
  margin-left: auto;
  background: none; border: none; cursor: pointer;
  width: 34px; height: 30px; padding: 6px;
}
.nav__burger span {
  display: block; height: 1.5px; background: var(--text);
  margin: 6px 0; transition: all 0.3s var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}
.hero__dawn {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 118%, rgba(198,161,91,0.22) 0%, rgba(198,161,91,0.06) 32%, transparent 60%),
    radial-gradient(90% 70% at 50% 130%, rgba(120,90,180,0.10) 0%, transparent 55%),
    linear-gradient(180deg, #070810 0%, #090B10 55%, #0B0D14 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 0%, transparent 78%);
  opacity: 0.5;
}
.hero__numeral {
  position: absolute;
  right: -3vw; top: 44%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 46vw;
  line-height: 0.8;
  color: rgba(236, 232, 222, 0.028);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 9.5vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
}
.hero__lede {
  margin-top: 30px;
  max-width: 54ch;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 300;
}
.hero__lede em { color: var(--text); font-style: italic; }
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}
.hero__meta {
  list-style: none;
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 46px;
}
.hero__meta li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-2);
}
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* longer action-first headline */
.hero__title--sm { font-size: clamp(42px, 7.2vw, 96px); }

/* ============================================================
   THE ARGUMENT — one plate: problem · answer · value
   ============================================================ */
.plate {
  margin-top: 14px;
  border: 1px solid var(--line-2);
  border-top: 2px solid var(--gold);
  background:
    radial-gradient(130% 80% at 50% -20%, rgba(198,161,91,0.08), transparent 55%),
    var(--ink-1);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.8);
}
.duo-k {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.plate__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.plate__cell { padding: 48px 46px 44px; }
.plate__cell + .plate__cell { border-left: 1px solid var(--line); }
.plate__cell h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.plate__cell p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 48ch;
}
.plate__cell p em { color: var(--text); }

.plate__value {
  border-top: 1px solid rgba(198, 161, 91, 0.3);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 46px;
}
.plate__vhead h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.plate__vhead p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 52ch;
}
.plate__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pstat { border-top: 1px solid var(--line-2); padding-top: 16px; }
.pstat b {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pstat span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 7px;
  vertical-align: super;
}
.pstat p {
  margin-top: 10px;
  color: var(--text-3);
  font-size: 12.5px;
  line-height: 1.5;
}
/* the result band — closes the morning story */
.result {
  margin-top: 56px;
  border: 1px solid var(--line-2);
  border-top: 2px solid var(--gold);
  background:
    radial-gradient(130% 90% at 50% -20%, rgba(198,161,91,0.07), transparent 55%),
    var(--ink-1);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 46px;
}

@media (max-width: 900px) {
  .plate__duo { grid-template-columns: 1fr; }
  .plate__cell { padding: 36px 28px; }
  .plate__cell + .plate__cell { border-left: none; border-top: 1px solid var(--line); }
  .plate__value, .result { grid-template-columns: 1fr; gap: 28px; padding: 34px 28px; }
  .plate__stats { gap: 18px; }
}
@media (max-width: 520px) {
  .plate__stats { grid-template-columns: 1fr; }
}

/* ============================================================
   THE GAP
   ============================================================ */
.section--gap .sec-title { max-width: 24ch; margin-bottom: 64px; }
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  counter-reset: gap;
}
.gap-card {
  border-top: 1px solid var(--line-2);
  padding-top: 26px;
  counter-increment: gap;
}
.gap-card::before {
  content: counter(gap, upper-roman);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.gap-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.gap-card p { color: var(--text-2); font-size: 16px; max-width: 34ch; }

/* ============================================================
   STATEMENT
   ============================================================ */
.section--statement { background: var(--ink-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin-top: 8px;
}
.statement .hl { color: var(--gold-2); font-style: italic; }
.statement__sub {
  margin-top: 26px;
  max-width: 54ch;
  color: var(--text-2);
  font-size: 18px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 70px;
}
.why-card {
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 34px 30px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.why-card:hover { transform: translateY(-4px); }
.why-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 14px;
}
.why-card p { color: var(--text-2); font-size: 15.5px; }

/* ============================================================
   SPECIMEN
   ============================================================ */
.desk-tabs {
  display: flex;
  gap: 12px;
  margin: 40px 0 34px;
  flex-wrap: wrap;
}
.desk-tab {
  flex: 1 1 220px;
  text-align: left;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border-radius: 3px;
}
.desk-tab:hover { border-color: var(--line-2); }
.desk-tab.is-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-dim), transparent);
}
.desk-tab__t {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text);
}
.desk-tab.is-active .desk-tab__t { color: var(--gold-2); }
.desk-tab__s {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  margin-top: 6px;
}

.specimen-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 34px;
  align-items: start;
}

/* THE PAPER DOCUMENT */
.paper {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--paper-ink);
  padding: 44px 46px 34px;
  border-radius: 3px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 2px 10px rgba(0,0,0,0.4);
  position: relative;
  font-size: 14px;
  transition: opacity 0.35s var(--ease);
}
.paper.is-swapping { opacity: 0; }

.paper__mast {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--paper-ink);
  padding-bottom: 12px;
}
.paper__brand {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--paper-ink);
}
.paper__editiontag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--paper-mut);
  text-transform: uppercase;
}
.paper__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  margin: 16px 0 4px;
}
.paper__sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--paper-mut);
  letter-spacing: 0.02em;
}
.paper__coverage {
  margin-top: 14px;
  padding: 11px 0 0;
  font-size: 12px;
  line-height: 1.7;
  border-top: 1px solid var(--paper-line);
}
.paper__coverage b {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mut);
  font-weight: 500;
}
.cov-name { color: var(--paper-ink); }
.cov-dot { color: var(--paper-mut); padding: 0 3px; }

.paper__h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-mut);
  margin: 26px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--paper-line);
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.paper__h .n { color: var(--red); font-weight: 500; }

/* three lines */
.three { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.three li { display: flex; gap: 13px; font-size: 13.5px; line-height: 1.5; }
.three .idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--red);
  flex: 0 0 auto;
  line-height: 1.2;
}
.three b { font-weight: 600; }
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(178,59,46,0.35);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  white-space: nowrap;
  vertical-align: middle;
}

/* tape */
.tape {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
}
.tape table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 11.5px; }
.tape th {
  text-align: right;
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-mut);
  padding: 0 0 7px;
  border-bottom: 1px solid var(--paper-line);
}
.tape th:first-child { text-align: left; }
.tape td {
  text-align: right;
  padding: 5px 0;
  border-bottom: 1px solid rgba(24,23,18,0.06);
  color: var(--paper-ink);
  white-space: nowrap;
}
.tape td:first-child { text-align: left; color: var(--paper-ink); font-family: var(--sans); font-weight: 500; }
.tape .pos { color: var(--green); }
.tape .neg { color: var(--red); }

/* company cards */
.co { padding: 15px 0; border-bottom: 1px solid var(--paper-line); }
.co:last-child { border-bottom: none; }
.co__t {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}
.co__t .sym {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-right: 8px;
  vertical-align: middle;
}
.co__body { font-size: 13px; color: #3a362d; line-height: 1.5; }
.co__angle {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}
.co__angle b {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6d2e;
  display: block;
  margin-bottom: 3px;
}
.co.urgent .co__t .sym { color: #16110A; background: var(--gold); padding: 1px 5px; border-radius: 2px; }

.theme {
  margin-top: 24px;
  background: var(--paper-ink);
  color: var(--paper);
  padding: 18px 22px;
  border-radius: 3px;
}
.theme b {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: block;
  margin-bottom: 7px;
}
.theme__t { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.25; }
.theme p { font-size: 12.5px; color: rgba(244,241,232,0.7); margin-top: 7px; line-height: 1.5; }

.paper__foot {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 2px solid var(--paper-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--paper-mut);
}
.paper__foot .pass { color: var(--green); font-weight: 500; }
.paper__foot .pass::before { content: "● "; }

/* annotation rail */
.annot { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.annot__item { padding-left: 16px; border-left: 1px solid var(--gold); }
.annot__item span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.annot__item p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.specimen-note {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-3);
  max-width: 80ch;
  line-height: 1.6;
}

/* ============================================================
   LIVE PROOF
   ============================================================ */
.section--live { background: var(--ink-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head--live { align-items: center; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4FB477;
  box-shadow: 0 0 0 0 rgba(79,180,119,0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(79,180,119,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(79,180,119,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,180,119,0); }
}

.live-card {
  margin-top: 46px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background:
    radial-gradient(120% 100% at 50% -10%, rgba(198,161,91,0.06), transparent 60%),
    var(--ink);
  padding: 30px 34px 24px;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.8);
}
.live-card__top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.live-card__brand {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.24em; color: var(--text);
}
.live-card__as {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--text-3);
}
.live-card__regime {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.3;
  margin: 22px 0 4px; color: var(--gold-2); letter-spacing: -0.01em;
}
.live-tape {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin: 24px 0 8px;
}
.live-tile { background: var(--ink); padding: 13px 12px; }
.live-tile__n {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3);
}
.live-tile__v {
  font-family: var(--mono); font-size: 15px; color: var(--text); margin-top: 7px;
}
.live-tile__c { font-family: var(--mono); font-size: 11px; margin-top: 3px; }
.live-tile__c.pos { color: #6FB394; }
.live-tile__c.neg { color: #C97C72; }

.live-wm { margin-top: 26px; }
.live-wm__h {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-3);
  display: block; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.live-wm ol { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.live-wm li { counter-increment: wm; }
.live-wm ol { counter-reset: wm; }
.live-wm li h4 {
  font-family: var(--serif); font-weight: 500; font-size: 17px; line-height: 1.25;
  margin-bottom: 8px;
}
.live-wm li h4::before {
  content: counter(wm) " · "; color: var(--gold); font-family: var(--mono); font-size: 12px;
}
.live-wm li p { font-size: 14px; color: var(--text-2); }

.live-idx { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.idx-chip {
  border: 1px solid var(--line); border-radius: 3px;
  padding: 10px 16px; display: flex; flex-direction: column; gap: 3px;
  background: var(--ink-2);
}
.idx-chip__n { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.idx-chip__v { font-family: var(--mono); font-size: 14px; color: var(--text); }
.idx-chip__v b { color: var(--gold-2); font-weight: 500; }
.idx-chip__c.pos { color: #6FB394; }
.idx-chip__c.neg { color: #C97C72; }

.live-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line);
}
.live-card__foot a {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; color: var(--gold);
  transition: color 0.25s;
}
.live-card__foot a:hover { color: var(--gold-2); }
.live-card__foot span {
  font-family: var(--mono); font-size: 10.5px; color: var(--text-3); letter-spacing: 0.02em;
}

/* ============================================================
   MORNING / TIMELINE
   ============================================================ */
.section--morning { background: var(--ink-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline {
  list-style: none;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tl { background: var(--ink-1); padding: 40px 32px; position: relative; }
.tl__time {
  font-family: var(--mono);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.tl__body h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.tl__body p { color: var(--text-2); font-size: 16px; }
.tl__body em { color: var(--text); }

/* ============================================================
   GOVERNANCE
   ============================================================ */
.gov-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.gov-card { background: var(--ink); padding: 38px 34px; transition: background 0.4s; }
.gov-card:hover { background: var(--ink-1); }
.gov-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
}
.gov-card h3::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
  transform: rotate(45deg);
}
.gov-card p { color: var(--text-2); font-size: 15.5px; }

.pipe {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 38px 34px;
  background: var(--ink-1);
}
.pipe__step .pipe__k {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: block;
  margin-bottom: 12px;
}
.pipe__step p { font-size: 14.5px; color: var(--text-2); }
.pipe__arrow { font-family: var(--mono); color: var(--gold); font-size: 22px; }
.pipe__foot {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

/* ============================================================
   VALUE
   ============================================================ */
.section--value { background: var(--ink-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.stat { border-top: 1px solid var(--line-2); padding-top: 26px; }
.stat__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.stat__n span {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 10px;
  vertical-align: super;
}
.stat p { margin-top: 14px; color: var(--text-2); font-size: 16px; max-width: 26ch; }

/* ============================================================
   BEYOND
   ============================================================ */
.beyond-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.beyond-card { background: var(--ink); padding: 34px 30px; transition: background 0.4s; }
.beyond-card:hover { background: var(--ink-1); }
.beyond-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gold-2);
}
.beyond-card p { color: var(--text-2); font-size: 15px; }

/* ============================================================
   PLATFORM — one engine, two desks
   ============================================================ */
.section--platform { background: var(--ink); }

/* signals section */
.sig-list { list-style: none; margin-top: 4px; }
.sig-list li {
  font-size: 15.5px; color: var(--text-2);
  padding: 9px 0 9px 22px; position: relative;
  border-bottom: 1px solid var(--line);
}
.sig-list li:last-child { border-bottom: none; }
.sig-list b { color: var(--gold-2); font-weight: 500; font-family: var(--mono); font-size: 14px; }
.sig-list li::before {
  content: ""; position: absolute; left: 2px; top: 17px;
  width: 6px; height: 6px; transform: rotate(45deg);
  background: var(--gold);
}

.q-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.q-table th {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--paper-mut); font-weight: 500;
  text-align: left; padding: 0 10px 7px 0; border-bottom: 1px solid var(--paper-line);
}
.q-table td {
  padding: 10px 10px 10px 0; border-bottom: 1px solid rgba(24,23,18,0.07);
  font-size: 12.5px; vertical-align: top; line-height: 1.45;
}
.q-table .rk { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--red); width: 26px; }
.q-table .act { font-weight: 600; width: 24%; }
.q-table .why { color: #3a362d; }
.q-table .sc { font-family: var(--mono); font-size: 12px; white-space: nowrap; text-align: right; width: 84px; }
.q-table .sc b { color: var(--paper-ink); font-weight: 500; }
.q-table .sc span { display: block; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-mut); margin-top: 2px; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.05em;
  border: 1px solid var(--paper-line); border-radius: 2px; padding: 3px 8px;
  color: #3a362d; background: rgba(24,23,18,0.03);
}
.chip b {
  font-weight: 500; color: var(--red); font-size: 8px; letter-spacing: 0.12em;
  text-transform: uppercase; margin-right: 6px;
}

.catalyst {
  margin-top: 14px; padding: 12px 16px;
  border-left: 2px solid var(--red);
  background: rgba(178,59,46,0.05);
  font-size: 12.5px; line-height: 1.5;
}
.catalyst b {
  display: block; font-family: var(--mono); font-size: 8.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 4px;
}

.apta { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--paper-line); border: 1px solid var(--paper-line); margin-top: 14px; }
.apta > div { background: var(--paper); padding: 13px 16px; }
.apta b {
  display: block; font-family: var(--mono); font-size: 8.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #8a6d2e; margin-bottom: 6px;
}
.apta p { font-size: 12px; line-height: 1.5; color: #2e2b23; }
.apta p .src { font-family: var(--mono); font-size: 9px; color: var(--red); }

.prep {
  margin-top: 14px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.03em; color: var(--paper-mut);
}
.prep b { color: var(--paper-ink); font-weight: 500; }

.v-engine {
  margin-top: 40px; padding: 30px 34px;
  border: 1px solid var(--line); border-top: 2px solid var(--gold);
  background: var(--ink);
  display: flex; align-items: baseline; gap: 26px; flex-wrap: wrap;
}
.v-engine h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; }
.v-engine p { color: var(--text-2); font-size: 14.5px; max-width: 72ch; flex: 1 1 400px; }

.paper--vision { font-size: 13.5px; }
.paper--vision .paper__title { font-size: 23px; }
.vision-pane[hidden] { display: none; }

@media (max-width: 820px) {
  .apta { grid-template-columns: 1fr; }
  .q-table .why, .q-table th:nth-child(3) { display: none; }
  .q-table th:first-child, .q-table .rk { width: 28px; }
  .q-table .act { width: auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 44px 26px 0;
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-2); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary { color: var(--gold-2); }
.faq-item[open] summary::after { content: "−"; }
.faq-a {
  padding: 0 60px 28px 0;
  overflow: hidden;
  animation: faqReveal 0.4s var(--ease);
}
.faq-a p {
  color: var(--text-2);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 74ch;
}
.faq-a p em { color: var(--text); font-style: normal; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   PILOT
   ============================================================ */
.pilot-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pilot-card {
  border: 1px solid var(--line);
  padding: 34px 30px;
  background: var(--ink);
  counter-increment: pilot;
  position: relative;
}
.pilot-card::before {
  content: "0" counter(pilot);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.section--pilot { counter-reset: pilot; }
.pilot-k {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin: 14px 0 12px;
}
.pilot-card p { color: var(--text-2); font-size: 15.5px; }

/* ============================================================
   CLOSER
   ============================================================ */
.closer {
  position: relative;
  padding: clamp(100px, 15vw, 180px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.closer__dawn {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 90% at 50% 130%, rgba(198,161,91,0.26) 0%, rgba(198,161,91,0.05) 38%, transparent 62%),
    linear-gradient(180deg, #090B10, #0B0D14);
}
.closer__inner { position: relative; }
.closer__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 20px auto 0;
  max-width: 18ch;
}
.closer__lede {
  margin: 28px auto 0;
  max-width: 56ch;
  color: var(--text-2);
  font-size: 18px;
}
.closer__cta {
  margin-top: 44px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.closer__mail {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--text-3);
}
.closer__mail a { color: var(--gold); }

/* ---------- contact form ---------- */
.cform {
  max-width: 560px;
  margin: 44px auto 0;
  text-align: left;
}
.cform__intent {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  margin-bottom: 30px;
}
.cform__seg {
  flex: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: all 0.3s var(--ease);
}
.cform__seg:hover { color: var(--text); }
.cform__seg.is-active {
  background: var(--gold);
  color: #16110A;
  font-weight: 500;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cfield { display: block; margin-bottom: 22px; }
.cfield > span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 9px;
}
.cfield input,
.cfield select,
.cfield textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 8px 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.cfield textarea { resize: vertical; line-height: 1.55; }
.cfield select { -webkit-appearance: none; appearance: none; cursor: pointer; color: var(--text-2); }
.cfield select option { background: var(--ink-2); color: var(--text); }
.cfield input:focus,
.cfield select:focus,
.cfield textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.cfield input::placeholder,
.cfield textarea::placeholder { color: var(--text-3); }
.cfield.is-error input,
.cfield.is-error select,
.cfield.is-error textarea { border-bottom-color: #C97C72; }

.cform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cform__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cform__note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-2);
}
.cform__note.is-ok { color: #6FB394; }
.cform__note.is-bad { color: #C97C72; }

.cform.is-sent { text-align: center; }
.cform__done {
  padding: 20px 0 4px;
}
.cform__done h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.cform__done p { color: var(--text-2); font-size: 16px; }

@media (max-width: 560px) {
  .cform__row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding: 46px 0; background: var(--ink); }
.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.foot__brand p {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 8px;
}
.foot__meta { text-align: right; }
.foot__meta p { font-size: 13px; color: var(--text-2); }
.foot__meta a { color: var(--gold); }
.foot__disc {
  margin-top: 8px !important;
  font-family: var(--mono);
  font-size: 11px !important;
  color: var(--text-3) !important;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .specimen-stage { grid-template-columns: 1fr; }
  .annot { flex-direction: row; flex-wrap: wrap; position: static; }
  .annot__item { flex: 1 1 200px; }
  .pipe { grid-template-columns: 1fr; text-align: left; }
  .pipe__arrow { transform: rotate(90deg); justify-self: start; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(9,11,16,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 18px 32px 26px;
  }
  .nav.is-open .nav__links a { padding: 10px 0; font-size: 15px; }
  .nav.is-open .nav__cta { display: inline-flex; margin: 10px 32px 22px; }
  .nav.is-open { background: rgba(9,11,16,0.97); }

  .gap-grid, .why-grid, .timeline, .gov-grid, .stats, .beyond-grid, .pilot-grid { grid-template-columns: 1fr; }
  .live-tape { grid-template-columns: repeat(3, 1fr); }
  .live-wm ol { grid-template-columns: 1fr; gap: 18px; }
  .live-card { padding: 24px 20px 20px; }
  .tape { grid-template-columns: 1fr; gap: 20px; }
  .paper { padding: 30px 24px 26px; }
  .paper__mast { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero__numeral { display: none; }
  .wrap { padding: 0 22px; }
  .nav__inner { padding: 14px 22px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .desk-tab { flex: 1 1 100%; }
}
