:root {
  --bg: #0a0a0a;
  --fg: #f4f1ea;
  --muted: #9a958c;
  --line: rgba(244, 241, 234, 0.14);
  --accent: #c4a574;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 165, 116, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(244, 241, 234, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(2.5rem, 8vw, 5rem) 1.5rem 2rem;
  max-width: 40rem;
  margin: 0 auto;
}

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

.logo {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.25rem, 12vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.tagline {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: var(--fg);
}

.lede {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 32rem;
}

.status {
  margin: 5.5rem 0 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.sep { opacity: 0.5; }

@media (prefers-reduced-motion: no-preference) {
  .wrap > * {
    animation: rise 0.9s ease both;
  }
  .wrap > *:nth-child(1) { animation-delay: 0.05s; }
  .wrap > *:nth-child(2) { animation-delay: 0.12s; }
  .wrap > *:nth-child(3) { animation-delay: 0.18s; }
  .wrap > *:nth-child(4) { animation-delay: 0.24s; }
  .wrap > *:nth-child(5) { animation-delay: 0.3s; }
  .wrap > *:nth-child(6) { animation-delay: 0.36s; }
  .wrap > *:nth-child(7) { animation-delay: 0.42s; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
