/* Dark Star 1974.
   The film as imagery. Ship-console black with one phosphor amber, CRT
   scanlines over everything, screens framed with corner ticks. The dark
   star drifts behind the hero and rises again between sections; the ship
   crosses twice. No labels, no clocks: those were cut on review. */

:root {
  --bg: #050606;
  --bg-2: #0a0c0a;
  --line: #1b201d;
  --line-hi: #2a322d;
  --text: #d8ded9;
  --text-2: #98a29b;
  --muted: #6b756e;
  --amber: #ffb000;
  --amber-dim: #7a5710;
  --red: #d0342c;

  --display: 'Chakra Petch', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --gutter: clamp(20px, 5vw, 88px);
  --max: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* CRT: faint scanlines plus a corner vignette, fixed over the page. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, .16) 0px,
    rgba(0, 0, 0, .16) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: .5;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 51;
  background: radial-gradient(ellipse at 50% 50%, transparent 62%, rgba(0, 0, 0, .38) 100%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; margin: 0; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px var(--gutter);
  transition: background .25s, border-color .25s, padding .25s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(5, 6, 6, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 11px;
  padding-bottom: 11px;
}
.nav-mark { display: flex; align-items: center; text-decoration: none; }
.nav-logo { display: block; width: auto; height: 30px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: 6px 9px;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.on { color: var(--amber); }
@media (max-width: 1080px) {
  .nav-links { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 var(--gutter);
  overflow: hidden;
}
.space { position: absolute; inset: 0; z-index: 0; }

/* Coming out of hyperdrive: the field starts stretched and settles. */
.space img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
  animation: jump 2.4s cubic-bezier(.16, .84, .32, 1) both;
}
@keyframes jump {
  0% { transform: scaleX(5); filter: blur(3px) brightness(1.6); }
  100% { transform: scaleX(1); filter: none; }
}
.space .streaks {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, rgba(216, 222, 217, .8) 50%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(255, 176, 0, .55) 50%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(216, 222, 217, .6) 50%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(216, 222, 217, .45) 50%, transparent 100%);
  background-size: 340px 1px, 260px 1px, 420px 2px, 300px 1px;
  background-position: 0 18%, 40% 37%, 70% 58%, 20% 79%;
  background-repeat: repeat-x;
  animation: streaks 2.4s cubic-bezier(.16, .84, .32, 1) both;
  pointer-events: none;
}
@keyframes streaks {
  0% { transform: translateX(0); opacity: 1; }
  70% { opacity: .5; }
  100% { transform: translateX(-60vw); opacity: 0; }
}

/* The dark star, adrift. Near-black body, one amber crescent. */
.space .darkstar {
  position: absolute;
  top: 9%;
  right: 6%;
  width: clamp(240px, 36vmin, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #26221a 0%, #14120d 32%, #070808 60%, #040505 100%);
  box-shadow:
    inset -20px -26px 64px rgba(0, 0, 0, .92),
    inset 12px 16px 48px rgba(255, 176, 0, .09),
    0 0 48px rgba(255, 176, 0, .10),
    0 0 150px rgba(255, 176, 0, .05);
  animation: adrift 30s ease-in-out infinite alternate;
}
.space .darkstar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 29% 23%, rgba(255, 198, 61, .5) 0%, rgba(255, 176, 0, .16) 17%, transparent 44%);
  filter: blur(1px);
}
@keyframes adrift {
  from { transform: translate3d(0, -10px, 0); }
  to { transform: translate3d(-16px, 18px, 0); }
}

