:root {
  --bg: #06111c;
  --bg-2: #0b1f2f;
  --card: rgba(10, 22, 34, 0.82);
  --line: rgba(255,255,255,0.08);
  --text: #edf6ff;
  --muted: #a2b8d3;
  --accent: #22d3a6;
  --accent-2: #4cc9ff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(34,211,166,.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(76,201,255,.12), transparent 25%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  min-height: 100vh;
}
code { color: #9ae8ff; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.hero {
  padding: 52px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 24px;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34,211,166,.12);
  border: 1px solid rgba(34,211,166,.2);
  color: #90ffd8;
  font-size: 13px;
  margin-bottom: 16px;
}
h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  margin: 0 0 14px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 700;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #042030;
}
.btn.ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
}
.glass {
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border-radius: 26px;
  box-shadow: 0 18px 70px rgba(0,0,0,.28);
}
.terminal { padding: 18px; overflow: hidden; }
.terminal-bar { display: flex; gap: 8px; margin-bottom: 16px; }
.terminal-bar span {
  width: 12px; height: 12px; border-radius: 999px; background: rgba(255,255,255,.18);
}
.terminal pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.75;
  color: #d6f2ff;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat { padding: 22px; }
.stat span { display: block; color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.stat strong { font-size: 22px; }
.section-gap { margin-top: 22px; }
.grid { display: grid; gap: 18px; }
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.block { padding: 24px; }
.block h2, .block h3 { margin-top: 0; }
.clean-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.ordered { padding-left: 20px; }
.codebox {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  word-break: break-word;
}
.faq { padding: 24px; margin-bottom: 40px; }
.orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .25;
}
.orb-a { background: #22d3a6; top: -130px; left: -100px; }
.orb-b { background: #4cc9ff; right: -120px; bottom: -160px; }
@media (max-width: 980px) {
  .hero, .two-col, .three-col, .stats { grid-template-columns: 1fr; }
}
