.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 2.5rem;
  isolation: isolate;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: -2rem -1rem auto auto;
  width: min(34rem, 52vw);
  aspect-ratio: 1;
  background-image: url("logo_no-background.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

.landing-intro {
  font-size: 1.1rem;
  max-width: 52rem;
  position: relative;
  z-index: 1;
}

.sd-card.landing-card {
  border: 1px solid var(--pst-color-border, #d0d7de);
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.sd-card.landing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: var(--pst-color-primary, #005bbb);
}

.sd-card.landing-card .sd-card-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.sd-card.landing-card p:last-child {
  margin-bottom: 0;
}

.landing-kicker {
  color: var(--pst-color-primary, #005bbb);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.navbar-brand img {
  max-height: 2.5rem;
  width: auto;
}

@media (max-width: 900px) {
  .landing-hero {
    padding-bottom: 1.5rem;
  }

  .landing-hero::after {
    inset: 0 auto auto 50%;
    width: min(24rem, 80vw);
    transform: translateX(-50%);
    opacity: 0.1;
  }
}
