/* ─────────────────────────────────────────── */
/*  BLOCK 1 — HERO                             */
/* ─────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
  background:
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(18,28,65,0.52) 82%, rgba(12,20,55,0.82) 100%),
    linear-gradient(155deg, #EEF2FF 0%, #FFFFFF 50%, #C8D6F5 100%);
  padding-bottom: 120px;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(12,20,55,0.5) 60%, rgba(8,15,45,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
#hero-paths {
  position: absolute;
  opacity: 0.5;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
#hero-paths svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#hero-paths svg.ready { opacity: 1; }
.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 60% at 80% 50%, rgba(42,63,119,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow-top { display: none; }
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 50px;
  width: 100%;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.hero__right-col {
  padding-top: clamp(60px, 8vw, 100px);
}
.hero__left { min-width: 0; }

/* Hero feature cards — stacked vertical on the right */
.hero__feature-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s, border-color 0.25s;
}
.hero__feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(42,63,119,0.18);
  box-shadow: 0 8px 28px rgba(42,63,119,0.09);
}
.hero__feature-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--blue);
  flex-shrink: 0;
}
.hero__feature-icon svg { width: 22px; height: 22px; display: block; }
.hero__feature-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
@media (max-width: 900px) {
  .hero__feature-cards { gap: 10px; }
  .hero__feature-card { padding: 16px 18px; }
  .hero__feature-icon { width: 38px; height: 38px; }
  .hero__feature-icon svg { width: 19px; height: 19px; }
  .hero__feature-label { font-size: 14px; }
}

/* Hero countdown card — right column */

/* Days — large top block */

/* Hours / minutes / seconds — bottom row */

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__right-col { padding-top: 0; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2A3F77;
  padding: 8px 20px 8px 14px;
  background: rgba(240, 244, 251, 0.9);
  border: 1px solid rgba(42, 63, 119, 0.15);
  border-radius: 999px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6B1A1A;
  flex-shrink: 0;
  position: relative;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__eyebrow-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(107, 26, 26, 0.3);
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}
.hero__title {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-bottom: 20px;
  color: #0F172A;
}
.hero__title-main {
  display: block;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.05;
  font-weight: 800;
}
.hero__title .glow {
  color: #1E3A6E;
  font-style: normal;
  background: rgba(221, 229, 244, 0.35);
  padding: 0.06em 0.12em 0.08em;
  border-radius: 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}
.hero__title .glow-line {
  display: block;
  line-height: 1.35;
}
.hero__title .glow-line + .glow-line {
  margin-top: 0.18em;
}
.hero__title-sub {
  display: block;
  margin-top: 0.25em;
  line-height: 1.15;
  color: #0F172A;
  font-size: 0.85em;
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 24px;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.hero__footnote {
  font-size: 13px;
  color: #374151;
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-top: 0;
}

