/* Phase 4 reusable public components. */
.bsc-phase4-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 7vw, 88px) 22px;
  background:
    radial-gradient(circle at 8% 15%, rgba(33, 175, 117, .24), transparent 34%),
    linear-gradient(130deg, var(--bsc-secondary), #123a3b 65%, #0b5d46);
  color: #fff;
}

.bsc-phase4-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
}

.bsc-phase4-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.bsc-phase4-cta h2,
.bsc-phase4-cta p {
  color: #fff !important;
}

.bsc-phase4-cta p:not(.bsc-eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.bsc-global-footer {
  background: #0d292d;
  color: rgba(255,255,255,.84);
  font-family: var(--bsc-body-font, Arial, sans-serif);
}

.bsc-footer-accent {
  height: 7px;
  background: linear-gradient(90deg, var(--bsc-primary), #19a873, var(--bsc-accent));
}

.bsc-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, .75fr));
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(52px, 7vw, 82px) 22px;
}

.bsc-global-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--bsc-heading-font, Georgia, serif);
  font-size: 20px;
}

.bsc-global-footer p,
.bsc-global-footer li,
.bsc-global-footer a {
  font-size: 15px;
  line-height: 1.7;
}

.bsc-global-footer a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.bsc-global-footer a:hover,
.bsc-global-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bsc-global-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bsc-global-footer li + li { margin-top: 9px; }

.bsc-footer-logo {
  width: min(100%, 340px);
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.bsc-footer-wordmark {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-size: 24px;
}

.bsc-footer-brand > p { max-width: 440px; }

.bsc-footer-button {
  display: inline-flex;
  margin-top: 15px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 8px;
  font-weight: 800;
}

.bsc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  background: #091f22;
}

.bsc-footer-bottom > .bsc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
}

.bsc-footer-bottom p { margin: 0; }
.bsc-footer-bottom ul { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 980px) {
  .bsc-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .bsc-phase4-cta-inner { grid-template-columns: 1fr; }
  .bsc-phase4-cta .bsc-button { width: 100%; }
  .bsc-footer-grid { grid-template-columns: 1fr; }
  .bsc-footer-bottom > .bsc-container { align-items: flex-start; flex-direction: column; }
}
