:root {
  --ink: #f4f6fb;
  --muted: #9ba8c4;
  --subtle: #69738f;
  --night: #0a0d16;
  --night-raised: #10152a;
  --panel: rgba(17, 24, 51, 0.78);
  --line: rgba(174, 193, 235, 0.16);
  --cyan: #2fd8f2;
  --cyan-deep: #0bb5d6;
  --violet: #a794ff;
  --green: #8ee3ba;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night);
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.section-shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.page-glow { position: absolute; pointer-events: none; filter: blur(1px); border-radius: 50%; z-index: -1; }
.glow-one { width: 760px; height: 530px; top: -210px; right: -270px; background: radial-gradient(circle, rgba(24, 91, 196, .34), transparent 67%); }
.glow-two { width: 540px; height: 440px; top: 960px; left: -340px; background: radial-gradient(circle, rgba(35, 210, 242, .12), transparent 66%); }

.site-header { width: min(calc(100% - 48px), var(--max)); height: 88px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 10; }
.brand { display: inline-flex; gap: 10px; align-items: center; font: 600 21px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: -.08em; }
.brand img { display: block; }
.brand span > span { color: var(--cyan); }
.site-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 14px; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
.site-nav a:last-child { color: var(--ink); padding: 9px 14px; border: 1px solid var(--line); border-radius: 8px; }
.site-nav a:last-child:hover { border-color: rgba(47, 216, 242, .6); background: rgba(47, 216, 242, .08); }
.menu-button { display: none; }

.hero { min-height: 650px; display: grid; grid-template-columns: 1.13fr .87fr; align-items: center; gap: 70px; padding: 74px 0 104px; }
.eyebrow { margin: 0 0 18px; color: var(--cyan); font: 600 11px/1.4 "JetBrains Mono", ui-monospace, monospace; letter-spacing: .11em; text-transform: uppercase; }
.status-dot { display: inline-block; width: 7px; height: 7px; margin: 0 8px 1px 0; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(142, 227, 186, .12); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 730px; margin-bottom: 25px; font-size: clamp(50px, 6.2vw, 86px); letter-spacing: -.065em; line-height: .97; font-weight: 560; }
h1 em { color: var(--cyan); font-style: normal; }
.hero-lede { max-width: 590px; margin-bottom: 32px; color: #c7d0e3; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 47px; padding: 0 20px; border-radius: 8px; font-size: 14px; font-weight: 650; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #06131a; background: var(--cyan); box-shadow: 0 9px 30px rgba(47, 216, 242, .16); }
.button-primary:hover { background: #75e7f7; }
.button-quiet { color: #c5d0e7; }
.button-quiet:hover { color: var(--cyan); background: rgba(47, 216, 242, .06); }
.button-outline { color: var(--ink); border: 1px solid rgba(178, 196, 235, .32); }
.button-outline:hover { border-color: var(--cyan); background: rgba(47, 216, 242, .08); }
.hero-note { margin: 21px 0 0; color: var(--subtle); font-size: 12px; }

.terminal-card { align-self: center; position: relative; overflow: hidden; border: 1px solid rgba(166, 190, 247, .27); border-radius: 16px; background: linear-gradient(145deg, rgba(24, 33, 72, .93), rgba(9, 13, 28, .95)); box-shadow: 24px 30px 70px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255,255,255,.05); transform: rotate(2.5deg); }
.terminal-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.06), transparent 23%, transparent 72%, rgba(47,216,242,.06)); }
.terminal-top { height: 45px; display: flex; align-items: center; gap: 6px; padding: 0 16px; background: rgba(3, 6, 18, .4); border-bottom: 1px solid var(--line); }
.terminal-top span { width: 8px; height: 8px; border-radius: 50%; background: #425070; }
.terminal-top span:nth-child(1) { background: #ff887c; }.terminal-top span:nth-child(2) { background: #ffd36a; }.terminal-top span:nth-child(3) { background: #7be7ba; }
.terminal-top code { margin-left: 8px; color: #8896b6; font-size: 11px; }
.terminal-body { padding: 30px 30px 32px; font: 13px/1.6 "JetBrains Mono", ui-monospace, monospace; }
.terminal-body p { margin-bottom: 18px; }.terminal-prompt { color: var(--cyan); margin-right: 10px; }.terminal-rule { height: 1px; margin: 17px 0; background: var(--line); }
.terminal-body dl { display: grid; gap: 8px; margin: 0; }.terminal-body dl div { display: flex; justify-content: space-between; gap: 18px; }.terminal-body dt { color: #7785a7; }.terminal-body dd { margin: 0; color: #dfe7f8; text-align: right; }.terminal-body .cyan { color: var(--cyan); }.terminal-body .good { color: var(--green); }.terminal-muted { margin: 0 !important; color: #7180a1; font-size: 11px; }

section { scroll-margin-top: 38px; }.proof { padding: 102px 0 120px; border-top: 1px solid var(--line); }.section-heading { margin-bottom: 48px; }.section-heading.compact { margin-bottom: 36px; }.section-heading h2, .oss-copy h2, .enterprise-intro h2, .final-cta h2 { margin: 0; font-size: clamp(35px, 4.2vw, 58px); line-height: 1.03; letter-spacing: -.056em; font-weight: 540; }.section-heading h2 span, .oss-copy h2 span, .enterprise-intro h2 span { color: var(--cyan); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; background: rgba(16, 22, 45, .4); }.proof-grid article { padding: 33px 30px 35px; min-height: 255px; border-right: 1px solid var(--line); }.proof-grid article:last-child { border: 0; }.step-index, .card-label { color: var(--cyan); font: 600 11px "JetBrains Mono", ui-monospace, monospace; letter-spacing: .1em; }.proof-grid h3 { margin: 40px 0 12px; font-size: 22px; letter-spacing: -.04em; }.proof-grid p { max-width: 290px; margin: 0; color: var(--muted); font-size: 15px; }

.open-source { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; padding: 112px 0; }.oss-copy > p:not(.eyebrow), .enterprise-intro > p:not(.eyebrow) { max-width: 490px; margin: 27px 0 25px; color: var(--muted); font-size: 17px; }.text-link { color: var(--cyan); font-weight: 650; font-size: 14px; }.text-link span { margin-left: 6px; }.oss-panel { border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(23, 31, 64, .68), rgba(13, 17, 35, .58)); }.panel-line { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 25px; border-bottom: 1px solid var(--line); }.panel-line:last-child { border-bottom: 0; }.panel-icon { color: var(--cyan); font: 20px/1 "JetBrains Mono", ui-monospace, monospace; }.panel-line strong { display: block; margin-bottom: 5px; font-size: 16px; }.panel-line p { margin: 0; color: var(--muted); font-size: 14px; }

.built-for { padding: 106px 0; }.built-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }.built-card { min-height: 232px; padding: 30px; border: 1px solid var(--line); border-radius: 13px; background: rgba(15, 21, 43, .46); }.built-card.wide { grid-row: span 2; min-height: 478px; display: flex; flex-direction: column; justify-content: end; background: linear-gradient(150deg, rgba(29, 45, 96, .76), rgba(11, 16, 35, .72)); }.built-card h3 { max-width: 550px; margin: 21px 0 0; font-size: clamp(22px, 2.5vw, 35px); line-height: 1.08; letter-spacing: -.05em; font-weight: 540; }.built-card:not(.wide) h3 { max-width: 330px; font-size: 20px; }.built-card p { margin: 18px 0 0; max-width: 460px; color: var(--muted); font-size: 15px; }

.enterprise { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; padding: 118px 0 128px; }.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.price-card { display: flex; flex-direction: column; min-height: 468px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: rgba(16, 23, 49, .5); }.enterprise-card { position: relative; border-color: rgba(47, 216, 242, .49); background: linear-gradient(155deg, rgba(18, 50, 78, .74), rgba(13, 20, 47, .72)); }.future-chip { position: absolute; top: -11px; right: 22px; padding: 4px 8px; border: 1px solid rgba(47,216,242,.45); border-radius: 100px; color: var(--cyan); background: #10223d; font: 600 9px "JetBrains Mono", ui-monospace, monospace; letter-spacing: .1em; }.price-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }.price-heading span { color: #dce7fa; font-weight: 650; font-size: 18px; }.price-heading strong { color: var(--cyan); font-size: 28px; letter-spacing: -.05em; }.price-subtitle { min-height: 49px; margin: 14px 0 20px; color: var(--muted); font-size: 14px; }.price-card ul { display: grid; gap: 11px; margin: 0 0 28px; padding: 0; list-style: none; color: #cbd6ea; font-size: 13px; }.price-card li { position: relative; padding-left: 20px; }.price-card li::before { content: "·"; position: absolute; left: 3px; color: var(--cyan); font-size: 22px; line-height: .7; }.price-card .button { margin-top: auto; width: 100%; }

.faq { padding: 96px 0 114px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; justify-content: space-between; gap: 30px; padding: 21px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 600; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--cyan); font: 22px/1 "JetBrains Mono", monospace; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { max-width: 730px; margin: -2px 0 22px; color: var(--muted); font-size: 15px; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 76px; padding: 47px 50px; border: 1px solid rgba(47, 216, 242, .32); border-radius: 16px; background: linear-gradient(110deg, rgba(18, 46, 76, .86), rgba(14, 21, 48, .84)); }.final-cta .eyebrow { margin-bottom: 12px; }.final-cta h2 { font-size: clamp(32px, 4vw, 50px); }
.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; min-height: 110px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 12px; }.site-footer .brand { font-size: 17px; color: var(--ink); }.site-footer p { margin: 0; }.site-footer > div { display: flex; gap: 17px; align-items: center; }.site-footer a { color: var(--muted); }.site-footer a:hover { color: var(--cyan); }

@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; gap: 46px; min-height: auto; padding-top: 57px; }.terminal-card { width: min(100%, 500px); justify-self: center; transform: none; }.proof-grid { grid-template-columns: 1fr; }.proof-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }.proof-grid h3 { margin-top: 24px; }.open-source, .enterprise { grid-template-columns: 1fr; gap: 46px; }.open-source { padding: 85px 0; }.built-grid { grid-template-columns: 1fr; }.built-card.wide { grid-row: auto; min-height: 300px; }.enterprise { padding: 85px 0; }.site-footer { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }.site-footer > div { justify-content: space-between; }
}

