:root {
  --bg: #0c111d;
  --bg-soft: #111827;
  --panel: #151d2d;
  --panel-2: #1a2436;
  --text: #edf2f7;
  --muted: #9fb0c7;
  --line: rgba(255,255,255,0.08);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --button: #ffffff;
  --button-text: #0b1220;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0,0,0,0.22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(180deg, #0b1020 0%, #0c111d 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }
.centered { text-align: center; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(12,17,29,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; }
.logo span { color: var(--accent); }
.site-nav { display: flex; gap: 1.2rem; align-items: center; }
.site-nav a { color: var(--muted); font-weight: 500; }
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, var(--button), #d9ecff);
  color: var(--button-text); font-weight: 700; cursor: pointer;
  box-shadow: var(--shadow);
}
.button-small { padding: 0.7rem 1rem; font-size: 0.95rem; }
.button-secondary {
  background: transparent; color: var(--text); box-shadow: none;
  border: 1px solid var(--line);
}
.hero, .page-hero { padding: 5rem 0 3rem; }
.hero-grid, .cta-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center; }
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.78rem;
}
h1, h2, h3 { line-height: 1.1; margin: 0 0 0.7rem; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.hero-copy, .page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.hero-points { display: flex; gap: 1.5rem; flex-wrap: wrap; padding: 0; list-style: none; color: var(--muted); }
.hero-panel { display: grid; gap: 1rem; }
.mini-card, .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.mini-card.accent {
  background: linear-gradient(135deg, rgba(125,211,252,0.12), rgba(167,139,250,0.12));
}
.mini-label { font-size: 0.82rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.section { padding: 2.25rem 0 4rem; }
.muted { background: rgba(255,255,255,0.015); }
.section-heading {
  display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem;
}
.text-link { color: var(--accent); font-weight: 600; }
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card p, .card li, .footer-copy, .prose p { color: var(--muted); }
.pill {
  display: inline-block; margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  background: rgba(125,211,252,0.12); color: var(--accent);
  font-size: 0.82rem; font-weight: 700;
}
.review-card ul { padding-left: 1.1rem; margin-bottom: 0; }
.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(125,211,252,0.06), rgba(167,139,250,0.06));
}
.newsletter-form {
  display: grid; gap: 0.9rem;
  background: rgba(12,17,29,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.large-form { max-width: 640px; }
.newsletter-form label { display: grid; gap: 0.35rem; }
.newsletter-form span { font-weight: 600; font-size: 0.95rem; }
.newsletter-form input {
  width: 100%; padding: 0.9rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--text); font: inherit;
}
.page-main { min-height: calc(100vh - 160px); }
.prose h2 { margin-top: 1.8rem; }
.site-footer {
  padding: 2rem 0 3rem; border-top: 1px solid var(--line);
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 1.5rem; align-items: start;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); }
.thank-you-wrap { display: grid; place-items: center; }

@media (max-width: 920px) {
  .hero-grid, .cta-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .section-heading, .footer-wrap { align-items: start; flex-direction: column; }
}
