:root {
  --ink: #f4f5f4;
  --muted: #929896;
  --dim: #646a68;
  --paper: #080a09;
  --panel: #0e1110;
  --panel-2: #131615;
  --panel-3: #191d1b;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --accent: #ff6b4a;
  --accent-soft: rgba(255, 107, 74, 0.12);
  --success: #79d69d;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body::before { position: fixed; inset: 0; z-index: -1; content: ""; pointer-events: none; background: radial-gradient(circle at 50% 7%, rgba(255,255,255,.045), transparent 31%); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 670; letter-spacing: -.02em; }
.brand-mark { display: grid; width: 28px; height: 28px; place-items: center; }
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark path { stroke: var(--ink); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark circle { fill: var(--accent); }
nav { display: flex; gap: 32px; font-size: 13px; color: var(--muted); }
nav a, .text-link { transition: color .18s ease; }
nav a:hover, .text-link:hover { color: var(--ink); }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 21px; color: #0a0c0b; background: #f5f6f5; border: 1px solid #f5f6f5; border-radius: 8px; font: 650 14px var(--sans); cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.18); transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { background: #fff; border-color: #fff; transform: translateY(-1px); }
.button.small { min-height: 36px; padding: 0 15px; font-size: 12px; }
.button.secondary { color: var(--ink); background: transparent; border-color: var(--line-strong); box-shadow: none; }
.button.secondary:hover { background: rgba(255,255,255,.06); }

.hero { padding: 82px 0 0; text-align: center; }
.eyebrow, .kicker { color: var(--muted); font: 650 11px/1 var(--sans); letter-spacing: .11em; text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px var(--accent-soft); }
h1 { max-width: 1050px; margin: 30px auto 22px; font-size: clamp(52px, 6.3vw, 88px); font-weight: 540; line-height: .98; letter-spacing: -.062em; }
h1 em { color: var(--muted); font-style: normal; font-weight: inherit; }
.lede { max-width: 710px; margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.6; letter-spacing: -.012em; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 31px; }
.text-link { color: #c9cdcb; font-size: 14px; font-weight: 550; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(3px); }

.runner-window { position: relative; width: 100%; max-width: 1090px; margin: 82px auto 0; overflow: hidden; text-align: left; background: #0b0d0c; border: 1px solid var(--line-strong); border-radius: 14px 14px 0 0; box-shadow: 0 -18px 80px rgba(255,255,255,.025), 0 40px 90px rgba(0,0,0,.52); }
.runner-window::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(112deg, rgba(255,255,255,.025), transparent 24%); }
.window-bar { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 49px; padding: 0 14px; color: var(--muted); background: #121413; border-bottom: 1px solid var(--line); font-size: 11px; }
.window-brand, .window-live, .window-lights { display: flex; align-items: center; }
.window-brand { gap: 14px; }.window-brand b { color: #cdd0cf; font-weight: 560; }
.window-lights { gap: 6px; }.window-lights i { width: 8px; height: 8px; background: #3b403e; border-radius: 50%; }.window-lights i:first-child { background: var(--accent); }.window-lights i:nth-child(2) { background: #d3a74b; }.window-lights i:nth-child(3) { background: #55b777; }
.window-tabs { display: flex; gap: 5px; padding: 3px; background: #090b0a; border: 1px solid var(--line); border-radius: 7px; }
.window-tabs span { padding: 5px 14px; border-radius: 5px; }.window-tabs .active { color: var(--ink); background: #252927; }
.window-live { justify-content: flex-end; gap: 7px; }.window-live i, .next-run i { width: 6px; height: 6px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 3px rgba(121,214,157,.1); }
.runner-body { position: relative; padding: 25px; }
.run-summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 0 0 22px; border-bottom: 1px solid var(--line); }
.run-icon { display: grid; width: 35px; height: 35px; place-items: center; color: #09100c; background: var(--success); border-radius: 50%; font-weight: 800; }
.run-summary div { display: grid; gap: 3px; }.run-summary small, .run-summary span { color: var(--muted); font-size: 11px; }.run-summary strong { font-size: 16px; font-weight: 620; }
.run-status { padding: 6px 10px; color: var(--success) !important; background: rgba(121,214,157,.08); border: 1px solid rgba(121,214,157,.18); border-radius: 99px; font: 650 10px var(--mono) !important; }
.run-details { display: grid; grid-template-columns: 1fr .9fr; gap: 22px; min-width: 0; padding-top: 22px; }
.run-details > * { min-width: 0; }
.job-log, .workflow-card { overflow: hidden; background: #0e100f; border: 1px solid var(--line); border-radius: 9px; }
.job-log > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; min-height: 62px; padding: 10px 15px; border-bottom: 1px solid var(--line); }
.job-log > div:last-child { border-bottom: 0; }.job-log .check { display: grid; width: 21px; height: 21px; place-items: center; color: var(--success); background: rgba(121,214,157,.09); border-radius: 50%; font-size: 11px; }
.job-log p { display: grid; gap: 3px; margin: 0; }.job-log b { font-size: 12px; font-weight: 570; }.job-log small, .job-log time { color: var(--dim); font: 10px var(--mono); }.job-log time { color: var(--muted); }
.code-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; color: var(--muted); background: #151817; border-bottom: 1px solid var(--line); font: 10px var(--mono); }
.copy { padding: 4px 8px; color: #aeb4b1; background: transparent; border: 1px solid var(--line-strong); border-radius: 5px; cursor: pointer; font: 10px var(--mono); }
.copy:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.workflow-card pre { min-height: 178px; margin: 0; padding: 22px; color: #e8ebe9; font: 12px/1.7 var(--mono); overflow-x: auto; }
.workflow-card .muted { color: #5d6461; }.minus { color: #bc7165; }.plus { color: #76d49a; }
.next-run { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; padding: 13px 15px; color: var(--muted); border-top: 1px solid var(--line); font: 10px var(--mono); }.next-run b { color: #c7cbc9; font-weight: 500; }

.proof-strip { background: #0e100f; border-block: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); padding-block: 28px; }
.proof-grid div { display: grid; gap: 4px; padding-left: 30px; border-left: 1px solid var(--line); }
.proof-grid div:first-child { padding-left: 0; border-left: 0; }.proof-grid strong { font-size: 14px; font-weight: 580; }.proof-grid span { color: var(--muted); font-size: 12px; }

.section { padding-block: 110px; border-bottom: 1px solid var(--line); }
.section-heading { max-width: 660px; margin-bottom: 50px; }.pricing-heading { margin-inline: auto; text-align: center; }
h2 { margin: 17px 0 15px; font-size: clamp(38px,5vw,60px); font-weight: 520; line-height: 1.03; letter-spacing: -.05em; }
.section-heading p, .fleet-copy, .docs-grid > div > p, .pilot-grid > div > p { color: var(--muted); font-size: 16px; line-height: 1.65; letter-spacing: -.008em; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 485px; padding: 27px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; }
.price-card.featured { background: linear-gradient(180deg, rgba(255,107,74,.055), transparent 38%), var(--panel); border-color: rgba(255,107,74,.4); box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.founding-badge { position: absolute; top: 16px; right: 17px; padding: 6px 9px; color: #ff9a82; background: var(--accent-soft); border: 1px solid rgba(255,107,74,.22); border-radius: 99px; font: 650 9px var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.plan { color: var(--muted); font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.price { margin: 28px 0 20px; font-size: 54px; font-weight: 580; letter-spacing: -.06em; }.price sup { position: relative; top: -20px; margin-right: 3px; color: var(--muted); font-size: 18px; }.price small { display: block; margin-top: 8px; color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: 0; }
.price-card > p { min-height: 65px; color: var(--muted); font-size: 13px; line-height: 1.55; }.price-card ul { flex: 1; padding: 15px 0 22px; list-style: none; border-top: 1px solid var(--line); }.price-card li { padding: 7px 0; color: #b7bcba; font-size: 12px; }.price-card li::before { content: "✓"; margin-right: 9px; color: var(--success); font-weight: 800; }
.trial-note { max-width: 800px; margin: 27px auto 0; color: var(--muted); text-align: center; font-size: 12px; line-height: 1.6; }.trial-note strong { color: var(--ink); }

.how-section { padding-top: 100px; }.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.steps article { min-height: 235px; padding: 25px; background: var(--panel); border: 1px solid var(--line); border-radius: 11px; }
.steps b { color: var(--accent); font: 650 10px var(--mono); }.steps h3 { margin: 61px 0 10px; font-size: 19px; font-weight: 570; }.steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.dark { background: #0d0f0e; }.dark .kicker { color: var(--muted); }.dark .docs-grid > div > p { color: var(--muted); }
.docs-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.terminal { overflow: hidden; background: #080a09; border: 1px solid var(--line-strong); border-radius: 11px; box-shadow: 0 25px 70px rgba(0,0,0,.4); }
.dots { display: flex; align-items: center; gap: 6px; padding: 13px; color: var(--muted); background: #121413; border-bottom: 1px solid var(--line); font: 10px var(--mono); }
.dots i { width: 7px; height: 7px; background: #3e4441; border-radius: 50%; }.dots i:first-child { background: var(--accent); }.dots span { margin-left: 7px; }
.terminal pre { margin: 0; padding: 29px; font: 13px/1.75 var(--mono); overflow-x: auto; }.terminal mark { color: #99e2b6; background: rgba(121,214,157,.1); }
.terminal > p { margin: 0; padding: 14px 19px; color: var(--muted); border-top: 1px solid var(--line); font: 10px var(--mono); }
.status-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 0 4px rgba(121,214,157,.08); }

.fleet-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.fleet-card { padding: 23px; background: var(--panel); border: 1px solid var(--line); border-radius: 11px; box-shadow: 0 18px 55px rgba(0,0,0,.2); }
.fleet-top { display: flex; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid var(--line); font-size: 12px; }.fleet-top i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: #d19c52; border-radius: 50%; }.fleet-top b { color: var(--dim); font: 550 10px var(--mono); text-transform: uppercase; }
.machine-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 17px; }.machine { padding: 14px; background: var(--panel-3); border: 1px solid rgba(255,255,255,.045); border-radius: 7px; }.machine strong,.machine span { display: block; }.machine strong { font-size: 16px; font-weight: 570; }.machine span { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.4; }.skeleton { height: 86px; margin-top: 17px; background: linear-gradient(90deg,#151816,#202421,#151816); background-size: 200%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

.pilot { background: #0d0f0e; }.pilot-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.pilot ul { padding: 0; list-style: none; color: var(--muted); line-height: 2.1; font-size: 13px; }.pilot li::before { content: "✓"; margin-right: 10px; color: var(--success); font-weight: 800; }
form { padding: 27px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; }
label { display: grid; gap: 7px; margin-bottom: 15px; color: #c8ccca; font-size: 11px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
input, textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: #090b0a; border: 1px solid var(--line-strong); border-radius: 7px; outline: 0; font: 13px var(--sans); }
input::placeholder, textarea::placeholder { color: #565c59; }.submit { width: 100%; } textarea { resize: vertical; }
input:focus, textarea:focus { border-color: rgba(255,107,74,.6); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-status { min-height: 20px; margin: 12px 0 0; color: var(--success); text-align: center; font-size: 12px; }

.footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 45px; padding-block: 34px; color: var(--muted); font-size: 11px; }.footer address { font-style: normal; }.footer .brand { color: var(--ink); font-size: 14px; }.footer .brand-mark,.footer .brand-mark svg { width: 24px; height: 24px; }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px),1180px); }.nav nav { display: none; }.nav .button { display: none; }.hero { padding-top: 62px; } h1 { font-size: 42px; line-height: 1.01; overflow-wrap: break-word; }.lede { font-size: 16px; }.hero-actions { flex-direction: column; gap: 17px; }.runner-window { margin-top: 60px; }.window-bar { grid-template-columns: 1fr 1fr; }.window-tabs { display: none; }.runner-body { padding: 15px; }.run-details { grid-template-columns: minmax(0,1fr); }.run-summary { grid-template-columns: auto minmax(0,1fr); }.run-summary .run-status { display: none; }.proof-grid { grid-template-columns: 1fr 1fr; gap: 24px 0; }.proof-grid div:nth-child(3) { padding-left: 0; border-left: 0; }.pricing-grid,.steps,.docs-grid,.fleet-section,.pilot-grid { grid-template-columns: 1fr; }.docs-grid,.fleet-section,.pilot-grid { gap: 46px; }.section { padding-block: 78px; }.form-row { grid-template-columns: 1fr; }.footer { grid-template-columns: 1fr; gap: 12px; }.workflow-card pre { min-height: auto; font-size: 11px; padding-inline: 17px; }.machine-row { grid-template-columns: 1fr; }
}
