:root {
  --bg:        #0b0b0d;
  --surface:   #141317;
  --text:      #f2ede4;
  --muted:     #948f88;
  --accent:    #ff7a29;
  --accent-2:  #c94a13;
  --border:    rgba(242, 237, 228, 0.10);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  text-align: center;
  padding: 32px 24px 96px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.spotlight {
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(
    from 0deg at 50% 42%,
    transparent 0deg,
    rgba(255, 122, 41, 0.12) 25deg,
    transparent 70deg,
    transparent 300deg,
    rgba(201, 74, 19, 0.10) 330deg,
    transparent 360deg
  );
  animation: sweep 26s linear infinite;
  mix-blend-mode: screen;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}


.spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, transparent 0%, var(--bg) 78%);
}

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

.motes {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.motes span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: drift 14s ease-in infinite;
}

.motes span:nth-child(1) { left: 12%; animation-delay: 0s;  }
.motes span:nth-child(2) { left: 28%; animation-delay: 3s;  }
.motes span:nth-child(3) { left: 52%; animation-delay: 6s;  }
.motes span:nth-child(4) { left: 74%; animation-delay: 1.5s;}
.motes span:nth-child(5) { left: 88%; animation-delay: 9s;  }

@keyframes drift {
  0%   { bottom: -5%;  opacity: 0; transform: translateX(0); }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.35; }
  100% { bottom: 100%; opacity: 0; transform: translateX(24px); }
}

.stage {
  position: relative;
  z-index: 2;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}

.wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 0 40px rgba(255, 122, 41, 0.18);
  white-space: nowrap;
}

.wordmark .word {
  display: inline-block;
  white-space: nowrap;
}

.wordmark .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  animation: rise 0.6s cubic-bezier(.2,.7,.3,1) forwards;
}

.wordmark .word-space { display: inline-block; width: 0.28em; }

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

.rule {
  width: 64px;
  height: 2px;
  margin: 26px 0 22px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  animation: drawLine 0.6s ease forwards 1.1s;
}

@keyframes drawLine {
  to { transform: scaleX(1); }
}

.headline {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 26px);
  letter-spacing: -0.01em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.3s;
}

.lede {
  margin: 0 0 34px;
  max-width: 440px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.5s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #1a1305;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.7s;
}

.btn:hover {
  box-shadow: 0 0 24px rgba(255, 122, 41, 0.45);
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0); }

.discord-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form-note {
  margin: 16px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.9s;
}

.form-note strong {
  color: var(--text);
  font-weight: 700;
}

.foot {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .stage { padding: 0 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight,
  .motes span,
  .wordmark .letter,
  .rule,
  .headline,
  .lede,
  .btn,
  .form-note,
  .eyebrow {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
