.pm-home-hero {
  display: block;
  --pm-home-hero-stage-height: 24rem;
  --pm-home-hero-card-height: 5.5rem;
  --pm-home-hero-cards-height: 25rem;
  --pm-home-hero-gap: 1rem;
  --pm-donate-accent: #00966f;
  --pm-donate-accent-hover: #008760;
  --pm-donate-accent-shadow: rgba(0, 150, 111, 0.14);
}

.pm-home-hero-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
  min-width: 0;
}

.pm-home-hero-rail {
  display: grid;
  gap: var(--pm-home-hero-gap);
  min-width: 0;
}

.pm-home-hero-copy-card,
.pm-home-hero-stage,
.pm-home-hero-island {
  min-height: var(--pm-home-hero-stage-height);
}

.pm-home-hero-copy-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
  height: auto;
}

.pm-home-hero-copy-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.25rem;
}

.pm-home-hero-copy-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    ". lead"
    "logo accent";
  align-items: end;
  column-gap: 1rem;
  row-gap: 0.1rem;
}

.pm-home-hero-copy-header--full {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.pm-home-hero-copy-logo {
  flex: 0 0 auto;
  grid-area: logo;
  align-self: end;
  height: auto;
  object-fit: contain;
}

.pm-home-hero-copy-logo--icon {
  width: auto;
  height: clamp(4.9rem, 9.4vw, 6.2rem);
  margin-bottom: 0.2rem;
}

.pm-home-hero-copy-logo--full {
  width: clamp(12.5rem, 31vw, 18.75rem);
  max-width: 100%;
  align-self: flex-start;
}

.pm-home-hero-heading-lead {
  grid-area: lead;
  color: #1e293b;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.pm-home-hero-heading-accent {
  grid-area: accent;
  margin: 0;
  color: #084f9e;
  font-size: 4.35rem;
  line-height: 0.78;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.pm-home-hero-copy-summary {
  max-width: 95%;
  color: rgba(15, 23, 42, 0.8);
  font-size: 1rem;
  line-height: 1.65;
}

.pm-home-hero-copy-summary-accent {
  color: #084f9e;
  font-weight: 600;
}

.pm-home-hero-copy-actions {
  width: 13.75rem;
}

.pm-home-hero-copy-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #084f9e;
  padding: 0.95rem 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.pm-home-hero-copy-button:hover {
  background: #063b76;
}

.pm-home-hero-copy-button--donation {
  background: var(--pm-donate-accent);
  box-shadow: 0 14px 34px var(--pm-donate-accent-shadow);
}

.pm-home-hero-copy-button--donation:hover {
  background: var(--pm-donate-accent-hover);
}

.pm-home-hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #0b1d31;
  height: var(--pm-home-hero-stage-height);
  width: 100%;
  min-width: 0;
}

.pm-home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.pm-home-hero-slide--active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.pm-home-hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.02);
  transition:
    transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
  will-change: transform, filter;
}

.pm-home-hero-slide--active .pm-home-hero-slide-image {
  transform: scale(1);
  filter: saturate(1) contrast(1);
}

.pm-home-hero-stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 27, 47, 0.92) 0%, rgba(8, 27, 47, 0.78) 38%, rgba(8, 27, 47, 0.38) 66%, rgba(8, 27, 47, 0.82) 100%);
}

.pm-home-hero-stage-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  color: #fff;
}

.pm-home-hero-stage-inner--bottom-only {
  justify-content: flex-end;
}

.pm-home-hero-stage-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.75rem;
}

.pm-home-hero-stage-nav-cluster {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem;
  backdrop-filter: blur(10px);
}

.pm-home-hero-nav {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: opacity 180ms ease, background-color 180ms ease;
}

