@font-face {
  font-family: "Geist";
  src: url("/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}

:root {
  --bg: #090b0a;
  --surface: #101310;
  --surface-2: #151915;
  --text: #f5f7f2;
  --muted: #9da69d;
  --green: #9dff45;
  --green-bright: #b7ff78;
  --green-dark: #63b722;
  --cream: #f4f0e6;
  --line: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(157, 255, 69, 0.35);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Geist", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 12%, rgba(98, 183, 34, 0.14), transparent 30%),
    radial-gradient(circle at 8% 52%, rgba(157, 255, 69, 0.05), transparent 28%),
    linear-gradient(180deg, #0b0d0b, #080a09 60%, #0c0f0c);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #071005;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 200; height: 2px; background: rgba(255,255,255,.04); }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--green); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 16px var(--green); }

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .32;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}

.cursor-glow {
  position: fixed;
  z-index: -2;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(157,255,69,.075), transparent 66%);
  transform: translate3d(calc(var(--cursor-x, 50vw) - 50%), calc(var(--cursor-y, 20vh) - 50%), 0);
  transition: opacity 250ms ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease;
}
.site-header.is-scrolled { background: rgba(9, 11, 10, .82); border-color: var(--line); backdrop-filter: blur(18px); }
.nav-shell { width: min(var(--container), calc(100% - 48px)); height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-height: 44px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; padding: 2px; overflow: hidden; background: #0f0e15; border: 1px solid rgba(157,255,69,.55); border-radius: 11px; box-shadow: 0 0 22px rgba(157,255,69,.12); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.brand-name { font-size: 19px; font-weight: 760; letter-spacing: -.03em; }
.brand-tag { padding: 3px 6px; color: var(--green); border: 1px solid rgba(157,255,69,.3); border-radius: 4px; font: 600 9px/1.4 ui-monospace, monospace; letter-spacing: .12em; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a, .footer-links a { color: #b7beb7; font-size: 14px; transition: color 180ms ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-github { display: grid; place-items: center; width: 44px; height: 44px; color: #d9ded9; border-radius: 50%; transition: color 180ms ease, background 180ms ease; }
.nav-github:hover { color: var(--green); background: rgba(157,255,69,.08); }
.nav-github svg { width: 20px; fill: currentColor; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 700; letter-spacing: -.01em; cursor: pointer; transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #091006; background: var(--green); box-shadow: 0 10px 38px rgba(105, 207, 37, .16); }
.button-primary:hover { background: var(--green-bright); box-shadow: 0 13px 44px rgba(105, 207, 37, .27); }
.button-secondary { color: var(--text); background: rgba(255,255,255,.025); border-color: var(--line); }
.button-secondary:hover { background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.24); }
.button-small { min-height: 42px; padding: 9px 16px; }
.button-large { min-height: 58px; padding-inline: 26px; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.menu-button { display: none; width: 44px; height: 44px; padding: 11px; color: var(--text); background: transparent; border: 0; cursor: pointer; }
.menu-button span { display: block; width: 21px; height: 1px; margin: 6px 0; background: currentColor; transition: transform 200ms ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; width: min(var(--container), calc(100% - 48px)); min-height: 820px; margin: 0 auto; padding: 160px 0 80px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: 20px; }
.hero-copy { position: relative; z-index: 4; padding-bottom: 30px; }
.eyebrow, .section-kicker { color: var(--green); font: 650 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 10px; margin-bottom: 24px; background: rgba(157,255,69,.055); border: 1px solid rgba(157,255,69,.18); border-radius: 100px; }
.status-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(157,255,69,.08), 0 0 13px var(--green); animation: statusPulse 2.4s ease-in-out infinite; }
@keyframes statusPulse { 50% { opacity: .55; box-shadow: 0 0 0 8px rgba(157,255,69,0), 0 0 8px var(--green); } }
.hero h1 { max-width: 690px; margin: 0; font-size: clamp(52px, 5.8vw, 88px); font-weight: 710; line-height: .98; letter-spacing: -.065em; }
.accent-dot { color: var(--green); text-shadow: 0 0 22px rgba(157,255,69,.4); }
.hero-lead { max-width: 610px; margin: 30px 0 0; color: #b7beb7; font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 27px; color: #838c84; font-size: 12px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }

.hero-stage { position: relative; z-index: 2; width: 720px; height: 650px; margin-left: -85px; transform-style: preserve-3d; transition: transform 350ms var(--ease); }
.hero-stage::after { content: ""; position: absolute; inset: 15% -10% -8% 16%; z-index: -1; background: radial-gradient(ellipse, rgba(157,255,69,.1), transparent 66%); filter: blur(18px); }
.hero-halo { position: absolute; left: 20%; top: 12%; width: 72%; aspect-ratio: 1; border: 1px solid rgba(157,255,69,.16); border-radius: 50%; box-shadow: inset 0 0 80px rgba(157,255,69,.035), 0 0 80px rgba(157,255,69,.03); }
.hero-halo::before, .hero-halo::after { content: ""; position: absolute; inset: 11%; border: 1px dashed rgba(255,255,255,.09); border-radius: inherit; animation: orbitSpin 28s linear infinite; }
.hero-halo::after { inset: 25%; border-style: solid; border-color: rgba(157,255,69,.1); animation-direction: reverse; animation-duration: 18s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero-orbit { position: absolute; z-index: -1; width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 16px var(--green); }
.orbit-one { top: 21%; right: 8%; animation: floatPoint 5s ease-in-out infinite; }
.orbit-two { left: 18%; bottom: 20%; width: 5px; height: 5px; animation: floatPoint 6.5s ease-in-out -2s infinite; }
@keyframes floatPoint { 50% { transform: translate3d(0, -17px, 0); opacity: .48; } }
.hero-character { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 54% center; mask-image: linear-gradient(to bottom, #000 82%, transparent 100%); filter: saturate(.95) contrast(1.03); }
.agent-chip { position: absolute; z-index: 4; display: grid; gap: 2px; min-width: 146px; padding: 11px 13px; color: #d7ddd6; background: rgba(9,13,10,.72); border: 1px solid rgba(255,255,255,.14); border-radius: 9px; backdrop-filter: blur(12px); box-shadow: 0 14px 35px rgba(0,0,0,.24); font-size: 11px; }
.agent-chip span { color: var(--green); font: 700 9px/1.3 ui-monospace, monospace; letter-spacing: .14em; }
.chip-model { top: 22%; right: 1%; animation: chipFloat 5.4s ease-in-out infinite; }
.chip-parallel { left: 13%; top: 37%; animation: chipFloat 6s ease-in-out -2s infinite; }
@keyframes chipFloat { 50% { transform: translateY(-8px); } }
.terminal-card { position: absolute; z-index: 5; right: 1%; bottom: 6%; width: 360px; overflow: hidden; background: rgba(12,15,13,.86); border: 1px solid rgba(157,255,69,.22); border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 50px rgba(157,255,69,.045); backdrop-filter: blur(16px); }
.terminal-head { min-height: 37px; padding: 0 12px; display: flex; align-items: center; gap: 10px; color: #697269; background: rgba(255,255,255,.025); border-bottom: 1px solid var(--line); font: 600 9px/1 ui-monospace, monospace; letter-spacing: .08em; }
.terminal-head > span { margin-right: auto; }
.terminal-head b { color: var(--green); font-size: 8px; }
.terminal-lights { display: flex; gap: 5px; }
.terminal-lights i { width: 6px; height: 6px; background: #3b413c; border-radius: 50%; }
.terminal-lights i:first-child { background: var(--green-dark); }
.terminal-body { min-height: 124px; padding: 17px 18px; font: 500 11px/1.7 ui-monospace, SFMono-Regular, Consolas, monospace; }
.terminal-body p { margin: 0 0 8px; }
.prompt { color: var(--green); }
.caret { display: inline-block; width: 6px; height: 13px; margin-left: 3px; vertical-align: -2px; background: var(--green); animation: caretBlink .9s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.terminal-muted { display: flex; align-items: center; gap: 8px; color: #788079; }
.check { position: relative; width: 11px; height: 11px; border: 1px solid var(--green-dark); border-radius: 50%; }
.check::after { content: ""; position: absolute; left: 3px; top: 1px; width: 3px; height: 5px; border: solid var(--green); border-width: 0 1px 1px 0; transform: rotate(45deg); }

.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,255,255,.015); }
.signal-track { width: max-content; min-height: 51px; display: flex; align-items: center; gap: 30px; color: #697169; font: 600 10px/1 ui-monospace, monospace; letter-spacing: .14em; animation: marquee 35s linear infinite; }
.signal-track i { width: 5px; height: 5px; background: var(--green); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.section-kicker { margin: 0 0 15px; }
.section h2, .final-cta h2 { margin: 0; font-size: clamp(38px, 4.5vw, 64px); font-weight: 680; line-height: 1.06; letter-spacing: -.05em; }
.section-heading > p { max-width: 500px; margin: 0; color: var(--muted); font-size: 15px; }

.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { position: relative; min-height: 312px; padding: 28px; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.014)); border: 1px solid var(--line); border-radius: 16px; transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease; }
.feature-card::after { content: ""; position: absolute; left: var(--mx, 50%); top: var(--my, 50%); width: 240px; height: 240px; pointer-events: none; background: radial-gradient(circle, rgba(157,255,69,.12), transparent 68%); transform: translate(-50%, -50%); opacity: 0; transition: opacity 220ms ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(157,255,69,.25); background: linear-gradient(145deg, rgba(157,255,69,.055), rgba(255,255,255,.015)); }
.feature-card:hover::after { opacity: 1; }
.feature-card-wide { grid-column: span 2; display: grid; grid-template-columns: auto 1fr; column-gap: 20px; }
.feature-icon { display: grid; place-items: center; width: 43px; height: 43px; color: var(--green); background: rgba(157,255,69,.07); border: 1px solid rgba(157,255,69,.18); border-radius: 10px; }
.feature-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.feature-index, .mode-label { display: block; margin-top: 54px; color: #626a63; font: 650 9px/1.4 ui-monospace, monospace; letter-spacing: .14em; }
.feature-card-wide .feature-index { margin-top: 2px; }
.feature-card h3 { margin: 9px 0 12px; font-size: 23px; line-height: 1.2; letter-spacing: -.025em; }
.feature-card p { max-width: 355px; margin: 0; color: #909991; font-size: 14px; }
.mini-flow { grid-column: 1 / -1; align-self: end; display: flex; align-items: center; gap: 10px; padding-top: 28px; color: #9fa89f; font: 550 10px/1 ui-monospace, monospace; }
.mini-flow span { padding: 7px 9px; border: 1px solid var(--line); border-radius: 5px; }
.mini-flow i { width: 23px; height: 1px; background: linear-gradient(90deg, var(--line), var(--green)); }

.workflow { width: 100%; padding-inline: max(24px, calc((100% - var(--container)) / 2)); background: #0d100e; border-block: 1px solid var(--line); }
.workflow-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.workflow-copy { position: sticky; top: 150px; align-self: start; }
.workflow-copy > p:not(.section-kicker) { max-width: 430px; margin: 25px 0; color: var(--muted); }
.text-link { display: inline-flex; gap: 8px; align-items: center; min-height: 44px; color: var(--green); font-size: 14px; font-weight: 650; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.workflow-list li { min-height: 155px; display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); }
.workflow-list > li > span { color: var(--green); font: 650 12px/1 ui-monospace, monospace; }
.workflow-list h3 { margin: 0 0 8px; font-size: 23px; letter-spacing: -.025em; }
.workflow-list p { margin: 0; color: var(--muted); font-size: 14px; }
.workflow-list b { color: #3f4740; font: 650 9px/1 ui-monospace, monospace; letter-spacing: .13em; }

.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mode-card { min-height: 330px; display: flex; flex-direction: column; padding: 31px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; transition: transform 240ms var(--ease), border-color 240ms ease; }
.mode-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.25); }
.mode-card-primary { color: #0b1207; background: var(--green); border-color: var(--green); }
.mode-card .mode-label { margin: 0; color: #626a63; }
.mode-card-primary .mode-label { color: rgba(11,18,7,.58); }
.mode-card h3 { margin: auto 0 10px; font-size: 28px; letter-spacing: -.035em; }
.mode-card p { min-height: 70px; margin: 0 0 25px; color: var(--muted); font-size: 14px; }
.mode-card-primary p { color: rgba(11,18,7,.68); }
.mode-card strong { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.mode-card-primary strong { border-color: rgba(11,18,7,.18); }

.open-source { padding-top: 30px; }
.source-panel { position: relative; min-height: 540px; display: grid; grid-template-columns: .35fr 1fr .85fr; align-items: center; gap: 50px; padding: 65px; overflow: hidden; background: linear-gradient(135deg, #111511, #0c0f0d); border: 1px solid var(--line); border-radius: 22px; }
.source-panel::before { content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: -160px; background: radial-gradient(circle, rgba(157,255,69,.12), transparent 65%); }
.source-logo { width: 150px; aspect-ratio: 1; padding: 7px; overflow: hidden; background: #fff; border: 1px solid rgba(157,255,69,.5); border-radius: 35px; box-shadow: 0 0 80px rgba(157,255,69,.12); transform: rotate(-4deg); }
.source-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 28px; }
.source-copy { position: relative; z-index: 2; }
.source-copy p:not(.section-kicker) { max-width: 550px; margin: 22px 0 30px; color: var(--muted); }
.source-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.source-code { position: relative; z-index: 2; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.2); }
.source-code div { min-height: 48px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid var(--line); color: #707970; }
.source-code div:last-child { border: 0; }
.source-code span { text-align: center; font: 500 9px/1 ui-monospace, monospace; }
.source-code code { font: 500 11px/1.4 ui-monospace, monospace; }
.source-code-active { color: var(--green) !important; background: rgba(157,255,69,.055); }

.final-cta { position: relative; min-height: 620px; display: grid; place-items: center; padding: 110px 24px; overflow: hidden; text-align: center; border-top: 1px solid var(--line); }
.final-cta > div:not(.final-orb) { position: relative; z-index: 2; }
.final-cta h2 { max-width: 850px; margin: 0 auto; }
.final-cta p:not(.section-kicker) { margin: 23px 0 30px; color: var(--muted); }
.final-orb { position: absolute; width: 600px; height: 600px; border: 1px solid rgba(157,255,69,.15); border-radius: 50%; box-shadow: inset 0 0 120px rgba(157,255,69,.05); }
.final-orb::before, .final-orb::after { content: ""; position: absolute; inset: 14%; border: 1px dashed rgba(157,255,69,.1); border-radius: 50%; animation: orbitSpin 35s linear infinite; }
.final-orb::after { inset: 31%; background: radial-gradient(circle, rgba(157,255,69,.08), transparent 60%); animation-direction: reverse; }

.site-footer { width: min(var(--container), calc(100% - 48px)); min-height: 150px; margin: auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 45px; border-top: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand strong { font-size: 15px; }
.footer-brand p { margin: 1px 0 0; color: #667067; font-size: 11px; }
.footer-links { display: flex; gap: 24px; }
.copyright { color: #5d655e; font-size: 11px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 750ms var(--ease), transform 750ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: absolute; left: 24px; right: 24px; top: 74px; display: grid; padding: 12px; background: rgba(13,16,14,.97); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 80px rgba(0,0,0,.42); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: 200ms ease; }
  .mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-nav a { display: flex; align-items: center; min-height: 48px; padding: 0 14px; color: #c2c8c2; border-radius: 8px; }
  .mobile-nav a:hover { color: var(--green); background: rgba(157,255,69,.05); }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 160px; }
  .hero-copy { max-width: 780px; }
  .hero-stage { width: min(760px, 100%); height: 650px; margin: -70px auto 0; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 2; }
  .workflow-shell { gap: 55px; }
  .source-panel { grid-template-columns: .35fr 1fr; }
  .source-code { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-shell, .hero, .section, .site-footer { width: min(100% - 32px, var(--container)); }
  .nav-shell { height: 70px; }
  .brand-tag, .nav-github, .nav-actions > .button { display: none; }
  .hero { padding-top: 125px; padding-bottom: 55px; gap: 0; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 67px); }
  .hero-lead { margin-top: 23px; font-size: 16px; line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 10px 16px; }
  .hero-stage { width: calc(100% + 32px); height: 480px; margin: -15px -16px 0; }
  .hero-character { object-position: 57% center; }
  .hero-halo { left: 10%; width: 85%; }
  .agent-chip { min-width: 130px; padding: 9px 10px; font-size: 9px; }
  .chip-model { right: 2%; top: 18%; }
  .chip-parallel { left: 1%; top: 40%; }
  .terminal-card { left: 16px; right: 16px; bottom: 1%; width: auto; }
  .section { padding-block: 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .section h2, .final-cta h2 { font-size: clamp(36px, 10.5vw, 52px); }
  .capability-grid, .mode-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: auto; display: block; }
  .feature-card { min-height: 280px; }
  .feature-card-wide .feature-index { margin-top: 48px; }
  .mini-flow { overflow: hidden; gap: 6px; }
  .mini-flow i { width: 10px; }
  .workflow { width: 100%; padding-inline: 16px; }
  .workflow-shell { grid-template-columns: 1fr; gap: 55px; }
  .workflow-copy { position: static; }
  .workflow-list li { grid-template-columns: 40px 1fr; gap: 12px; padding: 25px 0; }
  .workflow-list b { display: none; }
  .mode-card { min-height: 290px; }
  .source-panel { min-height: auto; grid-template-columns: 1fr; gap: 35px; padding: 32px 22px; }
  .source-logo { width: 95px; border-radius: 22px; }
  .source-logo img { border-radius: 17px; }
  .source-code { grid-column: auto; }
  .final-cta { min-height: 570px; }
  .final-orb { width: 460px; height: 460px; }
  .site-footer { min-height: 260px; grid-template-columns: 1fr; align-content: center; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 14px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .signal-track { transform: none; }
  .cursor-glow { display: none; }
}
