:root {
  --black: #000000;
  --ink: #0a0908;
  --red: #d31b22;
  --red-bright: #f0282f;
  --cream: #f4ead0;
  --cream-dim: #c9bfa6;
  --shadow-red: rgba(211, 27, 34, 0.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: radial-gradient(circle at 50% 35%, #161311 0%, #000000 70%);
  color: var(--cream);
  font-family: "Oswald", system-ui, sans-serif;
  overflow: hidden;
  cursor: default;
  position: relative;
}

/* ---------- Background canvas ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

/* ---------- Cursor spotlight ---------- */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(211, 27, 34, 0.18) 0%, rgba(211, 27, 34, 0) 65%);
  transition: opacity 0.4s ease;
  opacity: 0;
  will-change: transform;
}

/* ---------- Stage / layout ---------- */
.stage {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 5vh 24px;
  overflow-y: auto;
}

.content {
  max-width: 760px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Logo ---------- */
.logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  will-change: transform;
  animation: float 6s ease-in-out infinite;
}

.logo {
  position: relative;
  z-index: 2;
  width: clamp(220px, 38vw, 360px);
  height: auto;
  border-radius: 24px;
  display: block;
  user-select: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.8));
  transition: transform 0.3s ease;
}

.logo-glow {
  position: absolute;
  inset: -8%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--shadow-red) 0%, rgba(211, 27, 34, 0) 70%);
  filter: blur(20px);
  opacity: 0.7;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.95); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 600;
  margin-bottom: 12px;
  padding-left: 0.5em;
}

.headline {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  letter-spacing: 0.01em;
  color: var(--cream);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.headline .word:nth-child(1) { animation-delay: 0.15s; }
.headline .word:nth-child(2) { animation-delay: 0.3s; }
.headline .word:nth-child(3) { animation-delay: 0.45s; }

.headline .accent {
  color: var(--red);
  text-shadow: 0 0 24px var(--shadow-red);
}

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

.tagline {
  margin-top: 18px;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 30ch;
  opacity: 0;
  animation: rise 0.8s ease forwards 0.6s;
}

/* ---------- Footer info ---------- */
.info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  margin-top: 40px;
  opacity: 0;
  animation: rise 0.8s ease forwards 0.75s;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

.info-item:hover { color: var(--cream); }
.info-ico { font-size: 1.05rem; }

@media (prefers-reduced-motion: reduce) {
  .logo-wrap, .logo-glow,
  .headline .word, .tagline, .info {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
