:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: #181c24;
  --muted: #99a2b4;
  --text: #f2f5fb;
  --accent: #6aa3ff;
  --accent-strong: #4f8dff;
  --danger: #ff6c6c;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #161c2b, var(--bg) 45%);
  color: var(--text);
  min-height: 100vh;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.hero {
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8rem;
}

h1 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.intro {
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.primary {
  background: var(--accent);
  color: #081221;
}

.primary:hover {
  background: var(--accent-strong);
}

.ghost {
  border: 1px solid #2f3b52;
  color: var(--text);
}

.card {
  background: color-mix(in hsl, var(--panel), black 8%);
  border: 1px solid #2a3142;
  border-radius: var(--radius);
  padding: 1.2rem;
}

.small {
  color: var(--muted);
  margin-top: 0.4rem;
}

.protected-list {
  margin: 0.8rem 0 0;
  padding-left: 1rem;
}

.protected-list li + li {
  margin-top: 0.45rem;
}

.protected-list a {
  color: #b8d2ff;
}
