:root {
  --charcoal: #1F252D;
  --teal: #006F76;
  --slate: #8E959B;
  --soft-gray: #D9DEE2;
  --white: #FFFFFF;
  --paper: #F7F9FA;
  --line: #C9D1D7;
  --shadow: 0 18px 48px rgba(31, 37, 45, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--charcoal);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 111, 118, 0.28);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: #46505A;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  line-height: 1.1;
}

h1 {
  margin-bottom: 18px;
  font-size: 4rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  font-weight: 800;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(201, 209, 215, 0.72);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 300px;
  height: 68px;
  min-width: 0;
  color: var(--charcoal);
  text-decoration: none;
  overflow: hidden;
}

.brand:hover {
  color: var(--teal);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-menu a {
  color: var(--charcoal);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--teal);
}

.nav-menu .nav-cta {
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal);
  padding: 9px 15px;
}

.nav-menu .nav-cta:hover {
  background: var(--teal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 111, 118, 0.08), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, #F9FBFC 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 111, 118, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(142, 149, 155, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 74%);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 56px 0 48px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: 3.35rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1.22rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--charcoal);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.coordination-ecosystem {
  position: relative;
  width: min(900px, 100%);
}

.coordination-ecosystem p {
  margin-bottom: 8px;
  color: #64707A;
  font-size: 0.88rem;
  font-weight: 800;
}

.coordination-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 16px;
}

.coordination-rail::before {
  position: absolute;
  top: 22px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(0, 111, 118, 0.28);
  content: "";
}

.coordination-rail span {
  position: relative;
  display: grid;
  justify-items: center;
  color: var(--charcoal);
  padding: 20px 8px 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.coordination-rail span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 13px;
  height: 13px;
  transform: translateX(-50%);
  border: 3px solid #F9FBFC;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(0, 111, 118, 0.36);
  content: "";
}

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--paper);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.audience-card,
.program-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card {
  min-height: 260px;
  border-top: 3px solid rgba(0, 111, 118, 0.58);
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(0, 111, 118, 0.1);
  color: var(--teal);
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.programs-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #F4F8F9;
}

.program-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  border-color: rgba(0, 111, 118, 0.22);
  padding: 22px 34px 30px;
  box-shadow: 0 14px 34px rgba(31, 37, 45, 0.07);
}

.program-logo {
  width: min(430px, 100%);
  height: 70px;
  object-fit: contain;
  object-position: center;
  align-self: center;
  margin: 0 auto 14px;
}

.program-logo-resolve {
  width: min(470px, 100%);
}

.program-divider {
  width: min(360px, 100%);
  height: 28px;
  align-self: center;
  margin: 0 auto 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='28' viewBox='0 0 360 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 14h125l8-8 13 18 16-24 13 28 9-14h176' fill='none' stroke='%238E959B' stroke-width='2.25' stroke-linejoin='round' stroke-linecap='square' opacity='.68'/%3E%3Cpath d='M125 14l8-8 13 18 16-24 13 28 9-14' fill='none' stroke='%23006F76' stroke-width='2.5' stroke-linejoin='round' stroke-linecap='square'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 28px;
  opacity: 0.78;
}

.program-card p {
  margin-bottom: 20px;
}

.text-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
}

.resolve-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.resolve-intro {
  max-width: 860px;
}

.resolve-grid {
  margin-bottom: 24px;
}

.resolve-card {
  min-height: 220px;
  border-top: 4px solid var(--teal);
}

.resolve-card h3 {
  color: var(--teal);
}

.resolve-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 28px;
}

.resolve-callout h3 {
  margin-bottom: 10px;
}

.resolve-callout p {
  margin-bottom: 0;
}

.resolve-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.section-copy {
  border-left: 4px solid var(--teal);
  padding-left: 26px;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.audience-card {
  min-height: 205px;
  border-color: rgba(142, 149, 155, 0.38);
  padding: 24px;
}

.audience-card h3 {
  font-size: 1.04rem;
}

.contact-section {
  background: var(--charcoal);
  color: var(--white);
  padding: 58px 0;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-section h2 {
  max-width: 670px;
  margin-bottom: 12px;
}

.contact-section p {
  margin-bottom: 0;
  opacity: 0.92;
}

.contact-section .button-primary {
  flex: 0 0 auto;
  background: var(--teal);
  color: var(--white);
}

.contact-section .button-primary:hover {
  background: var(--white);
  color: var(--teal);
}

.contact-section .eyebrow {
  color: #7CD2D8;
}

.contact-section h2 {
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 38px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-brand img {
  width: 250px;
  height: 74px;
  object-fit: cover;
  object-position: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links a {
  color: var(--charcoal);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #64707A;
  font-size: 0.92rem;
}

.legal-main {
  padding: 70px 0 84px;
  background: var(--paper);
}

.legal-layout {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 48px;
}

.legal-layout h1 {
  margin-bottom: 8px;
  font-size: 3rem;
}

.legal-date {
  margin-bottom: 36px;
  color: #64707A;
  font-weight: 700;
}

.legal-layout section {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 26px;
}

.legal-layout h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.legal-layout p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .site-header.is-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    border-radius: 6px;
    padding: 12px 14px;
  }

  .nav-menu a:hover {
    background: var(--paper);
  }

  .nav-menu .nav-cta {
    border: 0;
    color: var(--charcoal);
  }

  .three-column,
  .four-column,
  .program-grid,
  .split-section,
  .resolve-callout {
    grid-template-columns: 1fr;
  }

  .info-card,
  .audience-card,
  .program-card {
    min-height: auto;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .resolve-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    width: min(218px, calc(100vw - 92px));
    height: 50px;
  }

  .hero-inner {
    padding: 42px 0 38px;
  }

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

  .hero-statement {
    font-size: 1.12rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

  .coordination-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .coordination-rail::before {
    display: none;
  }

  .coordination-rail span {
    padding-top: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .info-card,
  .audience-card,
  .program-card,
  .resolve-callout {
    padding: 22px;
  }

  .resolve-actions,
  .resolve-actions .button {
    width: 100%;
  }

  .program-logo {
    width: min(370px, 100%);
    height: 66px;
  }

  .program-logo-resolve {
    width: min(400px, 100%);
  }

  .program-divider {
    width: min(320px, 100%);
    margin-bottom: 16px;
  }

  .section-copy {
    border-left: 0;
    border-top: 4px solid var(--teal);
    padding-top: 22px;
    padding-left: 0;
  }

  .legal-main {
    padding: 42px 0 58px;
  }

  .legal-layout {
    padding: 28px 22px;
  }

  .legal-layout h1 {
    font-size: 2.25rem;
  }
}