.space .vign {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, transparent 0%, rgba(5, 6, 6, .6) 68%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(5, 6, 6, .85) 0%, transparent 22%, transparent 60%, var(--bg) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .space img, .space .darkstar { animation: none; }
  .space .streaks { display: none; }
  html { scroll-behavior: auto; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 150px 0 48px;
}

.hero h1 {
  font-size: clamp(44px, 8.4vw, 116px);
  line-height: .94;
  letter-spacing: -.015em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 30px;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  max-width: 54ch;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-2);
  margin: 0 0 40px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border: 1px solid var(--line-hi);
  color: var(--text);
  transition: border-color .15s, color .15s, background .15s;
}
.btn:hover { border-color: var(--amber); color: var(--amber); }
.btn-primary { background: var(--amber); border-color: var(--amber); color: #050606; }
.btn-primary:hover { background: #ffc63d; border-color: #ffc63d; color: #050606; }

.hero-readout {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ro {
  padding: 18px 20px 18px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ro:first-child { padding-left: 0; }
.ro:last-child { border-right: 0; }
.ro-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ro-v { font-family: var(--display); font-size: clamp(17px, 1.4vw, 20px); letter-spacing: .015em; color: var(--text); }
@media (max-width: 900px) {
  .hero-readout { grid-template-columns: repeat(2, 1fr); }
  .ro { border-bottom: 1px solid var(--line); padding-left: 0; }
  .ro:nth-child(2n) { border-right: 0; }
}

/* ── Screens ──────────────────────────────────────────────────────────────── */

main { position: relative; z-index: 2; }

.scr {
  position: relative;
  max-width: var(--max);
  margin: clamp(48px, 7vw, 88px) auto;
  padding: clamp(28px, 4vw, 52px) var(--gutter) clamp(48px, 6vw, 80px);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.scr[data-in] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .scr { opacity: 1; transform: none; transition: none; }
}

/* Corner ticks, like a registration frame on a monitor. */
.scr::before, .scr::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--amber-dim);
  pointer-events: none;
}
.scr::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.scr::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.scr-tint { background: var(--bg-2); }

.scr-head { margin-bottom: 46px; max-width: 72ch; }
.scr-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scr-idx { color: var(--amber); }

/* A small eclipsed star: dark disc, amber crescent on the upper left. */
.scr-glyph {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #201c14 0%, #0b0b09 55%, #060707 100%);
  box-shadow:
    inset 2px 2px 3px rgba(255, 176, 0, .65),
    0 0 8px rgba(255, 176, 0, .25);
}
.scr-head h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.scr-stand {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-2);
  max-width: 58ch;
}

/* ── Space between sections ───────────────────────────────────────────────── */

.space-band {
  position: relative;
  height: clamp(240px, 38vh, 420px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.space-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .75;
}
.space-band .sb-vign {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 26%, transparent 72%, var(--bg) 100%);
}

/* The dark star rising over the lower edge, most of it still below. */
.space-band--star { height: clamp(280px, 44vh, 480px); }
.space-band .sb-star {
  position: absolute;
  bottom: -62%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(420px, 58vmin, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 22%, #26221a 0%, #14120d 30%, #070808 58%, #040505 100%);
  box-shadow:
    inset -22px -28px 70px rgba(0, 0, 0, .94),
    inset 14px 18px 52px rgba(255, 176, 0, .07),
    0 0 60px rgba(255, 176, 0, .09),
    0 0 180px rgba(255, 176, 0, .04);
}
.space-band .sb-star::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 18%, rgba(255, 198, 61, .34) 0%, rgba(255, 176, 0, .11) 15%, transparent 38%);
  filter: blur(1px);
}
/* ── 01 Scanner ───────────────────────────────────────────────────────────── */

.sides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.side { background: var(--bg); padding: 30px 28px 34px 0; }
.scr-tint .side { background: var(--bg-2); }
.side + .side { padding-left: 28px; }
.side-n { font-family: var(--mono); font-size: 11px; color: var(--amber); letter-spacing: .12em; }
.side h3 { font-size: 19px; margin: 12px 0 10px; letter-spacing: .01em; }
.side p { margin: 0; color: var(--text-2); font-size: 15.5px; }
.resolve {
  margin: 44px 0 0;
  font-family: var(--display);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.35;
  max-width: 34ch;
}
.resolve::before { content: '\25B8 '; color: var(--amber); }
@media (max-width: 860px) {
  .sides { grid-template-columns: 1fr; }
  .side, .side + .side { padding: 26px 0 28px; }
}

/* ── 02 Mission orders ────────────────────────────────────────────────────── */

.spec { border-top: 1px solid var(--line-hi); }
.spec-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.spec-row:hover { background: rgba(255, 176, 0, .03); }
.spec-k {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-v {
  font-family: var(--display);
  font-size: clamp(17px, 1.9vw, 22px);
  letter-spacing: .005em;
}
@media (max-width: 720px) {
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ── 02 Record: the three numbers ─────────────────────────────────────────── */

.stats { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--bg); padding: 32px 30px 34px; display: flex; flex-direction: column; }
.stat-n { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--amber); letter-spacing: -.01em; }
.stat-lead .stat-n { font-size: clamp(56px, 8vw, 104px); }
.stat-l { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.stat p { margin: 14px 0 0; color: var(--text-2); font-size: 15px; max-width: 46ch; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr; } }

