:root {
  --bg: #0A0F1A;
  --bg-deep: #060A12;
  --surface: #111827;
  --surface-2: #0E1524;
  --line: #1E2A3D;
  --line-soft: #16202F;
  --text: #F2F5F9;
  --muted: #93A0B4;
  --muted-strong: #B7C1D2;
  --accent: #2EE58A;
  --accent-dim: rgba(46, 229, 138, 0.16);
  --accent-glow: rgba(46, 229, 138, 0.55);
  --radius: 8px;
  --radius-lg: 12px;
  --ff-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Consolas, monospace;
  --pad-y: 128px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 767px) {
  :root { --pad-y: 80px; }
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--accent); color: var(--bg); }

.wrap { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 24px; }
@media (min-width: 768px) { .wrap { padding-inline: 40px; } }
@media (min-width: 1200px) { .wrap { padding-inline: 56px; } }

.wrap-narrow { max-width: 960px; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 26, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--text);
}
.wordmark .type {
  display: inline-flex;
  align-items: baseline;
}
.wordmark .wire {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 0.72em;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 1px;
  transition: color 0.25s var(--ease-out);
}
.wordmark:hover .wire { color: var(--accent); }
.brand-mark {
  align-self: center;
  display: block;
  width: 30px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-mark .core {
  transition: transform 0.35s var(--ease-out);
  transform-origin: center;
}
.wordmark:hover .brand-mark .core {
  transform: scale(1.15);
}

.site-nav {
  display: none;
  gap: 32px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.site-nav a {
  position: relative;
  transition: color 0.2s var(--ease-out);
  padding: 4px 0;
}
.site-nav a:hover { color: var(--text); }
.site-nav a.is-current {
  color: var(--text);
}
.site-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}
@media (min-width: 820px) {
  .site-nav { display: inline-flex; }
}

/* ================================================================
   SHARED
   ================================================================ */
section { position: relative; padding-block: var(--pad-y); }
.band-deep { background: var(--bg-deep); }
.band-tight { padding-block: calc(var(--pad-y) * 0.65); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 56px;
  max-width: 22ch;
}

.section-title-lg {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
}

p { margin: 0 0 16px; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.accent { color: var(--accent); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #052014;
  box-shadow: 0 0 0 0 rgba(46, 229, 138, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -12px rgba(46, 229, 138, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost .arrow { transition: transform 0.25s var(--ease-out); }
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* text-only link with accent chevron */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: gap 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.link-arrow:hover { gap: 14px; border-color: var(--accent); }

/* ================================================================
   HERO (home) + PAGE HERO (inner)
   ================================================================ */
.hero {
  padding-top: 112px;
  padding-bottom: calc(var(--pad-y) - 24px);
  overflow: hidden;
  position: relative;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 65% at 60% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 60% 40%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 64px;
}
@media (min-width: 1000px) {
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 72px; }
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.9rem, 6.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  max-width: 15ch;
}
.hero-title .accent { position: relative; }
.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  opacity: 0.25;
}
.hero-sub {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 40px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* inner page hero (Product/Methodology/etc) — text-only, no terminal card */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: calc(var(--pad-y) - 16px);
  border-bottom: 1px solid var(--line);
}
.page-hero .hero-grid-bg { opacity: 0.28; }
.page-hero-inner {
  position: relative;
  max-width: 900px;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.032em;
  margin: 0 0 32px;
  max-width: 20ch;
}
.page-hero-sub {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

/* ================================================================
   TERMINAL (hero visual)
   ================================================================ */
.terminal-wrap {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  animation: termIn 900ms 350ms var(--ease-out) forwards;
}
@keyframes termIn {
  to { opacity: 1; transform: translateY(0); }
}
.terminal-pitch {
  position: absolute;
  inset: -30px -30px auto -30px;
  height: 120%;
  pointer-events: none;
  opacity: 0.35;
  z-index: 0;
}
.terminal-pitch svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: var(--line);
  stroke-width: 1;
  fill: none;
  shape-rendering: geometricPrecision;
}
.terminal {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #0C1322 0%, #0A101C 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(46, 229, 138, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.terminal-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 18, 0.6);
}
.chrome-dots {
  display: inline-flex;
  gap: 6px;
}
.chrome-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.terminal-title {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.terminal-status {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: statusPulse 1.6s ease-out infinite;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 229, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 229, 138, 0); }
}

.terminal-body {
  padding: 20px 20px 22px;
  font-family: var(--ff-mono);
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  min-height: 320px;
  position: relative;
}
.term-row {
  display: block;
  opacity: 0;
  transform: translateY(6px);
  animation: rowIn 700ms var(--ease-out) forwards;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.term-row:nth-child(1) { animation-delay: 900ms; }
.term-row:nth-child(2) { animation-delay: 1150ms; }
.term-row:nth-child(3) { animation-delay: 1400ms; }
.term-row:nth-child(4) { animation-delay: 1650ms; }
.term-row:nth-child(5) { animation-delay: 1900ms; }
.term-row:nth-child(6) { animation-delay: 2150ms; }
.term-row:nth-child(7) { animation-delay: 2400ms; }
.term-row:nth-child(8) { animation-delay: 2650ms; }
@keyframes rowIn {
  to { opacity: 1; transform: translateY(0); }
}
.term-row .ts { color: #5C6B84; }
.term-row .k { color: var(--text); font-weight: 500; }
.term-row .kd { color: var(--accent); font-weight: 500; }
.term-row .ok { color: var(--accent); }
.term-row .cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: -2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.pitch-pulse {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: pitchPulse 8s infinite;
  z-index: 0;
}
.pitch-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 1.8s ease-out infinite;
}
.pitch-pulse:nth-of-type(1) { top: 12%; left: 78%; animation-delay: 0s; }
.pitch-pulse:nth-of-type(1)::after { animation-delay: 0s; }
.pitch-pulse:nth-of-type(2) { top: 34%; left: 8%; animation-delay: 2s; }
.pitch-pulse:nth-of-type(2)::after { animation-delay: 2s; }
.pitch-pulse:nth-of-type(3) { top: 82%; left: 62%; animation-delay: 4s; }
.pitch-pulse:nth-of-type(3)::after { animation-delay: 4s; }
.pitch-pulse:nth-of-type(4) { top: 68%; left: 92%; animation-delay: 6s; }
.pitch-pulse:nth-of-type(4)::after { animation-delay: 6s; }
@keyframes pitchPulse {
  0%   { opacity: 0; }
  3%   { opacity: 0.9; }
  22%  { opacity: 0.9; }
  27%  { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes pulseRing {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(3); opacity: 0; }
}

/* ================================================================
   MANIFESTO
   ================================================================ */
.manifesto-inner { max-width: 900px; }
.manifesto-lead {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 48px;
  max-width: 34ch;
}
.manifesto-body {
  color: var(--muted-strong);
  font-size: 17px;
  max-width: 58ch;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

/* ================================================================
   FEED STRIP
   ================================================================ */
.feed-strip {
  padding: 30px 0;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feed-strip::before,
.feed-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.feed-strip::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.feed-strip::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.feed-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--ff-mono);
  font-size: 13.5px;
  color: var(--muted);
  animation: feedScroll 55s linear infinite;
  will-change: transform;
}
.feed-strip:hover .feed-track { animation-play-state: paused; }
.feed-item .t { color: #5C6B84; }
.feed-item .k { color: var(--text); }
.feed-item .kd { color: var(--accent); font-weight: 500; }
.feed-sep { color: var(--line); }
@keyframes feedScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   PRODUCT — bento (home)
   ================================================================ */
.product-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
}
@media (min-width: 900px) {
  .product-bento {
    grid-template-columns: 1.62fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 520px;
  }
  .product-01 { grid-row: 1 / span 2; }
}
.product-cell {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 34px;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.product-cell:hover {
  border-color: rgba(46, 229, 138, 0.4);
  transform: translateY(-2px);
}
.product-cell .cell-head { display: flex; flex-direction: column; }
.cell-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cell-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cell-text {
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 42ch;
}
.cell-visual {
  position: relative;
  height: 168px;
  margin-top: 8px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 100%, rgba(46,229,138,0.08), transparent 60%),
    var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 18px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}
.cell-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.visual-row {
  position: relative;
  opacity: 0;
  animation: rowRise 6s infinite;
}
.visual-row:nth-child(1) { animation-delay: 0s; }
.visual-row:nth-child(2) { animation-delay: 1.5s; }
.visual-row:nth-child(3) { animation-delay: 3s; }
.visual-row:nth-child(4) { animation-delay: 4.5s; }
@keyframes rowRise {
  0%   { opacity: 0; transform: translateY(6px); }
  8%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 1; transform: translateY(0); }
  92%  { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 0; }
}
.visual-row .ts { color: #5C6B84; }
.visual-row .kd { color: var(--accent); }
.visual-row .ok { color: var(--accent); }
.cell-tile {
  margin-top: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2);
  padding: 18px 20px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--muted);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}
.cell-tile b {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 2px;
}
.cell-tile em {
  display: block;
  color: #5C6B84;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.06em;
}
.cell-mark {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.cell-mark .m-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-dim);
}
.product-footnote {
  text-align: center;
  color: var(--muted);
  font-family: var(--ff-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  max-width: none;
  margin: 0;
}

/* ================================================================
   METHODOLOGY — vertical rail
   ================================================================ */
.rail {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  position: relative;
}
.rail-node {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 32px 0 32px 40px;
  border-top: 1px solid var(--line);
}
.rail-node:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 780px) {
  .rail-node {
    grid-template-columns: minmax(160px, 1fr) minmax(220px, 1fr) minmax(0, 2fr);
    gap: 48px;
    padding: 44px 0 44px 40px;
    align-items: baseline;
  }
}
.rail-node::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 44px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  z-index: 1;
}
@media (min-width: 780px) {
  .rail-node::before { top: 52px; }
}
.rail-node::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.rail-node:first-child::after { top: 44px; }
.rail-node:last-child::after { bottom: calc(100% - 44px); }
.rail-node.is-active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-dim);
}
.rail-time {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.rail-label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.rail-text {
  color: var(--muted-strong);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 44ch;
}

/* Methodology teaser (Home) — compact horizontal */
.method-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
@media (min-width: 900px) {
  .method-teaser { grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; }
}
.teaser-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.teaser-step {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.teaser-step .t { color: var(--accent); font-weight: 500; }
.teaser-step .l { color: var(--text); font-family: var(--ff-display); font-weight: 500; letter-spacing: -0.015em; }
.teaser-arrow { color: var(--line); font-family: var(--ff-mono); }

/* ================================================================
   COVERAGE
   ================================================================ */
.coverage { position: relative; overflow: hidden; }
.coverage-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--line-soft) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 60% 60% at 80% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 80% 50%, black, transparent 70%);
  pointer-events: none;
}
.coverage-inner { position: relative; }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 900px) {
  .coverage-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: end; }
}
.coverage-lead {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.coverage-body {
  color: var(--muted-strong);
  font-size: 16px;
  max-width: 54ch;
}
.coverage-spec {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  background: rgba(6, 10, 18, 0.5);
}
.coverage-spec span { display: inline-flex; align-items: center; gap: 12px; }
.coverage-spec span:not(:last-child)::after {
  content: "·";
  color: var(--line);
  margin-left: 6px;
}
.coverage-spec .live-flag { color: var(--accent); }

/* ================================================================
   PRINCIPLES
   ================================================================ */
.principles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .principles { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}
.principle { position: relative; }
.principle-num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--text);
  margin: 0 0 20px;
  opacity: 0.9;
}
.principle-num::after {
  content: ".";
  color: var(--accent);
}
.principle-text {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  max-width: 30ch;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
}
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; }
}
.contact-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.contact-lead {
  color: var(--muted-strong);
  font-size: 17px;
  margin: 0;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.contact-email {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.contact-email a {
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email a:hover { color: var(--accent); border-color: var(--accent); }

/* Contact page — 3 routes */
.contact-routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .contact-routes { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.contact-route {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-route:hover { border-color: rgba(46, 229, 138, 0.4); }
.contact-route .route-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: 0;
}
.contact-route h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-route p {
  color: var(--muted-strong);
  font-size: 14.5px;
  margin: 0;
  max-width: none;
}
.contact-route a {
  margin-top: auto;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.contact-route a:hover { color: var(--accent); border-color: var(--accent); }

.mono-strip {
  margin-top: 64px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: center;
}
.mono-strip .live-flag { color: var(--accent); }

/* ================================================================
   CAREERS
   ================================================================ */
.careers {
  background: var(--surface);
  padding-block: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.careers-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.careers-line {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}
.careers-line .eyebrow-inline {
  color: var(--accent);
  margin-right: 16px;
  letter-spacing: 0.14em;
}
.careers-link {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, gap 0.2s;
}
.careers-link:hover { border-color: var(--accent); gap: 12px; }

/* Careers page — roles */
.roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 800px) {
  .roles { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.role {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.role-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: 0;
}
.role h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.role h3 span {
  color: var(--muted);
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 0.68em;
  letter-spacing: 0.04em;
  margin-left: 8px;
}
.role p {
  color: var(--muted-strong);
  font-size: 15px;
  margin: 0;
  max-width: none;
}
.role .what-matters {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.03em;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.role .what-matters b {
  color: var(--accent);
  font-weight: 500;
  margin-right: 8px;
}
.bilingual-note {
  margin-top: 32px;
  padding: 18px 22px;
  border-left: 2px solid var(--accent);
  background: rgba(46, 229, 138, 0.04);
  color: var(--muted-strong);
  font-size: 14.5px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.bilingual-note em {
  color: var(--muted);
  font-style: normal;
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
}

/* ================================================================
   PAGE ARGUMENT SECTIONS (inner pages)
   ================================================================ */
.arg {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 48px;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .arg { grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr); gap: 80px; padding-block: 72px; align-items: start; }
}
.arg + .arg { border-top: 1px solid var(--line); }
.arg-head { position: sticky; top: 96px; align-self: start; }
@media (max-width: 899px) {
  .arg-head { position: static; }
}
.arg-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.arg-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 18ch;
}
.arg-body p {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 58ch;
}
.arg-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.arg-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 58ch;
}
.arg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

/* mono callout line (e.g. "EVENT → CAPTURE → …") */
.mono-callout {
  margin: 32px 0 0;
  padding: 20px 24px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}
.mono-callout .kd { color: var(--accent); }

.closing-line {
  margin-top: 56px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 30ch;
}

/* Page CTA band (bottom of inner pages) */
.page-cta {
  position: relative;
  padding-block: 96px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(46,229,138,0.08), transparent 50%);
  pointer-events: none;
}
.page-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 900px) {
  .page-cta-inner { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}
.page-cta-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 0;
  max-width: 20ch;
}
.page-cta-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ================================================================
   COMPANY page — argument blocks
   ================================================================ */
.big-para {
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.6;
  max-width: 62ch;
}

/* signature line block (reusable across pages) */
.signature-line {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: left;
  max-width: 40ch;
}
.signature-line .accent { color: var(--accent); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg);
  padding-block: 36px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-line {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin: 0;
}
.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.footer-wordmark .brand-mark {
  width: 24px;
  height: 18px;
}
.footer-wordmark .wire {
  font-family: var(--ff-mono);
  font-weight: 400;
  font-size: 0.72em;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 1px;
}

/* ================================================================
   REVEAL ON SCROLL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 700ms var(--ease-out) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 100ms; }
.hero-copy > *:nth-child(2) { animation-delay: 200ms; }
.hero-copy > *:nth-child(3) { animation-delay: 300ms; }
.hero-copy > *:nth-child(4) { animation-delay: 400ms; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.page-hero-inner > * {
  opacity: 0;
  transform: translateY(12px);
  animation: heroIn 700ms var(--ease-out) forwards;
}
.page-hero-inner > *:nth-child(1) { animation-delay: 100ms; }
.page-hero-inner > *:nth-child(2) { animation-delay: 200ms; }
.page-hero-inner > *:nth-child(3) { animation-delay: 300ms; }

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .terminal-wrap { opacity: 1; transform: none; }
  .term-row { opacity: 1; transform: none; }
  .visual-row { opacity: 1; transform: none; }
  .pitch-pulse { opacity: 0.55; }
  .pitch-pulse::after { opacity: 0; }
  .status-dot { box-shadow: 0 0 0 0 transparent; }
  .feed-track { transform: translateX(0); }
  .reveal { opacity: 1; transform: none; }
  .hero-copy > *, .page-hero-inner > * { opacity: 1; transform: none; }
  .rail-node::before { background: var(--accent); border-color: var(--accent); }
}
