:root {
  --blue: #006bb6;
  --blue-dark: #004b82;
  --ink: #1b1b1b;
  --muted: #5c6570;
  --line: #d7dde2;
  --cloud: #f2f5f7;
  --white: #ffffff;
  --yellow: #ffcf45;
  --green: #54b598;
  --coral: #ef775f;
  --page: 1180px;
  --shadow: 0 10px 30px rgba(26, 57, 82, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Lab Grotesque", "Arial", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 107, 182, 0.18);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-150%);
}

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

.page-width {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
}

.utility-bar {
  color: #2c3640;
  background: var(--cloud);
  border-bottom: 1px solid #e8ecef;
  font-size: 14px;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.utility-inner nav {
  display: flex;
  gap: 24px;
}

.utility-inner a,
.main-navigation a {
  text-decoration: none;
}

.utility-inner a:hover,
.main-navigation a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(21, 42, 59, 0.08);
}

.brand-row {
  display: flex;
  align-items: center;
  min-height: 90px;
  gap: 46px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  border: 0;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -7px;
}

.menu-lines::after {
  top: 7px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue-dark);
  text-underline-offset: 3px;
}

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

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -190px;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(72px, 10vw, 126px);
}

.eyebrow {
  margin: 0 0 15px;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Aino Headline", "Lab Grotesque", "Arial", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 32px;
  font-size: clamp(48px, 7.4vw, 92px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(35px, 4.5vw, 58px);
}

.hero-copy {
  max-width: 850px;
  margin: 0;
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.5;
  text-wrap: pretty;
}

.section {
  padding-block: clamp(76px, 9vw, 125px);
}

.section-heading {
  max-width: 870px;
  margin-bottom: 56px;
}

.section-heading .eyebrow {
  color: var(--blue-dark);
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #39434d;
  font-size: 21px;
}

.strategy-section {
  background: var(--white);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strategy-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  min-width: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 4px 0 transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.strategy-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.strategy-image {
  grid-column: 1 / -1;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cloud);
}

.strategy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.strategy-card:hover img {
  transform: scale(1.035);
}

.strategy-title {
  align-self: center;
  min-width: 0;
  padding: 24px 8px 25px 24px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.arrow {
  align-self: center;
  padding: 24px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
}

.programs-section {
  background: var(--cloud);
}

.program-list {
  display: grid;
  gap: 22px;
}

.program-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  min-height: 220px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(7px);
}

.program-one {
  background: #b9e1f8;
}

.program-two {
  background: #f8d873;
}

.program-three {
  background: #a9d8ca;
}

.program-number {
  align-self: start;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-content {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.program-content strong {
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.program-content > span {
  font-size: 18px;
  line-height: 1.55;
}

.program-arrow {
  font-size: 46px;
  transition: transform 180ms ease;
}

.program-card:hover .program-arrow {
  transform: translateX(8px);
}

.site-footer {
  color: var(--white);
  background: #12263a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  gap: 30px;
}

.brand-footer {
  color: var(--white);
}

.footer-inner p {
  color: #c7d3dd;
  font-size: 15px;
}

:focus-visible {
  outline: 3px solid #ffbe00;
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 20px;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .brand-row {
    position: relative;
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--white);
    box-shadow: 0 12px 18px rgba(21, 42, 59, 0.12);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .program-card {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .program-number {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .page-width {
    width: min(calc(100% - 32px), var(--page));
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .brand-row {
    min-height: 76px;
  }

  .brand {
    font-size: 27px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .program-content > span {
    font-size: 16px;
  }

  .program-arrow {
    font-size: 34px;
  }

  .footer-inner {
    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;
    animation-iteration-count: 1 !important;
  }
}
