* { box-sizing: border-box; }
:root {
  color-scheme: dark;
  --bg: #020807;
  --panel: rgba(5, 24, 23, .78);
  --panel2: rgba(8, 31, 34, .72);
  --line: rgba(22, 244, 208, .24);
  --ink: #f7fffc;
  --muted: #9cb8b0;
  --teal: #16f4d0;
  --green: #49ff99;
  --blue: #33b7ff;
  --mono: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}
html, body { margin: 0; min-width: 0; background: var(--bg); }
body {
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 72% 0%, rgba(22, 244, 208, .13), transparent 32rem),
    linear-gradient(180deg, #030c0c, #020807 48%, #010403);
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(2, 8, 7, .82);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; }
.brand img { width: 46px; height: 46px; display: block; }
.brand span { display: block; color: var(--teal); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; color: var(--muted); font-size: 14px; }
.links a:hover { color: var(--teal); }
.hero { padding: 76px 0 42px; }
.eyebrow { color: var(--teal); font-family: var(--mono); font-size: 13px; text-transform: uppercase; }
h1 { margin: 16px 0 18px; max-width: 830px; font-size: clamp(44px, 7vw, 88px); line-height: .96; letter-spacing: 0; }
.lead { max-width: 760px; color: #d7e7e1; font-size: 20px; line-height: 1.65; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { border: 1px solid var(--line); border-radius: 8px; padding: 13px 17px; color: var(--ink); background: rgba(22, 244, 208, .08); }
.button.primary { background: linear-gradient(135deg, var(--teal), var(--green)); color: #00100d; font-weight: 800; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 32px 0 64px; }
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), rgba(3, 14, 15, .66));
  padding: 22px;
  min-height: 166px;
}
.card h2, .card h3 { margin: 0 0 12px; font-size: 18px; }
.card p, li { color: var(--muted); line-height: 1.62; }
.card code, pre {
  font-family: var(--mono);
  color: #b9fff1;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
}
.card code { padding: 2px 6px; }
pre { padding: 14px; overflow: auto; }
.wide { grid-column: span 2; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-family: var(--mono); font-size: 13px; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.start-hero h1 { max-width: 930px; }
.start-steps { display: grid; gap: 14px; margin: 18px 0 42px; }
.step-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel), rgba(3, 14, 15, .66));
  padding: 20px;
}
.step-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(22, 244, 208, .34);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(0,0,0,.18);
  font-family: var(--mono);
  font-weight: 900;
}
.step-card h2 { margin: 3px 0 8px; font-size: 22px; }
.step-card p { color: var(--muted); line-height: 1.62; }
.step-card pre { margin: 12px 0; }
.expected { margin-bottom: 0; }
.paid-step { border-color: rgba(51, 183, 255, .3); }
.start-links { margin-top: 0; }
.footer { border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); padding: 28px 0 44px; font-size: 14px; }
@media (max-width: 820px) {
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .links { justify-content: flex-start; }
  .hero { padding-top: 52px; }
  .grid { grid-template-columns: 1fr; }
  .wide { grid-column: span 1; }
  .step-card { grid-template-columns: 1fr; }
}
