/* ═══════════════════════════════════════════════════════════════════════
   Orbit — shared design system
   Tokens, primitives, and the landing surface. App chrome lives in app.css.
   The token block below is the ONLY place colour is declared.
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── tokens · light ──────────────────────────────────────────────────── */
:root {
  --bg:        oklch(97.6% 0.004 275);
  --surface:   oklch(100% 0 0);
  --surface-2: oklch(98.4% 0.003 275);
  --fg:        oklch(17% 0.015 275);
  --muted:     oklch(52% 0.014 275);
  --border:    oklch(91.5% 0.006 275);
  --accent:    oklch(52% 0.24 272);
  --on-accent: oklch(99% 0 0);

  /* semantic — direction and state. Never spend the accent on these. */
  --yes:   oklch(56% 0.15 152);
  --no:    oklch(55% 0.20 25);
  --warn:  oklch(62% 0.14 70);

  /* brand gradient — sampled off the ring in Orbit-logo-png.png, not guessed.
     Deep blue at the closed side, cyan at the top and bottom, green at the
     two open terminals. Reserved for the mark and the hero scene; --accent
     still owns product actions. */
  --brand-1: oklch(55% 0.161 256);
  --brand-2: oklch(72% 0.111 204);
  --brand-3: oklch(78% 0.149 166);

  /* pipeline stage ramp */
  --stage-scan:  oklch(53% 0.20 258);
  --stage-watch: oklch(50% 0.24 300);
  --stage-size:  oklch(48% 0.11 195);
  --stage-exec:  oklch(24% 0.012 275);
  --stage-risk:  oklch(55% 0.20 25);

  /* derived */
  --accent-soft: color-mix(in oklch, var(--accent) 12%, transparent);
  --fg-soft:     color-mix(in oklch, var(--fg) 5%, transparent);
  --yes-soft:    color-mix(in oklch, var(--yes) 13%, transparent);
  --no-soft:     color-mix(in oklch, var(--no) 13%, transparent);
  --warn-soft:   color-mix(in oklch, var(--warn) 16%, transparent);
  --shadow-pop:  0 10px 34px -12px color-mix(in oklch, var(--fg) 26%, transparent);

  /* type */
  --font-display: 'Söhne', 'Aeonik', 'Helvetica Now Display', -apple-system,
                  BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --fs-h1: clamp(40px, 5.6vw, 74px);
  --fs-h2: clamp(28px, 3.4vw, 44px);
  --fs-h3: 21px;
  --fs-lead: 18px;
  --fs-body: 16px;
  --fs-meta: 13px;

  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --gap-2xl: 96px;
  --container: 1180px;
  --gutter: 28px;

  --radius: 10px;
  --radius-lg: 14px;
  --radius-sm: 8px;

  color-scheme: light;
}

/* ─── tokens · dark ───────────────────────────────────────────────────── */
[data-theme='dark'] {
  --bg:        oklch(16% 0.014 275);
  --surface:   oklch(20% 0.015 275);
  --surface-2: oklch(23.5% 0.016 275);
  --fg:        oklch(96% 0.004 275);
  --muted:     oklch(67% 0.014 275);
  --border:    oklch(28% 0.014 275);
  --accent:    oklch(68% 0.19 274);
  --on-accent: oklch(16% 0.02 275);

  --yes:  oklch(72% 0.16 152);
  --no:   oklch(70% 0.19 25);
  --warn: oklch(78% 0.14 78);

  --stage-scan:  oklch(66% 0.17 258);
  --stage-watch: oklch(66% 0.19 300);
  --stage-size:  oklch(70% 0.10 195);
  --stage-exec:  oklch(88% 0.006 275);
  --stage-risk:  oklch(70% 0.19 25);

  --fg-soft:    color-mix(in oklch, var(--fg) 8%, transparent);
  --shadow-pop: 0 14px 40px -14px oklch(0% 0 0 / 0.7);

  color-scheme: dark;
}