/* ── 06 Working with us ───────────────────────────────────────────────────── */

.aud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.aud-card { background: var(--bg); padding: 32px 30px 34px; display: flex; flex-direction: column; }
.aud-card h3 { font-size: 21px; margin: 0 0 12px; letter-spacing: .01em; }
.aud-card p { margin: 0 0 24px; color: var(--text-2); font-size: 15px; flex: 1; }
.aud-card .btn { align-self: flex-start; }
@media (max-width: 860px) { .aud { grid-template-columns: 1fr; } }

.single-use {
  margin-top: 56px;
  padding: 32px 34px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--amber);
  background: var(--bg-2);
  max-width: 78ch;
}
.single-use h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: .01em; }
.single-use p { margin: 0; color: var(--text-2); }

/* ── 03 Systems ───────────────────────────────────────────────────────────── */

.focus-list { border-top: 1px solid var(--line-hi); }
.focus-item {
  display: grid;
  grid-template-columns: 88px minmax(220px, 300px) 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.focus-item::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width .5s ease;
}
.focus-item:hover::after { width: 100%; }
.f-idx { font-family: var(--mono); font-size: 12px; color: var(--amber); letter-spacing: .1em; padding-top: 5px; }
.focus-item h3 { font-size: clamp(18px, 1.8vw, 23px); letter-spacing: .005em; line-height: 1.2; }
.focus-item p { margin: 0; color: var(--text-2); font-size: 15.5px; max-width: 62ch; }
@media (max-width: 860px) {
  .focus-item { grid-template-columns: 44px 1fr; gap: 14px; }
  .focus-item p { grid-column: 2; }
}
.focus-note {
  margin: 28px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--muted);
}
.focus-note::before { content: '\25B8 '; color: var(--amber); }

/* ── 04 Payload bay ───────────────────────────────────────────────────────── */

.pf { border-top: 1px solid var(--line-hi); }
.pf-row {
  display: grid;
  grid-template-columns: 64px minmax(200px, 260px) 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.pf-no {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--amber-dim);
  padding-top: 4px;
  transition: color .2s;
}
.pf-row:hover .pf-no { color: var(--amber); }
.pf-id h3 { font-size: clamp(21px, 2.2vw, 28px); letter-spacing: .005em; margin-bottom: 8px; }
.pf-cat, .pf-geo {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pf-cat { color: var(--text-2); margin-bottom: 3px; }
.pf-one { margin: 0 0 10px; font-size: 17px; color: var(--text); }
.pf-detail { margin: 0 0 16px; color: var(--text-2); font-size: 15.5px; max-width: 64ch; }
.pf-spec {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  color: var(--amber);
  max-width: 64ch;
}
.pf-spec span {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
  margin-right: 12px;
  vertical-align: 1px;
}
.pf-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line-hi);
  padding-bottom: 2px;
}
.pf-link:hover { color: var(--amber); border-color: var(--amber); }
@media (max-width: 860px) {
  .pf-row { grid-template-columns: 1fr; gap: 14px; }
  .pf-no { padding-top: 0; }
}

/* ── 05 Primary sequence ──────────────────────────────────────────────────── */

