:root {
  --bg: #050509;
  --fg: #f5f5f5;
  --muted: #a6abb8;
  --accent: #7fe3c3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: "Space Grotesk", "Manrope", "Sora", "Noto Sans", sans-serif;
  letter-spacing: 0.015em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px circle at 20% 20%, rgba(127, 227, 195, 0.12), transparent 45%),
    radial-gradient(700px circle at 85% 80%, rgba(111, 177, 255, 0.1), transparent 40%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}

.page {
  text-align: center;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.shield {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  color: var(--accent);
}

.shield.small {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.shield svg {
  width: 100%;
  height: 100%;
  display: block;
}

h1 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 600;
}

p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
