* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page-social-program {
  margin: 0;
  background: var(--brand-gray-soft);
  color: var(--brand-black);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(8, 26, 47, 0.96);
  border-bottom: 1px solid rgba(120, 168, 210, 0.28);
  backdrop-filter: blur(16px);
}

.site-nav,
.hero-grid,
.section,
.footer-content {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--brand-white);
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  color: #c3ced8;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-white);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.25rem;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 8px;
  color: var(--brand-white);
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--brand-navy-soft);
  box-shadow: 0 12px 28px rgba(8, 26, 47, 0.18);
}

.button--compact {
  min-height: 42px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
}

.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-navy);
  color: var(--brand-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 111, 177, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 177, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 5rem;
  padding-block: 7rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9dc5aa;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-description {
  max-width: 750px;
  margin: 1.75rem 0 0;
  color: #c3ced8;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.program-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0 0;
}

.program-facts div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.program-facts dt {
  color: var(--brand-white);
  font-size: 1.35rem;
  font-weight: 800;
}

.program-facts dd {
  margin: 0.2rem 0 0;
  color: #94a2b0;
  font-size: 0.82rem;
}

.hero-panel {
  padding: 2rem;
  background: rgba(16, 42, 70, 0.92);
  border: 1px solid rgba(120, 168, 210, 0.4);
  border-radius: 18px 2px 18px 2px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.panel-label {
  color: #e2c365;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0.65rem 0 1.4rem;
  font-size: 1.8rem;
}

.hero-panel ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  gap: 0.8rem;
  color: #c3ced8;
}

.hero-panel li i {
  margin-top: 0.25rem;
  color: #82ad91;
}

.section {
  padding-block: 7rem;
}

.section--white {
  width: 100%;
  padding-inline: max(1.5rem, calc((100% - 1180px) / 2));
  background: var(--brand-white);
}

.section--green {
  width: 100%;
  padding-inline: max(1.5rem, calc((100% - 1180px) / 2));
  background: var(--brand-green-soft);
}

.section--navy {
  width: 100%;
  padding-inline: max(1.5rem, calc((100% - 1180px) / 2));
  background: var(--brand-navy);
  color: var(--brand-white);
}

.section--gray {
  width: 100%;
  padding-inline: max(1.5rem, calc((100% - 1180px) / 2));
  background: var(--brand-gray-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-heading h2,
.partnership-panel h2 {
  margin: 0;
  color: var(--brand-black);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.partnership-panel p {
  margin: 1.25rem 0 0;
  color: var(--brand-gray);
}

.section-heading--light h2 {
  color: var(--brand-white);
}

.section-heading--light > p:last-child {
  color: #b7c4d0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.platform-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: var(--brand-gray-soft);
  border: 1px solid var(--brand-border);
  border-top: 5px solid var(--brand-blue);
  border-radius: 4px 4px 18px 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card--accent {
  border-top-color: var(--brand-green);
  border-radius: 4px 4px 4px 18px;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(8, 26, 47, 0.12);
}

.platform-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--brand-blue-soft);
  border: 1px solid #a7bdcf;
  border-radius: 12px;
  color: var(--brand-blue);
  font-size: 1.5rem;
}

.platform-label {
  margin: 1.6rem 0 0.35rem;
  color: var(--brand-green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.platform-card > p:not(.platform-label) {
  color: var(--brand-gray);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.4rem 0.75rem;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  color: var(--brand-gray-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--brand-blue);
  font-weight: 800;
}

.text-link:hover {
  color: var(--brand-navy);
}

.audience-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-card {
  padding: 1.75rem;
  background: var(--brand-white);
  border: 1px solid rgba(63, 114, 84, 0.28);
  border-radius: 14px 2px 14px 2px;
}

.audience-card i {
  color: var(--brand-green);
  font-size: 1.6rem;
}

.audience-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  color: var(--brand-gray);
  font-size: 0.9rem;
}

.outcome-grid article {
  padding: 1.7rem;
  background: var(--brand-navy-soft);
  border: 1px solid #31516d;
  border-radius: 4px;
}

.outcome-grid span {
  color: #e2c365;
  font-size: 0.76rem;
  font-weight: 800;
}

.outcome-grid h3 {
  margin: 0.8rem 0 0.45rem;
}

.outcome-grid p {
  margin: 0;
  color: #b7c4d0;
  font-size: 0.88rem;
}

.partnership-panel {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 4rem;
  padding: 3.5rem;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-left: 6px solid var(--brand-blue);
  box-shadow: 0 18px 48px rgba(8, 26, 47, 0.08);
}

.partnership-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

footer {
  background: var(--brand-black);
  border-top: 4px solid var(--brand-blue);
  color: #94a2b0;
}

.footer-content {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.82rem;
}

.footer-content div {
  display: flex;
  gap: 1.5rem;
  color: #c3ced8;
  font-weight: 700;
}

.page-social-program.motion-ready .reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.page-social-program.motion-ready .reveal-section.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 5rem;
  }

  .platform-grid,
  .partnership-panel {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-nav,
  .hero-grid,
  .section,
  .footer-content {
    width: min(100% - 2rem, 1180px);
  }

  .brand span,
  .site-nav > .button {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .program-facts,
  .audience-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 5rem;
  }

  .section--white,
  .section--green,
  .section--navy,
  .section--gray {
    width: 100%;
    padding-inline: 1rem;
  }

  .platform-card,
  .partnership-panel {
    padding: 1.5rem;
  }

  .footer-content {
    min-height: 150px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .page-social-program.motion-ready .reveal-section {
    opacity: 1;
    transform: none;
  }
}
