:root {
  --bg:      oklch(99% 0.002 240);
  --surface: oklch(100% 0 0);
  --fg:      oklch(18% 0.012 250);
  --muted:   oklch(54% 0.012 250);
  --border:  oklch(92% 0.005 250);
  --accent:  oklch(58% 0.18 255);
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
}
:root {
  --bento-primary: #FAD4C0;
  --bento-secondary: #80A1C1;
  --success: #16A34A;
  --warning: #D97706;
  --danger: #DC2626;
  --ink-soft: oklch(35% 0.014 250);
  --panel: color-mix(in oklch, var(--surface) 82%, var(--accent) 4%);
  --panel-strong: color-mix(in oklch, var(--surface) 76%, var(--bento-secondary) 10%);
  --accent-soft: color-mix(in oklch, var(--accent) 12%, white);
  --accent-strong: color-mix(in oklch, var(--accent) 88%, black);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --container: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}
@view-transition {
  navigation: auto;
}
@property --scan {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--border) 26%, transparent) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, color-mix(in oklch, var(--border) 24%, transparent) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
canvas,
svg {
  max-width: 100%;
}
::selection {
  background: var(--accent-soft);
  color: var(--fg);
}
.site-shell {
  min-height: 100vh;
}
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section {
  padding-block: 92px;
}
.section-tight {
  padding-block: 58px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 76%, transparent);
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(22px);
}
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 760;
  view-transition-name: brand;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--fg) 58%, var(--border));
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, var(--surface) 0 58%, color-mix(in oklch, var(--accent) 9%, var(--surface)) 58%),
    var(--surface);
  color: var(--fg);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--surface) 70%, var(--border));
}
.brand-mark svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}
.brand-mark .mark-frame,
.brand-mark .mark-cut,
.brand-mark .mark-stem,
.brand-mark .mark-arc {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}
.brand-mark .mark-frame {
  stroke-width: 1.4;
  opacity: .56;
}
.brand-mark .mark-cut {
  stroke: var(--accent);
  stroke-width: 2.4;
}
.brand-mark .mark-stem,
.brand-mark .mark-arc {
  stroke-width: 2;
}
.brand-mark .mark-dot {
  fill: var(--accent);
}
.brand-word {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand-word span:first-child {
  font-size: 15px;
}
.brand-word span:last-child {
  color: var(--muted);
  font-size: 11px;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-weight: 650;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid color-mix(in oklch, var(--border) 88%, transparent);
  border-radius: 999px;
  padding: 4px;
  background: color-mix(in oklch, var(--surface) 82%, transparent);
}
.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active {
  background: var(--fg);
  color: white;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-toggle,
.menu-toggle,
.icon-button {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--fg);
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}
.lang-toggle:hover,
.menu-toggle:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklch, var(--accent) 42%, var(--border));
}
.menu-toggle {
  display: none;
}
.mobile-panel {
  display: none;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid color-mix(in oklch, var(--fg) 12%, var(--border));
  background: var(--surface);
  color: var(--fg);
  font-weight: 750;
  font-size: 14px;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  border-color: color-mix(in oklch, var(--accent) 72%, var(--fg));
  background: var(--accent);
  color: white;
}
.button-dark {
  background: var(--fg);
  color: white;
}
.button-subtle {
  background: color-mix(in oklch, var(--surface) 70%, var(--border));
}
.roadmap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero {
  padding: 84px 0 52px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, .82fr);
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 820;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px color-mix(in oklch, var(--success) 16%, transparent);
}
h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
h1 {
  max-width: 920px;
  font-size: 72px;
}
h2 {
  font-size: 46px;
}
h3 {
  font-size: 24px;
  line-height: 1.12;
}
p {
  margin: 0;
}
.lead {
  max-width: 730px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.72;
  text-wrap: pretty;
}
.sublead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
.proof-card {
  min-height: 104px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  background: color-mix(in oklch, var(--surface) 84%, transparent);
}
.proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 21px;
  font-variant-numeric: tabular-nums;
}
.proof-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.rerender {
  position: relative;
  display: inline-block;
  min-width: 0;
  color: var(--accent-strong);
  isolation: isolate;
}
.rerender::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .72;
}
.glyph {
  display: inline-block;
  transform-origin: 50% 70%;
  animation: glyph-in 520ms var(--ease) both;
  animation-delay: calc(var(--i) * 18ms);
}
@keyframes glyph-in {
  from {
    opacity: 0;
    transform: translateY(12px) skewY(3deg);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
    filter: blur(0);
  }
}
.signal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--border) 82%, var(--accent));
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--surface) 92%, transparent), color-mix(in oklch, var(--panel) 92%, transparent));
  min-height: 590px;
}
.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 var(--scan), color-mix(in oklch, var(--accent) 18%, transparent) var(--scan) calc(var(--scan) + 3%), transparent calc(var(--scan) + 3%));
  animation: scan 5s linear infinite;
  opacity: .48;
  pointer-events: none;
}
@keyframes scan {
  to {
    --scan: 100%;
  }
}
#signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.signal-ui {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  align-content: space-between;
  padding: 22px;
}
.signal-ui::before {
  content: "";
  position: absolute;
  inset: 84px 28px 108px;
  border: 1px solid color-mix(in oklch, var(--accent) 18%, var(--border));
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, transparent 0 22%, color-mix(in oklch, var(--accent) 34%, transparent) 22% 23%, transparent 23% 100%),
    linear-gradient(0deg, transparent 0 48%, color-mix(in oklch, var(--fg) 16%, transparent) 48% 49%, transparent 49% 100%),
    linear-gradient(90deg, color-mix(in oklch, var(--accent) 24%, transparent) 0 14%, transparent 14% 100%);
  background-size: 128px 100%, 100% 92px, 220px 100%;
  opacity: .62;
  animation: trace-pan 2.8s linear infinite;
  pointer-events: none;
}
.signal-ui::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(280px, 48%);
  height: min(170px, 34%);
  border: 1px solid color-mix(in oklch, var(--accent) 36%, var(--border));
  border-radius: var(--radius-md);
  transform: translate(-50%, -50%) scale(.96);
  opacity: .32;
  animation: core-breathe 2.4s var(--ease) infinite;
  pointer-events: none;
}
.console-top,
.console-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.console-pill,
.node-pill {
  border: 1px solid color-mix(in oklch, var(--border) 82%, transparent);
  border-radius: 999px;
  padding: 8px 11px;
  background: color-mix(in oklch, var(--surface) 86%, transparent);
  color: var(--muted);
  font-size: 12px;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  backdrop-filter: blur(14px);
}
.console-metric {
  width: min(100%, 260px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: color-mix(in oklch, var(--surface) 90%, transparent);
  backdrop-filter: blur(14px);
}
.console-metric small {
  display: block;
  color: var(--muted);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  text-transform: uppercase;
}
.console-metric strong {
  display: block;
  margin-top: 7px;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}
.console-metric span {
  color: var(--muted);
  font-size: 12px;
}
.node-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.node-pill {
  border-radius: var(--radius-sm);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.node-pill::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  animation: node-pulse 1.8s var(--ease) infinite;
}
.node-pill:nth-child(2)::after {
  animation-delay: 220ms;
}
.node-pill:nth-child(3)::after {
  animation-delay: 440ms;
}
.node-pill:nth-child(4)::after {
  animation-delay: 660ms;
}
@keyframes trace-pan {
  to {
    background-position: 128px 0, 0 92px, 220px 0;
  }
}
@keyframes core-breathe {
  0%, 100% {
    opacity: .24;
    transform: translate(-50%, -50%) scale(.96);
  }
  50% {
    opacity: .48;
    transform: translate(-50%, -50%) scale(1.03);
  }
}
@keyframes node-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 color-mix(in oklch, var(--success) 22%, transparent);
  }
  50% {
    box-shadow: 0 0 0 6px color-mix(in oklch, var(--success) 0%, transparent);
  }
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(260px, .42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading-flush {
  margin-bottom: 0;
}
.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: color-mix(in oklch, var(--surface) 90%, transparent);
  padding: 22px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.card:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklch, var(--accent) 34%, var(--border));
}
.span-4 {
  grid-column: span 4;
}
.span-5 {
  grid-column: span 5;
}
.span-6 {
  grid-column: span 6;
}
.span-7 {
  grid-column: span 7;
}
.span-8 {
  grid-column: span 8;
}
.span-12 {
  grid-column: 1 / -1;
}
.card-kicker {
  color: var(--accent-strong);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.card h3,
.card h2 {
  margin-top: 12px;
}
.card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  text-wrap: pretty;
}
.card-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.card-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}
.card-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.panel-dark {
  background: var(--fg);
  color: white;
  border-color: color-mix(in oklch, var(--fg) 82%, var(--accent));
}
.panel-dark p,
.panel-dark .sublead,
.panel-dark .card-list li {
  color: color-mix(in oklch, white 72%, var(--muted));
}
.panel-dark .card-kicker {
  color: color-mix(in oklch, var(--accent) 62%, white);
}
.section-roadmap {
  border-block: 1px solid color-mix(in oklch, var(--border) 82%, transparent);
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--surface) 72%, transparent), color-mix(in oklch, var(--panel) 84%, transparent));
}
.roadmap-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(380px, .78fr);
  gap: 18px;
  align-items: stretch;
}
.roadmap-copy {
  align-self: center;
  padding-right: 18px;
}
.roadmap-copy h2 {
  max-width: 680px;
}
.roadmap-copy .sublead {
  margin-top: 22px;
  max-width: 620px;
}
.roadmap-visual {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  margin: 0;
  border: 1px solid color-mix(in oklch, var(--border) 78%, var(--accent));
  border-radius: var(--radius-md);
  background: var(--surface);
}
.roadmap-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--surface) 78%, transparent) 0 25%, transparent 54%),
    linear-gradient(180deg, transparent 60%, color-mix(in oklch, var(--surface) 92%, transparent));
  pointer-events: none;
}
.roadmap-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: center right;
}
.plan-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.plan-card {
  min-height: 280px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  background: color-mix(in oklch, var(--surface) 92%, transparent);
}
.plan-card.is-priority {
  border-color: color-mix(in oklch, var(--accent) 38%, var(--border));
  background: color-mix(in oklch, var(--surface) 82%, var(--accent) 5%);
}
.plan-index {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in oklch, var(--fg) 12%, var(--border));
  border-radius: var(--radius-sm);
  color: var(--accent-strong);
  background: var(--surface);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 850;
}
.plan-card h3 {
  font-size: 20px;
}
.plan-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.68;
}
.market-signal {
  display: block;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  color: var(--muted);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  line-height: 1.55;
}
.tabs {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.tab-list,
.filter-list {
  display: flex;
  gap: 8px;
}
.filter-list-spaced {
  margin-bottom: 18px;
}
.tab-list {
  flex-direction: column;
}
.tab-btn,
.filter-btn {
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  padding: 0 14px;
  text-align: left;
  font-weight: 750;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}
.tab-btn[aria-selected="true"],
.filter-btn.is-active {
  background: var(--fg);
  color: white;
  border-color: var(--fg);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.feature-chip {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px;
  background: var(--surface);
}
.feature-chip strong {
  display: block;
  font-size: 13px;
}
.feature-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.timeline {
  display: grid;
  gap: 14px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.timeline-item time {
  color: var(--accent-strong);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}
.timeline-item h3 {
  font-size: 20px;
}
.timeline-item p {
  margin-top: 8px;
  color: var(--muted);
}
.page-hero {
  padding: 72px 0 42px;
  border-bottom: 1px solid var(--border);
}
.page-hero .lead {
  max-width: 790px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .54fr);
  gap: 18px;
  align-items: start;
}
.stack {
  display: grid;
  gap: 14px;
}
.mini-console {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--fg);
  color: color-mix(in oklch, white 88%, var(--accent));
  padding: 18px;
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  min-height: 310px;
}
.console-line {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}
.console-line span:first-child {
  color: color-mix(in oklch, var(--accent) 58%, white);
  min-width: 84px;
}
.console-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.case-card[hidden] {
  display: none;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.badge {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--surface);
  color: var(--muted);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(340px, .58fr);
  gap: 18px;
}
.contact-grid .card > h2 + .form {
  margin-top: 24px;
}
.form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 7px;
}
.field label {
  color: var(--fg);
  font-size: 13px;
  font-weight: 750;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.field textarea {
  min-height: 146px;
  resize: vertical;
}
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer {
  margin-top: 20px;
  border-top: 1px solid color-mix(in oklch, var(--fg) 18%, var(--border));
  background:
    linear-gradient(90deg, color-mix(in oklch, white 8%, transparent) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, color-mix(in oklch, white 6%, transparent) 1px, transparent 1px) 0 0 / 72px 72px,
    color-mix(in oklch, var(--fg) 96%, black);
  color: color-mix(in oklch, white 76%, var(--border));
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(220px, .42fr);
  gap: 34px;
  align-items: start;
  padding-block: 46px 34px;
}
.footer-brand {
  max-width: 650px;
}
.footer-kicker {
  display: block;
  margin-bottom: 12px;
  color: color-mix(in oklch, var(--accent) 72%, white);
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
}
.footer-brand strong {
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 820;
  line-height: .92;
  letter-spacing: 0;
}
.footer-brand p {
  max-width: 540px;
  margin: 18px 0 0;
  color: color-mix(in oklch, white 72%, var(--muted));
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}
.footer-links {
  display: grid;
  gap: 2px;
}
.footer-links a {
  border-bottom: 1px solid color-mix(in oklch, white 12%, transparent);
  padding: 8px 0;
  color: color-mix(in oklch, white 84%, var(--border));
  font-size: 13px;
  font-weight: 720;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.footer-links a:hover {
  border-color: color-mix(in oklch, var(--accent) 58%, white);
  color: white;
}
.footer-capabilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.footer-capabilities span {
  border: 1px solid color-mix(in oklch, white 14%, transparent);
  border-radius: 999px;
  background: color-mix(in oklch, white 7%, transparent);
  padding: 8px 11px;
  color: color-mix(in oklch, white 78%, var(--border));
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 650;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid color-mix(in oklch, white 12%, transparent);
  padding-block: 17px 22px;
  color: color-mix(in oklch, white 58%, var(--muted));
  font-family: ui-monospace, 'JetBrains Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 640;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: view-rise 1s both var(--ease);
    animation-timeline: view();
    animation-range: entry 10% cover 32%;
  }
}
@keyframes view-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1080px) {
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 38px;
  }
  .hero-grid,
  .roadmap-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .signal-card,
  .signal-ui {
    min-height: 500px;
  }
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8 {
    grid-column: span 6;
  }
  .plan-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }
  .section {
    padding-block: 64px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .mobile-panel {
    display: block;
    position: fixed;
    inset: 72px 12px auto 12px;
    z-index: 40;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: color-mix(in oklch, var(--surface) 96%, transparent);
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
    padding: 10px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }
  body.nav-open .mobile-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-panel a {
    display: block;
    border-radius: var(--radius-sm);
    padding: 14px;
    color: var(--fg);
    font-weight: 750;
  }
  .mobile-panel a.is-active {
    background: var(--fg);
    color: white;
  }
  h1 {
    font-size: 43px;
  }
  h2 {
    font-size: 32px;
  }
  .lead {
    font-size: 17px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .proof-row,
  .feature-strip,
  .node-stack,
  .plan-list {
    grid-template-columns: 1fr;
  }
  .roadmap-copy {
    padding-right: 0;
  }
  .roadmap-visual,
  .roadmap-visual img {
    min-height: 300px;
  }
  .tabs {
    grid-template-columns: 1fr;
  }
  .tab-list,
  .filter-list {
    overflow-x: auto;
    padding-bottom: 4px;
    flex-direction: row;
  }
  .tab-btn,
  .filter-btn {
    min-width: max-content;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand strong {
    font-size: 42px;
  }
  .footer-capabilities {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8,
  .span-12 {
    grid-column: 1 / -1;
  }
}
@media (max-width: 520px) {
  .hero {
    padding-top: 54px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 29px;
  }
  .proof-row {
    gap: 8px;
  }
  .signal-card,
  .signal-ui {
    min-height: 440px;
  }
  .signal-ui::before {
    inset: 78px 18px 126px;
  }
  .signal-ui::after {
    width: 62%;
    height: 26%;
  }
  .console-bottom {
    flex-direction: column;
  }
  .footer-brand strong {
    font-size: 34px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
