:root {
  --navy-950: #020b1c;
  --navy-900: #06132a;
  --navy-800: #0a1b39;
  --blue-700: #0c4dd5;
  --blue-600: #1264f6;
  --blue-500: #2386ff;
  --cyan-400: #25c6f7;
  --ink: #07152e;
  --muted: #627087;
  --line: #dce3ed;
  --surface: #f5f7fb;
  --white: #ffffff;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  min-width: 0;
  overflow: clip;
}

.container {
  width: min(var(--max-width), calc(100% - 80px));
  margin: 0 auto;
}

.shell {
  width: min(var(--max-width), calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 80px;
  border-bottom: 1px solid rgba(220, 230, 242, 0.8);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(145%);
}

.nav-wrap {
  display: flex;
  width: min(1380px, calc(100% - 56px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  flex: none;
  align-items: center;
}

.brand-link img {
  display: block;
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #38506f;
  font-size: 13px;
  font-weight: 520;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  inset: auto 100% -6px 0;
  height: 1px;
  background: #1477ff;
  content: "";
  transition: right 220ms ease;
}

.main-nav > a:not(.nav-cta):hover {
  color: #081b45;
}

.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #081b45;
  color: white;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.nav-cta:hover {
  background: #0b4cd2;
  box-shadow: 0 15px 35px rgba(11, 76, 210, 0.2);
  transform: translateY(-2px);
}

.arrow-icon {
  width: 17px;
  height: 17px;
  flex: none;
}

.arrow-icon path {
  stroke: currentColor;
  stroke-width: 1.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: transparent;
}

.menu-button span {
  width: 22px;
  height: 1px;
  background: #081b45;
  transition: transform 200ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

.eyebrow {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  gap: 12px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--cyan-400);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding-top: 80px;
  background:
    radial-gradient(circle at 82% 20%, rgba(18, 100, 246, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #061126 66%, #071933);
  color: white;
}

.hero-grid {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background-image: radial-gradient(rgba(97, 149, 255, 0.19) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to left, black, transparent 82%);
  opacity: 0.45;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(36, 133, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -270px;
  right: -60px;
  width: 720px;
  height: 720px;
}

.hero-orbit-two {
  top: -125px;
  right: 95px;
  width: 430px;
  height: 430px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  padding: 106px 0 78px;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  align-items: center;
  gap: 110px;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(50px, 5.25vw, 78px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.hero-copy h1 span {
  color: var(--blue-500);
  font-weight: 650;
}

.hero-lead {
  max-width: 715px;
  margin: 30px 0 0;
  color: #adb8ca;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: 13px;
  font-weight: 700;
  transition: 180ms ease;
}

.button-primary {
  background: var(--blue-600);
  color: white;
  box-shadow: 0 14px 36px rgba(18, 100, 246, 0.22);
}

.button-primary:hover {
  background: #2d78ff;
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #d7deea;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.hero-note {
  position: relative;
  z-index: 3;
  padding: 32px;
  border: 1px solid rgba(135, 170, 228, 0.15);
  border-radius: 4px;
  background: rgba(10, 27, 57, 0.63);
  backdrop-filter: blur(16px);
}

.hero-note-index {
  display: block;
  margin-bottom: 64px;
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-note p {
  margin: 0 0 11px;
  color: #7f90ac;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 22px;
  font-weight: 550;
  line-height: 1.45;
}

.hero-note-line {
  height: 1px;
  margin: 25px 0 19px;
  background: linear-gradient(to right, var(--blue-500), rgba(35, 134, 255, 0));
}

.hero-note small {
  display: block;
  color: #8f9db2;
  font-size: 10px;
  line-height: 1.65;
}

.hero-metrics {
  display: grid;
  gap: 0;
}

.hero-metrics > p {
  margin-bottom: 18px;
}

.hero-metrics > div {
  display: grid;
  padding: 17px 0;
  border-top: 1px solid rgba(135, 170, 228, 0.15);
  grid-template-columns: 82px 1fr;
  align-items: baseline;
  gap: 14px;
}

.hero-metrics > div strong {
  color: white;
  font-size: 36px;
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-metrics > div span {
  color: #9daabe;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-metrics > small {
  padding-top: 18px;
  border-top: 1px solid rgba(135, 170, 228, 0.15);
}

.format-strip {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  color: #8b99b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.format-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-500);
}

.formats-section {
  padding: 120px 0;
  background: #f5f8fc;
}

.formats-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.formats-grid article {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.formats-grid article > span {
  display: block;
  margin-bottom: 76px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.formats-grid h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.formats-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.audiences {
  display: grid;
  margin-top: 24px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  background: white;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 36px;
}

.audiences h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.audiences ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.audiences li {
  padding: 9px 12px;
  border: 1px solid #d7e0ec;
  border-radius: 999px;
  color: #4c5d76;
  font-size: 10px;
  font-weight: 650;
}

.training-section {
  padding: 120px 0 136px;
  background: white;
}

.section-intro h2,
.upcoming-heading h2,
.method-copy h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(38px, 4.35vw, 60px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.07;
}

.split-heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 100px;
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

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

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

.path-card {
  position: relative;
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue-600);
  border-radius: 4px;
  background: var(--surface);
}

.path-card-wide {
  grid-column: 1 / -1;
}

.path-card-foundation {
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--cyan-400);
  background:
    radial-gradient(circle at 92% 8%, rgba(35, 134, 255, 0.2), transparent 28%),
    linear-gradient(138deg, var(--navy-950), var(--navy-800));
  color: white;
}

.path-card-productivity {
  border-top-color: var(--cyan-400);
}

.path-card-growth {
  border-top-color: var(--blue-600);
}

.path-card-efficiency {
  border-top-color: #1d66c9;
}

.path-card-adoption {
  border-top-color: #25a8d5;
}

.path-topline {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.path-topline > span {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card-foundation .path-topline > span {
  color: var(--cyan-400);
}

.path-topline > div {
  display: flex;
  gap: 8px;
}

.path-topline b {
  padding: 8px 10px;
  border: 1px solid rgba(18, 100, 246, 0.14);
  border-radius: 999px;
  color: #4c5d76;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-card-foundation .path-topline b {
  border-color: rgba(255, 255, 255, 0.16);
  color: #b8c5d9;
}

.path-copy {
  display: grid;
  margin-bottom: 30px;
  gap: 18px;
}

.path-card-wide .path-copy {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
}

.path-copy p {
  margin: 0;
}

.path-copy > div > p {
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card-foundation .path-copy > div > p {
  color: var(--cyan-400);
}

.path-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.path-copy > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.path-card-foundation .path-copy > p {
  color: #93a3bb;
}

.module-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d9e1ec;
  list-style: none;
}

.module-list-two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-list-two-columns li:nth-child(odd) {
  padding-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.module-list-two-columns li:nth-child(even) {
  padding-left: 26px;
}

.module-list li {
  display: grid;
  min-height: 94px;
  padding: 22px 0;
  border-bottom: 1px solid #d9e1ec;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.module-list li > span {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.module-list strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.module-list small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.path-card-foundation .module-list {
  border-color: rgba(255, 255, 255, 0.12);
}

.path-card-foundation .module-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.path-card-foundation .module-list li > span {
  color: var(--cyan-400);
}

.path-card-foundation .module-list strong {
  color: white;
}

.path-card-foundation .module-list small {
  color: #8f9db3;
}

.path-link {
  display: inline-flex;
  margin-top: 26px;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.path-link span {
  transition: transform 180ms ease;
}

.path-link:hover span {
  transform: translateX(4px);
}

.customization-note {
  display: grid;
  min-height: 310px;
  margin-top: 24px;
  padding: 54px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 198, 247, 0.18), transparent 30%),
    linear-gradient(135deg, #073692, #0e62e5 68%, #1785ff);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  color: white;
}

.customization-note .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.customization-note h3 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.customization-note > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.8;
}

.training-card {
  position: relative;
  display: flex;
  min-height: 670px;
  padding: 34px 34px 30px;
  border-radius: 4px;
  flex-direction: column;
  overflow: hidden;
}

.path-card-dynamic {
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  background: var(--surface);
}

.catalog-module-description {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.training-card-light {
  border: 1px solid var(--line);
  background: var(--surface);
}

.training-card-blue {
  background: linear-gradient(142deg, #0a4ed8, #0d6af2 56%, #238bff);
  color: white;
  box-shadow: 0 34px 76px rgba(15, 83, 205, 0.18);
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.training-card-blue .card-number {
  color: white;
}

.card-tag {
  padding: 9px 12px;
  border: 1px solid rgba(12, 77, 213, 0.15);
  border-radius: 999px;
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.training-card-blue .card-tag {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.card-visual {
  position: relative;
  height: 188px;
  margin: 26px -34px 29px;
  overflow: hidden;
}

.card-visual-mindset {
  display: flex;
  border-top: 1px solid #d9e1ed;
  border-bottom: 1px solid #d9e1ed;
  align-items: center;
  justify-content: center;
  gap: 27px;
  background:
    radial-gradient(circle at center, rgba(18, 100, 246, 0.13), transparent 38%),
    linear-gradient(90deg, transparent 49.8%, rgba(12, 77, 213, 0.08) 50%, transparent 50.2%);
  color: var(--ink);
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-visual-mindset::before,
.card-visual-mindset::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(18, 100, 246, 0.17);
  border-radius: 50%;
  content: "";
}

.card-visual-mindset::before {
  left: 12%;
}

.card-visual-mindset::after {
  right: 12%;
}

.card-visual-mindset span,
.card-visual-mindset strong {
  position: relative;
  z-index: 2;
}

.card-visual-mindset strong {
  color: var(--blue-600);
  font-size: 38px;
  font-weight: 350;
}

.card-visual-data {
  display: flex;
  padding: 38px 38px 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  flex-direction: column;
  justify-content: flex-end;
  background-image: linear-gradient(rgba(255,255,255,.085) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.085) 1px, transparent 1px);
  background-size: 32px 32px;
}

.data-bars {
  display: flex;
  height: 92px;
  align-items: flex-end;
  gap: 14px;
}

.data-bars i {
  display: block;
  width: 13%;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.9);
}

.data-bars i:nth-child(1) { height: 30%; opacity: 0.48; }
.data-bars i:nth-child(2) { height: 52%; opacity: 0.6; }
.data-bars i:nth-child(3) { height: 43%; opacity: 0.7; }
.data-bars i:nth-child(4) { height: 75%; opacity: 0.84; }
.data-bars i:nth-child(5) { height: 100%; }

.data-signal {
  margin-top: 15px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.card-content {
  flex: 1;
}

.card-content h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 600;
  letter-spacing: -0.042em;
  line-height: 1.12;
}

.card-content > p {
  max-width: 540px;
  margin: 19px 0 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.training-card-blue .card-content > p {
  color: rgba(255, 255, 255, 0.78);
}

.card-content ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.card-content li {
  position: relative;
  padding-left: 17px;
  color: #35445f;
  font-size: 12px;
  line-height: 1.6;
}

.card-content li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-600);
  content: "";
}

.training-card-blue .card-content li {
  color: rgba(255, 255, 255, 0.86);
}

.training-card-blue .card-content li::before {
  background: white;
}

.card-link {
  display: flex;
  min-height: 48px;
  margin-top: 30px;
  border-top: 1px solid #d7e0eb;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
}

.card-link span {
  font-size: 22px;
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translate(3px, -3px);
}

.training-card-blue .card-link {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.upcoming-section {
  padding: 112px 0 122px;
  background: var(--navy-900);
  color: white;
}

.upcoming-heading {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 100px;
}

.upcoming-heading h2 {
  max-width: 720px;
}

.upcoming-heading > p {
  margin: 0 0 4px;
  color: #8f9db3;
  font-size: 14px;
  line-height: 1.85;
}

.upcoming-grid {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(4, 1fr);
}

.upcoming-grid article {
  display: flex;
  min-height: 278px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-direction: column;
}

.upcoming-grid article > span {
  color: var(--cyan-400);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.upcoming-grid article strong {
  margin-top: auto;
  font-size: 20px;
  font-weight: 560;
  line-height: 1.35;
}

.upcoming-grid article p {
  margin: 14px 0 0;
  color: #8391a7;
  font-size: 11px;
  line-height: 1.6;
}

.upcoming-grid .upcoming-open {
  background: rgba(18, 100, 246, 0.12);
}

.method-section {
  padding: 132px 0;
  background: #eef3fa;
}

.method-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 118px;
}

.method-copy {
  position: sticky;
  top: 122px;
}

.method-copy h2 span {
  color: var(--blue-600);
}

.method-copy > p:not(.eyebrow) {
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.method-copy .method-formula {
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.method-formula span {
  margin: 0 5px;
  color: var(--blue-600);
}

.method-copy blockquote {
  margin: 34px 0 0;
  padding: 22px 0 0 26px;
  border-top: 1px solid #ced8e7;
  border-left: 2px solid var(--blue-600);
  color: #263a5b;
  font-size: 15px;
  font-style: normal;
  font-weight: 550;
  line-height: 1.7;
}

.method-steps {
  display: grid;
  gap: 13px;
}

.method-steps article {
  display: grid;
  min-height: 142px;
  padding: 30px 34px;
  border: 1px solid #d7e0ec;
  border-radius: 4px;
  background: white;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 25px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.method-steps article:hover {
  border-color: rgba(18, 100, 246, 0.38);
  box-shadow: 0 20px 50px rgba(7, 21, 46, 0.08);
  transform: translateX(5px);
}

.method-steps article > span {
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.method-steps h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.method-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.capabilities-section {
  padding: 128px 0 140px;
  background: white;
}

.centered-intro {
  max-width: 930px;
  margin: 0 auto 74px;
  text-align: center;
}

.centered-intro .eyebrow {
  justify-content: center;
}

.centered-intro h2 {
  margin: 0;
  font-size: clamp(39px, 4.4vw, 61px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.centered-intro > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.capabilities-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.capabilities-grid article {
  min-height: 292px;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capabilities-grid article > span {
  display: block;
  margin-bottom: 104px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 700;
}

.capabilities-grid h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 630;
  letter-spacing: -0.02em;
}

.capabilities-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.faq-section {
  padding: 128px 0 136px;
  background: #f5f8fc;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 122px;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.faq-heading > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid #ced8e7;
}

.faq-list details {
  border-bottom: 1px solid #ced8e7;
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 620;
  line-height: 1.5;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--blue-600);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 690px;
  margin: -3px 0 27px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.program-hero {
  position: relative;
  padding: 178px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(27, 126, 255, 0.22), transparent 31%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: white;
}

.program-hero::after {
  position: absolute;
  top: -350px;
  right: -190px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(37, 198, 247, 0.15);
  border-radius: 50%;
  content: "";
}

.program-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  margin-bottom: 58px;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #93a3bb;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #b8c5d9;
}

.breadcrumb a:hover {
  color: var(--cyan-400);
}

.program-hero h1 {
  max-width: 990px;
  margin: 24px 0 0;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.program-hero h1 span {
  color: var(--blue-500);
}

.program-lead {
  max-width: 790px;
  margin: 34px 0 0;
  color: #b8c5d9;
  font-size: 16px;
  line-height: 1.8;
}

.program-meta {
  display: flex;
  margin: 38px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.program-meta li {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #d2dcea;
  font-size: 10px;
  font-weight: 650;
}

.program-section {
  padding: 120px 0 132px;
  background: white;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: start;
  gap: 80px;
}

.program-content h2,
.related-section h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.program-content > p {
  max-width: 760px;
  margin: 26px 0 46px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.program-module-list li {
  min-height: 108px;
  grid-template-columns: 42px 1fr;
}

.program-module-list strong {
  font-size: 15px;
}

.program-facts {
  padding: 34px;
  border-top: 3px solid var(--cyan-400);
  background: #eef3fa;
}

.program-facts > p {
  margin: 0 0 24px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-facts dl {
  margin: 0;
}

.program-facts dl > div {
  padding: 18px 0;
  border-top: 1px solid #d4deeb;
}

.program-facts dt {
  color: #7c8ba1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-facts dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.program-facts .button {
  width: 100%;
  margin-top: 24px;
}

.program-method .method-copy {
  position: static;
}

.related-section {
  padding: 118px 0;
  background: #f5f8fc;
}

.related-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.related-grid a {
  display: flex;
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line);
  background: white;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.related-grid a:hover {
  border-color: rgba(18, 100, 246, 0.35);
  box-shadow: 0 18px 44px rgba(7, 21, 46, 0.07);
  transform: translateY(-3px);
}

.related-grid small {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid strong {
  max-width: 420px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.related-grid span {
  color: var(--blue-600);
}

.contact-section {
  padding: 0 0 100px;
  background: white;
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 440px;
  padding: 74px 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(51, 146, 255, 0.33), transparent 23%),
    linear-gradient(135deg, #073692, #0e62e5 64%, #1785ff);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  color: white;
}

.contact-card::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-card > div > p:not(.eyebrow) {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.8;
}

.button-contact {
  flex: 0 0 auto;
  background: white;
  color: var(--blue-700);
}

.button-contact:hover {
  box-shadow: 0 15px 36px rgba(2, 11, 28, 0.18);
  transform: translateY(-2px);
}

.site-footer {
  background: var(--white);
  color: #081b45;
}

.footer-main {
  display: flex;
  padding: 82px 0 68px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

.footer-statement img {
  display: block;
  width: 205px;
}

.footer-statement p {
  margin: 30px 0 0;
  color: #67758b;
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 90px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links span {
  margin-bottom: 8px;
  color: #8b98aa;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: #081b45;
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #1477ff;
}

.footer-bottom {
  display: flex;
  padding: 24px 0 30px;
  border-top: 1px solid #dce6f2;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8b98aa;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .container {
    width: min(var(--max-width), calc(100% - 52px));
  }

  .hero-content {
    gap: 55px;
  }

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

  .faq-layout {
    gap: 60px;
  }

  .path-card-wide .path-copy,
  .customization-note {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .method-layout {
    gap: 72px;
  }

  .contact-card {
    padding: 64px 54px;
    grid-template-columns: 1fr;
  }

  .button-contact {
    width: fit-content;
  }
}

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

  .main-nav {
    position: fixed;
    inset: 80px 0 auto;
    display: flex;
    min-height: calc(100svh - 80px);
    padding: 50px 28px;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    font-size: 23px;
    opacity: 0;
    transform: translateY(-115%);
    transition: transform 260ms ease, opacity 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta {
    min-height: 52px;
    margin-top: 12px;
    font-size: 13px;
  }

  .hero-content {
    min-height: auto;
    padding: 90px 0 64px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-note {
    max-width: 470px;
  }

  .hero-note-index {
    margin-bottom: 34px;
  }

  .format-strip {
    min-height: 86px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .format-strip i {
    display: none;
  }

  .split-heading,
  .upcoming-heading,
  .method-layout,
  .faq-layout,
  .program-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .audiences {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-heading {
    position: static;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

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

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

  .path-card-wide {
    grid-column: auto;
  }

  .module-list-two-columns {
    grid-template-columns: 1fr;
  }

  .module-list-two-columns li:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .module-list-two-columns li:nth-child(even) {
    padding-left: 0;
  }

  .training-card {
    min-height: 650px;
  }

  .method-copy {
    position: static;
  }

  .capabilities-grid article > span {
    margin-bottom: 72px;
  }
}

@media (max-width: 560px) {
  .container,
  .shell,
  .nav-wrap {
    width: calc(100% - 36px);
  }

  .site-header {
    height: 72px;
  }

  .brand-link img {
    width: 145px;
  }

  .main-nav {
    inset: 72px 0 auto;
    min-height: calc(100svh - 72px);
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-content {
    padding: 74px 0 54px;
  }

  .hero-copy h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    padding: 26px;
  }

  .format-strip {
    padding: 24px 0;
  }

  .training-section,
  .formats-section,
  .upcoming-section,
  .capabilities-section,
  .faq-section,
  .program-section,
  .related-section {
    padding: 88px 0;
  }

  .formats-grid article {
    min-height: 235px;
    padding: 27px 24px;
  }

  .formats-grid article > span {
    margin-bottom: 58px;
  }

  .audiences {
    padding: 27px 24px;
  }

  .faq-list summary {
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 14px;
  }

  .program-hero {
    padding: 132px 0 82px;
  }

  .breadcrumb {
    margin-bottom: 42px;
  }

  .program-hero h1 {
    font-size: 48px;
  }

  .program-lead {
    font-size: 14px;
  }

  .program-facts {
    padding: 28px 24px;
  }

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

  .method-section {
    padding: 92px 0;
  }

  .split-heading,
  .upcoming-heading {
    margin-bottom: 44px;
  }

  .training-card {
    min-height: 0;
    padding: 26px 23px;
  }

  .path-card {
    padding: 28px 23px;
  }

  .path-topline {
    margin-bottom: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .path-copy h3 {
    font-size: 29px;
  }

  .module-list li {
    min-height: 0;
  }

  .customization-note {
    min-height: 440px;
    padding: 44px 28px;
  }

  .card-visual {
    margin-right: -23px;
    margin-left: -23px;
  }

  .card-visual-mindset {
    gap: 15px;
    font-size: 18px;
  }

  .card-content h3 {
    font-size: 30px;
  }

  .upcoming-grid,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-grid article {
    min-height: 230px;
  }

  .method-steps article {
    min-height: 130px;
    padding: 25px 23px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .capabilities-grid article {
    min-height: 235px;
  }

  .capabilities-grid article > span {
    margin-bottom: 58px;
  }

  .contact-section {
    padding-bottom: 64px;
  }

  .contact-card {
    width: 100%;
    min-height: 520px;
    padding: 54px 28px;
  }

  .button-contact {
    width: 100%;
  }

  .footer-main {
    padding-top: 64px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

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