/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--paper);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding-top: 84px; padding-bottom: 76px;
  padding-left: 0; padding-right: 0;
}
.hero__slide { display: none; }
.hero__slide.is-active { display: grid; grid-template-columns: subgrid; grid-column: 1 / -1; animation: hero-in 0.6s ease both; }
@keyframes hero-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.hero__eyebrow { font-family: var(--font-mono); font-size: 0.82rem; color: var(--amber-500); letter-spacing: 0.01em; margin-bottom: 18px; padding-left: 24px; padding-right: 24px; }
.hero__title { font-size: clamp(2.1rem, 4.2vw, 2.4rem); color: var(--white); max-width: 24ch; padding-left: 24px; padding-right: 24px; }
.hero__desc { color: rgba(243,245,244,0.75); font-size: 1.08rem; max-width: 46ch; padding-left: 24px; padding-right: 24px; }
.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--white); }
.hero__stat span { font-size: 0.82rem; color: rgba(243,245,244,0.6); }

.hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-on-dark);
}
.hero__visual::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--amber-500), var(--teal-500));
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,28,44,0.92) 0%, rgba(7,28,44,0.15) 42%, rgba(7,28,44,0) 65%);
}
.hero__tag {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2;
  display: flex; flex-direction: column; gap: 2px;
}
.hero__tag-label { font-size: 0.72rem; color: rgba(243,245,244,0.65); }
.hero__tag-value { font-family: var(--font-mono); font-size: 0.92rem; color: var(--white); }

.hero__dots { display: flex; gap: 8px; margin-top: 40px; }
.hero__dots button { width: 22px; height: 3px; background: rgba(255,255,255,0.25); border: none; padding: 0; cursor: pointer; }
.hero__dots button.is-active { background: var(--amber-500); }

@media (max-width: 860px) {
  .hero__grid, .hero__slide.is-active { grid-template-columns: 1fr; }
  .hero__visual { order: -1; aspect-ratio: 16 / 10; }
  .hero__actions, .hero__stats { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  .hero__grid { padding: 48px 0 40px; gap: 28px; }
  .hero__title { max-width: none; padding-left: 16px; padding-right: 16px; }
  .hero__desc { max-width: none; padding-left: 16px; padding-right: 16px; }
  .hero__eyebrow { padding-left: 16px; padding-right: 16px; }
  .hero__stats { gap: 20px; margin-top: 32px; padding-left: 16px; padding-right: 16px; }
  .hero__visual { aspect-ratio: 4 / 3; }
  .hero__dots { margin-top: 28px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__stats { justify-content: space-between; }
  .hero__stat { flex: 1 1 30%; }
}
