/* ============ HERO ============ */
.hero {
  min-height: 92vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, #d6e4ff 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 90%, #e6efff 0%, transparent 55%),
    var(--paper);
}
.hero-blob-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 32% 28%, var(--blue), var(--royal));
  top: 14%; right: -140px;
  animation: morph 18s ease-in-out infinite;
  opacity: 0.85;
}
.hero-blob-2 {
  width: 260px; height: 260px;
  background: var(--sky);
  bottom: -60px; left: -40px;
  animation: morph 14s ease-in-out infinite reverse;
  opacity: 0.55;
}
.hero-blob-3, .hero-blob-4 { display: none; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(11,31,90,0.06);
}
.hero-meta .live {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--royal);
}
.hero-meta .live .dot {
  width: 8px; height: 8px; background: var(--coral); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,138,107, 0.7);
  animation: ring 1.8s ease-out infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(255,138,107, 0.6); }
  100% { box-shadow: 0 0 0 12px rgba(255,138,107, 0); }
}
.hero-meta .pill {
  padding: 6px 14px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  margin-top: 28px;
  max-width: 14ch;
}
.hero-tagline {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}
.hero-meta .pill-loc {
  background: var(--ice);
  color: var(--navy);
}
.nav-title { font-weight: 800; font-size: 14px; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 980px) { .nav-title { display: none; } }
.hero h1 .word {
  display: inline-block;
}
.hero h1 .blue { color: var(--royal); }
.hero h1 .ital { color: var(--royal); font-family: inherit; font-style: normal; font-weight: inherit; }
.hero h1 .blob-word { color: var(--royal); }
.hero h1 .blob-word::before { display: none; }

.hero-sub {
  margin-top: 32px;
  max-width: 540px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero-cta {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hero-stat .num .small { font-size: 22px; font-weight: 500; color: var(--ink-soft); }
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 600;
}
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero h1 { font-size: 56px; }
}

/* countdown card on the side */
.hero-side {
  position: absolute;
  right: 32px;
  top: 140px;
  z-index: 3;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(11,31,90,0.12);
  width: 280px;
  transform: rotate(2deg);
}
.hero-side h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--royal);
}
.countdown {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.countdown div {
  text-align: center;
  background: var(--ice);
  border-radius: 12px;
  padding: 10px 4px;
}
.countdown .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.countdown .l {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 600;
}
@media (max-width: 1100px) { .hero-side { display: none; } }

/* ============ MARQUEE ============ */
.marquee {
  padding: 32px 0;
  background: var(--ink);
  color: white;
  overflow: hidden;
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .star { color: var(--sun); font-size: 24px; }
.marquee-track .ital { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--sky); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}
