@font-face {
  font-family: "Inter Variable";
  src: url("./assets/inter-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --void: #08090a;
  --carbon: #0f1011;
  --obsidian: #161718;
  --graphite: #23252a;
  --smoke: #383b3f;
  --ash: #62666d;
  --fog: #8a8f98;
  --mist: #d0d6e0;
  --paper: #ffffff;
  --lime: #e4f222;
  --green: #27a644;
  --red: #eb5757;
  --blue: #78b4ff;
  --shell: min(1200px, calc(100vw - 48px));
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--void);
  color: var(--mist);
  font-family: "Inter Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv01" on, "ss03" on, "zero" on;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 20;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: rgba(228, 242, 34, 0.25); color: var(--paper); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; background: var(--lime); color: var(--void); transform: translateY(-150%); border-radius: 6px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 15; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease; }
.site-header.scrolled { background: rgba(8,9,10,.84); border-color: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.nav { height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; }
.brand, .footer-brand { display: flex; align-items: center; gap: 10px; color: var(--paper); font-size: 16px; font-weight: 510; letter-spacing: -.011em; }
.brand img, .footer-brand img { border-radius: 7px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { padding: 9px 12px; color: var(--fog); font-size: 13px; transition: color .2s ease; }
.nav-links a:hover, .footer-links a:hover { color: var(--paper); }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.nav-github { display: flex; align-items: center; gap: 7px; color: var(--fog); font-size: 13px; }
.nav-github svg { width: 18px; fill: currentColor; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 40px; padding: 10px 16px; border: 1px solid transparent; border-radius: 6px; font-size: 14px; font-weight: 510; letter-spacing: -.011em; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible, button:focus-visible, a:focus-visible { outline: 2px solid rgba(228,242,34,.72); outline-offset: 3px; }
.button-light { min-height: 36px; padding: 8px 15px; border-radius: 999px; background: var(--paper); color: var(--void); font-size: 13px; }
.button-primary { background: var(--lime); color: var(--void); box-shadow: inset 0 -1px 0 rgba(0,0,0,.18); }
.button-primary:hover { background: #f0fb49; }
.button-ghost { border-color: var(--graphite); color: var(--mist); background: rgba(255,255,255,.018); }
.button-ghost:hover { border-color: var(--smoke); background: rgba(255,255,255,.04); }
.menu-button { display: none; background: none; border: 0; padding: 10px; color: var(--paper); }

.hero { min-height: 100vh; padding-top: 172px; display: flex; flex-direction: column; align-items: center; }
.hero-copy { width: min(910px, 100%); text-align: center; }
.eyebrow { width: max-content; margin: 0 auto 27px; display: flex; align-items: center; gap: 9px; padding: 7px 11px; border: 1px solid var(--graphite); border-radius: 999px; color: var(--fog); background: rgba(255,255,255,.02); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .025em; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(228,242,34,.09); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; color: var(--paper); font-size: clamp(56px, 7.25vw, 92px); line-height: .96; letter-spacing: -.052em; font-weight: 510; }
h1 span { color: var(--fog); }
.hero-copy > p { width: min(690px, 100%); margin: 0 auto 29px; color: var(--fog); font-size: 17px; line-height: 1.65; letter-spacing: -.011em; }
.hero-actions { display: flex; justify-content: center; gap: 10px; }
.platforms { margin-top: 22px; display: flex; justify-content: center; align-items: center; gap: 11px; color: var(--ash); font-size: 12px; }
.platforms i { width: 2px; height: 2px; border-radius: 50%; background: var(--smoke); }

.hero-stage { position: relative; width: min(1280px, calc(100vw - 24px)); margin-top: 82px; padding-bottom: 90px; }
.ambient-floor { position: absolute; inset: 21% 2% 0; background: radial-gradient(ellipse at 50% 82%, rgba(208,214,224,.17), rgba(8,9,10,0) 62%); filter: blur(10px); }
.app-window { position: relative; overflow: hidden; border: 1px solid var(--graphite); border-radius: 12px; background: #090a0b; box-shadow: 0 28px 80px rgba(0,0,0,.56), inset 0 0 0 1px rgba(255,255,255,.02); }
.window-bar { height: 46px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 16px; border-bottom: 1px solid var(--graphite); background: var(--carbon); color: var(--ash); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.traffic { display: flex; gap: 7px; }
.traffic span { width: 8px; height: 8px; border-radius: 50%; background: #474a50; }
.traffic span:first-child { background: #eb5757; }.traffic span:nth-child(2) { background: #c5a52d; }.traffic span:last-child { background: #27a644; }
.window-state { justify-self: end; display: flex; align-items: center; gap: 7px; }
.window-state i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.app-grid { height: clamp(460px, 50vw, 650px); display: grid; grid-template-columns: 190px minmax(0,1fr) 300px; }
.app-sidebar, .agent-panel { background: var(--carbon); }
.app-sidebar { position: relative; padding: 16px 11px; border-right: 1px solid var(--graphite); }
.app-mark { display: flex; align-items: center; gap: 9px; padding: 0 7px 18px; color: var(--mist); font-size: 12px; font-weight: 510; }
.app-mark img { width: 24px; height: 24px; border-radius: 6px; }
.app-nav { display: grid; gap: 3px; }
.app-nav button { display: flex; align-items: center; gap: 10px; width: 100%; padding: 9px 10px; border: 0; border-radius: 6px; color: var(--fog); background: transparent; font-size: 11px; text-align: left; cursor: pointer; }
.app-nav button b { width: 16px; color: var(--fog); font-size: 12px; text-align: center; }
.app-nav button.active { color: var(--mist); background: var(--graphite); box-shadow: inset 2px 0 var(--lime); }
.session-label { margin: 22px 8px 8px; color: #555960; font-size: 8px; letter-spacing: .1em; }
.session-row { display: flex; align-items: center; gap: 8px; padding: 6px 9px; color: var(--ash); font-size: 10px; }
.session-row i { width: 5px; height: 5px; border-radius: 50%; background: var(--ash); }.session-row i.online { background: var(--green); }
.vault-state { position: absolute; bottom: 16px; display: flex; align-items: center; gap: 7px; padding: 0 8px; color: var(--ash); font-size: 9px; }.vault-state i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.terminal-panel { min-width: 0; background: #070809; }
.tab-bar { height: 38px; display: flex; align-items: stretch; border-bottom: 1px solid var(--graphite); background: #0d0e0f; }
.tab { min-width: 130px; padding: 12px 14px 0; border-right: 1px solid var(--graphite); color: var(--ash); font-size: 10px; }.tab.active { color: var(--mist); background: #070809; box-shadow: inset 0 1px var(--lime); }
.tab-bar button { margin-left: auto; width: 38px; border: 0; border-left: 1px solid var(--graphite); background: none; color: var(--fog); }
.terminal-content { padding: 23px 21px; color: #d6d7d8; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: clamp(9px, .9vw, 12px); line-height: 1.72; }
.term-dim { color: #656a70; }.term-green { color: #83d79a; }.term-blue { color: #78b4ff; }.term-yellow { color: #f6d59b; }
.prompt i { display: inline-block; width: 7px; height: 14px; margin-left: 4px; vertical-align: -2px; background: var(--mist); animation: blink 1.1s steps(1) infinite; }
.agent-panel { display: flex; flex-direction: column; border-left: 1px solid var(--graphite); }
.agent-head { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--graphite); font-size: 11px; }.agent-head > span { color: var(--lime); }.agent-head small { margin-left: auto; display: flex; align-items: center; gap: 5px; color: var(--ash); font-weight: 400; }.agent-head small i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.agent-body { flex: 1; padding: 18px 15px; }.agent-label { color: #565a61; font-size: 8px; letter-spacing: .1em; }.host-chip { width: max-content; margin: 10px 0 17px; display: flex; align-items: center; gap: 6px; padding: 5px 8px; border: 1px solid var(--graphite); border-radius: 999px; color: var(--mist); font-size: 9px; }.host-chip i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }.host-chip b { color: var(--ash); }
.agent-question { margin-bottom: 19px; color: var(--mist); font-size: 10px; line-height: 1.55; }.agent-step { display: flex; align-items: center; gap: 9px; padding: 7px 0; color: var(--fog); font-size: 9px; }.agent-step > i { display: grid; place-items: center; width: 15px; height: 15px; border: 1px solid var(--graphite); border-radius: 50%; font-style: normal; color: var(--green); }.agent-step.current > i { border-color: rgba(228,242,34,.4); box-shadow: inset 0 0 0 4px var(--carbon); background: var(--lime); }
.risk-card { margin-top: 19px; padding: 11px; border: 1px solid var(--graphite); border-radius: 6px; background: #0b0c0d; }.risk-card > span { color: var(--ash); font-size: 8px; letter-spacing: .08em; }.risk-card code { display: block; margin: 9px 0 12px; color: var(--mist); font-size: 9px; white-space: normal; }.risk-card > div { display: flex; align-items: center; }.risk-card b { color: var(--green); font-size: 8px; font-weight: 510; }.risk-card button { margin-left: auto; padding: 5px 8px; border: 0; border-radius: 4px; background: var(--lime); color: var(--void); font-size: 8px; }
.agent-input { height: 50px; display: flex; align-items: center; gap: 8px; margin: 0 11px 11px; padding: 0 9px 0 11px; border: 1px solid var(--graphite); border-radius: 6px; color: #555960; font-size: 9px; }.agent-input button { margin-left: auto; width: 24px; height: 24px; border: 0; border-radius: 4px; background: var(--graphite); color: var(--mist); }

.section { padding-block: 128px; }
.section-kicker { margin-bottom: 31px; color: var(--ash); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .06em; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .7fr); gap: 70px; align-items: end; }
.section-heading h2, .capability-copy h2, .security-heading h2, .install-copy h2, .final-cta h2 { margin-bottom: 0; color: var(--paper); font-size: clamp(42px, 5vw, 64px); line-height: 1.02; letter-spacing: -.04em; font-weight: 510; }
.section-heading p, .capability-copy > p, .security-heading > p, .install-copy > p { margin-bottom: 0; color: var(--fog); font-size: 16px; line-height: 1.65; }
.feature-strip { margin-top: 76px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--graphite); border-bottom: 1px solid var(--graphite); }
.feature-strip article { padding: 25px 24px 31px 0; }.feature-strip article + article { padding-left: 24px; border-left: 1px solid var(--graphite); }.feature-index { color: var(--ash); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }.feature-strip h3 { margin: 40px 0 11px; color: var(--paper); font-size: 18px; font-weight: 510; letter-spacing: -.015em; }.feature-strip p { margin: 0; color: var(--fog); font-size: 13px; line-height: 1.65; }

.capabilities { border-top: 1px solid rgba(255,255,255,.06); }
.capability-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(560px,1.15fr); gap: 100px; align-items: center; }
.capability-copy h2 { margin-bottom: 28px; }.capability-copy > p { max-width: 520px; }.provider-list { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px; }.provider-list span { padding: 6px 10px; border: 1px solid var(--graphite); border-radius: 999px; color: var(--fog); font-size: 11px; }
.flow-card { overflow: hidden; border: 1px solid var(--graphite); border-radius: 12px; background: var(--carbon); box-shadow: inset 0 0 0 1px rgba(255,255,255,.015); }
.flow-head { display: flex; justify-content: space-between; padding: 15px 17px; border-bottom: 1px solid var(--graphite); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; color: var(--fog); }.flow-head small { color: var(--ash); }.flow-message { padding: 22px 20px; color: var(--paper); font-size: 16px; line-height: 1.5; border-bottom: 1px solid var(--graphite); }
.flow-line { min-height: 86px; display: grid; grid-template-columns: 30px 1fr 24px; align-items: center; gap: 13px; padding: 14px 18px; border-bottom: 1px solid var(--graphite); }.flow-line > span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--graphite); border-radius: 50%; color: var(--ash); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }.flow-line b { display: block; margin-bottom: 6px; color: var(--mist); font-size: 12px; font-weight: 510; }.flow-line code, .flow-line small { color: var(--fog); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }.flow-line > i { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: var(--ash); font-style: normal; font-size: 10px; }.flow-line > i.done { color: var(--green); }.flow-line.active { background: rgba(228,242,34,.035); box-shadow: inset 2px 0 var(--lime); }.flow-line.active > span, .flow-line.active > i { border-color: rgba(228,242,34,.3); color: var(--lime); }
.flow-footer { display: flex; align-items: center; padding: 14px 17px; }.flow-footer > span { display: flex; align-items: center; gap: 7px; color: var(--ash); font-size: 10px; }.flow-footer > span i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }.flow-footer button { margin-left: auto; padding: 8px 11px; border: 0; border-radius: 6px; background: var(--lime); color: var(--void); font-size: 10px; font-weight: 510; }

.security { background: #0b0c0d; border-block: 1px solid rgba(255,255,255,.06); }
.security-heading { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(300px,.65fr); gap: 90px; align-items: end; }
.security-grid { margin-top: 72px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; border: 1px solid var(--graphite); border-radius: 12px; overflow: hidden; }
.security-grid article { min-height: 250px; padding: 27px; background: rgba(255,255,255,.012); }.security-grid article + article { border-left: 1px solid var(--graphite); }.security-grid article:nth-child(4) { grid-column: 2 / 4; border-left: 1px solid var(--graphite); border-top: 1px solid var(--graphite); min-height: 190px; }.security-grid > article:nth-child(2), .security-grid > article:nth-child(3) { min-height: 290px; }
.security-grid article > span, .security-primary > div > span { color: var(--ash); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: .08em; }.security-grid h3 { margin: 70px 0 12px; color: var(--paper); font-size: 19px; letter-spacing: -.015em; font-weight: 510; }.security-grid p { margin: 0; color: var(--fog); font-size: 13px; line-height: 1.65; }
.security-grid .security-primary { grid-row: 1 / 3; min-height: 480px; display: flex; flex-direction: column; justify-content: space-between; border: 0; background: var(--carbon); }.security-primary h3 { margin: 13px 0 12px; font-size: 25px; }.lock-visual { position: relative; width: 130px; height: 160px; margin: 34px auto 15px; }.lock-shackle { position: absolute; left: 29px; top: 0; width: 72px; height: 85px; border: 13px solid #34373b; border-bottom: 0; border-radius: 42px 42px 0 0; }.lock-body { position: absolute; inset: 67px 0 0; display: grid; place-items: center; border: 1px solid #4a4e53; border-radius: 12px; background: var(--obsidian); box-shadow: 0 22px 44px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.035); }.lock-body i { width: 10px; height: 24px; border-radius: 8px; background: var(--lime); box-shadow: 0 0 18px rgba(228,242,34,.18); }

.install-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(560px,1.2fr); gap: 100px; align-items: center; }.install-copy h2 { margin-bottom: 27px; }.install-copy > p { max-width: 470px; }.text-link { display: inline-flex; gap: 8px; margin-top: 31px; color: var(--mist); font-size: 14px; }.text-link:hover span { transform: translate(2px,-2px); }.text-link span { transition: transform .2s ease; }
.install-card { border: 1px solid var(--graphite); border-radius: 12px; overflow: hidden; background: var(--carbon); }.install-tabs { display: flex; padding: 0 14px; border-bottom: 1px solid var(--graphite); }.install-tabs button { padding: 15px 12px; border: 0; border-bottom: 1px solid transparent; background: none; color: var(--ash); font-size: 11px; cursor: pointer; }.install-tabs button.active { color: var(--mist); border-color: var(--lime); }.command-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--graphite); color: var(--ash); font-size: 10px; }.copy-button { padding: 5px 9px; border: 1px solid var(--graphite); border-radius: 4px; background: var(--obsidian); color: var(--fog); font-size: 9px; cursor: pointer; }.command-panel pre { margin: 0; padding: 24px 20px 27px; overflow-x: auto; color: var(--mist); font: 12px/1.9 ui-monospace, SFMono-Regular, Menlo, monospace; }.command-panel code span { color: var(--lime); }.release-panel { padding: 10px 18px 18px; }.release-option { display: flex; justify-content: space-between; padding: 17px 2px; border-bottom: 1px solid var(--graphite); transition: background .2s ease, padding .2s ease; }.release-option:hover, .release-option.recommended { margin-inline: -8px; padding-inline: 10px; background: rgba(228,242,34,.035); }.release-option.recommended { box-shadow: inset 2px 0 var(--lime); }.release-panel b { color: var(--mist); font-size: 12px; font-weight: 510; }.release-panel span { color: var(--fog); font-size: 11px; }.release-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 17px; }.release-meta > span { color: var(--ash); }.release-meta a { color: var(--mist); font-size: 11px; }

.final-cta { min-height: 440px; display: flex; align-items: center; justify-content: space-between; padding-block: 110px; border-top: 1px solid var(--graphite); }.final-cta > div > span { display: block; margin-bottom: 26px; color: var(--ash); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: .08em; }.final-cta .button { min-width: 140px; }
.footer { min-height: 150px; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; align-items: center; gap: 13px 28px; padding-block: 34px; border-top: 1px solid var(--graphite); color: var(--ash); }.footer p { margin: 0; font-size: 12px; }.footer-links { display: flex; justify-content: flex-end; gap: 24px; color: var(--fog); font-size: 11px; }.footer small { grid-column: 1 / -1; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }.reveal[data-delay="1"] { transition-delay: .12s; }.reveal.visible { opacity: 1; transform: none; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }
  .nav { grid-template-columns: 1fr auto; }.nav-links { position: fixed; inset: 72px 0 auto; display: none; padding: 16px 18px 22px; background: rgba(8,9,10,.97); border-bottom: 1px solid var(--graphite); }.nav-links.open { display: grid; }.nav-links a { padding: 12px; font-size: 14px; }.menu-button { display: grid; gap: 6px; }.menu-button > span:not(.sr-only) { display: block; width: 20px; height: 1px; background: var(--mist); }.nav-actions { display: none; }
  .hero { padding-top: 145px; }.hero-stage { margin-top: 64px; }.app-grid { grid-template-columns: 150px 1fr; height: 480px; }.agent-panel { position: absolute; right: 16px; top: 62px; bottom: 16px; width: 260px; border: 1px solid var(--graphite); border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,.55); }.window-state { display: none; }
  .section { padding-block: 100px; }.section-heading, .security-heading { grid-template-columns: 1fr; gap: 28px; }.section-heading p, .security-heading p { max-width: 600px; }.feature-strip { grid-template-columns: 1fr 1fr; }.feature-strip article:nth-child(3) { padding-left: 0; border-left: 0; border-top: 1px solid var(--graphite); }.feature-strip article:nth-child(4) { border-top: 1px solid var(--graphite); }
  .capability-layout, .install-layout { grid-template-columns: 1fr; gap: 60px; }.capability-copy > p, .install-copy > p { max-width: 620px; }.security-grid { grid-template-columns: 1fr 1fr; }.security-grid .security-primary { grid-column: 1 / -1; grid-row: auto; min-height: 420px; }.security-grid article:nth-child(2) { border-left: 0; }.security-grid article:nth-child(3) { border-left: 1px solid var(--graphite); }.security-grid article:nth-child(4) { grid-column: 1 / -1; border-left: 0; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }.nav { height: 64px; }.nav-links { top: 64px; }.hero { min-height: auto; padding-top: 128px; }.eyebrow { margin-bottom: 24px; }.hero-copy { text-align: left; }.eyebrow, .hero-copy > p { margin-left: 0; }.hero-copy > p { font-size: 15px; }.hero-actions { justify-content: flex-start; flex-wrap: wrap; }.platforms { justify-content: flex-start; }.hero-stage { width: calc(100vw - 14px); margin-top: 54px; padding-bottom: 40px; }.window-bar { grid-template-columns: 1fr auto; }.window-title { justify-self: end; }.app-grid { height: 400px; grid-template-columns: 78px 1fr; }.app-sidebar { padding-inline: 8px; }.app-mark span, .app-nav button span, .session-label, .session-row span, .vault-state span { display: none; }.app-nav button { justify-content: center; padding: 10px 0; }.app-mark { justify-content: center; padding-inline: 0; }.agent-panel { width: 220px; right: 9px; top: 57px; bottom: 9px; }.agent-body { padding: 14px 12px; }.risk-card { margin-top: 10px; }.terminal-content { padding: 16px 12px; font-size: 8px; }.tab { min-width: 90px; }.section { padding-block: 82px; }.section-kicker { margin-bottom: 24px; }.section-heading h2, .capability-copy h2, .security-heading h2, .install-copy h2, .final-cta h2 { font-size: 40px; }.section-heading p, .capability-copy > p, .security-heading > p, .install-copy > p { font-size: 14px; }.feature-strip { grid-template-columns: 1fr; margin-top: 52px; }.feature-strip article, .feature-strip article + article { padding: 24px 0; border-left: 0; border-top: 1px solid var(--graphite); }.feature-strip article:first-child { border-top: 0; }.feature-strip h3 { margin-top: 20px; }.flow-message { font-size: 14px; }.flow-line { grid-template-columns: 28px 1fr; }.flow-line > i { display: none; }.security-grid { grid-template-columns: 1fr; }.security-grid .security-primary { min-height: 400px; }.security-grid article, .security-grid > article:nth-child(2), .security-grid > article:nth-child(3) { min-height: 220px; border-left: 0; border-top: 1px solid var(--graphite); }.security-grid .security-primary { border-top: 0; }.security-grid article:nth-child(4) { grid-column: auto; }.security-grid h3 { margin-top: 50px; }.install-layout { gap: 42px; }.install-card { width: calc(100vw - 28px); }.command-panel pre { font-size: 10px; }.release-option { align-items: flex-start; gap: 12px; }.release-option span { text-align: right; }.release-meta { align-items: flex-start; }.release-meta > span { text-align: left; }.final-cta { min-height: 380px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 48px; }.footer { grid-template-columns: 1fr; }.footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 14px 20px; }.footer small { grid-column: auto; }
}

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