:root {
  --bg-top: #d8dade;
  --bg-bottom: #9ea3ab;
  --ink: #1f2329;
  --muted: rgba(31, 35, 41, 0.72);
  --line: rgba(31, 35, 41, 0.12);
  --accent: #3d434b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(31, 35, 41, 0.12), transparent 18%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  font-family: "Newsreader", Georgia, serif;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.12));
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  padding: 2rem;
  text-align: center;
}

.eyebrow,
.summary,
.status {
  margin: 0;
  opacity: 0;
  animation: rise 700ms ease forwards;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Rufina", Georgia, serif;
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  opacity: 0;
  animation: rise 900ms ease 120ms forwards;
}

.summary {
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
  animation-delay: 220ms;
}

.status {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation-delay: 340ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 1.5rem;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .summary {
    max-width: 20rem;
  }
}