*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0e0e0f;
  --surface:   #1F1F23;
  --surface-2: #26262B;
  --text:      #F2F1ED;
  --muted:     #dcdbe6;
  --coral:     #5548e6;
  --coral-dim: rgba(124,111,255,0.14);
  --green:     #2ECC8F;
  --blue:      #6461a5;
  --radius:    10px;
  --radius-lg: 14px;
  --max-width: 1080px;
  --border:    rgba(255,255,255,0.08);
  --border-md: rgba(255,255,255,0.14);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
a { color: inherit; text-decoration: none; }

header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.logo { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: -0.4px; }
.logo span { color: var(--coral); }

nav { display: flex; align-items: center; gap: 26px; }
nav a { font-size: 13.5px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; padding: 4px 0; transition: color 0.2s; }
nav a:hover { color: var(--text); }
nav a.active { color: var(--text); border-bottom-color: var(--coral); }

.badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--coral); background: var(--coral-dim); border: 1px solid rgba(255,90,78,0.3);
  padding: 4px 10px; border-radius: 20px; white-space: nowrap;
}

footer {
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

footer strong { color: var(--text); }
footer .footer-links { margin-top: 10px; display: flex; gap: 16px; justify-content: center; }
footer .footer-links a { color: var(--muted); font-size: 12px; }
footer .footer-links a:hover { color: var(--coral); }

.page-hero { max-width: var(--max-width); margin: 0 auto; padding: 44px 24px 28px; }
.page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(26px, 4.5vw, 38px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
.page-hero p.lead { font-size: 15px; color: var(--muted); max-width: 520px; line-height: 1.7; }

.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }

button { font-family: inherit; }

@media (max-width: 560px) {
  header { padding: 16px 20px; flex-wrap: wrap; gap: 10px; }
  nav { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
