/*
 * ============================================================
 * HERO SECTION — Cinematic Gala
 * ============================================================
 */

/* ── Spacing context (nav 68px + ticker 34px = 102px) ──────── */
.hero {
  padding-top: 102px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ── Background Layers ────────────────────────────────────── */

/* 1. Dot grid texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(247,201,72,0.09) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: gridDrift 28s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 36px 36px; }
}

/* 2. Central radial gold glow */
.hero-bg-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(247,201,72,0.14) 0%,
    rgba(247,201,72,0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* 3. Corner accent glow */
.hero-bg-corner {
  position: absolute;
  top: 15%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(247,201,72,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-corner-left {
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,130,16,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* 4. Diagonal gold line accent */
.hero-bg-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(247,201,72,0.08) 30%,
    rgba(247,201,72,0.18) 50%,
    rgba(247,201,72,0.08) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Content Container ────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px 56px;
  max-width: 1100px;
  width: 100%;
}

/* ── Live Badge ───────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  background: rgba(247,201,72,0.06);
  margin-bottom: 40px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Hero Title (3 lines) ─────────────────────────────────── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 148px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.hero-title-line {
  display: block;
}
.hero-title-line.white { color: var(--text); }
.hero-title-line.gold-grad {
  background: linear-gradient(90deg, var(--gold-hi) 0%, var(--gold) 45%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Shimmer animation */
  background-size: 200% auto;
  animation: shimmerTitle 4s linear infinite;
}
@keyframes shimmerTitle {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── Subheading ───────────────────────────────────────────── */
.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 52px;
  line-height: 1.65;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Highlighted Sentence ─────────────────────────────────── */
.highlight-sentence {
  display: inline-block;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(247,201,72,0.15) 0%, rgba(201,130,16,0.08) 100%);
  border: 1.5px solid rgba(247,201,72,0.35);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  position: relative;
  
  /* Glow shadow effect */
  box-shadow: 
    0 0 30px rgba(247,201,72,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
  
  /* Smooth animation */
  animation: highlightGlow 3s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, box-shadow, text-shadow;
}

.highlight-sentence:hover {
  background: linear-gradient(135deg, rgba(247,201,72,0.22) 0%, rgba(201,130,16,0.12) 100%);
  border-color: rgba(247,201,72,0.55);
  box-shadow: 
    0 0 50px rgba(247,201,72,0.2),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.02);
}

@keyframes highlightGlow {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(247,201,72,0.12),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  50% {
    box-shadow: 
      0 0 45px rgba(247,201,72,0.18),
      inset 0 1px 0 rgba(255,255,255,0.12);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .highlight-sentence {
    padding: 18px 24px;
    border-radius: 12px;
  }
}

/* ── CTA Group ────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-cta-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 14px;
  width: 100%;
  text-align: center;
}

/* ── Stats Strip ──────────────────────────────────────────── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  background: rgba(247,201,72,0.025);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  margin-bottom: 7px;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Scroll Cue ───────────────────────────────────────────── */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity var(--t-base);
  cursor: pointer;
  z-index: 2;
}
.hero-scroll-cue:hover { opacity: 0.8; }
.hero-scroll-cue span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--text-3);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0; transform: translateY(0); }
  40%       { opacity: 1; }
  80%       { opacity: 0; transform: translateY(8px); }
}

/* ── Prize Preview Cards (below hero) ────────────────────── */
.prize-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px 64px;
}
.prize-pip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  background: rgba(247,201,72,0.04);
  backdrop-filter: blur(8px);
  transition: all var(--t-base);
}
.prize-pip:hover {
  background: rgba(247,201,72,0.08);
  border-color: rgba(247,201,72,0.45);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.prize-pip-medal { font-size: 22px; }
.prize-pip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.prize-pip-amount {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-hi), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(3) { border-top: 1px solid var(--gold-border); }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--gold-border); }
  .hero-content { padding: 36px 20px 48px; }
  .prize-strip { gap: 8px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-title { letter-spacing: 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-scroll-cue { display: none; }
}
