/* ─── Deadeye Orbital — "Clean space. Dirty work." ───────────────────
   A privatized orbital-debris-removal outfit. Visual language kept:
   deep-space void, hot rust/ember "target lock" gradient, cold cyan
   HUD accents, starfield canvas, nebula blooms, radar sweep, orbit
   rings, debris ticker, targeting-reticle cursor. Layout rebuilt from
   scratch — a fluid, floating-glass, scroll-aware structure (bento
   grids, a centered connected timeline, spotlight hover cards, a
   condensing nav, a scroll-parallax orbit) in place of the fixed
   ruler-spine / corner-stamp / alternating-full-viewport layout. ── */

:root {
  --font-display: -apple-system, 'SF Pro Display', 'Segoe UI', system-ui, Roboto, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Code', 'Roboto Mono', 'JetBrains Mono', Consolas, monospace;
}

@property --shimmer-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: -40%;
}

:root {
  --void:       #020204;
  --ink:        #060810;
  --steel:      #eee9df;
  --rust:       #ff5a36;
  --rust-bright:#ff8a5c;
  --rust-dim:   rgba(255,90,54,0.5);
  --ember:      #ffb454;
  --cyan:       #49d3ff;
  --cyan-bright:#9be8ff;
  --cyan-dim:   rgba(73,211,255,0.45);
  --line:       rgba(238,233,223,0.09);
  --glass:      rgba(10,12,20,0.55);
  --radius-lg:  1.75rem;
  --radius-md:  1.1rem;
  --ease:       cubic-bezier(0.16,1,0.3,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--steel);
  font-family: var(--font-display);
  font-weight: 400;
  overflow-x: hidden;
}
body.reticle-active { cursor: none; }

/* ─── Debris-field canvas ──────────────────────────────── */
#field-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

/* ─── Nebula glow — soft, slow-drifting radial blooms ──── */
.nebula {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
}
.nebula-a {
  top: -18%; left: -12%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,90,54,0.35), transparent 70%);
  animation: drift-a 34s ease-in-out infinite alternate;
}
.nebula-b {
  bottom: -22%; right: -14%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(73,211,255,0.25), transparent 70%);
  animation: drift-b 40s ease-in-out infinite alternate;
}
@keyframes drift-a {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(4vw, 5vw) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-3vw, -6vw) scale(1.08); }
}

/* ─── Grain texture ──────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Vignette ────────────────────────────────────────── */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, transparent 45%, rgba(2,2,4,0.6) 100%),
    linear-gradient(to bottom, rgba(2,2,4,0.2), transparent 15%, transparent 85%, rgba(2,2,4,0.5));
}

/* ─── Targeting reticle — replaces the cursor on desktop ── */
.reticle {
  position: fixed;
  top: 0; left: 0;
  z-index: 999;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.08s ease-out;
  will-change: transform;
}
body.reticle-active .reticle { opacity: 0.85; }
.reticle svg { width: 100%; height: 100%; }
.reticle.firing { transform: scale(0.7); }
.reticle-flash {
  position: fixed;
  z-index: 998;
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  border: 1.5px solid var(--rust-bright);
  pointer-events: none;
  animation: flash-out 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes flash-out {
  0%   { width: 10px; height: 10px; margin: -5px 0 0 -5px; opacity: 1; border-color: var(--rust-bright); }
  100% { width: 70px; height: 70px; margin: -35px 0 0 -35px; opacity: 0; border-color: var(--cyan); }
}

/* ══════════════════════════════════════════════════════════
   NAV — floating capsule bar. Condenses on scroll, carries a
   live mission-status readout and a scroll-progress hairline.
   Replaces the fixed corner mark / lab-tag / bottom-right stamp.
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.3rem 1.6rem 0;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled { padding: 0.7rem 1.6rem 0; }
.nav-inner {
  max-width: 78rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0.7rem 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6,8,16,0.3);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled .nav-inner {
  background: rgba(6,8,16,0.68);
  border-color: rgba(238,233,223,0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.6);
}
.nav-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--steel);
  flex-shrink: 0;
}
.nav-mark svg { width: 26px; height: 26px; transition: transform 0.4s var(--ease); }
.nav-mark:hover svg { transform: rotate(18deg); }
.nav-mark span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.75);
}
.nav-links {
  display: flex;
  gap: 0.3rem;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.45);
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--steel); }
.nav-links a.active {
  color: var(--rust-bright);
  background: rgba(255,90,54,0.1);
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.55);
  flex-shrink: 0;
  padding-right: 0.3rem;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rust-bright);
  box-shadow: 0 0 8px 1px var(--rust-dim);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50%      { opacity: 1; transform: scale(1.15); }
}
.nav-progress {
  max-width: 78rem;
  margin: 0.5rem auto 0;
  height: 2px;
  border-radius: 2px;
  background: transparent;
  overflow: hidden;
}
.nav-progress span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--rust));
  box-shadow: 0 0 8px 1px rgba(255,90,54,0.4);
  transition: width 0.1s linear;
}

/* ─── Buttons — pill CTAs, lightly magnetic ──────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s, background 0.25s;
  will-change: transform;
}
.btn-primary {
  color: var(--void);
  background: linear-gradient(120deg, var(--ember), var(--rust-bright));
  box-shadow: 0 10px 30px -10px rgba(255,90,54,0.55);
}
.btn-primary:hover { box-shadow: 0 14px 38px -10px rgba(255,90,54,0.75); }
.btn-ghost {
  color: var(--steel);
  border: 1px solid var(--line);
  background: rgba(238,233,223,0.03);
}
.btn-ghost:hover { border-color: var(--cyan-dim); background: rgba(73,211,255,0.06); }

/* ─── MAIN / SECTIONS ─────────────────────────────────── */
main { position: relative; z-index: 10; }
.section-shell {
  max-width: 78rem;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.section-head { max-width: 46ch; margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--steel);
  margin-bottom: 0.8rem;
}
.section-head p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(238,233,223,0.5);
}

