:root {
  --ink: #102334;
  --muted: #617284;
  --navy: #0b2c47;
  --navy-2: #143d5c;
  --teal: #18a7a2;
  --teal-dark: #0f827f;
  --aqua: #e7f8f7;
  --blue-soft: #eef6fb;
  --line: #b7d8e6;
  --paper: #ffffff;
  --mist: #f6fafc;
  --slate: #dce8ee;
  --green: #38b878;
  --shadow: 0 24px 70px rgba(8, 37, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 44, 71, 0.08);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand {
  padding: 5px 8px;
  border-radius: 14px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: translateY(-2px);
  background: var(--aqua);
  box-shadow: 0 14px 30px rgba(8, 37, 61, 0.1);
}

.brand-icon-wrap,
.footer-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #fff;
}

.brand-icon-wrap {
  width: 46px;
  height: 46px;
}

.footer-icon-wrap {
  width: 54px;
  height: 54px;
}

.brand-logo,
.footer-logo {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-logo {
  height: 100%;
}

.footer-logo {
  height: 100%;
}

.brand-name,
.footer-brand-name {
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-name {
  max-width: 230px;
  font-size: 0.86rem;
}

.footer-brand-name {
  max-width: 300px;
  font-size: 0.98rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #42586b;
  font-size: 0.93rem;
}

.nav-links a,
.mini-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after,
.mini-link::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transition: width 180ms ease;
}

.nav-links a:hover,
.mini-link:hover {
  color: var(--navy);
}

.nav-links a:hover::after,
.mini-link:hover::after {
  width: 100%;
}

.nav-cta,
.btn,
.mini-link {
  cursor: pointer;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--aqua);
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #d9f3f1;
  box-shadow: 0 14px 28px rgba(24, 167, 162, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--mist);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease;
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 64px;
  padding-top: 70px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(3rem, 5.3vw, 5.65rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h2,
.split-copy h2,
.systems-copy h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 650px;
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 16px 32px rgba(24, 167, 162, 0.24);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--teal-dark);
  box-shadow: 0 22px 42px rgba(24, 167, 162, 0.32);
}

.btn-outline {
  color: var(--navy);
  border-color: rgba(11, 44, 71, 0.24);
  background: #fff;
}

.btn-outline:hover {
  transform: translateY(-3px);
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: #fff;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(2, 18, 31, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-top: 42px;
}

.hero-stats div {
  padding-left: 16px;
  border-left: 3px solid var(--teal);
}

.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -34px 54px 64px -30px;
  content: "";
  border: 2px solid var(--teal);
  border-radius: 20px;
  z-index: -1;
}

.hero-media::after {
  position: absolute;
  right: 0;
  top: -26px;
  width: 88px;
  height: 88px;
  content: "";
  background-image: radial-gradient(var(--teal) 2px, transparent 2px);
  background-size: 13px 13px;
  opacity: 0.32;
}

.media-frame {
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  border-radius: 18px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.hero-media:hover .media-frame img {
  transform: scale(1.035);
}

.floating-card {
  position: absolute;
  max-width: 218px;
  padding: 16px 18px;
  border: 1px solid rgba(24, 167, 162, 0.45);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(8, 37, 61, 0.12);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.floating-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 0.95rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.card-top {
  right: -8px;
  top: 92px;
}

.card-bottom {
  left: -24px;
  bottom: 70px;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(28px, 7vw, 92px);
  min-height: 118px;
  padding: 24px 32px;
  color: #8799a6;
  background: #fff;
  border-top: 1px solid rgba(11, 44, 71, 0.07);
  border-bottom: 1px solid rgba(11, 44, 71, 0.07);
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
}

.capability-section,
.partners-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: var(--mist);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.mini-link {
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
}

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

.program-card,
.quote-card,
.purpose-card,
.dashboard-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.program-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(11, 44, 71, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(8, 37, 61, 0.06);
}

.program-card:hover,
.quote-card:hover,
.purpose-card:hover,
.dashboard-card:hover {
  transform: translateY(-7px);
  border-color: rgba(24, 167, 162, 0.72);
  box-shadow: 0 30px 75px rgba(8, 37, 61, 0.14);
}

.program-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 1.25rem;
  font-weight: 800;
}

.program-icon.teal {
  color: var(--teal-dark);
  background: var(--aqua);
}

.program-icon.blue {
  color: #176d9e;
  background: #e8f4fb;
}

.program-icon.green {
  color: #0d8f59;
  background: #e8f8ef;
}

.program-icon.navy {
  color: var(--navy);
  background: #e8eef3;
}

.program-card h3 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.systems-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 76px;
}

