:root {
  --bg: #0b1020;
  --panel: #121a33;
  --text: #f3f6ff;
  --muted: #b6c0e0;
  --accent: #7c9cff;
  --accent-2: #8ef0d1;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #182548 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
}
.hero, .section {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(255,255,255,0.04);
  margin-bottom: 20px;
  font-size: 14px;
}
h1 {
  font-size: clamp(40px, 8vw, 76px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}
p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.button {
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}
.primary {
  background: var(--accent);
  color: white;
}
.secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.section {
  padding: 24px 0 72px;
}
.section h2 {
  font-size: 28px;
  margin-bottom: 8px;
}