.pm-home-hero-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.pm-home-hero-nav:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.pm-home-hero-stage-counter {
  min-width: 3.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pm-home-hero-stage-counter span {
  margin: 0 0.3rem;
  color: rgba(255, 255, 255, 0.32);
}

.pm-home-hero-stage-bottom {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.pm-home-hero-stage-bottom--animated {
  animation: pm-home-hero-stage-content-enter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pm-home-hero-stage-main {
  width: 100%;
  max-width: 31rem;
  min-width: 0;
}

.pm-home-hero-stage-eyebrow {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pm-home-hero-stage-title {
  margin-top: 0.75rem;
  color: #fff;
  font-size: 1.7rem;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.pm-home-hero-stage-summary {
  margin-top: 0.75rem;
  display: -webkit-box;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.pm-home-hero-stage-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  min-width: 0;
}

.pm-home-hero-stage-detail {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  backdrop-filter: blur(10px);
  overflow-wrap: anywhere;
}

.pm-home-hero-stage-detail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
}

.pm-home-hero-stage-actions {
  margin-top: 1.1rem;
}

.pm-home-hero-stage-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  padding: 0.8rem 1.1rem;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.pm-home-hero-stage-button--donation {
  background: var(--pm-donate-accent);
  color: #fff;
  box-shadow: 0 14px 34px var(--pm-donate-accent-shadow);
}

.pm-home-hero-stage-button--donation:hover {
  background: var(--pm-donate-accent-hover);
}

.pm-home-hero-stage-side {
  display: none;
}

.pm-home-hero-stage-side-card {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.14);
  padding: 1rem 1.05rem;
  box-shadow: 0 16px 38px rgba(8, 27, 47, 0.14);
  backdrop-filter: blur(18px);
}

.pm-home-hero-stage-side-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.pm-home-hero-stage-side-label,
.pm-home-hero-stage-side-meta-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pm-home-hero-stage-side-title {
  margin-top: 0.45rem;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.pm-home-hero-stage-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pm-home-hero-stage-side-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.85rem;
}

.pm-home-hero-stage-side-meta-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.pm-home-hero-cards {
  display: grid;
  gap: var(--pm-home-hero-gap);
  grid-auto-rows: var(--pm-home-hero-card-height);
}

.pm-home-hero-card {
  display: flex;
  align-items: center;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  min-height: var(--pm-home-hero-card-height);
  height: var(--pm-home-hero-card-height);
  overflow: hidden;
  padding: 1rem 1.1rem;
  text-align: left;
  text-decoration: none;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.pm-home-hero-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 56, 95, 0.18);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
}

[data-static-home-hero="true"] .pm-home-hero-card:hover {
  transform: none;
  border-color: rgba(203, 213, 225, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

[data-static-home-hero="true"] .pm-home-hero-card--active:hover {
  border-color: #084f9e;
  background: #084f9e;
  color: #fff;
  box-shadow: 0 24px 56px rgba(8, 79, 158, 0.24);
}

.pm-home-hero-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(8, 79, 158, 0.42);
  box-shadow: 0 0 0 3px rgba(8, 79, 158, 0.12), 0 22px 42px rgba(15, 23, 42, 0.08);
  outline: none;
}

.pm-home-hero-card--active {
  border-color: #084f9e;
  background: #084f9e;
  color: #fff;
  box-shadow: 0 24px 56px rgba(8, 79, 158, 0.24);
}

.pm-home-hero-card-main {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pm-home-hero-card-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(191, 219, 254, 0.8);
  border-radius: 999px;
  color: #084f9e;
  background: rgba(239, 246, 255, 1);
}

.pm-home-hero-card--active .pm-home-hero-card-icon {
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.pm-home-hero-card--donation,
.pm-home-hero-card--donation.pm-home-hero-card--active {
  border-color: var(--pm-donate-accent);
  background: var(--pm-donate-accent);
  color: #fff;
  box-shadow: 0 24px 56px var(--pm-donate-accent-shadow);
}

.pm-home-hero-card--donation:hover,
[data-static-home-hero="true"] .pm-home-hero-card--donation:hover,
[data-static-home-hero="true"] .pm-home-hero-card--donation.pm-home-hero-card--active:hover {
  transform: none;
  border-color: var(--pm-donate-accent-hover);
  background: var(--pm-donate-accent-hover);
  color: #fff;
  box-shadow: 0 24px 56px var(--pm-donate-accent-shadow);
}

.pm-home-hero-card--donation .pm-home-hero-card-icon,
.pm-home-hero-card--donation.pm-home-hero-card--active .pm-home-hero-card-icon {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.pm-home-hero-card-title {
  margin: 0;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

@media (max-width: 639px) {
  .pm-home-hero {
    --pm-home-hero-stage-height: 24rem;
  }

  .pm-home-hero-stage-inner {
    padding: 1rem;
  }

  .pm-home-hero-stage-main {
    max-width: calc(100vw - 4rem);
  }

  .pm-home-hero-stage-title {
    font-size: clamp(1.45rem, 8.6vw, 1.85rem);
    line-height: 0.98;
  }

  .pm-home-hero-stage-summary {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .pm-home-hero-stage-detail {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 0.48rem 0.7rem;
    font-size: 0.76rem;
  }
}

@keyframes pm-home-hero-stage-content-enter {
  0% {
    transform: translateY(16px) scale(0.992);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 640px) {
  .pm-home-hero {
    --pm-home-hero-stage-height: 26rem;
    --pm-home-hero-cards-height: 12rem;
  }

  .pm-home-hero-copy-card,
  .pm-home-hero-stage,
  .pm-home-hero-island {
    min-height: var(--pm-home-hero-stage-height);
  }

  .pm-home-hero-copy-content {
    padding: 2.5rem 1.5rem;
  }

  .pm-home-hero-copy-header {
    gap: 1.1rem;
  }

  .pm-home-hero-copy-header--full {
    gap: 0.45rem;
  }

  .pm-home-hero-copy-logo--icon {
    height: clamp(5.2rem, 9.8vw, 6.5rem);
  }

  .pm-home-hero-copy-logo--full {
    width: clamp(13.75rem, 33vw, 20rem);
  }

  .pm-home-hero-heading-lead {
    font-size: 2.2rem;
  }

  .pm-home-hero-heading-accent {
    font-size: 5rem;
  }

  .pm-home-hero-stage-inner {
    padding: 1.1rem;
  }

  .pm-home-hero-stage-button {
    width: auto;
  }

  .pm-home-hero-stage-title {
    font-size: 2.05rem;
  }

  .pm-home-hero-stage-summary {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .pm-home-hero-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pm-home-hero {
    --pm-home-hero-stage-height: 28rem;
    --pm-home-hero-cards-height: 12rem;
  }

  .pm-home-hero-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    align-items: start;
  }

  .alumni-story-hero-layout {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  }

  .pm-home-hero-copy-card,
  .pm-home-hero-stage,
  .pm-home-hero-island {
    min-height: var(--pm-home-hero-stage-height);
  }

  .pm-home-hero-copy-card {
    align-self: start;
    border-radius: 1.75rem;
    height: calc(
      var(--pm-home-hero-stage-height) +
      var(--pm-home-hero-gap) +
      var(--pm-home-hero-cards-height)
    );
    min-height: calc(
      var(--pm-home-hero-stage-height) +
      var(--pm-home-hero-gap) +
      var(--pm-home-hero-cards-height)
    );
  }

  .pm-home-hero-copy-content {
    padding: 4rem 2rem;
  }

  .pm-home-hero-copy-header {
    gap: 1.15rem;
  }

  .pm-home-hero-copy-header--full {
    gap: 0.5rem;
  }

  .pm-home-hero-copy-logo--icon {
    height: clamp(5.1rem, 7.4vw, 6.4rem);
  }

  .pm-home-hero-copy-logo--full {
    width: clamp(14rem, 21vw, 18.75rem);
  }

  .pm-home-hero-heading-lead {
    font-size: 2.1875rem;
  }

  .pm-home-hero-heading-accent {
    margin-bottom: 0;
    font-size: 5.1875rem;
  }

  .pm-home-hero-copy-summary {
    max-width: 95%;
  }

  .pm-home-hero-copy-actions {
    padding-bottom: 1.25rem;
  }

  .pm-home-hero-stage {
    border-radius: 1.75rem;
  }

  .pm-home-hero-stage-inner {
    padding: 1.25rem;
  }

  .pm-home-hero-rail {
    grid-template-rows: var(--pm-home-hero-stage-height) auto;
  }

  [data-home-hero-cards="0"] .pm-home-hero-copy-card {
    height: var(--pm-home-hero-stage-height);
    min-height: var(--pm-home-hero-stage-height);
  }

  [data-home-hero-cards="0"] .pm-home-hero-rail {
    grid-template-rows: var(--pm-home-hero-stage-height);
  }
}

@media (min-width: 1280px) {
  .pm-home-hero {
    --pm-home-hero-cards-height: var(--pm-home-hero-card-height);
  }

  .pm-home-hero-stage-bottom {
    grid-template-columns: minmax(0, 1fr) 18rem;
  }

  .pm-home-hero-stage-side {
    display: block;
  }

  .pm-home-hero-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (min-width: 1536px) {
  .pm-home-hero {
    display: block;
    --pm-home-hero-stage-height: 31rem;
    --pm-home-hero-cards-height: var(--pm-home-hero-card-height);
  }

  .pm-home-hero-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: 1rem;
  }

  .alumni-story-hero-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  }

  .pm-home-hero-stage,
  .pm-home-hero-island {
    min-height: var(--pm-home-hero-stage-height);
  }

  .pm-home-hero-copy-card,
  .pm-home-hero-stage {
    border-radius: 2rem;
  }

  .pm-home-hero-rail {
    grid-template-rows: var(--pm-home-hero-stage-height) auto;
  }

  [data-home-hero-cards="0"] .pm-home-hero-copy-card {
    height: var(--pm-home-hero-stage-height);
    min-height: var(--pm-home-hero-stage-height);
  }

  [data-home-hero-cards="0"] .pm-home-hero-rail {
    grid-template-rows: var(--pm-home-hero-stage-height);
  }

  .pm-home-hero-copy-content {
    padding: 5rem 3rem;
  }

  .pm-home-hero-copy-header {
    gap: 1.35rem;
  }

  .pm-home-hero-copy-header--full {
    gap: 0.6rem;
  }

  .pm-home-hero-copy-logo--icon {
    height: clamp(5.8rem, 6.5vw, 7.2rem);
  }

  .pm-home-hero-copy-logo--full {
    width: clamp(15.5rem, 18vw, 20.5rem);
  }

  .pm-home-hero-heading-lead {
    font-size: 2.875rem;
  }

  .pm-home-hero-heading-accent {
    margin-bottom: 0;
    font-size: 7rem;
  }

  .pm-home-hero-copy-summary {
    max-width: 70%;
    font-size: 1.125rem;
  }

  .pm-home-hero-copy-actions {
    width: 15.5rem;
  }

  .pm-home-hero-copy-button {
    font-size: 1.125rem;
  }

  .pm-home-hero-stage-inner {
    padding: 1.5rem;
  }

  .pm-home-hero-stage-pill {
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
  }

  .pm-home-hero-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .pm-home-hero-stage-title {
    font-size: 2.45rem;
  }

  .pm-home-hero-stage-detail {
    padding: 0.55rem 0.95rem;
  }

  .pm-home-hero-stage-side-card {
    padding: 1.15rem 1.2rem;
  }

  .pm-home-hero-stage-side-title {
    font-size: 1.5rem;
  }

  .pm-home-hero-stage-side-meta-text {
    font-size: 0.95rem;
  }

  .pm-home-hero-stage-summary {
    font-size: 1rem;
  }
}

.public-step-rail {
  position: relative;
  width: 3.2rem;
  flex: 1 1 auto;
  min-height: 10rem;
}

.public-step-rail__line {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(47, 95, 147, 0.34), rgba(47, 95, 147, 0.08));
}

.public-step-rail__flow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 5.5rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(47, 95, 147, 0), rgba(47, 95, 147, 0.76), rgba(47, 95, 147, 0));
  box-shadow: 0 0 14px rgba(47, 95, 147, 0.16);
  animation: public-step-rail-flow 2.8s ease-in-out infinite;
}

.public-step-rail__arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.8rem;
  height: 0.8rem;
  transform: translate(-50%, 1px) rotate(45deg);
  border-right: 1.5px solid rgba(47, 95, 147, 0.82);
  border-bottom: 1.5px solid rgba(47, 95, 147, 0.82);
  animation: public-step-rail-pulse 2.8s ease-in-out infinite;
}

.public-step-rail__finish {
  position: absolute;
  left: 50%;
  bottom: -0.1rem;
  width: 0.95rem;
  height: 0.95rem;
  transform: translateX(-50%) rotate(45deg);
  border: 1.5px solid rgba(47, 95, 147, 0.82);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.public-step-rail__finish::before,
.public-step-rail__finish::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.1rem;
  height: 1px;
  background: rgba(47, 95, 147, 0.46);
}

.public-step-rail__finish::before {
  right: calc(100% + 0.18rem);
}

.public-step-rail__finish::after {
  left: calc(100% + 0.18rem);
}

.public-territory-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1d31 0%, #11253d 100%);
}

.public-territory-stage::before {
  content: none;
}

.public-territory-stage::after {
  content: "";
  position: absolute;
  inset: -15% auto -15% 42%;
  width: 7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  transform: rotate(12deg);
  animation: public-territory-scan 9s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.75;
}

.public-territory-chip {
  animation: public-territory-chip-float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: no-preference) {
  .public-shell [data-section-enter] {
    animation: public-fade-up 520ms ease both;
  }

  .public-shell [data-section-enter="2"] {
    animation-delay: 80ms;
  }

  .public-shell [data-section-enter="3"] {
    animation-delay: 140ms;
  }

  .public-shell [data-section-enter="4"] {
    animation-delay: 200ms;
  }
}

@media (max-width: 960px) {
  .public-shell::before,
  .public-shell::after {
    display: none;
  }

}

@keyframes public-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes public-step-rail-flow {
  0% {
    top: 0;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    top: calc(100% - 5.5rem);
    opacity: 0;
  }
}

@keyframes public-step-rail-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translate(-50%, 1px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, 3px) rotate(45deg);
  }
}