/* ══════════════════════════════════════════════════════════
   HERO — centered, ambient. The orbit visual lives as a soft
   background layer behind the copy instead of a boxed sidecar.
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

/* ─── Orbit parallax layer — planet + orbit cluster, fixed to the
   viewport. JS drives its translateY at a slower rate than page
   scroll (a lagging drift) and fades it out near the transmission
   log, independent of normal document-flow scrolling. ── */
.parallax-scene {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-scene {
  position: absolute;
  inset: -10% -10% -20%;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, #000 30%, transparent 78%);
  pointer-events: none;
  will-change: transform;
}
.hero-scene .planet {
  position: absolute;
  left: 50%; top: 62%;
  width: min(56vw, 640px); height: min(56vw, 640px);
  margin: -28% 0 0 -28%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,180,84,0.45), transparent 55%),
    radial-gradient(circle at 65% 70%, rgba(6,8,16,0.9), transparent 60%),
    linear-gradient(160deg, #171a26 0%, #06070d 70%);
  box-shadow:
    0 0 0 1px rgba(238,233,223,0.05),
    -8px -10px 90px rgba(255,90,54,0.2),
    inset -14px -10px 40px rgba(0,0,0,0.6);
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── Orbit cluster — rings, satellites, radar. Parked off to the
   lower-right of the hero copy (not masked, not centered under the
   headline) so it stays legible instead of hiding behind the text. ── */
.hero-orbit {
  position: absolute;
  right: 4%;
  bottom: 7%;
  z-index: 0;
  width: min(24vw, 300px);
  height: min(24vw, 300px);
  opacity: 0.9;
  pointer-events: none;
  will-change: transform;
}
.hero-orbit .orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(73,211,255,0.32);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}
.hero-orbit .orbit-ring.ring-2 {
  inset: 13%;
  border-color: rgba(255,90,54,0.26);
  animation-duration: 18s;
  animation-direction: reverse;
}
.hero-orbit .orbit-sat {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 10px 2px var(--cyan);
}
.hero-orbit .ring-2 .orbit-sat {
  background: var(--rust-bright);
  box-shadow: 0 0 10px 2px var(--rust);
}
.hero-orbit .radar {
  position: absolute;
  top: 2%; right: -6%;
  width: 38%; height: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,211,255,0.08), transparent 70%);
  border: 1px solid rgba(73,211,255,0.28);
}
.hero-orbit .radar::before, .hero-orbit .radar::after {
  content: '';
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(73,211,255,0.16);
  border-radius: 50%;
}
.hero-orbit .radar::after { inset: 45%; }
.hero-orbit .radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(73,211,255,0.6), transparent 28%);
  animation: spin 3.4s linear infinite;
  mix-blend-mode: screen;
}
.hero-orbit .radar-blip {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rust-bright);
  box-shadow: 0 0 6px 1px var(--rust);
  animation: blip 2.6s ease-in-out infinite;
}
.hero-orbit .radar-blip.b1 { top: 30%; left: 62%; animation-delay: 0s; }
.hero-orbit .radar-blip.b2 { top: 60%; left: 32%; animation-delay: 0.8s; }
.hero-orbit .radar-blip.b3 { top: 48%; left: 50%; animation-delay: 1.6s; }
@keyframes blip {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.3); }
}

