:root {
  --bg: #0a1628;
  --bg-deep: #060d1a;
  --fg: #e8ecf3;
  --fg-muted: #9aa8c0;
  --accent: #c9a24b;
}

* { box-sizing: border-box; }

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

body {
  background: radial-gradient(ellipse at top, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--fg);
  font-family: "Georgia", "Iowan Old Style", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

main {
  max-width: 34rem;
}

h1 {
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.25rem);
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  color: var(--fg);
}

h1::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 1px;
  margin: 1.25rem auto 0;
  background: var(--accent);
}

.tagline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 2rem;
}

.status {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
