:root {
  --ink: #0a1020;
  --blue: #315dff;
  --paper: #f6f7fb;
  --muted: #687083;
  --line: rgba(16, 25, 49, .12);
  --font-sans: "Satoshi", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { color: var(--ink); background: var(--paper); font-family: var(--font-sans); font-synthesis: none; text-rendering: optimizeLegibility; }
body { min-width: 320px; margin: 0; background: var(--paper); }
a { color: inherit; text-decoration: none; }
.stage-page main { min-height: calc(100svh - 74px); }

.stage-hero {
  width: min(980px, calc(100% - 64px));
  margin: 0 auto;
  padding: 166px 0 92px;
}

.stage-glow { display: none; }
.stage-copy { max-width: 790px; }
.stage-eyebrow { margin: 0 0 22px; color: #7c8494; font-size: 12px; font-weight: 500; letter-spacing: .08em; }
.stage-copy h1 { max-width: 790px; margin: 0; font-size: clamp(48px, 6vw, 70px); font-weight: 500; line-height: 1; letter-spacing: -.052em; text-wrap: balance; }
.stage-copy h1 em { color: inherit; font: inherit; font-style: normal; }
.stage-lede { max-width: 680px; margin: 27px 0 0; color: var(--muted); font-size: 18px; font-weight: 400; line-height: 1.65; letter-spacing: -.01em; text-wrap: pretty; }

.stage-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.stage-primary { min-height: 46px; display: inline-flex; align-items: center; gap: 12px; padding: 0 17px; border: 1px solid var(--blue); border-radius: 8px; background: var(--blue); color: white; font-size: 13px; font-weight: 500; transition: background 160ms ease, transform 160ms ease; }
.stage-primary span { font-size: 16px; }
.stage-primary:hover { background: #2147db; transform: translateY(-1px); }
.stage-secondary { color: #5d6575; font-size: 13px; font-weight: 500; }
.stage-secondary:hover { color: var(--blue); }
.stage-primary:focus-visible,
.stage-secondary:focus-visible { outline: 2px solid rgba(49,93,255,.35); outline-offset: 4px; }

.stage-console { margin-top: 86px; padding: 25px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.console-top { min-height: 32px; display: flex; align-items: center; justify-content: space-between; color: #828999; font-size: 11px; font-weight: 500; letter-spacing: 0; }
.console-top b { color: #687083; font-weight: 400; }
.console-input { padding: 25px 0 30px; border-bottom: 1px solid var(--line); }
.console-input small { display: block; color: #858d9d; font-size: 10px; font-weight: 500; letter-spacing: .08em; }
.console-input strong { max-width: 700px; display: block; margin-top: 11px; color: var(--ink); font-size: clamp(23px, 3vw, 34px); font-weight: 500; line-height: 1.2; letter-spacing: -.035em; }
.console-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.console-grid article { min-height: 175px; padding: 27px 28px 29px 0; border-right: 1px solid var(--line); }
.console-grid article + article { padding-left: 28px; }
.console-grid article:last-child { border-right: 0; }
.console-grid article > span { color: #8c93a1; font-size: 10px; font-weight: 500; }
.console-grid h2 { margin: 43px 0 0; font-size: 22px; font-weight: 500; letter-spacing: -.035em; }
.console-grid p { margin: 9px 0 0; color: #737b8b; font-size: 12px; line-height: 1.6; }

.stage-footer { width: min(980px, calc(100% - 64px)); min-height: 74px; display: flex; align-items: center; justify-content: space-between; margin: 0 auto; color: #858c9b; font-size: 11px; font-weight: 400; }
.stage-footer a:hover { color: var(--blue); }

@media (max-width: 760px) {
  .stage-hero { width: calc(100% - 36px); padding: 124px 0 72px; }
  .stage-copy h1 { font-size: clamp(44px, 12vw, 58px); }
  .stage-lede { font-size: 16px; }
  .stage-console { margin-top: 64px; }
  .console-grid { grid-template-columns: 1fr; }
  .console-grid article,
  .console-grid article + article { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .console-grid article:last-child { border-bottom: 0; }
  .console-grid h2 { margin-top: 24px; }
  .stage-footer { width: calc(100% - 36px); align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; line-height: 1.5; }
}

@media (max-width: 520px) {
  .stage-actions { align-items: stretch; flex-direction: column; }
  .stage-primary { justify-content: space-between; }
  .stage-secondary { padding: 6px 1px; }
  .console-top b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .stage-primary { transition: none; }
}
