:root {
  --bg: #0f1115;
  --fg: #f4f4f5;
  --muted: #9ca3af;
  --accent: #e11d2a;
  --card: #171a21;
  --border: #262b34;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 48px 24px; text-align: center; }
.brand { font-weight: 700; letter-spacing: -0.02em; font-size: 20px; }
.brand span { color: var(--accent); }
h1 { font-size: clamp(28px, 6vw, 48px); margin: 0 0 12px; letter-spacing: -0.02em; }
p { color: var(--muted); max-width: 520px; line-height: 1.6; margin: 0 auto; }
a { color: var(--fg); }
.cta { display: inline-block; margin-top: 28px; background: var(--accent); color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 999px; font-weight: 600; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); width: 100%; max-width: 900px; margin-top: 32px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 20px; text-align: left; text-decoration: none; color: var(--fg); transition: border-color .15s; }
.card:hover { border-color: var(--accent); }
.card h3 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0; font-size: 14px; }
.card .tag { display: inline-block; margin-top: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
header { padding: 20px 24px; }
footer { border-top: 1px solid var(--border); padding: 20px 24px; font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--fg); }
.legal { text-align: left; max-width: 720px; }
.legal h2 { font-size: 20px; margin-top: 32px; }
.legal p, .legal li { color: var(--muted); line-height: 1.7; }
.legal a { color: var(--fg); }
