@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #080b10;
  --surface: #10151d;
  --surface-2: #161e28;
  --text: #f2f4f8;
  --muted: #9aa5b6;
  --line: #ffffff1a;
  --accent: #c5f56a;
  --blue: #91b4ff;
  --sans: "Space Grotesk", "Segoe UI", sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
body::selection { background: var(--accent); color: var(--bg); }
button, input { font: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
button, a { touch-action: manipulation; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
button:disabled { cursor: default; }
svg { display: block; }
img { max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-weight: 500; }
h1 { font-size: clamp(58px, 6.4vw, 96px); line-height: 1.04; letter-spacing: -.065em; }
h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.12; letter-spacing: -.05em; }
h3 { font-size: 26px; line-height: 1.25; letter-spacing: -.035em; }
p { color: var(--muted); }
.container { width: min(1280px, calc(100% - 80px)); margin-inline: auto; }
.site-header { height: 94px; display: flex; justify-content: space-between; align-items: center; gap: 32px; border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; font-size: 23px; font-weight: 600; letter-spacing: -.06em; flex-shrink: 0; }
.wordmark .ai { color: var(--muted); font-weight: 400; }
.logo-mark { width: 29px; height: 32px; color: var(--accent); flex-shrink: 0; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; }
.nav-link { color: var(--muted); transition: color .2s; }
.nav-link:hover { color: var(--text); }
.nav-cta { padding: 11px 17px; border: 1px solid #ffffff35; border-radius: 6px; display: inline-flex; align-items: center; gap: 22px; transition: background .2s, border-color .2s; }
.nav-cta:hover { background: var(--surface-2); border-color: var(--accent); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 6px; padding: 9px 12px; cursor: pointer; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 32px; min-height: 50px; padding: 14px 22px; border: 1px solid transparent; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--bg); }
.button-primary:hover { background: #d9ff98; }
.button-ghost { border-color: #ffffff30; background: transparent; color: var(--text); }
.button-ghost:hover { border-color: #ffffff65; background: #ffffff05; }
.eyebrow, .section-kicker { font: 11px/1.5 var(--mono); text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; display: block; width: 22px; height: 1px; background: var(--accent); }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border: 1px solid #c5f56a35; border-radius: 4px; color: var(--accent); background: #c5f56a08; font: 10px/1.5 var(--mono); letter-spacing: .05em; }
.status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.section { padding-block: 96px; border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 42px; }
.section-heading .section-kicker { margin-bottom: 20px; }
.section-heading > p { max-width: 370px; font-size: 15px; }
.site-footer { border-top: 1px solid var(--line); padding-block: 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a:hover { color: var(--text); }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 12px 18px; z-index: 100; background: var(--accent); color: var(--bg); }
.skip-link:focus { top: 12px; }
.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; }
@media (max-width: 900px) {
  .container { width: calc(100% - 48px); }
  .site-nav { gap: 20px; }
  .section { padding-block: 68px; }
  .section-heading { align-items: start; gap: 24px; }
  .section-heading > p { max-width: 310px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .site-header { height: 80px; gap: 12px; }
  .wordmark { font-size: 21px; gap: 9px; }
  .logo-mark { width: 24px; height: 27px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 72px; inset-inline: 0; padding: 22px; flex-direction: column; align-items: stretch; background: #10151df5; border: 1px solid var(--line); border-radius: 8px; display: none; backdrop-filter: blur(20px); }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-link { padding: 7px 0; font-size: 15px; }
  .nav-cta { justify-content: space-between; }
  h1 { font-size: clamp(48px, 12vw, 70px); }
  h2 { font-size: 37px; }
  .section-heading { flex-direction: column; margin-bottom: 30px; }
  .section-heading > p { max-width: 100%; }
  .section { padding-block: 58px; }
  .site-footer { flex-wrap: wrap; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

html:not(.js) .nav-toggle { display: none; }
@media (max-width: 640px) {
  html:not(.js) .site-header { height: auto; flex-wrap: wrap; padding-block: 22px; }
  html:not(.js) .site-nav { display: flex; position: static; padding: 12px 0 0; border: 0; flex-direction: row; flex-wrap: wrap; background: transparent; }
}
