:root {
  --bg: #0a0c10;
  --fg: #f4f6fb;
  --muted: #9aa3b5;
  --accent: #5b8cff;
  --accent-dim: rgba(91, 140, 255, 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
  overflow: hidden;
}

.glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(720px, 120vw);
  height: 60vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, var(--accent), #3d6ae0);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  max-width: 36rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.footer {
  position: relative;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer a {
  color: var(--muted);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer a:hover {
  color: var(--fg);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  opacity: 0.85;
}
