.hero-banner {
  position: relative;
  min-height: 200px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background:
    linear-gradient(100deg, var(--bg-card) 0%, rgba(12, 21, 37, 0.96) 34%, rgba(12, 21, 37, 0.48) 64%, rgba(12, 21, 37, 0.14) 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 21, 37, 0.98) 0%, rgba(12, 21, 37, 0.94) 28%, rgba(12, 21, 37, 0.54) 50%, rgba(12, 21, 37, 0.18) 66%, rgba(12, 21, 37, 0.22) 100%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 18%),
    url("../../assets/images/whale-home-experiment.png") right center / auto 185% no-repeat;
  opacity: 0.98;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 0%, var(--blue-alpha-20) 0%, transparent 30%),
    linear-gradient(180deg, var(--white-alpha-06) 0%, transparent 18%);
  pointer-events: none;
}

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

.hero-banner--compact {
  min-height: 160px;
}

.hero-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-tag);
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero-banner__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-alpha-10);
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 196, 64, 0.14);
}

.hero-banner__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.45;
}

.hero-banner__copy {
  max-width: 640px;
}

.hero-banner__title {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-h1);
  white-space: nowrap;
}

.hero-banner__subtitle {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-banner__subtitle + .hero-banner__subtitle {
  margin-top: 4px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-stats::-webkit-scrollbar {
  display: none;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.hero-stat__icon svg {
  width: var(--icon-size-feature-bare);
  height: var(--icon-size-feature-bare);
  stroke-width: var(--icon-stroke-feature-bare);
}

.hero-stat__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat__number {
  font-family: var(--font-data);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: var(--text-h1);
  white-space: nowrap;
}

.hero-stat__label {
  font-size: 11px;
  line-height: 1;
  color: var(--text-secondary);
  white-space: nowrap;
}

@media (max-width: 920px) {
  .hero-banner {
    padding: 24px;
  }

  .hero-banner__title {
    font-size: 26px;
    white-space: normal;
  }

  .hero-banner__subtitle {
    max-width: 78%;
  }
}

@media (max-width: 1080px) {
  .hero-banner {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .hero-banner::before {
    background:
      linear-gradient(180deg, rgba(10, 18, 31, 0.78) 0%, rgba(10, 18, 31, 0.58) 38%, rgba(10, 18, 31, 0.86) 100%),
      radial-gradient(circle at 80% 12%, rgba(30, 111, 255, 0.26) 0%, transparent 24%),
      radial-gradient(circle at 14% 100%, rgba(255, 196, 0, 0.14) 0%, transparent 28%),
      url("../../assets/images/whale-home-experiment.png") 78% 16% / cover no-repeat;
  }

  .hero-banner::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 18%),
      radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.08) 0%, transparent 18%);
  }

  .hero-banner__copy {
    max-width: none;
  }

  .hero-banner__title {
    margin-bottom: 6px;
    font-size: 26px;
    white-space: normal;
  }

  .hero-banner__subtitle {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.7;
  }

  .hero-stats {
    gap: 18px;
    margin-top: 16px;
    padding-top: 12px;
  }
}

@media (max-width: 720px) {
  .hero-banner__header {
    gap: 10px;
  }

  .hero-banner__icon {
    width: 40px;
    height: 40px;
  }

  .hero-banner__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.35;
  }

  .hero-stat__icon {
    width: 26px;
    height: 26px;
  }

  .hero-stat__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.45;
  }

  .hero-banner__title {
    font-size: 24px;
  }

  .hero-banner__subtitle {
    max-width: 100%;
  }
}