/* ─── reset & base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }

/* ─── layout primitives ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section   { padding-block: clamp(52px, 7vw, var(--gap-2xl)); }
.section + .section { border-top: 1px solid var(--border); }
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--gap-md); }
.row { display: flex; align-items: center; gap: var(--gap-md); }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-xl); align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap-xl); align-items: start; }

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  :root { --gap-xl: 40px; --gutter: 22px; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  :root { --gutter: 18px; }
}

/* ─── type ────────────────────────────────────────────────────────────── */
.h1, h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 620; line-height: 1.02; letter-spacing: -0.028em; margin: 0; }
.h2, h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 600; line-height: 1.08; letter-spacing: -0.022em; margin: 0; }
.h3, h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; line-height: 1.28; letter-spacing: -0.012em; margin: 0; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); max-width: 60ch; margin: 0; }
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 var(--gap-md);
}
.eyebrow.quiet { color: var(--muted); }
.meta { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
.micro {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.up   { color: var(--yes); }
.down { color: var(--no); }
.dim  { color: var(--muted); }

/* ─── site chrome ─────────────────────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklch, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
}
.topnav-inner { display: flex; align-items: center; gap: var(--gap-lg); padding-block: 13px; }
.topnav nav { display: flex; gap: 26px; margin-inline-start: auto; }
.topnav nav a { font-size: 14px; color: var(--muted); transition: color .15s ease; }
.topnav nav a:hover { color: var(--fg); }
.topnav-actions { display: flex; align-items: center; gap: 10px; }

/* ─── brand lockup ────────────────────────────────────────────────────
   The supplied PNGs sit on generous transparent canvases (Black 1478×1153,
   White 1416×1016) with the same 953×627 artwork at different offsets.
   Rather than eyeball the padding, the box is sized to the artwork and the
   image is scaled and shifted by the measured ratios, so `--logo-h` is the
   true height of the mark at every size. Swap in an SVG for production. */
.brand-lockup {
  /* The lockup is 1.52:1 and the wordmark's cap height is only 41.5% of it,
     so --logo-h must clear ~34px before the word "Orbit" is comfortably
     legible. Below that it reads as a stamp. */
  --logo-h: 34px;
  position: relative; display: block; flex: none;
  height: var(--logo-h);
  width: calc(var(--logo-h) * 1.520);
  overflow: hidden;
}
.brand-lockup img { position: absolute; height: auto; max-width: none; }
.brand-lockup .on-light {
  width: calc(var(--logo-h) * 2.3574);
  left:  calc(var(--logo-h) * -0.3748);
  top:   calc(var(--logo-h) * -0.4195);
}
.brand-lockup .on-dark {
  display: none;
  width: calc(var(--logo-h) * 2.2585);
  left:  calc(var(--logo-h) * -0.4083);
  top:   calc(var(--logo-h) * -0.3477);
}
[data-theme='dark'] .brand-lockup .on-light { display: none; }
[data-theme='dark'] .brand-lockup .on-dark  { display: block; }

.brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 18px; font-weight: 620; letter-spacing: -0.02em; }

.pagefoot { padding-block: var(--gap-xl); color: var(--muted); font-size: 13px; border-top: 1px solid var(--border); }
.pagefoot .row-between { flex-wrap: wrap; gap: var(--gap-md); }
.pagefoot a:hover { color: var(--fg); }

.navtoggle { display: none; }
@media (max-width: 860px) {
  .topnav nav { display: none; }
  .topnav nav.is-open {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; inset: 100% 0 auto 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 10px var(--gutter) 18px;
  }
  .topnav nav.is-open a { padding: 11px 0; font-size: 15px; min-height: 44px; display: flex; align-items: center; }
  .navtoggle { display: inline-grid; place-items: center; margin-inline-start: auto; }
}

/* ─── buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; min-height: 40px;
  border-radius: var(--radius); border: 1px solid transparent;
  font-size: 14.5px; font-weight: 500; letter-spacing: -0.006em;
  background: transparent; color: var(--fg);
  transition: transform .06s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-primary:hover { background: color-mix(in oklch, var(--accent) 88%, var(--fg)); border-color: transparent; }
.btn-secondary { border-color: var(--border); background: var(--surface); }
.btn-secondary:hover { border-color: color-mix(in oklch, var(--fg) 34%, transparent); }
.btn-ghost { padding-inline: 10px; }
.btn-ghost:hover { background: var(--fg-soft); }
.btn-sm { padding: 6px 12px; min-height: 32px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-icon { padding: 0; width: 36px; height: 36px; min-height: 36px; border-radius: var(--radius-sm); border-color: var(--border); }
.btn-icon svg { width: 16px; height: 16px; }
.btn-icon:hover { background: var(--fg-soft); }
.btn-arrow::after { content: '→'; transition: transform .16s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ─── surfaces ────────────────────────────────────────────────────────── */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.card-flat { background: transparent; border: 0; padding: 0; }
.card-rule { background: transparent; border: 0; border-top: 1px solid var(--fg); padding: 22px 0 0; border-radius: 0; }
.card-tight { padding: 18px; }

/* ─── pills, tags, chips ──────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.pill-yes  { background: var(--yes-soft);  color: var(--yes); }
.pill-no   { background: var(--no-soft);   color: var(--no); }
.pill-warn { background: var(--warn-soft); color: var(--warn); }
.pill-quiet { background: var(--fg-soft); color: var(--muted); }
.tag {
  display: inline-flex; align-items: center; padding: 3px 10px;
  color: var(--muted); border: 1px solid var(--border); border-radius: 999px;
  font-size: 12px; white-space: nowrap;
}
/* value chip — a slot holding a parameter. Neutral by default; the accent
   version is scoped to the builder canvas, where "violet means editable"
   is the whole reading of the screen. */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--fg); font-family: var(--font-mono);
  font-size: 12.5px; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.chip-plain { color: var(--fg); background: transparent; }
