* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;

  --background: #09090b;
  --foreground: #fafafa;
  --muted: #a1a1aa;
  --subtle: #71717a;
  --accent: #60a5fa;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(59, 130, 246, 0.08),
      transparent 35%
    ),
    var(--background);

  color: var(--foreground);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

main {
  flex: 1;
  display: grid;
  place-items: center;

  padding: 2rem;
}

.content {
  text-align: center;
}

.eyebrow {
  display: block;

  margin-bottom: 1rem;

  color: var(--accent);

  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.tagline {
  margin-top: 1.5rem;

  color: var(--muted);

  font-size: clamp(1rem, 2vw, 1.25rem);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  margin-top: 2rem;

  color: var(--subtle);

  font-size: 0.875rem;
}

.status-dot {
  width: 0.45rem;
  height: 0.45rem;

  border-radius: 50%;

  background: var(--accent);

  box-shadow: 0 0 12px rgba(96, 165, 250, 0.65);
}

footer {
  padding: 1.5rem;

  color: var(--subtle);

  font-size: 0.75rem;
  text-align: center;
}
