/* ================================================================
   SPLASH PAGE ANIMATION STYLES
   C4DC Landing Page - Animated Hero Section
   ================================================================ */

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

html, body {
  width: 100%;
}

body {
  font-family: 'Syne', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Bulletproof background layer — covers hero section only */
#bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #0c0d10;
  z-index: 0;
}

/* Subtle warm glow — top only, no white anywhere */
#glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50vh;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,80,20,0.10) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── HERO ANIMATION CONTAINER ── */
.hero-dark .hero,
.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero.ready { opacity: 1; }

.eyebrow {
  font-weight: 700;
  font-size: clamp(0.84rem, 2.8vw, 1.33rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.8em;
}

.bracket-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}

.bracket {
  font-weight: 800;
  line-height: 1;
  color: #ff5c1a;
  flex-shrink: 0;
  padding: 0 0.12em;
  /* gentle pulse */
  animation: bpulse 3s ease-in-out infinite;
}

@keyframes bpulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* Clip window — exactly one word tall, no vignette */
.word-window {
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Scrolling column */
.word-track {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Each word — solid white, no gradient */
.word-item {
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tagline {
  font-weight: 700;
  font-size: clamp(0.84rem, 2.8vw, 1.33rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.8em;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.div-line { width: 32px; height: 1.5px; background: #ff5c1a; opacity: 0.55; }
.div-dot  { width: 5px; height: 5px; border-radius: 50%; background: #ff5c1a; }

/* ── UTILITY CLASSES ── */
.bg-mid-grey {
  background-color: #6c757d;
}