.hero-copy { position: relative; z-index: 1; max-width: 44rem; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(238,233,223,0.03);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-bright);
  margin-bottom: 1.8rem;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.w-deadeye {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  background:
    linear-gradient(
      90deg,
      transparent calc(var(--shimmer-pos) - 14%),
      rgba(255,255,255,0.95) var(--shimmer-pos),
      transparent calc(var(--shimmer-pos) + 14%)
    ),
    linear-gradient(120deg, var(--ember) 10%, var(--rust) 55%, var(--rust-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 9s 2s linear infinite;
}
.w-orbital {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(238,233,223,0.85);
  margin-top: 0.05em;
}
@keyframes shimmer {
  0%     { --shimmer-pos: -40%; animation-timing-function: ease-in-out; }
  20%    { --shimmer-pos: 140%; }
  20.01% { --shimmer-pos: -40%; }
  100%   { --shimmer-pos: -40%; }
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-top: 1.3rem;
}
.hero-desc {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(238,233,223,0.6);
  max-width: 34ch;
  margin: 1rem auto 0;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.3);
  margin-top: 1.4rem;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.hero-chips {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.7rem;
  margin-top: 3.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hchip {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6,8,16,0.4);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hchip dt { color: rgba(238,233,223,0.35); }
.hchip dd { color: rgba(238,233,223,0.8); }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 22px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  opacity: 0.6;
  transition: opacity 0.3s, border-color 0.3s;
}
.scroll-cue:hover { opacity: 1; border-color: var(--cyan-dim); }
.scroll-cue span {
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--cyan-bright);
  animation: cue-drop 1.8s ease-in-out infinite;
}
@keyframes cue-drop {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(9px); opacity: 0; }
  71%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ─── TICKER — scrolling debris manifest ─────────────── */
.ticker {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6,8,16,0.5);
  backdrop-filter: blur(4px);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: ticker-scroll 42s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ticker-track span::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 6px 1px var(--rust-dim);
  flex-shrink: 0;
}
.ticker-track span.cleared { color: var(--cyan-bright); }
.ticker-track span.cleared::before { background: var(--cyan); box-shadow: 0 0 6px 1px var(--cyan-dim); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── MANIFESTO — centered, scales in as it's read ───────── */
.manifesto {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.callout {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}
.statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 24ch;
  color: rgba(238,233,223,0.9);
}
.statement em {
  font-style: normal;
  color: var(--rust-bright);
}
.statement-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  max-width: 42ch;
  color: rgba(238,233,223,0.5);
}

/* ══════════════════════════════════════════════════════════
   OUTFIT — bento grid, uneven card weights, subtle 3D tilt
   ══════════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(170px, auto);
  gap: 1.1rem;
}
.bento-card {
  position: relative;
  grid-column: span 1;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 60%), var(--glass);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255,90,54,0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  border-color: var(--rust-dim);
  box-shadow: 0 24px 50px -22px rgba(255,90,54,0.35);
}
.bento-card.bento-lg { grid-column: span 2; grid-row: span 2; justify-content: center; }
.bento-card.bento-wide { grid-column: span 2; }
.outfit-icon { width: 34px; height: 34px; }
.bento-lg .outfit-icon { width: 42px; height: 42px; }
.outfit-role {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--steel);
}
.bento-lg h3 { font-size: 1.7rem; }
.bento-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(238,233,223,0.55);
}

/* ══════════════════════════════════════════════════════════
   PROTOCOL — centered connected timeline, scroll-synced fill
   ══════════════════════════════════════════════════════════ */
.protocol-shell { max-width: 62rem; }
.timeline {
  position: relative;
  padding-top: 1rem;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.timeline-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--cyan), var(--rust));
  box-shadow: 0 0 10px 1px rgba(255,90,54,0.4);
  transition: height 0.15s linear;
}
.tl-step {
  position: relative;
  width: calc(50% - 2.6rem);
  margin-bottom: 3.4rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass);
  backdrop-filter: blur(6px);
  transition: border-color 0.4s, background 0.4s;
}
.tl-step.tl-left { margin-right: auto; text-align: right; }
.tl-step.tl-right { margin-left: auto; text-align: left; }
.tl-step.active { border-color: var(--rust-dim); background: rgba(255,90,54,0.05); }
.tl-dot {
  position: absolute;
  top: 1.9rem;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid rgba(238,233,223,0.25);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.tl-left .tl-dot { right: -2.9rem; }
.tl-right .tl-dot { left: -2.9rem; }
.tl-step.active .tl-dot {
  background: var(--rust-bright);
  border-color: var(--rust-bright);
  box-shadow: 0 0 12px 2px var(--rust-dim);
}
.entry-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--cyan-bright);
  margin-bottom: 0.5rem;
}
.tl-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--steel);
}
.tl-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(238,233,223,0.5);
}

