:root {
  --bg: #0b1020;
  --card: #121833;
  --text: #e8ecf1;
  --muted: #a7b0c0;
  --brand: #4f8cff;
  --brand-2: #59d0a2;
  --border: #233052;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.site-header, .site-footer { border-bottom: 1px solid var(--border); }
.site-footer { border-top: 1px solid var(--border); border-bottom: none; }
.site-header .container, .site-footer .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; }
.brand { font-weight: 700; letter-spacing: 0.2px; }
.nav a, .footer-nav a { margin-left: 14px; color: var(--text); }
.hero { padding: 64px 0; background: linear-gradient(180deg, rgba(79,140,255,.12), rgba(89,208,162,.06)); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 820px; }
.section { padding: 48px 0; }
.section.alt { background: #0e1530; }
h1, h2, h3 { margin: 0 0 12px; }
p { margin: 0 0 12px; color: var(--text); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px 18px; padding-left: 18px; }
.cta { margin-top: 18px; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 8px; border: 1px solid transparent; }
.btn-primary { background: var(--brand); color: #06122a; font-weight: 600; }
.btn-secondary { background: transparent; border-color: var(--border); color: var(--text); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.card.highlight { outline: 2px solid var(--brand); }
.price { font-size: 1.6rem; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 16px; }
.tax-note, .disclaimer, .privacy-note { color: var(--muted); font-size: 0.95rem; }
.legal h2 { margin-top: 18px; }
.address { color: var(--muted); }
@media (max-width: 640px) {
  .nav, .footer-nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .nav a, .footer-nav a { margin-left: 0; }
}