@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  color-scheme: only light;
  --ink: #202925;
  --cream: #f4f1ea;
  --mint: #bdcec4;
  --pink: #cbaeb4;
  --blue: #aebfd3;
  --yellow: #d4c28f;
  --lavender: #b8b2c7;
  --white: #fbfaf6;
  --header-bg: #fbfaf6;
  --utility-light: #fffdfa;
  --nav-blue: #e4eaf0;
  --accent: #7896b8;
  --header-desktop-inset: 34px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--cream);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans",Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.65;
}
.utility-bar {
  position: relative;
  height: 42px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  padding: 0 6vw;
  background: var(--utility-light);
}
.utility-bar:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 40%;
  pointer-events: none;
  background: linear-gradient(90deg,transparent 0%,#c8c9c8 37%,#77797a 70%,#3d4041 100%);
}
.utility-links {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
}
.utility-links a {
  min-width: 112px;
  padding: 7px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  background: rgba(255,255,255,.92);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  transition: color .25s,background-color .25s,box-shadow .25s;
}
.utility-links a:hover,.utility-links a:focus-visible {
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(32,41,37,.14);
  box-shadow: 0 5px 16px rgba(32,41,37,.045);
  backdrop-filter: blur(12px);
}
.header-shell {
  min-height: 138px;
  display: grid;
  grid-template-columns: max-content minmax(620px,1fr);
  align-items: center;
  gap: clamp(28px,3vw,56px);
  padding: 18px 6vw 18px var(--header-desktop-inset);
  background: var(--header-bg);
}
.brand {
  --brand-text-size: clamp(40px,2.4vw,52px);
  --brand-line-gap: 8px;
  --brand-logo-height: calc(var(--brand-text-size) * 2 + var(--brand-line-gap));
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: calc(var(--brand-logo-height) * 300 / 271);
  height: var(--brand-logo-height);
  flex: none;
  object-fit: contain;
  object-position: center;
}
.brand span {
  display: flex;
  flex-direction: column;
  gap: var(--brand-line-gap);
  line-height: 1;
  white-space: nowrap;
}
.brand strong {
  font-size: var(--brand-text-size);
  font-weight: 500;
  letter-spacing: -.04em;
}
.brand small {
  font-size: var(--brand-text-size);
  font-weight: 500;
  letter-spacing: -.04em;
  margin-top: 0;
}
/* Align the visible lettering, not the font's empty ascender/descender space,
   with the full logo. Keep the existing header height and compact branding. */
@media(min-width:1081px) {
  .brand span {
    transform: translateY(calc(var(--brand-text-size) * -.1));
  }
  .brand strong,.brand small {
    font-size: calc(var(--brand-text-size) * 1.06);
    line-height: var(--brand-text-size);
  }
}
.navigation-stack {
  width: min(100%,850px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  justify-self: end;
  align-self: center;
}
.primary-nav,.secondary-nav {
  width: 100%;
  max-width: none;
  min-height: 46px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.primary-nav {
  width: calc(100% - 8px);
  align-self: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 1px;
  font-size: 13px;
  font-weight: 500;
}
.primary-nav>a,.primary-nav>.nav-dropdown>a {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 0;
  line-height: 1;
  white-space: nowrap;
  transition: color .25s,text-shadow .25s;
}
.primary-nav>a:not(.enroll-button):after,.primary-nav>.nav-dropdown>a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transition: right .25s;
}
.primary-nav>a:hover:not(.enroll-button),.primary-nav>.nav-dropdown:hover>a {
  color: #405a73;
  text-shadow: 0 0 12px rgba(120,150,184,.24);
}
.primary-nav>a:hover:not(.enroll-button):after,.primary-nav>.nav-dropdown:hover>a:after,.primary-nav>a.active:after {
  right: 0;
}
.primary-nav a.active {
  color: #4d6276;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown>a span {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex: 0 0 8px;
  margin: 0 0 4px 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  font-size: 0;
  line-height: 0;
  transform: rotate(45deg);
}
.enroll-button {
  min-height: 42px!important;
  padding: 0 19px!important;
  border-radius: 4px;
  background: #3d5872;
  color: #fff!important;
  font-size: 14px;
  line-height: 1;
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0);
  transition: background-color .25s,box-shadow .25s!important;
}
.enroll-button:hover,.enroll-button:focus-visible {
  background: #526f8c;
  color: #eef0ed!important;
  box-shadow: inset 0 0 18px rgba(255,255,255,.23);
}
.secondary-nav {
  justify-content: space-between;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(89,111,131,.12);
  border-radius: 7px;
  background: var(--nav-blue);
  box-shadow: 0 2px 7px rgba(53,73,91,.09);
  font-size: 13px;
}
.secondary-nav>a,.secondary-nav>.nav-dropdown {
  height: 44px;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  text-align: center;
  transition: color .25s,background-color .25s,box-shadow .25s;
}
.secondary-nav>a,.secondary-nav>.nav-dropdown>a {
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
  transition: color .25s,background-color .25s,box-shadow .25s;
}
.secondary-nav>a+.nav-dropdown,.secondary-nav>.nav-dropdown+a,.secondary-nav>.nav-dropdown+.nav-dropdown {
  border-left: 1px solid #bcc7d1;
}
.secondary-nav>a:hover {
  color: #405a73;
  background: rgba(255,255,255,.52);
  box-shadow: inset 0 0 18px rgba(255,255,255,.5);
}
.secondary-nav>.nav-dropdown:hover,.secondary-nav>.nav-dropdown:focus-within {
  color: #405a73;
  background: rgba(255,255,255,.52);
  box-shadow: inset 0 0 18px rgba(255,255,255,.5);
}
.secondary-nav>.nav-dropdown:hover>a,.secondary-nav>.nav-dropdown:focus-within>a {
  width: 100%;
  color: inherit;
  background: transparent;
  box-shadow: none;
}
.dropdown-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 8px);
  left: 50%;
  width: 220px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(32,41,37,.18);
  border-radius: 7px;
  background: #fbfaf6;
  box-shadow: 0 16px 35px rgba(32,41,37,.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s,visibility .2s;
}
.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  border-radius: 4px;
  transition: color .2s,background-color .2s;
}
.dropdown-menu a:hover,.dropdown-menu a:focus-visible {
  color: #405a73;
  background: #edf1f3;
  box-shadow: inset 3px 0 0 var(--accent);
}
.mobile-actions {
  display: none;
}
.mobile-nav {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: color .25s,background-color .25s,box-shadow .25s;
}
.button:hover,.button:focus-visible {
  box-shadow: inset 0 0 18px rgba(255,255,255,.2);
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: #394740;
}
.button-secondary {
  background: var(--blue);
  color: var(--ink);
}
.button-secondary:hover,.button-secondary:focus-visible {
  background: #91a9c3;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
}
.hero-copy {
  grid-column: 2;
  grid-row: 1;
  padding: 88px 6vw 58px;
}
.hero-media {
  grid-column: 1;
  grid-row: 1;
  min-height: 620px;
  padding: 34px;
  background: #ccd4d8;
}
.video-frame {
  width: 100%;
  height: 100%;
  min-height: 552px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 22px 55px rgba(32,41,37,.18);
}
.video-frame iframe {
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  margin: -1px 0;
  border: 0;
  background: transparent;
}
.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
h1,h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .98;
}
h1 {
  max-width: 780px;
  font-size: clamp(52px,5vw,82px);
  line-height: 1.01;
}
h1 em,h2 em {
  font-family: "DM Sans",Arial,sans-serif;
  font-style: normal;
  font-weight: 650;
  letter-spacing: -.02em;
  color: #526c84;
}
.hero-intro {
  max-width: 570px;
  margin: 32px 0;
  font-size: 18px;
  color: #526159;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(23,34,29,.3);
  padding-bottom: 5px;
  transition: color .2s,text-shadow .2s;
}
.text-link:hover {
  color: #405a73;
  text-shadow: 0 0 12px rgba(120,150,184,.24);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 18px;
  margin-top: 60px;
}
.trust-row div {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid rgba(23,34,29,.22);
}
.trust-row strong {
  font-family: "DM Sans",Arial,sans-serif;
  font-style: normal;
  font-weight: 650;
  font-size: 23px;
  color: #526c84;
}
.trust-row span {
  margin-top: 4px;
  font-size: 12px;
  color: #657169;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.marquee {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  padding: 18px;
  overflow: hidden;
  background: #c79eaa;
  text-transform: uppercase;
  letter-spacing: .14em;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}
