.page-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.page-wrapper > .row {
  --bs-gutter-x: 0;
}

.page-wrapper > .row > .col-md-12 {
  padding-left: 0;
  padding-right: 0;
}

.splash-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #1f2428;
  top: -20px;
}

.splash-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 22, 25, .88) 0%, rgba(14, 22, 25, .66) 43%, rgba(14, 22, 25, .22) 100%);
  z-index: 1;
}

.splash-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.splash-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1rem 5rem;
}

.splash-hero-copy {
  max-width: 660px;
}

.splash-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .78rem;
  color: #f2c166;
  margin-bottom: 1rem;
}

.splash-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: .95;
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.splash-hero p {
  font-size: 1.18rem;
  line-height: 1.65;
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
}

.splash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.splash-actions .btn {
  border-radius: 999px;
  padding: .8rem 1.25rem;
  font-weight: 700;
}

.splash-actions .btn-primary {
  background: #f2c166;
  border-color: #f2c166;
  color: #1f2428;
}

.splash-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, .72);
}

.splash-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 620px;
  margin-top: 2.5rem;
}

.splash-stat {
  border-top: 1px solid rgba(255, 255, 255, .35);
  padding-top: .85rem;
}

.splash-stat strong {
  display: block;
  font-size: 1.4rem;
}

.splash-stat span {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
}

.splash-section {
  padding: 4rem 1rem;
}

.splash-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.splash-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.splash-profile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-muted);
}

.splash-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.splash-profile div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem .75rem .75rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .72));
}

.splash-feature-band {
  background: var(--surface-muted);
  color: var(--text-color);
}

.splash-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.splash-feature {
  border-top: 3px solid var(--link-color);
  padding-top: 1rem;
}

.splash-feature h3 {
  color: var(--text-color);
  font-size: 1.15rem;
}

.splash-feature p {
  color: var(--muted-color) !important;
}

@media (max-width: 767.98px) {
  .splash-hero {
    min-height: calc(100vh - 56px);
  }

  .splash-hero-image {
    object-position: 58% center;
  }

  .splash-hero::after {
    background: linear-gradient(180deg, rgba(14, 22, 25, .78), rgba(14, 22, 25, .9));
  }

  .splash-hero-content {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .splash-stats,
  .splash-feature-grid {
    grid-template-columns: 1fr;
  }
}
