:root {
  --bg-deep: #1a2218;
  --bg-mid: #2c3a28;
  --bg-glow: #4a5c3a;
  --text: #f2efe6;
  --muted: rgba(242, 239, 230, 0.72);
  --accent: #c4a35a;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
}

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

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, var(--bg-glow) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg-mid) 0%, var(--bg-deep) 70%);
  background-attachment: fixed;
}

.stage {
  width: min(36rem, calc(100% - 2.5rem));
  text-align: center;
  padding: 2rem 0 3rem;
  animation: rise 0.9s ease-out both;
}

.logo {
  display: block;
  width: auto;
  height: 3.5rem;
  margin: 0 auto 2rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
  animation: fade-in 1.1s ease-out both;
}

h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 28ch;
  margin-inline: auto;
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage,
  .logo {
    animation: none;
  }
}
