
:root {
  --bg: #0b1020;
  --bg-soft: rgba(255, 255, 255, 0.08);
  --card: rgba(14, 20, 40, 0.72);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f5f7ff;
  --muted: #b8c0db;
  --accent: #9ac7ff;
  --accent-strong: #d5e7ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(84, 140, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(183, 113, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #080c18 0%, #0d1226 45%, #10182f 100%);
  position: relative;
  overflow-x: hidden;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  position: relative;
  z-index: 1;
}

.card {
  width: min(100%, 780px);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero {
  text-align: center;
  padding: 64px 28px;
}

.legal-card {
  padding: 40px 24px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.lead {
  margin: 0 auto;
  max-width: 36ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 199, 255, 0.45);
  background: rgba(255,255,255,0.08);
}

.info-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.info-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.value {
  display: block;
  font-size: 1.03rem;
  line-height: 1.6;
}

.text-block {
  margin-top: 22px;
}

.text-block p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.8;
}

a {
  color: var(--accent);
}

.bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -120px;
  left: -60px;
  background: #6ba7ff;
}

.bg-glow-2 {
  bottom: -140px;
  right: -40px;
  background: #b47dff;
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 20px;
  }

  .legal-card {
    padding: 28px 18px;
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }
}
