:root {
  --bg: #0b1020;
  --panel: #121937;
  --panel-soft: #171f45;
  --text: #edf2ff;
  --muted: #b7c0e6;
  --line: #2a3568;
  --accent: #7aa2ff;
  --accent-2: #9ad1ff;
  --good: #9be9a8;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #07101f 0%, #0d1327 100%);
  line-height: 1.6;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(8px); background: rgba(7, 12, 27, 0.82); border-bottom: 1px solid rgba(122, 162, 255, 0.15); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.nav nav { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.brand { font-weight: 700; letter-spacing: 0.02em; color: var(--text); }
.hero { padding: 4rem 0 3rem; }
.hero-grid, .two-col, .footer-row { display: grid; gap: 1.5rem; }
.hero-grid, .two-col { grid-template-columns: 1.6fr 1fr; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-2); font-size: 0.82rem; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4.8rem); max-width: 12ch; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 68ch; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 999px; padding: 0.9rem 1.25rem; background: var(--accent); color: #07101f; font-weight: 700; border: 0;
}
.button:hover { text-decoration: none; filter: brightness(1.08); }
.button-small { padding: 0.65rem 0.95rem; }
.button-secondary { background: transparent; color: var(--text); border: 1px solid var(--line); }
.full { width: 100%; }
.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.5rem 0; }
.hero-points, .checklist { padding-left: 1.2rem; color: var(--muted); }
.callout, .card {
  background: rgba(18, 25, 55, 0.92); border: 1px solid var(--line); border-radius: 18px; padding: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.code-panel pre { margin: 0; white-space: pre-wrap; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--good); font-size: 0.94rem; }
.section { padding: 2.5rem 0; }
.section-dark { background: rgba(9, 14, 31, 0.65); border-top: 1px solid rgba(122, 162, 255, 0.12); border-bottom: 1px solid rgba(122, 162, 255, 0.12); }
.cards { display: grid; gap: 1rem; }
.five-up { grid-template-columns: repeat(5, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(4, 1fr); margin-top: 1.5rem; }
.pricing-card h3 { font-size: 2rem; }
.pricing-card h3 span { font-size: 1rem; color: var(--muted); margin-left: 0.25rem; }
.plan-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--accent-2); }
.price-note, .muted { color: var(--muted); }
.maxw { max-width: 38ch; }
.section-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.note-card { margin-top: 1rem; font-size: 0.95rem; }
.accent-card { border-color: rgba(154, 209, 255, 0.38); }
.footer-row { grid-template-columns: 1fr auto; align-items: center; }
.footer-links { display: flex; gap: 1rem; }
.site-footer { padding: 2rem 0 3rem; color: var(--muted); }
@media (max-width: 1080px) {
  .five-up, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .two-col, .section-head, .footer-row, .three-up { grid-template-columns: 1fr; display: grid; }
  .nav { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .five-up, .pricing-grid { grid-template-columns: 1fr; }
}