button.chip { transition: border-color .15s ease, background .15s ease; }
button.chip:hover { border-color: var(--accent); background: var(--accent-soft); }

/* ─── pipeline stage pills (shared by the landing and the builder) ──── */
.stage-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 15px; border-radius: 999px; color: var(--on-accent);
  font-size: 13.5px; font-weight: 560; letter-spacing: -0.005em; white-space: nowrap;
}
.stage-pill svg { width: 15px; height: 15px; }
.stage-pill .count {
  font-family: var(--font-mono); font-size: 11.5px; font-variant-numeric: tabular-nums;
  padding: 1px 7px; border-radius: 999px;
  background: color-mix(in oklch, var(--on-accent) 24%, transparent);
}
.st-wake  { background: var(--fg-soft); color: var(--muted); }
.st-scan  { background: var(--stage-scan); }
.st-watch { background: var(--stage-watch); }
.st-size  { background: var(--stage-size); }
.st-exec  { background: var(--stage-exec); color: var(--bg); }
.st-risk  { background: var(--stage-risk); }

.dot { width: 7px; height: 7px; border-radius: 999px; background: currentColor; flex: none; }
.dot-live { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .32; } }

/* version chip — a shared strategy is versioned, not a moving target */
.ver {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--surface); color: var(--muted);
}

/* ─── venue marks ─────────────────────────────────────────────────────── */
.venue {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em; color: var(--muted); white-space: nowrap;
}
.venue-mark {
  width: 15px; height: 15px; border-radius: 4px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--fg);
}

/* ─── forms ───────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--muted); }
.input, .textarea, .select {
  width: 100%; padding: 10px 13px; min-height: 40px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); color: var(--fg); font: inherit; font-size: 14.5px;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.textarea { min-height: 96px; resize: vertical; line-height: 1.55; }
.select { appearance: none; padding-right: 32px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.switch {
  position: relative; width: 40px; height: 23px; flex: none;
  border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface-2); transition: background .18s ease, border-color .18s ease;
}
.switch::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 17px; height: 17px; border-radius: 999px;
  background: var(--muted); transition: transform .18s ease, background .18s ease;
}
.switch[aria-pressed='true'] { background: var(--accent); border-color: var(--accent); }
.switch[aria-pressed='true']::after { transform: translateX(17px); background: var(--on-accent); }

/* segmented control */
.seg { display: inline-flex; padding: 3px; gap: 2px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-2); }
.seg button {
  border: 0; background: transparent; color: var(--muted);
  padding: 6px 13px; min-height: 32px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s ease, color .15s ease;
}
.seg button svg { width: 14px; height: 14px; }
.seg button[aria-selected='true'] { background: var(--surface); color: var(--fg); box-shadow: 0 1px 2px var(--fg-soft); }

