:root {
  --hero-dark-overlay: linear-gradient(
    90deg,
    rgba(7, 13, 30, 0.9) 0%,
    rgba(7, 13, 30, 0.78) 38%,
    rgba(7, 13, 30, 0.42) 68%,
    rgba(7, 13, 30, 0.10) 100%
  );

  --hero-light-overlay: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.42) 68%,
    rgba(255, 255, 255, 0.10) 100%
  );
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

.hero-banner {
  position: relative;
  height: 50vh;
  max-height: 50vh;
  overflow: hidden;
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../images/1536/1024/people-001-001-01.jpg");
}

[data-bs-theme="light"] .hero-banner {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    url("../images/1536/1024/people-001-001-01.jpg");
  color: var(--bs-dark);
}

[data-bs-theme="dark"] .hero-banner {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("../images/1536/1024/people-001-001-02.jpg");
  color: var(--bs-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-content {
    padding-left: clamp(1.5rem, 3vw, 4rem);
  }
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
}

.hero-subtitle {
  max-width: 56ch;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

.hero-btn-secondary {
  border-width: 2px;
}

[data-bs-theme="dark"] .hero-overlay {
  background: var(--hero-dark-overlay);
}

[data-bs-theme="light"] .hero-overlay {
  background: var(--hero-light-overlay);
}

[data-bs-theme="dark"] .hero-kicker {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

[data-bs-theme="light"] .hero-kicker {
  background: rgba(13, 110, 253, 0.12);
  color: var(--bs-primary);
  border: 1px solid rgba(13, 110, 253, 0.08);
}

[data-bs-theme="dark"] .hero-title {
  color: #ffffff;
}

[data-bs-theme="light"] .hero-title {
  color: #111827;
}

[data-bs-theme="dark"] .hero-subtitle {
  color: rgba(255, 255, 255, 0.84);
}

[data-bs-theme="light"] .hero-subtitle {
  color: #4b5563;
}

[data-bs-theme="dark"] .hero-btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}

[data-bs-theme="dark"] .hero-btn-secondary:hover {
  background: #ffffff;
  color: #111827;
  border-color: #ffffff;
}

[data-bs-theme="light"] .hero-btn-secondary {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.3);
}

[data-bs-theme="light"] .hero-btn-secondary:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

@media (max-width: 991.98px) {
  .hero-banner {
    text-align: center;
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-content .d-flex {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }
}