/* ══════════════════════════════════════════════════════════
   TRANSMISSIONS — filterable list
   ══════════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.filter-tabs button {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.45);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.filter-tabs button:hover { color: var(--steel); }
.filter-tabs button.active {
  color: var(--rust-bright);
  border-color: var(--rust-dim);
  background: rgba(255,90,54,0.08);
}
.transmission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  max-width: 62rem;
}
.transmission-list li {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), max-height 0.35s var(--ease), padding 0.35s var(--ease);
  overflow: hidden;
}
.transmission-list li span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: rgba(238,233,223,0.4);
  font-style: italic;
}
.transmission-list li.rejected {
  color: rgba(238,233,223,0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,90,54,0.4);
}
.transmission-list li.rejected span { text-decoration: none; }
.transmission-list li.kept { color: var(--cyan-bright); }
.transmission-list li.kept::before {
  content: '\2713';
  color: var(--cyan);
  font-family: var(--font-mono);
}
.transmission-list li.filtered-out {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  transform: translateX(-8px);
}

/* ══════════════════════════════════════════════════════════
   CAPABILITIES — spotlight-hover chip grid
   ══════════════════════════════════════════════════════════ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.cap-chip {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--glass);
  backdrop-filter: blur(6px);
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.cap-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(73,211,255,0.14), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.cap-chip:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-dim);
}
.cap-chip:hover::before { opacity: 1; }
.cap-icon { width: 30px; height: 30px; opacity: 0.85; flex-shrink: 0; }
.cap-chip h3 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.7);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   CREW — its own full-viewport frame, so the founder line gets
   room to breathe before the sign-off arrives
   ══════════════════════════════════════════════════════════ */
.crew {
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.4rem;
  padding: 6rem 2rem;
}
.monogram { width: 88px; height: 88px; }
.crew-credit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.6);
}
.crew-line {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(238,233,223,0.4);
  max-width: 34ch;
}

/* ══════════════════════════════════════════════════════════
   CLOSING — a full viewport of its own, so the sign-off can
   stand alone in frame instead of crowding the founder credit
   ══════════════════════════════════════════════════════════ */
.closing {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
  padding: 6rem 2rem;
  overflow: hidden;
}
.closing-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,90,54,0.12), transparent 70%);
}
.closing-mark { width: 40px; height: 40px; opacity: 0.85; }
.closing-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--steel) 30%, var(--rust-bright) 70%, var(--ember) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closing-stamp {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.3);
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 10;
  max-width: 78rem;
  margin: 0 auto;
  padding: 2.5rem 2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,233,223,0.35);
}
.site-footer a {
  color: rgba(238,233,223,0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.site-footer a:hover { color: var(--rust-bright); }

/* ─── Scroll-driven reveal — fade + gentle scale ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .section-shell { padding: 5rem 1.4rem; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.bento-lg { grid-column: span 2; grid-row: span 1; }
  .bento-card.bento-wide { grid-column: span 2; }
  .hero-orbit { width: min(22vw, 200px); height: min(22vw, 200px); bottom: 4%; right: 2%; opacity: 0.6; }
}
@media (max-width: 640px) {
  .hero { padding: 7rem 1.4rem 4rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-orbit { width: min(34vw, 150px); height: min(34vw, 150px); bottom: 1.5%; right: 1%; opacity: 0.45; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.bento-lg, .bento-card.bento-wide { grid-column: span 1; }
  .tl-step, .tl-step.tl-left, .tl-step.tl-right {
    width: calc(100% - 2.6rem);
    margin-left: 2.6rem;
    margin-right: 0;
    text-align: left;
  }
  .timeline-line { left: 0; transform: none; }
  .tl-left .tl-dot, .tl-right .tl-dot { left: -2.9rem; right: auto; }
  .statement, .statement-sub { max-width: 30ch; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .reticle, .reticle-flash { display: none; }
}

/* ─── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  #field-canvas { display: none; }
}

/* ─── Fine-pointer only: real cursor stays hidden for reticle ── */
@media (pointer: coarse) {
  .reticle, .reticle-flash { display: none; }
  body.reticle-active { cursor: auto; }
}