/* ─── data table ──────────────────────────────────────────────────────── */
.ds-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ds-table th, .ds-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.ds-table th {
  color: var(--muted); font-weight: 500; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.ds-table tbody tr { transition: background .12s ease; }
.ds-table tbody tr:hover { background: var(--fg-soft); }
.ds-table .num-col { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
.ds-table th.num-col { text-align: right; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ─── placeholder block ──────────────────────────────────────────────── */
.ph-img {
  background: linear-gradient(150deg, var(--accent-soft), var(--fg-soft)), var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10; display: grid; place-items: center;
  color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
}
.ph-img.square { aspect-ratio: 1 / 1; }
.ph-img.wide   { aspect-ratio: 16 / 9; }

.rule { border: 0; border-top: 1px solid var(--border); margin: 0; }
.rule-strong { border: 0; border-top: 1px solid var(--fg); margin: 0; }

/* ═══ landing surface ═════════════════════════════════════════════════ */

.hero { padding-block: clamp(64px, 9vw, 132px) clamp(48px, 6vw, 88px); }
.hero-split { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: var(--gap-2xl); align-items: center; }
.hero h1 { margin-bottom: var(--gap-md); }
.hero .lead { margin-bottom: var(--gap-lg); }
.hero-cta { display: inline-flex; gap: var(--gap-sm); flex-wrap: wrap; }
@media (max-width: 980px) { .hero-split { grid-template-columns: 1fr; gap: var(--gap-xl); } }

/* ─── the one flourish — the agent field ──────────────────────────────
   A WebGL market universe with the agent's pipeline running through it.
   Used twice: autonomously in the hero, scroll-driven in the pipeline
   section. Same engine, same colour language — one idea, two framings. */
.field {
  position: relative; width: 100%; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  /* a neutral vignette for depth — the accent stays reserved for the
     agent's own EXEC state, so brand colour never leaks into the canvas */
  background:
    radial-gradient(130% 100% at 50% 44%, var(--surface), var(--surface-2) 74%),
    var(--surface);
  touch-action: pan-y;
}
.field canvas { display: block; width: 100%; height: 100%; }
.field-hero { height: clamp(400px, 48vw, 580px); }
.field-step { height: clamp(280px, 32vw, 400px); }

/* stage badge floating on the field */
.field-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: flex; align-items: center; gap: 9px; pointer-events: none;
}
.field-badge .meta { font-size: 11.5px; }

/* the live trace — what makes the field read as an agent, not a graphic */
.trace {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 82%, transparent);
  backdrop-filter: saturate(1.3) blur(12px);
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1.75;
  font-variant-numeric: tabular-nums;
  max-height: 148px; overflow: hidden;
}
.trace-line {
  display: grid; grid-template-columns: 62px 52px minmax(0, 1fr);
  gap: 10px; color: var(--muted);
  animation: trace-in .28s cubic-bezier(.2,.9,.3,1);
}
.trace-line .tk { font-weight: 600; letter-spacing: 0.05em; }
.trace-line .tx { color: var(--fg); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trace-line[data-stage='scan']   .tk { color: var(--stage-scan); }
.trace-line[data-stage='filter'] .tk { color: var(--stage-watch); }
.trace-line[data-stage='size']   .tk { color: var(--stage-size); }
.trace-line[data-stage='risk']   .tk { color: var(--stage-risk); }
.trace-line[data-stage='exec']   .tk { color: var(--accent); }
@keyframes trace-in { from { opacity: 0; transform: translateY(5px); } }
@media (max-width: 480px) {
  .trace-line { grid-template-columns: 46px minmax(0, 1fr); }
  .trace-line .tt { display: none; }
}

/* ─── scroll-driven pipeline ──────────────────────────────────────── */
.stagesplit { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-2xl); align-items: start; }
.stagesplit-visual { position: sticky; top: 92px; }
.stage-readout { margin-top: 16px; min-height: 74px; }
.stage-readout .stage-pill { margin-bottom: 10px; }
.stage-readout p { margin: 0; color: var(--muted); font-size: 14px; max-width: 46ch; }
.stagesplit-steps .pipe-step { min-height: 58vh; align-content: center; grid-template-columns: 96px 1fr; gap: var(--gap-md); }
.stagesplit-steps .pipe-step > div { transition: opacity .3s ease; }
.stagesplit-steps .pipe-step:not(.is-active) > div { opacity: .38; }
@media (max-width: 980px) {
  .stagesplit { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .stagesplit-visual { position: static; }
  .stagesplit-steps .pipe-step { min-height: 0; }
  .stagesplit-steps .pipe-step:not(.is-active) > div { opacity: 1; }
}

.venue-strip { display: flex; align-items: center; gap: var(--gap-lg); flex-wrap: wrap; }
.venue-strip .venue-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 18px; font-weight: 560; letter-spacing: -0.015em; }
.venue-strip .venue-item.is-soon { color: var(--muted); }

.feature .feature-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--fg); margin-bottom: 16px; background: var(--surface-2);
}
.feature .feature-mark svg { width: 17px; height: 17px; }
.feature h3 { margin-bottom: 7px; }
.feature p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* how-it-works pipeline rail */
.pipe-rail { display: grid; gap: 0; }
.pipe-step { display: grid; grid-template-columns: 128px 1fr; gap: var(--gap-lg); padding: 24px 0; border-top: 1px solid var(--border); align-items: start; }
.pipe-step:last-child { border-bottom: 1px solid var(--border); }
.pipe-step h3 { margin-bottom: 5px; }
.pipe-step p { margin: 0; color: var(--muted); font-size: 14.5px; max-width: 62ch; }
.pipe-step .pipe-no { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); padding-top: 4px; }
@media (max-width: 700px) { .pipe-step { grid-template-columns: 1fr; gap: 10px; } }

/* pricing */
.price-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--gap-lg); align-items: start; }
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; } }
.price-num { font-family: var(--font-display); font-size: clamp(52px, 7vw, 82px); font-weight: 620; line-height: 0.94; letter-spacing: -0.04em; }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; padding: 9px 0; border-top: 1px solid var(--border); font-size: 14.5px; align-items: baseline; }
.price-list li:first-child { border-top: 0; }
.price-list .mk { color: var(--yes); font-family: var(--font-mono); font-size: 13px; }
.price-list .mk-off { color: var(--muted); }

.cta-strip { text-align: center; }
.cta-strip h2 { max-width: 20ch; margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