.systems-visual {
  position: relative;
  padding: 36px;
}

.systems-visual::before {
  position: absolute;
  inset: 0 84px 60px 0;
  content: "";
  border: 3px solid var(--navy);
  border-radius: 110px 20px 20px 20px;
}

.systems-visual::after {
  position: absolute;
  right: 28px;
  bottom: 8px;
  width: 118px;
  height: 118px;
  content: "";
  border: 3px solid var(--teal);
  border-radius: 20px;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(11, 44, 71, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-head {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
}

.dashboard-head span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
}

.dashboard-head span:nth-child(2) {
  background: #5db4df;
}

.dashboard-head span:nth-child(3) {
  background: var(--navy);
}

.supply-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.supply-meter strong,
.supply-meter span {
  display: block;
}

.supply-meter span {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.lesson-row {
  display: grid;
  grid-template-columns: 42px 1fr 58px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(11, 44, 71, 0.08);
}

.lesson-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--teal-dark);
  background: var(--aqua);
  font-weight: 800;
  font-size: 0.85rem;
}

.lesson-row em {
  height: 8px;
  border-radius: 999px;
  background: #e5eef3;
}

.systems-copy p,
.split-copy p {
  max-width: 670px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list div {
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  background: var(--blue-soft);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
}

.quality-section {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.72fr;
  align-items: start;
  gap: 58px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #42586b;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  content: "✓";
  color: #fff;
  background: var(--teal);
  font-size: 0.72rem;
}

.purpose-card {
  padding: 34px;
  border: 1px solid rgba(11, 44, 71, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f5fbfd);
  box-shadow: var(--shadow);
}

.purpose-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--navy);
  font-size: 1.4rem;
}

.purpose-card h3 {
  margin: 24px 0 8px;
  font-size: 1.45rem;
}

.purpose-card p {
  margin: 0;
  color: var(--muted);
}

.centered {
  display: block;
  text-align: center;
}

.centered h2 {
  margin: 0 auto;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.quote-card {
  padding: 32px;
  border: 1px solid rgba(11, 44, 71, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(8, 37, 61, 0.06);
}

.quote-card.raised {
  transform: translateY(-18px);
}

.quote-card.raised:hover {
  transform: translateY(-25px);
}

.quote-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
}

.quote-card p {
  margin: 0;
  color: #42586b;
}

.final-cta {
  width: min(960px, calc(100% - 40px));
  margin: 20px auto 92px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 28px 28px 8px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy), #0f827f);
  box-shadow: 0 28px 65px rgba(8, 37, 61, 0.28);
}

.final-cta .eyebrow {
  color: #d4fbf8;
}

.final-cta h2 {
  max-width: 720px;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 124px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid rgba(11, 44, 71, 0.08);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .brand-name {
    max-width: 190px;
    font-size: 0.78rem;
  }

  .nav-links {
    gap: 22px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .nav-shell.is-open {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .nav-shell.is-open .nav-links {
    order: 3;
    width: 100%;
    display: grid;
    gap: 16px;
    padding: 18px 0 10px;
  }

  .hero,
  .systems-section,
  .quality-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 48px;
    min-height: auto;
  }

  .hero-media {
    max-width: 660px;
  }

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

  .quote-card.raised {
    transform: none;
  }

  .quote-card.raised:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 680px) {
  .section-pad {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .nav-shell {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    padding-left: 0;
  }

  .brand-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    height: 100%;
  }

  .brand-name {
    max-width: 170px;
    font-size: 0.72rem;
  }

  .footer-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .footer-logo {
    height: 100%;
  }

  .footer-brand-name {
    max-width: 240px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-stats,
  .program-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-media::before,
  .hero-media::after,
  .floating-card {
    display: none;
  }

  .section-heading,
  .final-cta,
  .site-footer {
    display: grid;
    align-items: start;
  }

  .final-cta {
    padding: 34px;
    margin-bottom: 64px;
  }

  .systems-visual {
    padding: 0;
  }

  .systems-visual::before,
  .systems-visual::after {
    display: none;
  }
}