.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.m-step { background: var(--bg); padding: 28px 24px 32px; }
.m-idx { font-family: var(--mono); font-size: 11px; color: var(--amber); letter-spacing: .12em; }
.m-step h3 { font-size: 18px; margin: 10px 0 10px; }
.m-step p { margin: 0; color: var(--text-2); font-size: 14.5px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.stat { border-top: 1px solid var(--amber-dim); padding-top: 18px; }
.stat-n {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -.01em;
}
.stat-l {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 10px 0 12px;
}
.stat p { margin: 0; font-size: 14.5px; color: var(--muted); }
@media (max-width: 960px) {
  .method, .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .method, .stats { grid-template-columns: 1fr; }
}

/* ── 06 Allied channels ───────────────────────────────────────────────────── */

.acts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.act { background: var(--bg); padding: 32px 30px 34px; }
.act h3 { font-size: 21px; margin-bottom: 12px; }
.act p { margin: 0 0 16px; color: var(--text-2); font-size: 15px; }
.act a { font-family: var(--mono); font-size: 12px; color: var(--amber); text-decoration: none; }
.act a:hover { text-decoration: underline; }

.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; border-top: 1px solid var(--line); }
.partner { padding: 20px 24px 20px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.partner:nth-child(3n) { border-right: 0; }
.p-name { display: block; font-family: var(--display); font-size: 17px; letter-spacing: .01em; margin-bottom: 4px; }
.p-role { display: block; font-family: var(--mono); font-size: 11.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) {
  .acts { grid-template-columns: 1fr; }
  .partners { grid-template-columns: 1fr; }
  .partner { border-right: 0; }
}

/* ── 07 Failsafe ──────────────────────────────────────────────────────────── */

/* Four rules behind a disclosure; the screen stays short unless opened. */
.rules-more { border-top: 1px solid var(--line-hi); }
.rules-more summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-hi);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}
.rules-more summary::-webkit-details-marker { display: none; }
.rules-more summary:hover { color: var(--amber); }
.rules-more-i { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.rules-more-i::before,
.rules-more-i::after { content: ''; position: absolute; background: currentColor; inset: 6px 0; }
.rules-more-i::after { inset: 0 6px; transition: transform .2s ease; }
.rules-more[open] .rules-more-i::after { transform: scaleY(0); }
.rules-more[open] .rules { margin-top: 40px; }

.rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 40px; }
.rule { border-top: 1px solid var(--line-hi); padding-top: 18px; }
.rule h3 { font-size: 17px; margin-bottom: 10px; letter-spacing: .01em; }
.rule p { margin: 0; color: var(--text-2); font-size: 14.5px; }
@media (max-width: 600px) { .rules { grid-template-columns: 1fr; } }

/* ── 08 Crew ──────────────────────────────────────────────────────────────── */

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
.tm { border-top: 1px solid var(--line-hi); padding-top: 18px; }
.tm h3 { font-size: 20px; margin-bottom: 6px; }
.tm-role { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--amber); text-transform: uppercase; }
.tm-loc { display: block; font-family: var(--mono); font-size: 11px; color: var(--muted); margin: 3px 0 12px; }
.tm-connect {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
}
.tm-connect:hover { color: var(--text); border-color: var(--text); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team { grid-template-columns: 1fr; } }

/* ── 09 Transmissions ─────────────────────────────────────────────────────── */

.press { border-top: 1px solid var(--line-hi); }
.np {
  display: grid;
  grid-template-columns: 116px 170px 1fr 280px;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background .15s;
}
.np:hover { background: rgba(255, 176, 0, .03); }
.np:hover .np-head { color: var(--amber); }

/* The publisher's own preview image, kept small and desaturated so eight
   different house styles do not fight the one amber. */
.np-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.np-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.03) brightness(.94);
  transition: filter .2s;
}
.np:hover .np-thumb img { filter: none; }