.marquee i {
  font-style: normal;
}
.section {
  padding: 120px 6vw;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}
.section-heading h2,.why h2,.cta h2 {
  font-size: clamp(48px,5.5vw,82px);
}
.section-heading>p {
  max-width: 440px;
  margin: 0 0 4px;
  color: #5f6b64;
  font-size: 16px;
}
.programs {
  background: var(--white);
}
.programs-title {
  color: var(--ink);
}
.program-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.program-grid .program-card {
  flex: 1 1 calc(20% - 12px);
  max-width: calc(20% - 10px);
  min-width: 190px;
}
.program-card {
  min-height: 400px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  transition: background-color .25s,box-shadow .25s;
}
.program-card>div:last-child {
  display: grid;
  grid-template-rows: auto 100px minmax(104px,auto);
  gap: 0;
  align-content: end;
}
.program-card:hover {
  box-shadow: inset 0 0 0 1px rgba(32,41,37,.25),inset 0 0 36px rgba(255,255,255,.18);
}
.pink {
  background: #dcc5ca;
}
.blue {
  background: #c4d1df;
}
.yellow {
  background: #e2d5ae;
}
.mint {
  background: #d2e0d8;
}
.lavender {
  background: #cec9d9;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.card-top span:last-child {
  font-size: 24px;
}
.pill {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  text-align: center;
  margin: 0 0 28px;
  padding: 6px 11px;
  border: 1px solid rgba(23,34,29,.55);
  border-radius: 50px;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.program-card h3 {
  min-height: 0;
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.program-card>div>p:last-child {
  min-height: 0;
  margin: 0;
  color: #2f3a34;
  font-size: 14px;
}
.button-outline {
  border: 1px solid var(--ink);
  margin-top: 38px;
}
.button-outline:hover {
  color: #fff;
  background: #4d5d55;
}
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: #e7e9e5;
}
.why-visual {
  position: relative;
  min-height: 740px;
  background: #dce4e1;
  overflow: hidden;
}
.why-photo,.why-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.why-photo img {
  display: block;
  object-fit: cover;
  object-position: center 44%;
}
.quote-card {
  position: absolute;
  z-index: 2;
  width: 72%;
  left: 14%;
  top: 8%;
  padding: clamp(16px,1.4vw,20px);
  background: var(--white);
  transform: rotate(-4deg);
  box-shadow: 0 18px 60px rgba(23,34,29,.12);
}
.quote-card span {
  font-family: Arial,sans-serif;
  font-size: 75px;
  line-height: .5;
  color: #755661;
}
.quote-card p {
  margin: 0;
  font-family: "DM Sans",Arial,sans-serif;
  font-size: clamp(20px,2vw,29px);
  line-height: 1.3;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}
/* Leave room for all three unbroken lines before the photo stacks full-width. */
@media(min-width:901px) and (max-width:1000px) {
  .quote-card p {
    font-size: clamp(18px,2vw,20px);
  }
}
.why-heading {
  display: flex;
  flex-direction: column;
  font-size: clamp(42px,4.4vw,82px)!important;
}
.why-heading-line {
  display: flex;
  gap: .22em;
  white-space: nowrap;
}
.ribbon {
  position: absolute;
  left: -7%;
  bottom: 10%;
  z-index: 3;
  width: 115%;
  padding: 16px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  transform: rotate(7deg);
}
.why-copy {
  padding: 55px 0;
}
.why-copy .lead {
  max-width: 580px;
  margin: 35px 0 45px;
  font-size: 17px;
  color: #526159;
}
.why-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-copy li {
  display: grid;
  grid-template-columns: 1fr;
  padding: 22px 0;
  border-top: 1px solid rgba(23,34,29,.2);
}
.why-copy strong {
  font-size: 17px;
}
.why-copy li p {
  margin: 7px 0 0;
  font-size: 13px;
  color: #46524b;
}
.compact {
  margin-bottom: 35px;
}
.experience-list {
  border-top: 1px solid var(--ink);
}
.experience-list a {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr 40px;
  align-items: center;
  gap: 20px;
  min-height: 105px;
  border-bottom: 1px solid rgba(23,34,29,.35);
  transition: color .2s,background .2s,box-shadow .2s;
}
.experience-list a:hover {
  color: #405a73;
  background: var(--white);
  box-shadow: inset 4px 0 0 var(--accent);
}
.experience-list a>span:first-child {
  font-size: 12px;
}
.experience-list strong {
  font-size: 26px;
  letter-spacing: -.03em;
}
.experience-list a>span:nth-child(3) {
  color: #46524b;
  font-size: 13px;
}
.experience-list b {
  font-size: 22px;
  text-align: right;
}
.cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  background: #665c68;
  color: var(--white);
}
.cta h2 {
  max-width: 900px;
}
.cta p:not(.eyebrow) {
  margin-bottom: 0;
  opacity: .95;
}
.button-light {
  background: var(--white);
  color: var(--ink);
  min-width: 190px;
}
.button-light:hover {
  background: #e3e7e5;
  color: #273a32;
}
footer {
  display: grid;
  grid-template-columns: auto 1fr minmax(190px,230px) minmax(175px,210px) minmax(100px,130px);
  grid-template-areas: "brand . contact address connect" "divider divider divider divider divider" "copyright copyright copyright credit credit";
  column-gap: clamp(22px,3vw,50px);
  row-gap: 0;
  padding: 34px 6vw 18px;
  background: var(--ink);
  color: var(--white);
  text-align: left;
}
.footer-brand {
  grid-area: brand;
  align-self: start;
  justify-self: start;
}
.footer-brand img {
  display: block;
  width: 82px;
  filter: invert(1);
}
.footer-contact {
  grid-area: contact;
}
.footer-address-block {
  grid-area: address;
}
.footer-connect {
  grid-area: connect;
}
footer h3 {
  margin: 0 0 9px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--yellow);
}
footer>div:not(.footer-brand):not(.footer-divider) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
}
footer>div.footer-connect {
  align-items: flex-end;
  text-align: right;
}
footer>div p {
  margin: 0;
  color: #aab3ad;
}
footer>div a {
  color: #d1d8d4;
  overflow-wrap: anywhere;
  transition: color .2s;
}
footer>div a:hover,footer>div a:focus-visible {
  color: var(--yellow);
}
.footer-address {
  line-height: 1.5;
}
.footer-divider {
  grid-area: divider;
  height: 1px;
  margin: 18px 0 12px;
  background: #344139;
}
.copyright,.site-credit {
  margin: 0;
  color: #b9c3bc;
  font-size: 12px;
}
.copyright {
  grid-area: copyright;
}
.site-credit {
  grid-area: credit;
  justify-self: end;
  text-align: right;
}
.site-credit a {
  color: #d1d8d4;
  transition: color .2s;
}
.site-credit a:hover,.site-credit a:focus-visible {
  color: var(--yellow);
}
@media(max-width:1180px) {
  .header-shell {
    grid-template-columns: 296px 1fr;
    gap: 22px;
  }
  .brand {
    --brand-text-size: 28px;
  }
  .navigation-stack {
    width: min(100%,780px);
  }
  .primary-nav {
    gap: 10px;
    font-size: 12px;
  }
  .secondary-nav {
    font-size: 12px;
  }
  .secondary-nav>a,.secondary-nav>.nav-dropdown>a {
    padding: 0 8px;
  }
  .program-grid .program-card {
    flex-basis: calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  .program-grid .program-card:last-child {
    flex-basis: 100%;
    max-width: 100%;
  }
  .trust-row {
    gap: 10px;
  }
  .trust-row strong {
    font-size: 21px;
  }
  .why {
    gap: 5vw;
  }
}
@media(max-width:1180px) {
  .programs>.button-outline {
    width: max-content;
    display: flex;
    margin: 38px auto 0;
  }
}
@media(max-width:900px) {
  .utility-bar {
    height: 38px;
    padding: 0 20px;
  }
  .utility-links a {
    min-width: auto;
    padding: 5px 13px;
    font-size: 12px;
  }
  .header-shell {
    position: relative;
    min-height: 82px;
    display: flex;
    padding: 10px 20px;
  }
  .navigation-stack {
    display: none;
  }
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }
  .mobile-quick-enroll {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 4px;
    background: #3d5872;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: background-color .2s,box-shadow .2s;
  }
  .mobile-quick-enroll:hover {
    background: #526f8c;
    color: #eef0ed;
    box-shadow: inset 0 0 16px rgba(255,255,255,.2);
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav>summary {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid #43554c;
    border-radius: 4px;
    background: #43554c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    list-style: none;
    transition: color .2s,background-color .2s,box-shadow .2s;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav>summary:hover,.mobile-nav[open]>summary {
    background: #2f3e37;
    box-shadow: inset 0 0 16px rgba(255,255,255,.14);
  }
  .menu-icon,.menu-icon:before,.menu-icon:after {
    width: 16px;
    height: 1.5px;
    display: block;
    background: currentColor;
  }
  .menu-icon {
    position: relative;
  }
  .menu-icon:before,.menu-icon:after {
    content: "";
    position: absolute;
    left: 0;
  }
  .menu-icon:before {
    top: -5px;
  }
  .menu-icon:after {
    top: 5px;
  }
  .mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px 20px 22px;
    border-top: 1px solid rgba(32,41,37,.12);
    background: var(--white);
    box-shadow: 0 16px 28px rgba(32,41,37,.14);
  }
  .mobile-panel>a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(32,41,37,.1);
    font-size: 13px;
  }
  .mobile-panel>a:hover {
    color: #405a73;
    background: #f0f2f1;
  }
  .mobile-subnav {
    border-bottom: 1px solid rgba(32,41,37,.1);
  }
  .mobile-subnav>summary {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 13px;
    cursor: pointer;
    list-style: none;
    transition: color .2s,background-color .2s;
  }
  .mobile-subnav>summary:hover,.mobile-subnav[open]>summary {
    color: #405a73;
    background: rgba(255,255,255,.42);
  }
  .mobile-subnav>summary span {
    width: 7px;
    height: 7px;
    margin-right: 4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s;
  }
  .mobile-subnav[open]>summary span {
    transform: rotate(225deg);
  }
  .mobile-subnav>div {
    display: flex;
    flex-direction: column;
    padding: 2px 7px 9px;
  }
  .mobile-subnav>div a {
    padding: 8px 10px;
    border-left: 2px solid #aab8c3;
    font-size: 13px;
    color: #54645c;
  }
  .mobile-subnav>div a:hover {
    color: #405a73;
    background: rgba(255,255,255,.55);
  }
  .mobile-featured {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
    padding: 8px;
    background: var(--nav-blue);
    border-radius: 5px;
  }
  .mobile-featured>a {
    padding: 12px 10px;
    font-size: 12px;
  }
  .mobile-featured>a:hover {
    color: #405a73;
    background: rgba(255,255,255,.5);
  }
  .mobile-featured .mobile-subnav {
    border-bottom: 0;
  }
  .mobile-featured .mobile-subnav>summary {
    font-size: 12px;
  }
  .mobile-panel .mobile-enroll {
    grid-column: 1/-1;
    margin-top: 12px;
    border: 0;
    border-radius: 4px;
    background: #3d5872;
    color: #fff;
    text-align: center;
    font-weight: 600;
  }
  .mobile-panel .mobile-enroll:hover {
    background: #526f8c;
    color: #eef0ed;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 75px 24px 55px;
  }
  .hero-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 480px;
    padding: 24px;
  }
  .video-frame {
    min-height: 432px;
  }
  .section {
    padding: 85px 24px;
  }
  .section-heading {
    display: block;
  }
  .section-heading>p {
    margin-top: 25px;
  }
  .why {
    grid-template-columns: 1fr;
  }
  .why-copy {
    padding: 25px 0 0;
  }
}
@media(max-width:760px) {
  h1 {
    font-size: 59px;
  }
  .hero-intro {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .trust-row {
    display: flex;
    gap: 18px;
    margin-top: 55px;
    overflow-x: auto;
  }
  .trust-row div {
    min-width: 135px;
  }
  .marquee {
    justify-content: flex-start;
  }
  .program-grid .program-card {
    flex-basis: 100%;
    max-width: 100%;
  }
  .program-card {
    min-height: 340px;
  }
  .program-card h3,.program-card>div>p:last-child {
    min-height: 0;
  }
  .program-card>div:last-child {
    grid-template-rows: repeat(3,auto);
    gap: 14px;
  }
  .pill {
    margin-bottom: 14px;
  }
  .why-visual {
    min-height: 560px;
  }
  .experience-list a {
    grid-template-columns: 35px 1fr 30px;
    padding: 20px 0;
  }
  .experience-list a>span:nth-child(3) {
    display: none;
  }
  .experience-list strong {
    font-size: 21px;
  }
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding-top: 40px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .copyright {
    margin-top: 12px;
  }
}
@media(max-width:560px) {
  .mobile-quick-enroll {
    display: none;
  }
  .header-shell {
    gap: 8px;
    padding: 10px 12px;
  }
  .brand {
    min-width: 0;
    gap: 8px;
  }
  .brand span {
    display: flex;
    flex: none;
  }
  .mobile-actions {
    gap: 6px;
  }
}
@media(max-width:420px) {
  .mobile-nav>summary {
    padding: 0 12px;
  }
  .mobile-panel {
    grid-template-columns: 1fr;
  }
  .mobile-panel .mobile-featured,.mobile-panel .mobile-enroll {
    grid-column: 1;
  }
  .mobile-featured {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width:480px) {
  .why-heading {
    font-size: clamp(38px,12vw,48px)!important;
  }
  .why-heading-line {
    flex-direction: column;
    gap: 0;
  }
  .quote-card {
    width: 84%;
    left: 8%;
    top: 8%;
    padding: 16px;
  }
  .quote-card p {
    font-size: clamp(17px,5vw,22px);
  }
}
@media(max-width:900px) {
  .hero {
    min-height: 0;
    overflow: visible;
  }
  .hero-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }
  .video-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 32/17;
  }
}
@media(max-width:760px) {
  .hero-copy {
    padding: 55px 24px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px,11.5vw,59px);
  }
  .hero-media {
    padding: 20px;
  }
  .marquee {
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 15px;
    overflow: visible;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }
}
@media(max-width:420px) {
  .hero-media {
    padding: 16px;
  }
  .hero-copy {
    padding: 48px 20px;
  }
  .marquee {
    padding: 16px 20px;
    font-size: 12px;
  }
}
@media(max-width:560px) {
  .video-frame {
    aspect-ratio: 16/9;
  }
}
.primary-nav>.nav-dropdown>a.active:after {
  right: 0;
}
.secondary-nav>a.active,.secondary-nav>.nav-dropdown>a.active {
  color: #405a73;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 -2px 0 var(--accent),inset 0 0 18px rgba(255,255,255,.5);
}
.secondary-nav>.nav-dropdown>a.active {
  width: 100%;
}
.mobile-panel>a.active,.mobile-subnav>summary.active {
  color: #405a73;
  background: #edf1f3;
  box-shadow: inset 3px 0 0 var(--accent);
}
.utility-links a.active {
  color: var(--white);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.experience-list a>span:first-child {
  padding-left: 16px;
}
@keyframes home-auto-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trust-row {
  display: block;
  max-width: 100%;
  margin-top: 60px;
  overflow: visible;
}
.trust-row .trust-track {
  width: 100%;
  min-width: 0;
  display: block;
  padding: 0;
  border: 0;
  animation: none;
  transform: none;
}
.trust-row .trust-group {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 18px;
  padding: 0;
  border: 0;
}
.trust-row .trust-group[aria-hidden="true"] {
  display: none;
}
.trust-row .trust-stat {
  width: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 1px solid rgba(23,34,29,.22);
}
.marquee {
  display: block;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}
.marquee-track {
  width: max-content;
  display: flex;
  animation: home-auto-scroll 90s linear infinite;
  will-change: transform;
}
.marquee-group,.marquee-group[aria-hidden="true"] {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: none;
  gap: 24px;
  padding: 0 24px 0 0;
}
@media(max-width:900px) {
  .trust-row {
    overflow: hidden;
  }
  .trust-row .trust-track {
    width: max-content;
    display: flex;
    flex-direction: row;
    animation: home-auto-scroll 30s linear infinite;
    will-change: transform;
  }
  .trust-row .trust-group,.trust-row .trust-group[aria-hidden="true"] {
    width: auto;
    min-width: 0;
    display: flex;
    flex: none;
    flex-direction: row;
    gap: 18px;
    padding: 0 18px 0 0;
  }
  .trust-row .trust-stat {
    width: 150px;
    min-width: 150px;
  }
}
@media(max-width:760px) {
  .trust-row {
    display: block;
    margin-top: 55px;
    overflow: hidden;
  }
  .trust-row .trust-track,.trust-row .trust-group {
    min-width: 0;
  }
  .trust-row .trust-stat {
    min-width: 145px;
  }
  .marquee {
    display: block;
    padding: 17px 0;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
  }
  .marquee-group,.marquee-group[aria-hidden="true"] {
    gap: 20px;
    padding-right: 20px;
  }
}
@media(prefers-reduced-motion:reduce) {
  .trust-row,.marquee {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .trust-row::-webkit-scrollbar,.marquee::-webkit-scrollbar {
    display: none;
  }
  .trust-track,.marquee-track {
    animation: none;
  }
  .trust-group[aria-hidden="true"],.marquee-group[aria-hidden="true"] {
    display: none;
  }
}
.hero-media {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-media .video-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 16/9;
  flex: none;
}
.hero-media .trust-row {
  width: 100%;
  margin-top: 0;
  padding: 18px 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(32,41,37,.13);
  border-radius: 4px;
  background: rgba(251,250,246,.72);
}
.hero-media .trust-group {
  gap: 14px;
}
.hero-media .trust-stat {
  padding-left: 10px;
}
.hero-media .trust-stat strong {
  font-size: clamp(15px,1.25vw,19px);
}
.hero-media .trust-stat span {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .03em;
  white-space: nowrap;
  color: #44564b;
}
.hero-actions {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media(max-width:760px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: row;
    gap: 10px;
  }
  .hero-actions .button {
    min-width: 0;
    flex: 1 1 0;
    padding: 14px 10px;
    white-space: nowrap;
    font-size: 12px;
  }
}
@media(max-width:420px) {
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    padding: 12px 6px;
    font-size: 12px;
  }
}
@media(max-width:360px) {
  .hero-actions {
    gap: 6px;
  }
  .hero-actions .button {
    padding: 11px 3px;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }
}
.hero {
  min-height: 0;
}
.hero-copy {
  padding-bottom: 36px;
}
.hero-media {
  width: 100%;
  min-width: 0;
  gap: 12px;
}
.hero-media .video-frame {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16/9;
}
.hero-media .trust-row {
  min-width: 0;
  flex: none;
  padding-top: 14px;
  padding-bottom: 14px;
}
.hero-media .trust-track {
  width: 100%;
  min-width: 0;
  display: block;
  animation: none;
  transform: none;
}
.hero-media .trust-group {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5,20%);
  gap: 0;
  padding: 0;
}
.hero-media .trust-group[aria-hidden="true"] {
  display: none;
}
.hero-media .trust-stat {
  width: auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  text-align: center;
}
.hero-media .trust-group .trust-stat:first-child {
  border-left: 0;
}
@media(max-width:1560px) {
  .hero-media {
    width: 100%;
    min-width: 0;
  }
  .hero-copy {
    padding-bottom: 34px;
  }
  .hero-media .trust-track {
    width: max-content;
    display: flex;
    flex-direction: row;
    animation: home-auto-scroll 30s linear infinite;
    will-change: transform;
  }
  .hero-media .trust-group,.hero-media .trust-group[aria-hidden="true"] {
    width: auto;
    min-width: 0;
    display: flex;
    flex: none;
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    padding: 0 14px 0 0;
  }
  .hero-media .trust-stat {
    width: 136px;
    min-width: 136px;
    align-items: flex-start;
    padding-left: 10px;
    text-align: left;
  }
  .hero-media .trust-group .trust-stat:first-child {
    border-left: 1px solid rgba(23,34,29,.22);
  }
}
@media(max-width:760px) {
  .hero-copy {
    padding-bottom: 32px;
  }
  .hero-media .trust-stat {
    width: 132px;
    min-width: 132px;
  }
}
@media(prefers-reduced-motion:reduce) {
  .hero-media .trust-track {
    animation: none;
  }
  .hero-media .trust-group[aria-hidden="true"] {
    display: none;
  }
  .hero-media .trust-group .trust-stat:first-child {
    border-left: 0;
  }
}
.hero h1>span,.hero h1>em {
  display: block;
  white-space: nowrap;
}
@media(min-width:901px) and (max-width:1180px) {
  .hero h1 {
    font-size: clamp(42px,4.4vw,52px);
  }
}
@media(max-width:760px) {
  .hero h1 {
    font-size: clamp(28px,9.4vw,59px);
  }
}
@media(min-width:901px) {
  .hero-copy {
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .hero-copy .eyebrow,.hero-copy .hero-intro {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media(min-width:901px) {
  .hero-media .trust-row {
    margin-top: auto;
  }
}
.hero-copy .eyebrow,.hero-actions .button {
  white-space: nowrap;
}
.hero-copy .eyebrow {
  flex-wrap: nowrap;
}
@media(min-width:901px) and (max-width:1180px) {
  .hero-copy .eyebrow {
    gap: 8px;
    font-size: 12px;
    letter-spacing: .04em;
    white-space: normal;
    line-height: 1.6;
  }
  .hero-copy .eyebrow:before {
    width: 18px;
    flex-shrink: 0;
  }
  .hero-copy .hero-intro {
    font-size: clamp(13px,1.3vw,16px);
  }
}
@media(max-width:900px) {
  .hero-copy .eyebrow {
    gap: 7px;
    margin-bottom: 22px;
    font-size: clamp(8px,1.6vw,10px);
    letter-spacing: .1em;
  }
  .hero-copy .eyebrow:before {
    width: 18px;
  }
  .hero-copy .hero-intro {
    margin: 24px 0;
    font-size: clamp(13px,2vw,15px);
    line-height: 1.55;
  }
}
@media(max-width:560px) {
  .hero-copy .eyebrow {
    gap: 5px;
    margin-bottom: 19px;
    font-size: clamp(6.5px,2vw,8.5px);
    letter-spacing: .06em;
  }
  .hero-copy .eyebrow:before {
    width: 13px;
  }
  .hero-copy .hero-intro {
    margin: 20px 0;
    font-size: clamp(12px,3.4vw,14px);
    line-height: 1.5;
  }
}
@media(max-width:1080px) {
  .utility-bar {
    height: 38px;
    padding: 0 20px;
  }
  .utility-links a {
    min-width: auto;
    padding: 5px 13px;
    font-size: 12px;
  }
  .header-shell {
    position: relative;
    min-height: 82px;
    display: flex;
    padding: 10px 20px;
  }
  .brand {
    --brand-text-size: clamp(26px,3.8vw,34px);
    --brand-line-gap: 6px;
  }
  .brand img {
    width: calc(var(--brand-logo-height) * 8 / 5);
    aspect-ratio: 8/5;
    object-fit: cover;
  }
  .navigation-stack {
    display: none;
  }
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }
  .mobile-quick-enroll {
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 4px;
    background: #3d5872;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: background-color .2s,box-shadow .2s;
  }
  .mobile-quick-enroll:hover {
    background: #526f8c;
    color: #eef0ed;
    box-shadow: inset 0 0 16px rgba(255,255,255,.2);
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav>summary {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid #43554c;
    border-radius: 4px;
    background: #43554c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    list-style: none;
    transition: color .2s,background-color .2s,box-shadow .2s;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav>summary:hover,.mobile-nav[open]>summary {
    background: #2f3e37;
    box-shadow: inset 0 0 16px rgba(255,255,255,.14);
  }
  .menu-icon,.menu-icon:before,.menu-icon:after {
    width: 16px;
    height: 1.5px;
    display: block;
    background: currentColor;
  }
  .menu-icon {
    position: relative;
    transition: background-color .2s,transform .25s;
  }
  .menu-icon:before,.menu-icon:after {
    content: "";
    position: absolute;
    left: 0;
    transition: top .25s,transform .25s;
  }
  .menu-icon:before {
    top: -5px;
  }
  .menu-icon:after {
    top: 5px;
  }
  .mobile-nav[open] .menu-icon {
    background: transparent;
    transform: rotate(180deg);
  }
  .mobile-nav[open] .menu-icon:before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-nav[open] .menu-icon:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px 20px 22px;
    border-top: 1px solid rgba(32,41,37,.12);
    background: var(--white);
    box-shadow: 0 16px 28px rgba(32,41,37,.14);
  }
  .mobile-panel>a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(32,41,37,.1);
    font-size: 13px;
  }
  .mobile-panel>a:hover {
    color: #405a73;
    background: #f0f2f1;
  }
  .mobile-subnav {
    border-bottom: 1px solid rgba(32,41,37,.1);
  }
  .mobile-subnav>summary {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 13px;
    cursor: pointer;
    list-style: none;
    transition: color .2s,background-color .2s;
  }
  .mobile-subnav>summary:hover,.mobile-subnav[open]>summary {
    color: #405a73;
    background: rgba(255,255,255,.42);
  }
  .mobile-subnav>summary span {
    width: 7px;
    height: 7px;
    margin-right: 4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s;
  }
  .mobile-subnav[open]>summary span {
    transform: rotate(225deg);
  }
  .mobile-subnav>div {
    display: flex;
    flex-direction: column;
    padding: 2px 7px 9px;
  }
  .mobile-subnav>div a {
    padding: 8px 10px;
    border-left: 2px solid #aab8c3;
    color: #54645c;
    font-size: 13px;
  }
  .mobile-subnav>div a:hover {
    color: #405a73;
    background: rgba(255,255,255,.55);
  }
  .mobile-featured {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
    padding: 8px;
    border-radius: 5px;
    background: var(--nav-blue);
  }
  .mobile-featured>a {
    padding: 12px 10px;
    font-size: 12px;
  }
  .mobile-featured>a:hover {
    color: #405a73;
    background: rgba(255,255,255,.5);
  }
  .mobile-featured .mobile-subnav {
    border-bottom: 0;
  }
  .mobile-featured .mobile-subnav>summary {
    font-size: 12px;
  }
  .mobile-panel .mobile-enroll {
    grid-column: 1/-1;
    display: block;
    margin-top: 12px;
    border: 0;
    border-radius: 4px;
    background: #3d5872;
    color: #fff;
    text-align: center;
    font-weight: 600;
  }
  .mobile-panel .mobile-enroll:hover {
    background: #526f8c;
    color: #eef0ed;
  }
}
@media(max-width:560px) {
  .mobile-quick-enroll {
    display: none;
  }
  .header-shell {
    gap: 8px;
    padding: 10px 12px;
  }
  .brand {
    --brand-text-size: clamp(20px,5.5vw,24px);
    --brand-line-gap: 4px;
    min-width: 0;
    gap: 8px;
  }
  .brand span {
    display: flex;
    flex: none;
  }
  .mobile-actions {
    gap: 6px;
  }
}
@media(max-width:420px) {
  .header-shell {
    padding-right: 10px;
  }
  .mobile-nav>summary {
    height: 40px;
    gap: 7px;
    padding: 0 10px;
    font-size: 12px;
  }
  .mobile-panel {
    grid-template-columns: 1fr;
  }
  .mobile-panel .mobile-featured,.mobile-panel .mobile-enroll {
    grid-column: 1;
  }
  .mobile-featured {
    grid-template-columns: 1fr 1fr;
  }
}
.program-card:hover,.program-card:focus-visible {
  color: #1d2923;
  box-shadow: inset 0 0 0 1px rgba(32,41,37,.32),inset 0 0 34px rgba(255,255,255,.16);
}
.program-card.pink:hover,.program-card.pink:focus-visible {
  background: #cbb0b7;
}
.program-card.blue:hover,.program-card.blue:focus-visible {
  background: #afc2d4;
}
.program-card.yellow:hover,.program-card.yellow:focus-visible {
  background: #d2bf8b;
}
.program-card.mint:hover,.program-card.mint:focus-visible {
  background: #b8ccbf;
}
.program-card.lavender:hover,.program-card.lavender:focus-visible {
  background: #b9b1c8;
}
.secondary-nav>a:hover,.secondary-nav>.nav-dropdown:hover,.secondary-nav>.nav-dropdown:focus-within {
  color: #304a61;
  background: #cbd9e5;
  box-shadow: inset 0 0 18px rgba(255,255,255,.3);
}
.experience-list a:hover,.experience-list a:focus-visible {
  color: #304a61;
  background: #dce5e8;
  box-shadow: inset 4px 0 0 var(--accent);
}
@media(max-width:1080px) {
  .mobile-panel>a:hover,.mobile-panel>a:focus-visible,.mobile-subnav>summary:hover,.mobile-subnav[open]>summary {
    color: #304a61;
    background: #dce5e8;
  }
  .mobile-subnav>div a:hover,.mobile-subnav>div a:focus-visible,.mobile-featured>a:hover,.mobile-featured>a:focus-visible {
    color: #304a61;
    background: #cbd9e5;
  }
}
@media(max-width:760px) {
  footer {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    grid-template-areas: "brand contact" "address connect" "divider divider" "copyright copyright" "credit credit";
    column-gap: 14px;
    row-gap: 0;
    padding: 22px 20px 14px;
  }
  .footer-brand {
    grid-column: auto;
    align-self: start;
    justify-self: start;
  }
  .footer-brand img {
    width: 58px;
  }
  footer h3 {
    margin-bottom: 7px;
  }
  footer>div:not(.footer-brand):not(.footer-divider) {
    gap: 5px;
    font-size: 13px;
  }
  .footer-contact,.footer-address-block,.footer-connect {
    padding-top: 0;
    border-top: 0;
  }
  .footer-address-block,footer>div.footer-connect {
    margin-top: 18px;
  }
  footer>div.footer-connect {
    display: flex!important;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 5px!important;
  }
  .footer-divider {
    margin: 18px 0 12px;
  }
  .copyright {
    grid-column: 1/-1;
    margin: 0;
  }
  .site-credit {
    grid-column: 1/-1;
    justify-self: start;
    margin: 5px 0 0;
    text-align: left;
  }
}
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media(max-width:900px) {
  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}
@media(max-width:560px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
.copyright,.site-credit {
  white-space: normal;
  line-height: 1.6;
}
@media(min-width:761px) {
  footer {
    grid-template-columns: auto 1fr minmax(190px,230px) minmax(175px,210px) max-content;
  }
  footer>div.footer-connect {
    width: max-content;
    justify-self: end;
    align-items: flex-start;
    text-align: left;
    padding-right: 0;
  }
  .footer-connect h3 {
    align-self: flex-start;
    margin-right: 0;
    letter-spacing: .15em;
  }
  footer>.site-credit {
    justify-self: end;
    padding-right: 0;
    text-align: right;
  }
}
@media(max-width:760px) and (min-width:541px) {
  footer {
    grid-template-areas: "brand contact" "address connect" "divider divider" "copyright copyright" "credit credit";
  }
  footer>div.footer-connect {
    justify-self: stretch;
    align-items: flex-start!important;
    text-align: left!important;
  }
  .copyright {
    grid-column: 1/-1;
    margin: 0;
  }
}
@media(max-width:540px) {
  footer {
    grid-template-areas: "brand contact" "address connect" "divider divider" "copyright copyright" "credit credit";
  }
  footer>div.footer-connect {
    justify-self: start;
    align-items: flex-start!important;
    text-align: left!important;
  }
  .copyright {
    grid-column: 1/-1;
    margin: 0;
  }
}
.dropdown-submenu {
  position: relative;
}
.dropdown-menu>.dropdown-submenu>.dropdown-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dropdown-submenu-trigger span {
  width: 7px;
  height: 7px;
  display: block;
  flex: 0 0 7px;
  margin-right: 3px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.dropdown-submenu-menu {
  top: -8px;
  left: calc(100% + 7px);
  transform: none;
}
.dropdown-submenu-menu:before {
  top: 0;
  right: auto;
  bottom: 0;
  left: -9px;
  width: 9px;
  height: auto;
}
.nav-dropdown:hover .dropdown-submenu-menu,.nav-dropdown:focus-within .dropdown-submenu-menu {
  opacity: 0;
  visibility: hidden;
}
.nav-dropdown .dropdown-submenu:hover>.dropdown-submenu-menu,.nav-dropdown .dropdown-submenu:focus-within>.dropdown-submenu-menu {
  opacity: 1;
  visibility: visible;
}
@media(max-width:1080px) {
  .mobile-subnav>div>.mobile-subnav-nested {
    margin: 3px 0 0;
    border-bottom: 0;
    border-left: 2px solid #aab8c3;
  }
  .mobile-subnav>div>.mobile-subnav-nested>summary {
    min-height: 38px;
    padding: 8px 10px;
    color: #465b50;
    font-size: 13px;
    font-weight: 600;
  }
  .mobile-subnav>div>.mobile-subnav-nested>div {
    padding: 2px 0 8px 7px;
  }
  .mobile-subnav>div>.mobile-subnav-nested>div>a {
    padding: 8px 10px;
    border-left-color: #c2ccd3;
  }
}
.advisory-stack {
  position: relative;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(32,41,37,.18);
  box-shadow: 0 4px 10px rgba(32,41,37,.05);
}
.advisory-banner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 11px 6vw;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .005em;
}
.advisory-banner+.advisory-banner {
  border-top: 1px solid rgba(32,41,37,.16);
}
.advisory-banner-blue {
  background: #d6e2ec;
  color: #253b4d;
}
.advisory-banner-yellow {
  background: #e9deba;
  color: #493e22;
}
.advisory-banner-red {
  background: #e5cccc;
  color: #572a2a;
}
.advisory-banner-green {
  background: #d0e0d5;
  color: #294337;
}
.advisory-banner-gray {
  background: #dedfdb;
  color: #303936;
}
@media(max-width:560px) {
  .advisory-banner {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 12px;
    line-height: 1.4;
  }
}
.hero-copy-inner,.hero-media-inner {
  display: contents;
}
/*
 * Fill ordinary desktop viewports, but stop once the centered content has
 * 84px of breathing room above and below. Taller screens then reveal the
 * next section instead of continuing to stretch the hero.
 */
@media(min-width:1001px) {
  .hero {
    /* 16:9 media height, its responsive gap, and the readable statistics row. */
    --hero-content-height: calc(25.3125vw + clamp(24px,2vw,36px) + 56px);
    --hero-utility-height: 42px;
    /* Reserve the utility row and 52px purple bar, plus the measured header. */
    min-height: min(calc(100svh - var(--site-header-height,143px) - var(--hero-utility-height) - 52px),calc(var(--hero-content-height) + 168px));
  }
  .hero-copy {
    justify-content: center;
    gap: clamp(24px,3.2svh,42px);
  }
  .hero-media {
    justify-content: center;
  }
  .hero-media .trust-row {
    margin-top: 0;
  }
}
@media(min-width:1001px) and (max-width:1080px) {
  .hero {
    --hero-utility-height: 38px;
  }
}
/*
 * On roomy landscape screens, align the copy and media to common top and
 * bottom anchors. The shared height follows the 16:9 video width, keeping a
 * visible but controlled buffer between the video and statistics.
 */
@media(min-width:1001px) and (min-height:700px) {
  .hero-copy,.hero-media {
    height: auto;
    align-self: stretch;
  }
  .hero-copy-inner,.hero-media-inner {
    width: 100%;
    height: var(--hero-content-height);
    align-self: center;
    display: flex;
    flex-direction: column;
  }
  .hero-copy,.hero-media {
    justify-content: center;
    gap: 0;
  }
  .hero-copy-inner {
    justify-content: space-between;
  }
  .hero-media-inner {
    justify-content: flex-start;
    gap: clamp(24px,2vw,36px);
  }
  .hero-media-inner .trust-row {
    margin-top: auto;
  }
}
/* Stack as soon as the horizontal hero begins to feel compressed. */
@media(min-width:901px) and (max-width:1000px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .hero-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
  }
  .hero-media-inner {
    width: min(100%,800px);
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    display: block;
    padding: 55px 24px;
  }
  .video-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .hero-media .trust-row {
    margin-top: 0;
  }
}
@media(max-width:900px) {
  .hero-media {
    gap: 18px;
  }
  .video-frame iframe {
    height: calc(100% + 6px);
    margin: -3px 0;
  }
}
@media(max-width:560px) {
  .hero-media {
    gap: 14px;
  }
}
/* Keep supporting hero copy comfortably readable once the layout stacks. */
@media(min-width:901px) and (max-width:1000px) {
  .hero-copy .eyebrow {
    font-size: 12px;
    letter-spacing: .11em;
  }
  .hero-copy .hero-intro {
    font-size: 16px;
    line-height: 1.55;
  }
  .hero-actions .button {
    font-size: 14px;
  }
}
@media(max-width:900px) {
  .hero-copy .eyebrow {
    font-size: clamp(10px,1.35vw,11px);
    letter-spacing: .08em;
  }
  .hero-copy .hero-intro {
    font-size: clamp(15px,2vw,17px);
  }
  .hero-actions .button {
    font-size: 13px;
  }
}
@media(max-width:760px) {
  .hero-actions .button {
    gap: 6px;
    padding: 13px 5px;
    font-size: clamp(11px,1.8vw,13px);
  }
}
@media(max-width:560px) {
  .hero-copy .eyebrow {
    font-size: clamp(9px,2.5vw,10.5px);
    letter-spacing: .04em;
  }
  .hero-copy .hero-intro {
    font-size: 15px;
  }
}
@media(max-width:420px) {
  .hero-copy .eyebrow {
    font-size: clamp(7.8px,2.45vw,9.75px);
    letter-spacing: .03em;
  }
  .hero-copy .eyebrow:before {
    display: none;
  }
}
@media(max-width:560px) {
  .program-card>div>p:last-child {
    display: none;
  }
}
@media(max-width:360px) {
  .hero-actions .button {
    gap: 3px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 12px;
  }
}
@media(max-width:340px) {
  .hero-actions .button {
    font-size: 12px;
  }
}
/* Compact the homepage rhythm without making the cards feel cramped. */
@media(max-width:900px) {
  .section {
    padding: 52px 20px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading h2,.why h2,.cta h2 {
    font-size: clamp(38px,10.5vw,46px);
    line-height: 1.02;
  }
  .section-heading>p {
    margin-top: 18px;
    font-size: 14px;
  }
  .program-grid {
    gap: 14px;
  }
  .program-grid .program-card {
    min-width: 0;
    min-height: 0;
    flex-basis: calc(50% - 7px);
    max-width: calc(50% - 7px);
    justify-content: flex-start;
    gap: 16px;
    padding: 20px 16px 24px;
  }
  .program-grid .program-card:last-child {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 0;
  }
  .program-card>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .program-card h3 {
    font-size: clamp(20px,5.6vw,24px);
    line-height: 1.18;
  }
  .program-card>div>p:last-child {
    font-size: 13px;
    line-height: 1.5;
  }
  .pill {
    margin-bottom: 8px;
    padding: 5px 8px;
    font-size: 12px;
    letter-spacing: .04em;
  }
  .why-visual {
    min-height: 560px;
  }
  .why-copy {
    padding-top: 32px;
  }
  .why-copy .lead {
    margin: 24px 0 30px;
    font-size: 15px;
  }
  .why-copy li {
    padding: 18px 0;
  }
  .why-copy strong {
    font-size: 16px;
  }
  .why-copy li p {
    font-size: 13px;
  }
  .experience-list a {
    min-height: 88px;
  }
  .experience-list strong {
    font-size: 20px;
  }
}
@media(max-width:420px) {
  .section {
    padding: 46px 18px;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .program-grid .program-card {
    min-height: 0;
    padding: 18px 14px 24px;
  }
  .program-grid .program-card:last-child {
    min-height: 0;
  }
  .program-card h3 {
    font-size: 20px;
  }
  .program-card>div>p:last-child {
    font-size: 13px;
  }
  .why-visual {
    min-height: 530px;
  }
}
@media(max-width:340px) {
  .program-grid .program-card,.program-grid .program-card:last-child {
    flex-basis: 100%;
    max-width: 100%;
    min-height: 0;
  }
}
/* Animate only intentional menu toggles, not page loads or history restoration. */
.mobile-nav:not(.mobile-nav--interactive)>summary,
.mobile-nav:not(.mobile-nav--interactive) .menu-icon,
.mobile-nav:not(.mobile-nav--interactive) .menu-icon:before,
.mobile-nav:not(.mobile-nav--interactive) .menu-icon:after {
  transition: none;
}
@media(prefers-reduced-motion:reduce) {
  .mobile-nav>summary,.mobile-nav .menu-icon,
  .mobile-nav .menu-icon:before,.mobile-nav .menu-icon:after {
    transition: none;
  }
}
/* Keep open navigation reachable on short screens, including landscape phones. */
.mobile-panel {
  max-height: calc(100vh - 160px);
  max-height: var(--menu-available-height,calc(100dvh - 160px));
  overflow-y: auto;
  overscroll-behavior: contain;
}
[id] {
  scroll-margin-top: calc(var(--site-header-height,150px) + 20px);
}
.advisory-banner {
  display: block;
  overflow-wrap: anywhere;
  min-width: 0;
}
/* Size the three-line slogan against its own column rather than the viewport. */
.hero-copy-inner {
  container-type: inline-size;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.hero h1 {
  font-size: clamp(23px,3.8vw,82px);
}
@media(max-width:1000px) {
  .hero h1 {
    font-size: clamp(23px,calc(9vw - 4.5px),82px);
  }
}
@supports(font-size:1cqw) {
  .hero h1 {
    font-size: clamp(23px,9cqw,82px);
  }
}
.hero-actions {
  align-items: stretch;
}
.hero-actions .button {
  min-height: 44px;
  line-height: 1.4;
}
.program-card>div {
  min-width: 0;
  max-width: 100%;
}
.program-card>div:last-child {
  grid-template-columns: minmax(0,1fr);
}
/* Share content rows so wrapped badges and titles cannot misalign adjacent cards.
   The flex layout above remains the fallback for older browsers. */
@supports(grid-template-rows:subgrid) {
  .program-grid {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
  }
  .program-grid .program-card,.program-grid .program-card:last-child {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
    min-width: 0;
    min-height: 0;
    max-width: none;
  }
  .program-card .card-top {
    align-self: start;
    margin-bottom: 28px;
  }
  .program-card>div:last-child {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
  .program-card .pill {
    margin-bottom: 24px;
  }
  .program-card h3 {
    align-self: start;
    margin-bottom: 12px;
  }
  .program-card>div>p:last-child {
    align-self: start;
  }
  @media(min-width:1181px) {
    .program-grid {
      min-height: clamp(400px,20vw,440px);
      grid-template-rows: minmax(64px,1fr) repeat(3,auto);
    }
  }
  @media(min-width:1441px) {
    .program-grid {
      /* Share spare height above and below the content instead of pinning it
         to the bottom. The shared rows keep all five cards aligned. */
      grid-template-rows: minmax(64px,1fr) auto auto minmax(max-content,.65fr);
    }
    .program-card .pill {
      margin-bottom: clamp(24px,1.8vw,44px);
    }
    .program-card h3 {
      margin-bottom: clamp(12px,1.1vw,28px);
    }
  }
  @media(max-width:1180px) {
    .program-grid {
      grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .program-grid .program-card:last-child {
      grid-column: 1/-1;
    }
  }
  @media(max-width:900px) {
    .program-card .card-top {
      margin-bottom: 16px;
    }
    .program-card .pill {
      margin-bottom: 16px;
    }
    .program-card h3 {
      margin-bottom: 8px;
    }
  }
  @media(max-width:560px) {
    .program-grid .program-card,.program-grid .program-card:last-child {
      grid-row: span 3;
    }
    .program-card>div:last-child {
      grid-row: span 2;
    }
    .program-card h3 {
      margin-bottom: 0;
    }
  }
  @media(max-width:340px) {
    .program-grid {
      grid-template-columns: minmax(0,1fr);
    }
  }
}
@media(min-width:1181px) and (max-width:1440px) {
  .program-card h3 {
    font-size: clamp(24px,2.05vw,29px);
  }
}
@media(max-width:1000px) {
  .hero-copy .eyebrow {
    font-size: 12px;
    line-height: 1.6;
    white-space: normal;
    letter-spacing: .04em;
  }
  .hero-copy .eyebrow:before {
    flex-shrink: 0;
  }
  .hero-actions .button {
    font-size: 13px;
    gap: 6px;
    white-space: nowrap;
  }
}
@media(max-width:900px) {
  .program-card .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    max-width: 100%;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
  }
}
@media(max-width:560px) {
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 6px;
    font-size: 12px;
  }
  .hero-actions .button:last-child {
    flex-grow: 1.35;
  }
}
@media(prefers-reduced-motion:reduce) {
  .hero-media .trust-row {
    overflow-x: auto;
  }
}
.integration-help {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: #e4eaf0;
  color: #344039;
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.integration-help a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.integration-help a:hover,.integration-help a:focus-visible {
  color: #234e74;
}
.video-frame {
  position: relative;
}
.video-backup-photo {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame[data-video-state="fallback"] .video-backup-photo {
  display: block;
}
.video-frame [data-livid-player] {
  position: absolute;
  inset: 0;
}
.video-recovery {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px;
  border-radius: 5px;
  background: rgba(251,250,246,.97);
  color: var(--ink);
}
.video-recovery p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
}
.video-recovery>div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.video-recovery button,.video-recovery a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 0;
  border-radius: 4px;
  background: #3d5872;
  color: #fff;
  font: 600 12px "DM Sans",Arial,sans-serif;
  cursor: pointer;
  transition: background-color .2s;
}
.video-recovery button:hover,.video-recovery a:hover,.video-recovery button:focus-visible,.video-recovery a:focus-visible {
  background: #526f8c;
}
.video-recovery[hidden] {
  display: none;
}
@media(max-width:420px) {
  .video-recovery {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 9px 10px;
  }
  .video-recovery p {
    font-size: 12px;
  }
  .video-recovery>div {
    gap: 6px;
  }
  .video-recovery button,.video-recovery a {
    font-size: 12px;
    padding: 7px 9px;
  }
}
