:root {
  --bg: #0b0d12;
  --card: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.6);
  --purple: rgba(168,85,247,0.35);
  --blue: rgba(59,130,246,0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 40%;
  height: 40%;
  filter: blur(120px);
  border-radius: 50%;
}

.glow.purple {
  top: -10%;
  left: -10%;
  background: var(--purple);
}

.glow.blue {
  bottom: -10%;
  right: -10%;
  background: var(--blue);
}

.card {
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
}

.header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  font-size: 2rem;
  background: rgba(168,85,247,0.2);
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}

h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.tagline {
  color: var(--muted);
  margin-top: 0.5rem;
}

.section {
  margin-top: 1.75rem;
}

.section h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section p,
.section li {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.section ul {
  padding-left: 1.2rem;
}

.links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.links a {
  color: rgba(168,85,247,0.9);
  text-decoration: none;
  font-weight: 600;
}

.links a:hover {
  text-decoration: underline;
}

footer {
  position: fixed;
  bottom: 1rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.3;
}

/* Center the action area */
.cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

/* Button styles (works for landing + privacy + tos) */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn-primary {
  background: rgba(168,85,247,0.18);
  color: rgba(255,255,255,0.92);
  border-color: rgba(168,85,247,0.35);
}

.btn-primary:hover {
  background: rgba(168,85,247,0.26);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.80);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* Center the link row + make it feel like your UI */
.section.links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