.np-meta { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.np-meta b { display: block; color: var(--text-2); font-weight: 400; margin-bottom: 3px; }
.np-head { font-family: var(--display); font-size: 17.5px; line-height: 1.3; transition: color .15s; }
.np-note { font-size: 13.5px; color: var(--muted); }
.press-credit { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 14px 0 0; }
@media (max-width: 1080px) {
  .np { grid-template-columns: 104px 150px 1fr; }
  .np-note { grid-column: 2 / -1; }
}
@media (max-width: 620px) {
  .np { grid-template-columns: 92px 1fr; gap: 8px 16px; }
  .np-thumb { grid-row: span 2; }
  .np-note { grid-column: 1 / -1; }
}

.pull { margin: 60px 0 0; padding: 0; max-width: 40ch; }
.pull blockquote {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.28;
  letter-spacing: -.005em;
}
.pull blockquote::before { content: '\201C'; color: var(--amber); }
.pull blockquote::after { content: '\201D'; color: var(--amber); }
.pull figcaption { font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ── 10 / 11 Forms ────────────────────────────────────────────────────────── */

.form-wrap { max-width: 900px; }
.form-wrap--narrow { max-width: 680px; }

.wl-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 26px; }
.wl-field { display: flex; flex-direction: column; gap: 8px; grid-column: 1 / -1; }
.wl-field--half { grid-column: auto; }
.wl-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.wl-optional { color: var(--muted); text-transform: none; letter-spacing: .04em; }
.wl-field input, .wl-field select, .wl-field textarea {
  background: var(--bg);
  border: 1px solid var(--line-hi);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 0;
  transition: border-color .15s;
  width: 100%;
}
.wl-field textarea { resize: vertical; min-height: 130px; font-family: var(--body); }
.wl-field input:focus, .wl-field select:focus, .wl-field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

/* File picker: native input hidden, the label is the button. */
.wl-file { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.wl-field .wl-file-input {
  position: absolute; width: 1px; height: 1px; padding: 0; border: 0;
  opacity: 0; overflow: hidden; pointer-events: none;
}
.wl-field .wl-file-btn {
  display: inline-block;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line-hi);
  padding: 11px 16px;
  transition: border-color .15s, color .15s;
}
.wl-field .wl-file-btn:hover { border-color: var(--amber); color: var(--amber); }
.wl-field .wl-file-input:focus-visible + .wl-file-btn { border-color: var(--amber); }
.wl-file-name { font-size: 14px; color: var(--text-2); }
.wl-file-clear {
  appearance: none; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); text-decoration: underline;
}
.wl-file-clear:hover { color: var(--amber); }
.wl-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.wl-help { font-size: 12.5px; color: var(--muted); font-family: var(--body); text-transform: none; letter-spacing: 0; }
form[data-show-errors] :is(input, select, textarea):invalid { border-color: var(--red); }

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

.wl-consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 26px; max-width: 70ch; }
.wl-consent input { margin-top: 4px; accent-color: var(--amber); width: 15px; height: 15px; flex: none; }
.wl-consent label { font-size: 14px; color: var(--text-2); }
.wl-privacy-link { color: var(--amber); }

.wl-actions { display: flex; align-items: center; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.wl-submit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--amber);
  color: #050606;
  border: 0;
  padding: 15px 34px;
  cursor: pointer;
  transition: background .15s;
}
.wl-submit:hover:not(:disabled) { background: #ffc63d; }
.wl-submit:disabled { opacity: .45; cursor: default; }
.wl-status { font-family: var(--mono); font-size: 12.5px; color: var(--text-2); }
.wl-status[data-kind="error"] { color: #ff7a63; }
.wl-legal { margin: 22px 0 0; font-size: 12px; color: var(--muted); }
.wl-legal a { color: var(--text-2); }
.wl-success { border-left: 2px solid var(--amber); padding: 20px 24px; background: var(--bg); }
.wl-success h4 { font-family: var(--display); font-size: 22px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .04em; }
.wl-success p { margin: 0; color: var(--text-2); }
.retention { margin: 22px 0 0; font-family: var(--mono); font-size: 11.5px; color: var(--muted); }

@media (max-width: 720px) {
  .wl-fields { grid-template-columns: 1fr; }
  .wl-field--half { grid-column: 1 / -1; }
}

/* ── Footer ───────────────────────────────────────────────────────────────── */

.foot {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px var(--gutter) 40px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.foot-logo { display: block; width: auto; height: 44px; margin: 0 0 18px; }
.foot-legal { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 40ch; }
.foot-h { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.foot-grid a { display: block; font-size: 14px; color: var(--text-2); text-decoration: none; margin-bottom: 8px; }
.foot-grid a:hover { color: var(--amber); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }

.telem {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.telem b { color: var(--amber-dim); font-weight: 400; margin-right: 8px; }
.telem .sep { width: 3px; height: 3px; background: var(--line-hi); display: block; }

.signoff {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ── Privacy page ─────────────────────────────────────────────────────────── */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px var(--gutter) 80px;
}
.legal-s { margin-bottom: 40px; }
.legal-s h3 { font-size: 19px; margin-bottom: 12px; letter-spacing: .01em; }
.legal-s p { margin: 0 0 12px; color: var(--text-2); }
.legal-s ul { margin: 0; padding-left: 20px; color: var(--text-2); }
.legal-s li { margin-bottom: 10px; }
