:root {
  --bg: #0d1220;
  --bg-alt: #121a2b;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #ecf2ff;
  --muted: #aeb9d4;
  --line: rgba(255,255,255,0.12);
  --accent: #70f0b6;
  --accent-2: #8ec5ff;
  --shadow: 0 18px 48px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #182543 0%, var(--bg) 42%, #090d18 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding-left: 1.1rem; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 2rem)); }
.center { text-align: center; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 22, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav, .footer-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.35rem 0;
}
.nav nav, .footer-row div { display: flex; gap: 1rem; flex-wrap: wrap; }
.brand { font-weight: 800; letter-spacing: 0.02em; display: flex; align-items: center; }
.brand-logo { height: 90px; width: auto; display: block; }
.hero { padding: 5rem 0 3rem; }
.hero-grid, .grid.two, .grid.three {
  display: grid; gap: 1.25rem;
}
.hero-grid, .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }
h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.15rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.eyebrow, .card-kicker, .price-tier, .badge {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700;
}
.eyebrow, .card-kicker, .price-tier { color: var(--accent); }
.section { padding: 4rem 0; }
.section-alt { background: rgba(255,255,255,0.03); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 1.5rem; }
.panel, .hero-card, .price-card, .intake-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.panel, .hero-card, .price-card { padding: 1.25rem; }
.hero-card { align-self: start; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.5rem 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.85rem 1.2rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06101c; }
.button-secondary { background: transparent; border-color: var(--line); color: var(--text); }
.block { display: flex; width: 100%; }
.microproof { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; padding: 0; list-style: none; color: var(--muted); }
.stack-list li { margin-bottom: 0.7rem; }
.muted-list { color: var(--muted); }
.steps { display: grid; gap: 0.9rem; padding-left: 1.2rem; }
.steps li span { display: block; color: var(--muted); margin-top: 0.25rem; }
.price-card.featured { border-color: rgba(112,240,182,0.55); background: var(--panel-strong); }
.badge {
  display: inline-block; padding: 0.4rem 0.65rem; border-radius: 999px;
  background: rgba(112,240,182,0.12); color: var(--accent); margin-bottom: 0.6rem;
}
.cta-band { background: linear-gradient(180deg, rgba(142,197,255,0.08), rgba(112,240,182,0.06)); }
.faq-list { display: grid; gap: 0.8rem; }
details {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.1rem;
}
summary { cursor: pointer; font-weight: 600; }
details p { margin-top: 0.75rem; color: var(--muted); }
.intake-form { padding: 1.25rem; display: grid; gap: 1rem; }
.intake-form label { display: grid; gap: 0.45rem; font-weight: 600; }
.form-feedback {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-success {
  border-color: rgba(112,240,182,0.45);
  background: rgba(112,240,182,0.1);
  color: var(--text);
}
.form-feedback.is-error {
  border-color: rgba(255,110,110,0.45);
  background: rgba(255,110,110,0.12);
  color: #ffd8d8;
}
.button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
input, textarea, select {
  width: 100%; border: 1px solid var(--line); background: rgba(6,10,18,0.6); color: var(--text);
  border-radius: 14px; padding: 0.9rem 1rem; font: inherit;
}
.fine-print { color: var(--muted); font-size: 0.94rem; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); }
code { font-family: ui-monospace, SFMono-Regular, monospace; }
@media (max-width: 860px) {
  .hero-grid, .grid.two, .grid.three { grid-template-columns: 1fr; }
  .nav, .footer-row { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 3.5rem; }
}
