:root {
  --ink: #0c1a2e;
  --ink-2: #12233b;
  --ivory: #f6efe2;
  --ivory-dim: #d9cfba;
  --gold: #c69a4d;
  --gold-dim: #a5813f;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(120% 140% at 50% 20%, var(--ink-2) 0%, var(--ink) 60%);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw 8vh;
}

.ring-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0,
      transparent 140px,
      rgba(198, 154, 77, 0.035) 141px,
      transparent 142px);
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 620px;
}

.mark {
  width: clamp(84px, 12vw, 128px);
  height: auto;
  color: var(--ivory);
  margin-bottom: clamp(20px, 3vw, 32px);
  animation: mark-in 1.4s ease-out both;
}

.mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mark-gear circle {
  color: var(--ivory-dim);
  opacity: 0.55;
}

.mark-gear-teeth {
  color: var(--ivory-dim);
  opacity: 0.55;
}

.mark-ring {
  color: var(--ivory-dim);
  opacity: 0.75;
}

.mark-ring-inner {
  color: var(--ivory-dim);
  opacity: 0.5;
}

.mark-star {
  color: var(--ivory);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
  color: var(--ivory);
  animation: fade-up 1.1s ease-out 0.15s both;
}

.wordmark .amp {
  font-style: italic;
  color: var(--gold);
  padding: 0 0.02em;
}

.tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: clamp(14px, 2vw, 18px) 0 0;
  animation: fade-up 1.1s ease-out 0.3s both;
}

.divider {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ivory-dim), transparent);
  margin: clamp(26px, 4vw, 36px) 0;
  animation: fade-up 1.1s ease-out 0.4s both;
}

.story {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: var(--ivory-dim);
  margin: 0;
  animation: fade-up 1.1s ease-out 0.5s both;
}

.status {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border: 1px solid rgba(217, 207, 186, 0.35);
  border-radius: 999px;
  padding: 10px 26px;
  margin-top: clamp(34px, 5vw, 48px);
  animation: fade-up 1.1s ease-out 0.65s both;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 8vw, 72px);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fade-up 1.1s ease-out 0.8s both;
}

.footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.footer a:hover {
  border-color: var(--gold-dim);
  opacity: 1;
}

.footer-sep {
  opacity: 0.5;
}

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

@keyframes mark-in {
  from {
    opacity: 0;
    transform: scale(0.92) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 480px) {
  .stage {
    padding: 8vh 8vw 6vh;
  }
  .footer {
    flex-direction: column;
    gap: 4px;
  }
}
