:root {
  --bg: #08111f;
  --panel: #101b2e;
  --panel-2: #13233a;
  --text: #eef3fb;
  --muted: #b2bfd3;
  --accent: #40d18a;
  --accent-2: #1f7ae0;
  --border: rgba(255,255,255,0.08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #07101c 0%, #0c1627 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: #8fc2ff; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header, .site-footer { background: rgba(5,10,18,0.82); border-bottom: 1px solid var(--border); }
.site-footer { border-top: 1px solid var(--border); border-bottom: 0; margin-top: 48px; }
.site-header .wrap, .footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}
nav { display: flex; gap: 16px; flex-wrap: wrap; }
.brand { font-weight: 800; color: white; letter-spacing: 0.02em; }
.hero { padding: 72px 0 40px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-size: 0.9rem; }
h1, h2 { line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 4vw, 4.25rem); max-width: 12ch; margin: 0 0 16px; }
.lead { max-width: 60ch; color: var(--muted); font-size: 1.1rem; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #04110a;
  font-weight: 700;
}
.button-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.grid { display: grid; gap: 20px; margin-top: 24px; }
.four-up { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.three-up { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.two-up { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
ul { padding-left: 18px; }
.footer-grid a { display: inline-block; margin-right: 14px; }
@media (max-width: 720px) {
  .hero { padding-top: 48px; }
}
.affiliate-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-bottom: 8px; }
.affiliate-note a { color: var(--accent); }
