:root {
  --bg: #070b14;
  --panel: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --line: #263247;
  --accent: #22d3ee;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 400px at 70% -10%, #10233d 0%, var(--bg) 55%);
  color: var(--text);
}
.container { width: min(1040px, 92vw); margin: 0 auto; }
.nav { display:flex; align-items:center; justify-content:space-between; padding: 20px 0; }
.brand { display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px; }
.mark {
  width: 16px; height: 16px; border-radius: 4px;
  background: linear-gradient(135deg, #22d3ee, #a78bfa);
  box-shadow: 0 0 20px #22d3ee44;
}
.hero { padding: 56px 0 28px; }
.eyebrow { color: var(--accent); font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; }
h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.08; margin: 8px 0 14px; max-width: 900px; }
.sub { color: var(--muted); max-width: 760px; font-size: 1.05rem; line-height: 1.5; }
.cta-row { display:flex; gap:12px; margin-top: 22px; flex-wrap: wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px; border-radius: 10px; border: 1px solid #36d8ef66;
  color: #d9fbff; text-decoration: none; background: #0a344044;
}
.btn.ghost { border-color: var(--line); background: transparent; color: var(--text); }
.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; margin: 20px auto 28px; }
.card {
  background: #0b1224cc; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px;
}
.card h3 { margin: 0 0 6px; }
.card p { margin: 0 0 10px; color: var(--muted); }
.tag {
  display:inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: .8px;
  border: 1px solid #22d3ee66; color: #b5f6ff; border-radius: 999px; padding: 4px 8px;
}
.legal { background: #0b1224b8; border: 1px solid var(--line); border-radius: 14px; padding: 14px; margin-bottom: 18px; }
.legal h2 { margin-top: 0; font-size: 1.1rem; }
.legal p { color: var(--muted); }
.legal a { color: #7dd3fc; }
.footer { display:flex; justify-content:space-between; gap:10px; border-top: 1px solid var(--line); padding: 16px 0 24px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.footer a { color: #7dd3fc; text-decoration: none; }
