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

:root {
  --bg: #0a0a0a;
  --fg: #f0f0f0;
  --accent: #ffffff;
  --muted: #555555;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: system-ui, 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.state[hidden] {
  display: none;
}

.label {
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.purpose {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.date-range {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--fg);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

.dim {
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.25;
}

footer {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}

.meta {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.meta a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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