@keyframes public-territory-glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(1.5rem, 0.75rem, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes public-territory-scan {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(12deg);
    opacity: 0;
  }

  20% {
    opacity: 0.38;
  }

  55% {
    transform: translate3d(3.5rem, 0, 0) rotate(12deg);
    opacity: 0.54;
  }

  85% {
    opacity: 0.16;
  }
}

@keyframes public-territory-chip-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -5px, 0);
  }
}

.public-section-intro-grid {
  display: grid;
  gap: 1.75rem;
}

.public-section-intro-heading {
  width: 100%;
  margin: 0;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.public-section-intro-summary {
  max-width: 44rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 2rem;
}

.public-contour-introduction-grid {
  display: grid;
  grid-template-areas:
    "heading"
    "copy";
  gap: 1.75rem;
  padding-block: 1.75rem;
  border-block: 1px solid #e2e8f0;
}

.public-contour-introduction-heading {
  grid-area: heading;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.public-contour-introduction-title {
  width: 100%;
  margin: 1rem 0 0;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.public-contour-introduction-copy {
  grid-area: copy;
  display: grid;
  align-content: center;
  gap: 1.25rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .public-contour-introduction-grid {
    padding-block: 2.25rem;
  }

  .public-contour-introduction-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 640px) {
  .public-section-intro-heading {
    font-size: 2.8rem;
  }
}

@media (min-width: 1280px) {
  .public-section-intro-grid {
    grid-template-columns: minmax(24rem, 0.76fr) minmax(0, 1.24fr);
    align-items: end;
    gap: 3rem;
  }

  .public-section-intro-heading {
    font-size: 3.15rem;
  }

  .public-contour-introduction-grid {
    align-items: stretch;
    gap: 0;
    padding-block: 2.75rem;
  }

  .public-contour-introduction-grid.is-heading-left {
    grid-template-areas: "heading copy";
    grid-template-columns: minmax(24rem, 0.76fr) minmax(0, 1.24fr);
  }

  .public-contour-introduction-grid.is-heading-left .public-contour-introduction-heading {
    padding-right: 2.5rem;
  }

  .public-contour-introduction-grid.is-heading-left .public-contour-introduction-copy {
    padding-left: 2.5rem;
    border-left: 1px solid #e2e8f0;
  }

  .public-contour-introduction-title {
    font-size: 3.15rem;
  }
}
