/* ═══════════════════════════════════ */
/* HERO SECTION                        */
/* ═══════════════════════════════════ */

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 30%, rgba(82,183,255,.11), transparent 65%);
  pointer-events: none;
}

/* ─── HOME HERO BANNER BACKGROUND ─── */
.hero-banner {
  background: linear-gradient(180deg, rgba(10,12,16,.55) 0%, rgba(10,12,16,.75) 55%, var(--bg) 100%);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlideFade 24s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }

@keyframes heroSlideFade {
  0%      { opacity: 0; }
  4%      { opacity: 1; }
  25%     { opacity: 1; }
  29%     { opacity: 0; }
  100%    { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }
  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  animation: fadeUp .6s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

h1 {
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .95;
  letter-spacing: -1px;
  color: var(--white);
  animation: fadeUp .6s .1s ease both;
  margin: 16px 0;
}

h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-sub {
  margin-top: 12px;
  font-size: .9rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
  animation: fadeUp .6s .2s ease both;
}

/* ─── COUNTDOWN ─── */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  animation: fadeUp .6s .3s ease both;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 36px 20px;
  min-width: 120px;
}

.cd-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
  margin-top: 8px;
  font-weight: 600;
}

/* ─── HERO ACTIONS ─── */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  animation: fadeUp .6s .4s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  justify-content: center;
}

.btn svg {
  flex-shrink: 0;
  transition: transform .2s;
  margin-left: auto;
}

.btn-primary {
  background: var(--cyan);
  color: #060810;
}

.btn-primary:hover {
  background: #7dcaff;
  box-shadow: 0 6px 24px rgba(82,183,255,.25);
}

.btn-primary:hover svg {
  transform: translateX(2px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}

/* ─── SCROLL ARROW ─── */
.scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.scroll-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid var(--muted);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: border-color .3s;
}

.scroll-arrow:hover .scroll-indicator {
  border-color: var(--cyan);
}

.scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--muted);
  border-radius: 50%;
  animation: scrollPulse 1.6s ease-in-out infinite;
  transition: background-color .3s;
}

.scroll-arrow:hover .scroll-dot {
  background: var(--cyan);
}

.scroll-text {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted);
  transition: color .3s;
  text-transform: uppercase;
}

.scroll-arrow:hover .scroll-text {
  color: var(--cyan);
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: .4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}