@media (max-width: 620px) {
  .section-shell, .site-header { width: min(calc(100% - 32px), var(--max)); }.site-header { height: 74px; }.site-nav { position: absolute; top: 65px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(10, 13, 27, .98); box-shadow: 0 20px 40px rgba(0,0,0,.3); }.site-nav.is-open { display: flex; }.site-nav a { padding: 12px; }.site-nav a:last-child { text-align: center; }.menu-button { display: grid; gap: 5px; width: 42px; height: 38px; place-content: center; padding: 0; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: transparent; }.menu-button i { display: block; width: 15px; height: 1px; background: currentColor; }.hero { padding: 52px 0 72px; }.eyebrow { font-size: 10px; }.hero-lede { font-size: 17px; }.hero-actions { align-items: stretch; }.hero-actions .button { width: 100%; }.button-quiet { display: none; }.terminal-body { padding: 24px 20px; font-size: 11px; }.proof, .built-for, .faq { padding: 76px 0; }.section-heading { margin-bottom: 32px; }.pricing-grid { grid-template-columns: 1fr; }.price-card { min-height: 0; }.final-cta { flex-direction: column; align-items: flex-start; margin-bottom: 46px; padding: 32px 27px; }.final-cta .button { width: 100%; }.site-footer > div { width: 100%; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
