/* ============================================
   Sound Technologies - About: Hero
   Mobile-first
   ============================================ */

.st-about-hero {
  background: linear-gradient(160deg, #0a1654 0%, var(--st-navy) 35%, var(--st-blue) 100%);
  color: var(--st-white);
  padding: 48px 20px;
  position: relative;
}

.st-about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(33, 95, 154, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.st-about-hero-inner {
  max-width: var(--st-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.st-about-hero h1 {
  font-family: var(--st-font);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.st-about-hero-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
}

/* Tablet */
@media (min-width: 600px) {
  .st-about-hero {
    padding: 60px 30px;
  }

  .st-about-hero h1 {
    font-size: 2.25rem;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .st-about-hero {
    padding: 80px 30px;
  }

  .st-about-hero h1 {
    font-size: 2.5rem;
  }

  .st-about-hero-text {
    font-size: 1.05rem;
  }
}
