:root {
  --bg: #070b14;
  --text: #f6f3ea;
  --muted: #b8b3a6;
  --gold: #f4c430;
  --gold-soft: #e8c56a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  top: -12vw;
  right: -8vw;
  background: radial-gradient(circle, rgba(244, 196, 48, 0.28), transparent 70%);
}

.glow-b {
  width: 36vw;
  height: 36vw;
  bottom: -16vw;
  left: -10vw;
  background: radial-gradient(circle, rgba(47, 108, 184, 0.22), transparent 70%);
}

.top,
.hero,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  padding: 28px 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.mark {
  width: 36px;
  height: 36px;
  animation: spin-slow 28s linear infinite;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 80px;
}

.kicker {
  color: var(--gold-soft);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 22px;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.status {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.message {
  margin-top: 16px;
  max-width: 28rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.6;
}

.foot {
  padding: 20px 24px 28px;
  text-align: center;
  color: #7d7a72;
  font-size: 12px;
  letter-spacing: 0.04em;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .top {
    padding: 22px 20px;
  }

  body {
    overflow: auto;
  }

  .message {
    font-size: 1.02rem;
  }
}
