.hero-story {
  position: relative;
  min-height: 470px;
  padding: 2.8rem 2.35rem 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--stroke-2);
  background:
    radial-gradient(1200px 650px at 10% 0%, rgba(0, 151, 201, 0.30), transparent 58%),
    radial-gradient(980px 620px at 88% 14%, rgba(0, 102, 145, 0.24), transparent 62%),
    radial-gradient(760px 500px at 50% 96%, rgba(212, 175, 55, 0.16), transparent 68%),
    linear-gradient(130deg, rgba(4, 25, 38, 0.16), rgba(255, 255, 255, 0.92));
  box-shadow: 0 34px 110px rgba(2, 24, 39, 0.24);
  overflow: hidden;
}

.hero-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 41, 61, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 41, 61, 0.10) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.25;
  mask-image: radial-gradient(70% 62% at 45% 36%, #000 58%, transparent 100%);
  pointer-events: none;
}

.hero-story > * {
  position: relative;
  z-index: 1;
}

.hero-story .hero-gfx {
  opacity: 1;
  filter: saturate(1.12) contrast(1.05);
}

.hero-story-stage {
  position: relative;
  min-height: 330px;
}

.hero-story-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(12px) scale(0.988);
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.hero-story-slide--active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-story .badge {
  border: 1px solid rgba(6, 41, 61, 0.20);
  background:
    radial-gradient(160px 70px at 18% 0%, rgba(0, 139, 191, 0.24), transparent 70%),
    rgba(255, 255, 255, 0.84);
  color: rgba(4, 31, 47, 0.88);
  font-weight: 800;
}

.hero-story h1,
.hero-story .hero-story-title {
  margin: 0.2rem 0 0;
  font-size: clamp(1.9rem, 3.25vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 19ch;
  color: var(--text-strong);
  text-wrap: balance;
}

.hero-story .lead {
  max-width: 78ch;
  color: rgba(6, 41, 61, 0.86);
  margin-top: 0;
  font-size: clamp(1.01rem, 1.45vw, 1.15rem);
  line-height: 1.58;
}

.hero-story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}

.hero-story-chips li {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(6, 41, 61, 0.16);
  background:
    radial-gradient(180px 80px at 12% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.64);
  color: rgba(6, 41, 61, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.hero-story-cta {
  margin-top: 0.3rem;
}

.hero-story-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.hero-story-arrow {
  border: 1px solid rgba(6, 41, 61, 0.18);
  background:
    radial-gradient(140px 55px at 20% 0%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: rgba(6, 41, 61, 0.88);
  font-weight: 700;
  padding: 0.48rem 0.86rem;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.hero-story-arrow:hover,
.hero-story-arrow:focus {
  transform: translateY(-1px);
  border-color: rgba(0, 139, 191, 0.32);
  box-shadow: 0 15px 35px rgba(2, 24, 39, 0.16);
}

.hero-story-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.hero-story-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(6, 41, 61, 0.26);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}

.hero-story-dot--active {
  transform: scale(1.35);
  background: rgba(0, 139, 191, 0.9);
}

@media (max-width: 760px) {
  .hero-story {
    min-height: 0;
    padding: 2.15rem 1.25rem 1.15rem;
  }

  .hero-story-stage {
    min-height: 446px;
  }

  .hero-story h1,
  .hero-story .hero-story-title {
    max-width: 100%;
    font-size: clamp(1.56rem, 8vw, 2.2rem);
  }

  .hero-story-controls {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
  }

  .hero-story-arrow {
    width: 100%;
  }
}

