/* MIT-WPU GŌA LP — responsive 360px–2400px+ — no framework */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .lp-pathway__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .lp-pathway__cta {
    display: inline-flex !important;
    visibility: visible !important;
    width: fit-content !important;
    height: auto !important;
    margin: 0;
    padding: 12px 16px;
    overflow: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ——— 9a. Pathway quiz flow ——— */
.lp-pathway__intro {
  display: contents;
}

.lp-pathway__hero-figure-wrap,
.lp-pathway__copy,
.lp-pathway__visual {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.lp-pathway__panel[data-pathway-state]:not([data-pathway-state="intro"]) .lp-pathway__hero-figure-wrap,
.lp-pathway__panel[data-pathway-state]:not([data-pathway-state="intro"]) .lp-pathway__copy,
.lp-pathway__panel[data-pathway-state]:not([data-pathway-state="intro"]) .lp-pathway__visual {
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
}

.lp-pathway__panel[data-pathway-state]:not([data-pathway-state="intro"])::before,
.lp-pathway__panel[data-pathway-state]:not([data-pathway-state="intro"])::after {
  content: none !important;
}

.lp-pathway__quiz {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.lp-pathway__panel[data-pathway-state]:not([data-pathway-state="intro"]) .lp-pathway__quiz {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lp-pathway__quiz-brand {
  position: absolute;
  top: clamp(20px, 2.4vw, 30px);
  left: clamp(22px, 3vw, 54px);
  z-index: 10;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(54px, 5.4vw, 92px);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}

.lp-pathway__panel[data-pathway-state="loading"] .lp-pathway__quiz-brand {
  display: none;
}

.lp-pathway__panel[data-pathway-state="programmes"] .lp-pathway__quiz-brand {
  display: none;
}

.lp-pathway__panel[data-pathway-state="interests"] .lp-pathway__quiz-brand {
  display: none;
}

.lp-pathway__screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lp-pathway__screen.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lp-pathway__screen--programmes {
  overflow: hidden;
  background: #243f92 url("assets/section9/pathway-programmes-bg.png") center center / cover no-repeat;
}

.lp-pathway__screen--programmes::before,
.lp-pathway__screen--programmes::after {
  content: none;
}

.lp-pathway__screen--interests {
  background: #020219;
}

.lp-pathway__screen--programmes .lp-pathway__screen-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1520px, 100%);
  margin: 0 auto;
  justify-content: flex-start;
  gap: 43px;
  padding-top: clamp(56px, 5.4vw, 84px);
  padding-right: clamp(28px, 5.6vw, 100px);
  padding-bottom: clamp(54px, 6vw, 80px);
  padding-left: clamp(28px, 5.6vw, 100px);
}

.lp-pathway__screen--programmes .lp-pathway__quiz-title {
  max-width: none;
}

.lp-pathway__screen--loading {
  background: #ffffff;
}

.lp-pathway__screen--result {
  background: linear-gradient(90deg, #214ab1 0%, #010767 100%);
}

.lp-pathway__screen-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  gap: 42px;
  padding: clamp(116px, 12.6vw, 176px) clamp(28px, 4.4vw, 72px) clamp(52px, 6vw, 84px);
  box-sizing: border-box;
}

.lp-pathway__quiz-title {
  max-width: 420px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.11;
  letter-spacing: -0.03em;
  text-transform: none;
  color: #fff;
}

.lp-pathway__quiz-title--wide {
  max-width: 620px;
  font-size: clamp(56px, 5vw, 96px);
  line-height: 0.92;
}

.lp-pathway__choice-grid {
  display: grid;
  gap: 18px 38px;
}

.lp-pathway__choice-grid--programmes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, auto));
  grid-auto-flow: column;
  align-content: start;
  gap: 20px clamp(28px, 4.2vw, 69px);
}

.lp-pathway__choice-grid--interests {
  width: min(550px, 100%);
  margin-left: auto;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.lp-pathway__choice {
  position: relative;
  display: flex;
  min-height: 83px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 34px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: transparent;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  text-align: left;
  text-transform: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.lp-pathway__choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(63, 89, 244, 0.14);
}

.lp-pathway__choice:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 4px;
}

.lp-pathway__choice.is-selected,
.lp-pathway__choice[aria-pressed="true"] {
  border-color: #ffffff;
  background: #ffffff;
  box-shadow:
    0 0 114px rgba(70, 83, 245, 0.23),
    0 0 48px rgba(70, 83, 245, 0.17),
    0 0 26px rgba(70, 83, 245, 0.14);
  color: #020219;
}

.lp-pathway__choice-title,
.lp-pathway__choice-subtitle {
  display: block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.18;
}

.lp-pathway__choice-title {
  font-size: 20px;
  font-weight: 500;
}

.lp-pathway__choice-subtitle {
  font-size: 16px;
  font-weight: 400;
}

.lp-pathway__screen-inner--interests {
  display: grid;
  grid-template-columns: minmax(0, 868px) minmax(420px, 550px);
  align-items: start;
  align-content: start;
  justify-content: center;
  gap: clamp(44px, 5vw, 74px);
  padding-top: clamp(72px, 7vw, 108px);
  padding-right: clamp(28px, 7vw, 145px);
  padding-bottom: clamp(64px, 7vw, 96px);
  padding-left: clamp(28px, 5.2vw, 90px);
}

.lp-pathway__question-stack {
  display: flex;
  align-items: flex-start;
  gap: 44px;
}

.lp-pathway__step {
  margin: 0;
  padding-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.18;
  text-transform: uppercase;
  color: #fff;
  white-space: pre-line;
}

.lp-pathway__question-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-pathway__screen--interests .lp-pathway__question-copy {
  gap: 0;
}

.lp-pathway__screen--interests .lp-pathway__selected-programme {
  display: none;
}

.lp-pathway__selected-programme {
  display: inline-flex;
  width: fit-content;
  max-width: 683px;
  margin: 0;
  padding: 18px 34px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
  color: #fff;
}

.lp-pathway__loader-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: clamp(116px, 12.6vw, 176px) 56px 56px;
  box-sizing: border-box;
}

.lp-pathway__loader-orb {
  position: relative;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(244, 236, 255, 0.9) 24%, rgba(239, 238, 255, 0.6) 46%, rgba(255, 255, 255, 0.25) 72%, rgba(255, 255, 255, 0) 100%);
  box-shadow:
    inset -30px -38px 60px rgba(108, 90, 235, 0.12),
    inset 22px 24px 42px rgba(255, 255, 255, 0.74),
    0 18px 80px rgba(89, 77, 240, 0.12);
  overflow: hidden;
  animation: lp-pathway-orb-float 3.2s ease-in-out infinite;
}

.lp-pathway__loader-orb::before,
.lp-pathway__loader-orb::after,
.lp-pathway__loader-orb-core {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.lp-pathway__loader-orb::before {
  background:
    conic-gradient(from 35deg, rgba(255, 255, 255, 0) 0deg, rgba(74, 124, 255, 0.95) 86deg, rgba(213, 98, 255, 0.85) 150deg, rgba(255, 255, 255, 0) 220deg 360deg);
  filter: blur(10px);
  mix-blend-mode: multiply;
  animation: lp-pathway-orb-spin 4s linear infinite;
}

.lp-pathway__loader-orb::after {
  inset: 18%;
  background: radial-gradient(circle at 36% 36%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.lp-pathway__loader-orb-core {
  inset: 20%;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(135deg, rgba(120, 98, 255, 0.12), rgba(84, 150, 255, 0.12));
  filter: blur(12px);
}

.lp-pathway__loader-text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: #010767;
}

.lp-pathway__panel[data-pathway-state="result"] .lp-pathway__quiz-brand {
  display: none;
}

.lp-pathway__result-shell {
  display: grid;
  width: 100%;
  max-width: min(1720px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 585px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 4vw, 70px);
  padding: clamp(56px, 6vw, 75px) clamp(28px, 5vw, 100px);
  box-sizing: border-box;
}

.lp-pathway__result-left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 60px);
  color: #fff;
}

.lp-pathway__result-reset {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

.lp-pathway__result-reset::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-38deg);
}

.lp-pathway__result-reset:focus-visible,
.lp-pathway__result-apply:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 6px;
}

.lp-pathway__result-combo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.lp-pathway__result-programme,
.lp-pathway__result-interest {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.18;
  color: #fff;
}

.lp-pathway__result-plus {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(68px, 5vw, 100px);
  font-style: italic;
  font-weight: 200;
  line-height: 0.9;
  color: #fff;
}

.lp-pathway__result-apply {
  justify-content: space-between;
  width: 245px;
  padding: 15px 15px 15px 31px;
  border-radius: 14px;
}

.lp-pathway__result-apply .lp-btn__ico {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  background: none;
}

.lp-pathway__result-card {
  width: 100%;
  max-width: 1135px;
  margin-left: auto;
  padding: clamp(36px, 4vw, 58px) clamp(40px, 5vw, 100px) clamp(28px, 3vw, 33px) clamp(32px, 3vw, 54px);
  border-radius: 42.5px;
  background: #fff;
  box-shadow:
    0 0 114px rgba(70, 83, 245, 0.23),
    0 0 47.626px rgba(70, 83, 245, 0.17),
    0 0 25.463px rgba(70, 83, 245, 0.14),
    0 0 14.275px rgba(70, 83, 245, 0.12),
    0 0 7.581px rgba(70, 83, 245, 0.09),
    0 0 3.155px rgba(70, 83, 245, 0.06);
  box-sizing: border-box;
}

.lp-pathway__result-row {
  display: grid;
  align-items: start;
}

.lp-pathway__result-row--summary {
  grid-template-columns: minmax(180px, 306px) minmax(0, 1fr);
  gap: 10px clamp(24px, 3vw, 40px);
}

.lp-pathway__result-row--outcomes {
  grid-template-columns: minmax(140px, 175px) minmax(0, 1fr);
  gap: 10px clamp(28px, 4vw, 72px);
  margin-top: clamp(40px, 5vw, 100px);
}

.lp-pathway__result-section-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.16;
  color: #214ab1;
}

.lp-pathway__result-copy {
  max-width: 555px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.36;
  color: #000;
}

.lp-pathway__result-outcomes {
  display: flex;
  min-height: 309px;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 42px;
  list-style: none;
  border-left: 1px solid rgba(0, 0, 0, 0.38);
  box-sizing: border-box;
}

.lp-pathway__result-outcome {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.39;
  color: #000;
}

.lp-pathway__result-outcome:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@keyframes lp-pathway-orb-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes lp-pathway-orb-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

:root {
  --lp-pad: clamp(16px, 4.2vw, 80px);
  --lp-pad-l: clamp(16px, 8.5vw, 164px);
  --lp-pad-m: clamp(12px, 3vw, 70px);
  /* Cap content width; scales with viewport up to 2400px (ultra-wide / zoomed-out laptops) */
  --lp-max: 2400px;
}


/* COUNTDOWN_HEADER_ONLY */
/* ==========================================================================
   COUNTDOWN HEADER — application deadline
   ========================================================================== */

:root {
  --countdown-primary: #b0002d;
  --countdown-primary-dark: #8a0023;
  --countdown-navy: #010767;
  --color-white: #ffffff;
  --banner-max-w: 1720px;
  --banner-last-date-bg: #033695;
}

.lp-countdown-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: var(--color-white, #ffffff);
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.09);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.09);
    padding: clamp(8px, 1.042vw, 12px) clamp(16px, 2.083vw, 24px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.lp-countdown-header__inner {
    max-width: var(--banner-max-w, 1720px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerCountdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.25vw, 16px);
    flex-wrap: wrap;
    width: 100%;
}

.cdLabel {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.458vw, 24px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--countdown-navy, #010767);
    text-align: center;
    white-space: nowrap;
}

.cdBoxes {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cdItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, var(--countdown-primary, #b0002d) 0%, var(--countdown-primary-dark, #8a0023) 100%);
    border-radius: 6px;
    padding: 4px clamp(8px, 0.833vw, 12px);
    min-width: clamp(44px, 4.167vw, 72px);
}

.cdNum {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 1.25vw, 22px);
    font-weight: 700;
    color: var(--color-white, #ffffff);
    line-height: 1;
}

.cdUnit {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 0.729vw, 14px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 2px;
}

.cdColon {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.042vw, 18px);
    font-weight: 700;
    color: var(--countdown-primary, #b0002d);
    margin-bottom: 10px;
    flex-shrink: 0;
}

.cdStartsSoon,
.cdExpired {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.042vw, 20px);
    font-weight: 700;
    white-space: nowrap;
}

.cdStartsSoon { color: var(--countdown-primary, #b0002d); }
.cdExpired { color: var(--countdown-navy, #010767); }

@media screen and (max-width: 768px) {
    .headerCountdown {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: clamp(6px, 1.5vw, 10px);
    }

    .cdLabel {
        font-size: clamp(12px, 3.2vw, 14px);
        width: 100%;
        text-align: center;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .cdBoxes {
        width: 100%;
        justify-content: center;
        flex-shrink: 0;
    }

    .cdItem {
        min-width: 32px;
        padding: 3px 6px;
    }

    .cdNum { font-size: 15px; }
    .cdUnit { font-size: 10px; }
    .cdColon { font-size: 14px; margin-bottom: 8px; }
}

@media print {
    .lp-countdown-header { display: none !important; }
}

/* LAST_DATE_STRIP — shared with B.Tech LP */
.banner__last-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  background: var(--banner-last-date-bg, #033695);
  border-radius: 10px;
  padding: clamp(12px, 1.042vw, 20px) clamp(16px, 1.667vw, 32px) clamp(12px, 1.042vw, 20px) clamp(10px, 0.833vw, 16px);
  box-sizing: border-box;
  align-self: flex-start;
  flex-shrink: 0;
}

.banner__last-date-text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.banner__last-date-label {
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
}

.banner__last-date-value {
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
}

.banner__last-date-value strong {
  font-weight: 700;
}

.banner__last-date-sup {
  font-weight: 700;
  font-size: 0.645em;
  line-height: 0;
  vertical-align: super;
}

.heroBanner__message .banner__last-date {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .heroBanner__message .banner__last-date {
    order: 5;
    margin-top: 12px;
    padding: 12px 16px 12px 10px;
  }

  .banner__last-date-label,
  .banner__last-date-value {
    font-size: 16px;
  }
}


html,
body {
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", "Instrument Sans", "Inter", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  color: #000;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* banner starts */
.hero {
  background: url('assets/6248d9ac-0c21-4e8d-98ac-65fe9dbfbe87.webp') no-repeat center center;
  background-size: cover;
  padding: 100px 80px;
  position: relative;
}

.bannerpic--desktop {
  position: absolute;
  bottom: 0;
  z-index: 9;
  left: 0;
  right: -15%;
  margin: 0 auto;
  width: 689px;
}

.hero h1 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 66px;
  font-style: normal;
  font-weight: 500;
  background-size: cover;
  line-height: 99%;
  /* 74.919px */
  letter-spacing: -1.514px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.hero h2 {
  color: #7FAAFF;
  text-shadow: 0 4.122px 4.122px rgba(0, 0, 0, 0.25);
  font-family: Montserrat, sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 104%;
  letter-spacing: -1.601px;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0 60px 0px;
}

.hero h2.hero__roles {
  text-transform: none;
  line-height: 1;
  font-size: 56px;
  --hero-role-ls: -1.2px;
  letter-spacing: var(--hero-role-ls);
  --hero-role-dur: 0.88s;
  --hero-role-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__roles-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.hero__roles-row {
  display: block;
  color: inherit;
  text-shadow: inherit;
  font-family: inherit;
  font-style: normal;
  line-height: 1;
  margin: 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    transform var(--hero-role-dur) var(--hero-role-ease),
    opacity var(--hero-role-dur) var(--hero-role-ease);
}

.hero__roles-row--primary .hero__roles-text {
  display: inline-block;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition:
    transform var(--hero-role-dur) var(--hero-role-ease),
    opacity var(--hero-role-dur) var(--hero-role-ease);
}

.hero__roles-row--secondary {
  font-weight: 400;
}

.hero__roles-row--secondary .hero__roles-promote-inner {
  display: inline-block;
}

.hero__roles-row--secondary .hero__roles-text {
  display: inline-block;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.65px;
  transition:
    font-size var(--hero-role-dur) var(--hero-role-ease),
    letter-spacing var(--hero-role-dur) var(--hero-role-ease);
}

.hero__roles--promote .hero__roles-row--primary .hero__roles-text {
  opacity: 0;
  transform: translate3d(0, -0.1em, 0);
}

.hero__roles--promote .hero__roles-row--secondary {
  transform: translate3d(0, var(--hero-promote-y, -52px), 0);
}

/* Grow type to primary size (no transform scale) so the line stays aligned. */
.hero__roles--promote .hero__roles-row--secondary .hero__roles-text {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: var(--hero-role-ls);
}

.hero__roles--incoming .hero__roles-row--primary .hero__roles-text {
  opacity: 0.97;
  transform: translate3d(0, 0.02em, 0);
  transition: none !important;
}

.hero__roles--incoming .hero__roles-row--secondary {
  opacity: 0;
  transform: translate3d(0, 0.28em, 0);
  transition: none !important;
}

.hero__roles--instant .hero__roles-row,
.hero__roles--instant .hero__roles-row--primary .hero__roles-text,
.hero__roles--instant .hero__roles-row--secondary .hero__roles-text {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {

  .hero__roles-row,
  .hero__roles-row--primary .hero__roles-text,
  .hero__roles-row--secondary .hero__roles-text {
    transition: none;
  }

  .hero__roles--promote .hero__roles-row--primary .hero__roles-text,
  .hero__roles--promote .hero__roles-row--secondary {
    transform: none !important;
    opacity: 1 !important;
  }

  .hero__roles--promote .hero__roles-row--secondary .hero__roles-text {
    font-size: unset;
    font-weight: unset;
    letter-spacing: unset;
  }

  .hero__roles--incoming .hero__roles-row--secondary,
  .hero__roles--incoming .hero__roles-row--primary .hero__roles-text {
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
  /* 26.6px */
  letter-spacing: -0.6px;
  max-width: 500px;
  padding-bottom: 30px;
}

.heroleft {
  display: inline-block;
  width: 69%;
}

.heroright {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  padding-top: 140px;
}

.heroright .form {
  padding: 20px;
  width: 380px;
  vertical-align: top;
  height: 500px;
  border-radius: 15px;
  background: #ffffff;
  right: 0;
  float: right;
}

@media only screen and (max-width: 1800px) {
  .bannerpic--desktop {
    max-width: 589px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero h2 {
    font-size: 60px;
    padding: 10px 0 30px 0px;
  }

  .hero h2.hero__roles {
    font-size: 48px;
    --hero-role-ls: -1.05px;
  }

  .hero .hero__roles-row--secondary .hero__roles-text {
    font-size: 28px;
    letter-spacing: -0.55px;
  }

  .hero p {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 1600px) {
  .hero {
    padding: 40px 30px;
  }

  .bannerpic--desktop {
    max-width: 460px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero h2 {
    font-size: 48px;
    padding: 10px 0 30px 0px;
  }

  .hero h2.hero__roles {
    font-size: 40px;
    --hero-role-ls: -0.9px;
  }

  .hero .hero__roles-row--secondary .hero__roles-text {
    font-size: 22px;
    letter-spacing: -0.45px;
  }

  .hero p {
    padding-bottom: 20px;
    font-size: 18px;
    max-width: 400px;
  }

  .heroright .form {
    width: 320px;
    height: 400px;
  }
}


/* Figma 374:541 — card layout <1200px in responsive.css; ≥1200px flat row + desktop banner */
@media (min-width: 1200px) {
  .hero__mob-card {
    display: contents;
  }

  .hero__mob-layers {
    display: none;
  }

  .hero__mob-middle,
  .hero__mob-typo {
    display: contents;
  }

  .hero__mob-figure {
    display: none;
  }
}

/* banner end */

.t-up {
  text-transform: uppercase;
}

.t-upw {
  text-transform: uppercase;
  color: #fff;
}

.t-body18 {
  font-size: 18px;
  letter-spacing: -0.54px;
  line-height: 1.34;
}

.t-body18w {
  font-size: 18px;
  line-height: 1.39;
}

.t-grad2 {
  background: linear-gradient(90deg, #214cb5, #0e214f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.t-grad3 {
  background: linear-gradient(90deg, #214cb5, #0e214f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.t-cap {
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 0.94;
  letter-spacing: -0.54px;
  color: #000;
}

.t-step {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 0.97;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}

.lp {
  width: 100%;
  max-width: var(--lp-max);
  min-width: 0;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Preserve decorative / hero crops (hero student photo uses natural aspect — not listed) */
.lp-hero__bg img,
.lp-campus-band img,
.lp-eli__bg img,
.lp-footer__bg-desktop .a,
.lp-footer__bg-mobile,
.lp-path__model,
.lp-path__bg img,
.lp-hero__enquire img {
  max-width: none;
}

.lp-fw-b {
  font-weight: 700;
}

/* ——— Buttons ——— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.22s ease;
}

.lp-btn--apply-blue {
  background: #7faaff;
}

.lp-btn--apply-red {
  background: #ce0637;
}

.lp-btn--apply-blue:hover,
.lp-btn--apply-blue:focus-visible {
  background: #5d95ff;
  box-shadow: 0 10px 28px rgba(33, 76, 181, 0.38);
  transform: translateY(-2px);
}

.lp-btn--apply-red:hover,
.lp-btn--apply-red:focus-visible {
  background: #b50532;
  box-shadow: 0 10px 28px rgba(160, 5, 45, 0.45);
  transform: translateY(-2px);
}

.lp-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition-duration: 0.12s;
}

.lp-btn--apply-blue .lp-btn__text,
.lp-btn--apply-red .lp-btn__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-btn--apply-red span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-btn--apply-blue span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.lp-btn__ico {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
/*   object-fit: contain; */
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.34, 1.45, 0.64, 1);
}

/* Arrow “pops” diagonally on hover to signal clickability */
.lp-btn:hover .lp-btn__ico,
.lp-btn:focus-visible .lp-btn__ico {
  transform: translate(5px, -4px) scale(1.05);
}

@media (hover: none) {
  .lp-btn:hover .lp-btn__ico {
    transform: none;
  }

  .lp-btn--apply-blue:hover,
  .lp-btn--apply-red:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .lp-btn,
  .lp-btn__ico,
  .lp-btn:active {
    transition-duration: 0.01ms;
  }

  .lp-btn--apply-blue:hover,
  .lp-btn--apply-red:hover,
  .lp-btn--apply-blue:focus-visible,
  .lp-btn--apply-red:focus-visible,
  .lp-btn:hover .lp-btn__ico,
  .lp-btn:focus-visible .lp-btn__ico {
    transform: none;
  }
}

.lp-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.lp-btn:focus:not(:focus-visible) {
  outline: none;
}

/* ——— 1. Hero — Figma 207:1402 ——— */
/* overflow visible so enquire / aside are never clipped at any viewport */
.lp-hero {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: visible;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  overflow: visible;
  /* pt 110, px 80, pb 0 — bottom edge flush with main row (Figma) */
  padding: clamp(48px, 10vw, 110px) var(--lp-pad) 0;
  padding-bottom: 0;
  box-sizing: border-box;
  gap: 0;
}

.lp-hero__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(28px, 3.2vw, 44px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-hero__page-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  letter-spacing: 0.01em;
  max-width: 42rem;
}

.lp-hero__logo {
  position: relative;
  width: 248px;
  max-width: min(248px, 100%);
  height: 96px;
  margin: 0;
  flex-shrink: 0;
}

.lp-hero__logo-shade {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 136px rgba(0, 0, 0, 0.13), 0 2.507px 56.818px rgba(0, 0, 0, 0.09), 0 1.34px 30.377px rgba(0, 0, 0, 0.08), 0 0.751px 17.029px rgba(0, 0, 0, 0.06), 0 0.399px 9.044px rgba(0, 0, 0, 0.05), 0 0.166px 3.763px rgba(0, 0, 0, 0.04);
}

.lp-hero__logo-img {
  position: absolute;
  left: 50%;
  top: 12px;
  width: min(241px, 97%);
  height: 73px;
  transform: translateX(-50%);
}

.lp-hero__logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero__row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  flex: 0 0 auto;
  margin: 0;
  gap: clamp(16px, 2.5vw, 40px);
  min-width: 0;
  overflow: visible;
}

/* Two layout columns: content + aside. Figure is position:absolute (out of flex flow), centered on row. */
.lp-hero__content {
  flex: 1 1 520px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  position: relative;
  z-index: 2;
}

.lp-hero__aside {
  flex: 0 0 auto;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  align-self: flex-start;
}

/* Fluid banner height 992px–1920px — Figma 207:1402: 880 / 744 at full artboard */
@media (min-width: 992px) {
  .lp-hero__row {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .lp-hero__content {
    min-height: clamp(520px, 42vw + 120px, 880px);
    width: 100%;
    max-width: min(760px, 100%);
  }

  .lp-hero__copy {
    min-height: clamp(420px, 36vw + 100px, 744px);
  }

  .lp-hero__center-photo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 1;
    pointer-events: none;
  }
}

.lp-hero__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

/* 207:1276: gap 16px between 207:1193 (lines) and 207:1195 (accent) */
.lp-hero__h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

/* 207:1193: Instrument wrapper in Figma; line text is Montserrat */
.lp-hero__h1-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.lp-hero__h1-lines p {
  margin: 0;
  font-size: clamp(24px, 5.5vw, 75.676px);
  line-height: 0.99;
  letter-spacing: -0.04em;
  /* 1920: -1.5135px */
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
}

.lp-hero__h1-lines p:nth-child(1),
.lp-hero__h1-lines p:nth-child(3) {
  font-weight: 500;
}

.lp-hero__h1-lines p:nth-child(2) {
  font-weight: 700;
}

/* 207:1195: gap 10px; leading 1.04 */
.lp-hero__accent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.04;
  font-family: "Montserrat", sans-serif;
}

.lp-hero__accent p:first-child {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 5.5vw, 80.059px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  /* 1920: -1.6012px */
  text-transform: uppercase;
  color: #7faaff;
  text-shadow: 0 4.122px 4.122px rgba(0, 0, 0, 0.25);
}

.lp-hero__accent p:last-child {
  margin: 0;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 41.224px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  /* 1920: -0.8245px */
  text-transform: uppercase;
  color: #7faaff;
  text-shadow: 0 4.122px 4.122px rgba(0, 0, 0, 0.25);
}

/* 207:1297: gap 10px */
.lp-hero__subrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

/* 207:1277: gap 56px between 207:1273 and 207:1272 */
.lp-hero__textbtn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  min-width: 0;
}

/* 207:1273: 20px / -0.6px / two blocks leading 1.33 */
.lp-hero__lead {
  min-width: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.lp-hero__lead p {
  margin: 0;
  font-size: 20px;
  line-height: 1.33;
  letter-spacing: -0.6px;
}

.lp-hero__lead p+p {
  margin-top: 0;
}

.lp-hero__lead strong {
  font-weight: 700;
}

.lp-hero__spacer {
  width: min(254px, 12vw);
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .lp-hero__spacer {
    display: none;
  }
}

.lp-hero__center-photo {
  flex: 0 1 auto;
  width: auto;
  max-width: none;
  height: auto;
  overflow: visible;
  line-height: 0;
}

.lp-hero__center-photo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(520px, 32vw);
  object-fit: unset;
  object-position: unset;
  pointer-events: none;
}

.lp-hero__enquire {
  flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  max-width: min(404px, 28vw);
  min-width: min(280px, 100%);
  aspect-ratio: 404 / 672;
  height: auto;
  min-height: 0;
  position: relative;
  z-index: 1;
}

.lp-hero__enquire img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Figma 207:1402 — 1920px artboard; fluid clamp 1920→2400+ so ultra-wide / zoom-out stays balanced */
@media (min-width: 1920px) {
  .lp-hero__inner {
    padding-top: clamp(110px, 5.73vw, 138px);
    padding-left: clamp(80px, 4.167vw, 120px);
    padding-right: clamp(80px, 4.167vw, 120px);
    padding-bottom: 0;
  }

  .lp-hero__row {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
  }

  .lp-hero__content {
    min-width: 0;
    width: 100%;
    max-width: min(820px, 100%);
    min-height: clamp(880px, 45.833vw, 1040px);
    height: clamp(880px, 45.833vw, 1040px);
  }

  .lp-hero__copy {
    min-height: clamp(744px, 38.75vw, 900px);
    height: clamp(744px, 38.75vw, 900px);
  }

  .lp-hero__h1-lines p {
    font-size: clamp(75.676px, 3.941vw, 92px);
    letter-spacing: -1.5135px;
  }

  .lp-hero__accent p:first-child {
    font-size: clamp(80.059px, 4.17vw, 96px);
    letter-spacing: -1.6012px;
  }

  .lp-hero__accent p:last-child {
    font-size: clamp(41.224px, 2.147vw, 50px);
    letter-spacing: -0.8245px;
  }

  .lp-hero__center-photo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    flex: unset;
    width: auto;
    height: auto;
  }

  .lp-hero__center-photo img {
    max-width: clamp(480px, 26vw, 640px);
  }

  .lp-hero__enquire {
    width: clamp(404px, 21.042vw, 500px);
    max-width: clamp(404px, 21.042vw, 500px);
    height: clamp(672px, 35vw, 830px);
    min-height: clamp(672px, 35vw, 830px);
    aspect-ratio: 404 / 672;
    flex: unset;
  }

  .lp-hero__lead p {
    font-size: clamp(20px, 1.05vw, 24px);
    line-height: 1.33;
    letter-spacing: -0.6px;
  }

  .lp-btn--apply-blue span {
    font-size: clamp(20px, 1.05vw, 24px);
    line-height: 1;
    letter-spacing: 0;
  }
}

/* ——— 2. World-ready section — Figma 1441:2087 ——— */
.lp-world {
  position: relative;
  width: 100%;
  min-height: 1120px;
  background: #fff;
  overflow: hidden;
}

.lp-world__art {
  position: absolute;
  inset: 17.6% 0 0;
  z-index: 0;
  pointer-events: none;
}

.lp-world__art img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.lp-world__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  min-height: 1120px;
  margin: 0 auto;
  padding: 185px 120px 0 250px;
  box-sizing: border-box;
}

.lp-world__copy {
  width: min(719px, 100%);
}

.lp-world__eyebrow {
  margin: 0 0 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #010767;
}

.lp-world__title {
  margin: 0 0 25px;
  padding-bottom: 0.08em;
  font-family: "Montserrat", sans-serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 86px;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #5697fe 0%, #010767 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lp-world__title-line {
  display: block;
}

.lp-world__body {
  margin: 0;
  width: min(719px, 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: -0.6px;
  color: #010767;
}

.lp-world__body strong {
  font-weight: 700;
}

.lp-world__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 25px;
  width: 412px;
  padding: 24px;
  border: 0.542px solid #151515;
  border-radius: 30px;
  background: linear-gradient(171.83deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  box-sizing: border-box;
  backdrop-filter: blur(11.378px);
  -webkit-backdrop-filter: blur(11.378px);
}

.lp-world__card-icon {
  display: flex;
  flex: 0 0 68px;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 11px;
  background: #fff;
  box-shadow:
    0 15px 80px rgba(0, 0, 0, 0.07),
    0 6.267px 33.422px rgba(0, 0, 0, 0.05),
    0 3.35px 17.869px rgba(0, 0, 0, 0.04),
    0 1.878px 10.017px rgba(0, 0, 0, 0.04),
    0 0.998px 5.32px rgba(0, 0, 0, 0.03),
    0 0.415px 2.214px rgba(0, 0, 0, 0.02);
}

.lp-world__card-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 43px;
  max-height: 43px;
}

.lp-world__card p {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.6px;
  color: #fff;
}

.lp-world__card--careers {
  left: auto;
  right: 806px;
  top: 776px;
}

.lp-world__card--ground {
  left: auto;
  right: 165px;
  top: 803px;
}

.lp-world__card--outcomes {
  left: auto;
  right: 898px;
  top: 972px;
}

.lp-world__card--complexity {
  left: auto;
  right: 76px;
  top: 1011px;
}

@media (max-width: 1399px) and (min-width: 992px) {
  .lp-world {
    min-height: clamp(800px, 84vw, 1100px);
  }

  .lp-world__inner {
    min-height: inherit;
    padding: clamp(80px, 9vw, 150px) clamp(28px, 5vw, 80px) 0;
  }

  .lp-world__copy {
    width: min(620px, 100%);
  }

  .lp-world__eyebrow {
    margin-bottom: clamp(16px, 2vw, 24px);
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.25;
  }

  .lp-world__title {
    margin-bottom: clamp(16px, 2vw, 24px);
    padding-bottom: 0.08em;
    font-size: clamp(54px, 6.6vw, 82px);
    line-height: 0.93;
  }

  .lp-world__body {
    width: min(620px, 100%);
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.45;
    letter-spacing: -0.03em;
  }

  .lp-world__card {
    width: clamp(300px, 28vw, 360px);
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .lp-world__card-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .lp-world__card p {
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.35;
    letter-spacing: -0.03em;
  }

  .lp-world__card--careers {
    left: auto;
    right: clamp(260px, 22vw, 340px);
    top: clamp(540px, 51vw, 700px);
  }

  .lp-world__card--ground {
    left: auto;
    right: clamp(22px, 3vw, 50px);
    top: clamp(560px, 52vw, 720px);
  }

  .lp-world__card--outcomes {
    left: auto;
    right: clamp(300px, 26vw, 390px);
    top: clamp(690px, 62vw, 860px);
  }

  .lp-world__card--complexity {
    left: auto;
    right: clamp(18px, 2vw, 36px);
    top: clamp(720px, 64vw, 885px);
  }
}

/* .lp-world ≤991px: responsive.css (@media max-width 991px) */

/* ——— 3. Founding student community — Figma 1458:2188 ——— */
.lp-world + .lp-founding {
  padding-top: 0;
}

.lp-founding {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 100px 30px;
  background: #020219;
  box-sizing: border-box;
  overflow: hidden;
}

.lp-founding__panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020219;
}

.lp-founding__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-founding__bg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.lp-founding__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 679px;
}

.lp-founding__copy {
  display: flex;
  flex: 0 0 477px;
  flex-direction: column;
  justify-content: space-between;
  gap: 96px;
  width: 477px;
  padding: 94px 40px 94px 100px;
  box-sizing: border-box;
}

.lp-founding__copy-group {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.lp-founding__eyebrow {
  margin: 0;
  width: min(339px, 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
}

.lp-founding__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #fff 0%, #87b5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lp-founding__title span {
  display: block;
}

.lp-founding__body {
  margin: 0;
  width: min(305px, 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.lp-founding__visual {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 679px;
}

.lp-founding__students {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}

.lp-founding__tag-layer {
  position: absolute;
  inset: 0;
}

.lp-founding__tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 277px;
  min-height: 72px;
  padding: 10px 18px;
  border: 0.542px solid #151515;
  border-radius: 20px;
  background: linear-gradient(172.96deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  box-sizing: border-box;
  backdrop-filter: blur(11.378px);
  -webkit-backdrop-filter: blur(11.378px);
}

.lp-founding__tag p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  color: #fff;
}

.lp-founding__tag--culture {
  left: 0;
  top: 401px;
}

.lp-founding__tag--standards {
  left: 128px;
  top: 533px;
}

.lp-founding__tag--traditions {
  left: 664px;
  top: 523px;
}

.lp-founding__tag--legacy {
  left: 755px;
  top: 434px;
}

@media (max-width: 1399px) {
  .lp-founding {
    padding: 0 clamp(24px, 4vw, 48px) 24px;
  }

  .lp-founding__panel {
    border-radius: clamp(24px, 2vw, 30px);
  }

  .lp-founding__content {
    min-height: clamp(540px, 48vw, 679px);
  }

  .lp-founding__copy {
    flex-basis: min(420px, 34vw);
    width: min(420px, 34vw);
    gap: clamp(48px, 6vw, 96px);
    padding: clamp(56px, 5vw, 88px) clamp(28px, 2.6vw, 36px) clamp(56px, 5vw, 88px) clamp(40px, 4vw, 72px);
  }

  .lp-founding__eyebrow {
    width: min(300px, 100%);
    font-size: clamp(16px, 1.55vw, 20px);
  }

  .lp-founding__title {
    font-size: clamp(36px, 3.7vw, 48px);
  }

  .lp-founding__body {
    width: min(280px, 100%);
    font-size: clamp(16px, 1.45vw, 20px);
  }

  .lp-founding__tag {
    width: clamp(190px, 19vw, 250px);
    min-height: 64px;
    padding: 10px 16px;
    border-radius: 18px;
  }

  .lp-founding__tag p {
    font-size: clamp(16px, 1.3vw, 20px);
  }

  .lp-founding__tag--culture {
    left: 0;
    top: 59%;
  }

  .lp-founding__tag--standards {
    left: 12%;
    top: 78%;
  }

  .lp-founding__tag--traditions {
    left: 63%;
    top: 77%;
  }

  .lp-founding__tag--legacy {
    left: 71.5%;
    top: 64%;
  }
}

@media (max-width: 991px) {
  .lp-founding {
    padding: 0 24px 24px;
  }

  .lp-founding__content {
    flex-direction: column;
    min-height: 0;
  }

  .lp-founding__copy {
    width: 100%;
    flex-basis: auto;
    gap: 28px;
    padding: 40px 24px 24px;
  }

  .lp-founding__copy-group {
    gap: 14px;
  }

  .lp-founding__eyebrow,
  .lp-founding__body {
    width: 100%;
    max-width: 420px;
  }

  .lp-founding__eyebrow {
    font-size: 18px;
    line-height: 1.35;
  }

  .lp-founding__title {
    font-size: clamp(36px, 9vw, 54px);
  }

  .lp-founding__body {
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-founding__visual {
    min-height: 0;
  }

  .lp-founding__students {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .lp-founding__tag-layer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: -56px;
    padding: 0 16px 16px;
  }

  .lp-founding__tag {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 0;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .lp-founding__tag p {
    font-size: 16px;
  }
}

@media (max-width: 599px) {
  .lp-founding {
    padding: 0 16px 20px;
  }

  .lp-founding__panel {
    border-radius: 24px;
  }

  .lp-founding__copy {
    padding: 32px 16px 18px;
  }

  .lp-founding__eyebrow {
    font-size: 15px;
  }

  .lp-founding__title {
    font-size: clamp(30px, 10.5vw, 42px);
  }

  .lp-founding__body {
    font-size: 15px;
  }

  .lp-founding__tag-layer {
    grid-template-columns: 1fr;
    margin-top: -28px;
    padding: 0 12px 12px;
  }

  .lp-founding__tag p {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* ——— 4. What this means for you — Figma 1458:2308 ——— */
.lp-meaning {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 127px 185px 150px 236px;
  background: #020219;
  box-sizing: border-box;
  overflow: hidden;
}

.lp-meaning__glow {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 582px;
  transform: translateY(-50%);
  mix-blend-mode: hard-light;
  pointer-events: none;
}

.lp-meaning__glow img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.lp-meaning__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 195px;
}

.lp-meaning__content {
  display: flex;
  flex: 0 1 697px;
  flex-direction: column;
  gap: 67px;
  min-width: 0;
}

.lp-meaning__eyebrow {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
}

.lp-meaning__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 97px;
}

.lp-meaning__column {
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 0;
}

.lp-meaning__item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.lp-meaning__icon-card {
  display: flex;
  flex: 0 0 68px;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 11px;
  background: #fff;
  box-shadow:
    0 15px 80px rgba(0, 0, 0, 0.07),
    0 6.267px 33.422px rgba(0, 0, 0, 0.05),
    0 3.35px 17.869px rgba(0, 0, 0, 0.04),
    0 1.878px 10.017px rgba(0, 0, 0, 0.04),
    0 0.998px 5.32px rgba(0, 0, 0, 0.03),
    0 0.415px 2.214px rgba(0, 0, 0, 0.02);
}

.lp-meaning__icon-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: 49px;
  max-height: 49px;
}

.lp-meaning__item p {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}

.lp-meaning__statement {
  flex: 1 1 0;
  min-width: 0;
  max-width: 607px;
  margin-left: auto;
  align-self: flex-end;
  padding-bottom: 6px;
}

.lp-meaning__statement-lead,
.lp-meaning__statement-body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.lp-meaning__statement-lead {
  font-size: 40px;
  font-weight: 600;
  line-height: 51px;
}

.lp-meaning__statement-body {
  font-size: 32px;
  font-weight: 300;
  line-height: 51px;
}

@media (min-width: 1600px) {
  .lp-meaning__inner {
    gap: 72px;
  }

  .lp-meaning__content {
    flex: 0 1 680px;
    min-width: 0;
  }

  .lp-meaning__grid {
    column-gap: 48px;
  }

  .lp-meaning__statement {
    flex: 0 0 clamp(360px, 26vw, 420px);
    max-width: clamp(360px, 26vw, 420px);
  }

  .lp-meaning__statement-lead,
  .lp-meaning__statement-body {
    white-space: normal;
  }

  .lp-meaning__statement-lead {
    font-size: 34px;
    line-height: 1.18;
  }

  .lp-meaning__statement-body {
    font-size: 18px;
    line-height: 1.45;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .lp-meaning__glow {
    right: 0;
    width: clamp(280px, 26vw, 360px);
  }
}

@media (max-width: 1399px) {
  .lp-meaning {
    padding: clamp(72px, 7vw, 112px) clamp(36px, 4vw, 80px) clamp(80px, 8vw, 120px);
  }

  .lp-meaning__glow {
    right: 0;
    width: clamp(220px, 24vw, 320px);
  }

  .lp-meaning__inner {
    gap: clamp(48px, 8vw, 130px);
  }

  .lp-meaning__content {
    flex-basis: min(620px, 50vw);
    gap: clamp(36px, 4vw, 60px);
  }

  .lp-meaning__eyebrow {
    font-size: clamp(20px, 1.8vw, 24px);
  }

  .lp-meaning__grid {
    column-gap: clamp(28px, 4vw, 72px);
  }

  .lp-meaning__column {
    gap: clamp(28px, 3vw, 42px);
  }

  .lp-meaning__item {
    gap: 18px;
  }

  .lp-meaning__icon-card {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }

  .lp-meaning__icon-card img {
    max-width: 42px;
    max-height: 42px;
  }

  .lp-meaning__item p {
    font-size: clamp(16px, 1.45vw, 18px);
  }

  .lp-meaning__statement {
    max-width: 520px;
  }

  .lp-meaning__statement-lead {
    font-size: clamp(30px, 3vw, 38px);
  }

  .lp-meaning__statement-body {
    font-size: clamp(24px, 2.25vw, 30px);
  }
}

@media (max-width: 991px) {
  .lp-meaning {
    padding: 56px 24px 64px;
  }

  .lp-meaning__glow {
    top: 16px;
    right: 0;
    width: 180px;
    transform: none;
    opacity: 0.72;
  }

  .lp-meaning__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .lp-meaning__content {
    gap: 28px;
  }

  .lp-meaning__eyebrow {
    font-size: 22px;
  }

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

  .lp-meaning__column {
    gap: 20px;
  }

  .lp-meaning__item {
    padding-right: 16px;
  }

  .lp-meaning__statement {
    margin-left: 0;
    align-self: auto;
    max-width: 100%;
    padding-bottom: 0;
  }

  .lp-meaning__statement-lead {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.2;
  }

  .lp-meaning__statement-body {
    margin-top: 6px;
    font-size: clamp(20px, 5.4vw, 28px);
    line-height: 1.45;
  }
}

@media (max-width: 599px) {
  .lp-meaning {
    padding: 44px 16px 52px;
  }

  .lp-meaning__eyebrow {
    font-size: 18px;
  }

  .lp-meaning__item {
    gap: 14px;
    padding-right: 0;
  }

  .lp-meaning__icon-card {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .lp-meaning__icon-card img {
    max-width: 34px;
    max-height: 34px;
  }

  .lp-meaning__item p {
    font-size: 15px;
    line-height: 1.4;
  }

  .lp-meaning__statement-lead {
    font-size: clamp(24px, 8vw, 32px);
  }

  .lp-meaning__statement-body {
    font-size: clamp(18px, 5.8vw, 24px);
  }
}

/* ——— 5. What makes WPU GOA different — Figma 1458:2572 ——— */
.lp-different {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 108px 179px 108px 201px;
  background: #fff;
  box-sizing: border-box;
}

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

.lp-different__swiper {
  display: none;
}

.lp-different__intro,
.lp-different__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.lp-different__intro {
  min-height: 537px;
}

.lp-different__headline {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  min-height: min-content;
  overflow: visible;
  padding: 30px;
}

.lp-different__eyebrow {
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.33;
  color: #151515;
}

.lp-different__title {
  margin: 0;
  overflow: visible;
  font-family: "Montserrat", sans-serif;
  font-size: 80.465px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #151515;
}

/* .lp-different__title span {
  display: block;
} */

.lp-different__title-gradient {
  --wpu-goa-gradient: linear-gradient(90deg, #5697fe 0%, #010767 100%);
  --wpu-goa-gradient-width: 7.35ch;
  display: block;
  overflow: visible;
  padding-top: 0.12em;
}

.lp-different__title-brand-part,
.lp-different__title-goa-o {
  background: var(--wpu-goa-gradient);
  background-size: var(--wpu-goa-gradient-width) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lp-different__title-brand-part:first-child {
  background-position: 0 0;
}

.lp-different__title-goa-o {
  position: relative;
  display: inline-block;
  background-position: -5.05ch 0;
}

.lp-different__title-brand-part:last-child {
  background-position: -6.15ch 0;
}

.lp-different__title-goa-o::before {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  top: 0;
  height: 0.09em;
  min-height: 4px;
  max-height: 9px;
  border-radius: 999px;
  background: var(--wpu-goa-gradient);
  background-size: var(--wpu-goa-gradient-width) 100%;
  background-position: -5.05ch 0;
  pointer-events: none;
}

.lp-different__card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  min-height: 0;
  padding: 30px;
  background: #020219;
  box-sizing: border-box;
}

.lp-different__icon {
  display: flex;
  flex: 0 0 68px;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 11px;
  background: #0938df;
  box-shadow:
    0 15px 80px rgba(0, 0, 0, 0.07),
    0 6.267px 33.422px rgba(0, 0, 0, 0.05),
    0 3.35px 17.869px rgba(0, 0, 0, 0.04),
    0 1.878px 10.017px rgba(0, 0, 0, 0.04),
    0 0.998px 5.32px rgba(0, 0, 0, 0.03),
    0 0.415px 2.214px rgba(0, 0, 0, 0.02);
}

.lp-different__icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 51px;
  max-height: 51px;
}

.lp-different__copy {
  width: 100%;
}

.lp-different__card-title,
.lp-different__card-body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.lp-different__card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.08;
}

.lp-different__card-title span,
.lp-different__card-body span {
  display: block;
}

.lp-different__card-body {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}

@media (max-width: 1399px) {
  .lp-different {
    padding: clamp(72px, 6vw, 108px) clamp(36px, 4vw, 96px);
  }

  .lp-different__grid {
    gap: 20px;
  }

  .lp-different__intro,
  .lp-different__column {
    gap: 20px;
  }

  .lp-different__headline,
  .lp-different__card {
    padding: clamp(24px, 2.4vw, 30px);
  }

  .lp-different__eyebrow {
    margin-bottom: 16px;
    font-size: clamp(22px, 2vw, 28px);
  }

  .lp-different__title {
    font-size: clamp(56px, 5.9vw, 76px);
  }

  .lp-different__icon {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }

  .lp-different__icon img {
    max-width: 42px;
    max-height: 42px;
  }

  .lp-different__card-title {
    font-size: clamp(20px, 1.8vw, 23px);
  }

  .lp-different__card-body {
    font-size: clamp(16px, 1.45vw, 19px);
  }
}

@media (max-width: 991px) {
  .lp-different {
    padding: 56px 24px;
  }

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

  .lp-different__intro {
    min-height: 0;
  }

  .lp-different__intro,
  .lp-different__column {
    align-self: start;
  }

  .lp-different__headline {
    flex: 0 0 auto;
    padding: 0 0 12px;
  }

  .lp-different__title {
    font-size: clamp(38px, 8.8vw, 56px);
    line-height: 0.92;
  }

  .lp-different__card {
    flex: 0 0 auto;
    min-height: 0;
  }
}

@media (max-width: 599px) {
  .lp-different {
    padding: 44px 16px;
  }

  .lp-different__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-different__intro,
  .lp-different__column {
    gap: 16px;
  }

  .lp-different__title {
    font-size: clamp(38px, 13vw, 52px);
    line-height: 0.92;
  }

  .lp-different__eyebrow {
    font-size: 20px;
    line-height: 1.3;
  }

  .lp-different__card {
    min-height: 0;
    gap: 18px;
    padding: 24px 20px;
  }

  .lp-different__icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .lp-different__icon img {
    max-width: 38px;
    max-height: 38px;
  }

  .lp-different__card-title {
    font-size: 20px;
    line-height: 1.2;
  }

  .lp-different__card-body {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.35;
  }
}

/* ——— 6. AI-native educational architecture — Figma 1473:2736 ——— */
.lp-aiarch {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 108px 70px 108px 201px;
  background: linear-gradient(112.68deg, #000 5.088%, #0938df 78.797%);
  box-sizing: border-box;
  box-shadow:
    0 6px 101.5px rgba(0, 0, 0, 0.07),
    0 2.507px 42.404px rgba(0, 0, 0, 0.05),
    0 1.34px 22.671px rgba(0, 0, 0, 0.04),
    0 0.751px 12.709px rgba(0, 0, 0, 0.04),
    0 0.399px 6.75px rgba(0, 0, 0, 0.03),
    0 0.166px 2.809px rgba(0, 0, 0, 0.02);
}

.lp-aiarch__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.lp-aiarch__content {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 125px;
  min-width: 0;
}

.lp-aiarch__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #fff 0%, #87b5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lp-aiarch__title span {
  display: block;
}

.lp-aiarch__copy {
  display: flex;
  flex-direction: column;
  gap: 31px;
  width: min(466px, 100%);
}

.lp-aiarch__copy-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-aiarch__lead,
.lp-aiarch__sublead,
.lp-aiarch__body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.lp-aiarch__lead {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  color: #5697fe;
}

.lp-aiarch__sublead {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

.lp-aiarch__body {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  color: #fff;
}

.lp-aiarch__stack {
  display: flex;
  flex: 0 0 883px;
  flex-direction: column;
  gap: 21px;
  width: 883px;
}

.lp-aiarch__item {
  --lp-aiarch-open-pad: 40px;
  --lp-aiarch-open-title: 298px;
  --lp-aiarch-open-gap: 24px;
  position: relative;
  border: 0.542px solid #151515;
  border-radius: 19px;
  background: linear-gradient(176.79deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  box-sizing: border-box;
  backdrop-filter: blur(11.378px);
  -webkit-backdrop-filter: blur(11.378px);
  overflow: hidden;
}

.lp-aiarch__item summary {
  list-style: none;
}

.lp-aiarch__item summary::-webkit-details-marker {
  display: none;
}

.lp-aiarch__item-head {
  display: grid !important;
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font: inherit;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.lp-aiarch__item:not([open]) .lp-aiarch__item-head {
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  column-gap: 24px;
  padding: 40px;
}

.lp-aiarch__item[open] {
  display: block;
}

.lp-aiarch__item[open] .lp-aiarch__item-head {
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: start;
  column-gap: 24px;
  padding: var(--lp-aiarch-open-pad) var(--lp-aiarch-open-pad) 0;
}

.lp-aiarch__item-head:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: -2px;
}

.lp-aiarch__item-text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  min-width: 0;
  justify-self: start;
  text-align: left;
}

.lp-aiarch__item-text span {
  display: block;
}

@media (min-width: 1200px) {
  .lp-aiarch__item--engineering {
    --lp-aiarch-open-title: 430px;
  }

  .lp-aiarch__item--engineering[open] .lp-aiarch__item-text {
    white-space: nowrap;
  }
}

.lp-aiarch__item:not([open]) .lp-aiarch__item-text {
  flex: 1 1 0;
  min-width: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 51px;
}

.lp-aiarch__item[open] .lp-aiarch__item-text {
  width: auto;
  max-width: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 35px;
}

.lp-aiarch__kicker {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  white-space: nowrap;
}

.lp-aiarch__chevron {
  display: block;
  width: 8px;
  height: 16px;
  flex: 0 0 auto;
  justify-self: end;
  align-self: center;
  transition: transform 0.24s ease;
}

.lp-aiarch__item[open] .lp-aiarch__chevron {
  position: static;
  margin-top: 10px;
  transform: rotate(90deg);
}

.lp-aiarch__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 0 40px 40px;
}

.lp-aiarch__item:not([open]) .lp-aiarch__item-content {
  display: none;
}

.lp-aiarch__item[open] .lp-aiarch__item-content {
  gap: 8px;
  padding: 18px var(--lp-aiarch-open-pad) var(--lp-aiarch-open-pad);
}

.lp-aiarch__item-content[hidden] {
  display: none;
}

.lp-aiarch__list {
  margin: 0;
  padding-left: 27px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: #fff;
}

.lp-aiarch__list li::first-letter {
  text-transform: uppercase;
}

.lp-aiarch__list li + li {
  margin-top: 2px;
}

/* ——— 7. Structured immersions — Figma 1473:2851 ——— */
.lp-immersions {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 100px;
  background: #020219;
  box-sizing: border-box;
}

.lp-immersions__header {
  padding: 0 0 64px;
}

.lp-immersions__title {
  margin: 0;
  width: min(604px, 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.23;
  letter-spacing: -0.02em;
  color: #fff;
}

.lp-immersions__title span {
  display: block;
}

.lp-immersions__swiper {
  width: 100%;
  overflow: visible;
}

.lp-immersions__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 31px;
  align-items: start;
}

.lp-immersions__swiper:not(.swiper-initialized) .lp-immersions__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lp-immersions__swiper:not(.swiper-initialized) .lp-immersions__card {
  width: auto;
  flex-shrink: 1;
}

.lp-immersions__swiper.swiper-initialized {
  height: auto !important;
}

.lp-immersions__swiper.swiper-initialized .swiper-wrapper {
  align-items: flex-start;
  height: auto !important;
}

.lp-immersions__swiper.swiper-initialized .lp-immersions__grid {
  display: flex;
  gap: 0;
  align-items: flex-start;
  height: auto !important;
}

.lp-immersions__swiper.swiper-initialized .swiper-slide,
.lp-immersions__swiper.swiper-initialized .lp-immersions__card {
  height: auto !important;
}

.lp-immersions__card {
  display: flex;
  flex-direction: column;
  gap: 34px;
  min-width: 0;
}

.lp-immersions__frame {
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 24px;
  background: #fff;
}

.lp-immersions__media {
  position: relative;
  overflow: hidden;
  border-radius: 22.54px;
  aspect-ratio: 298 / 344;
  background: #d9d9d9;
}

.lp-immersions__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-immersions__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
  color: #fff;
}

.lp-immersions__card-title,
.lp-immersions__card-body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.lp-immersions__card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}

.lp-immersions__card-body {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.33;
}

.lp-immersions__card-body span {
  display: block;
}

@media (min-width: 1920px) {
  .lp-immersions {
    overflow: hidden;
  }

  .lp-immersions__swiper {
    overflow: hidden;
    height: auto !important;
  }

  .lp-immersions__swiper .swiper-wrapper,
  .lp-immersions__swiper:not(.swiper-initialized) .lp-immersions__grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 31px;
    align-items: start;
    height: auto !important;
    transform: none !important;
  }

  .lp-immersions__swiper .swiper-slide,
  .lp-immersions__swiper:not(.swiper-initialized) .lp-immersions__card {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }
}

/* ——— 8. Programmes offered — Figma 1480:2968 ——— */
.lp-programmes {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 108px clamp(60px, 8.5vw, 217px);
  background: #f2f2f2;
  box-sizing: border-box;
}

.lp-programmes__panel {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 100px;
  border-radius: 16.369px;
  background: #fff;
  box-shadow:
    0 7.754px 34.462px rgba(0, 0, 0, 0.07),
    0 3.239px 14.397px rgba(0, 0, 0, 0.05),
    0 1.732px 7.697px rgba(0, 0, 0, 0.04),
    0 0.971px 4.315px rgba(0, 0, 0, 0.04),
    0 0.516px 2.292px rgba(0, 0, 0, 0.03),
    0 0.215px 0.954px rgba(0, 0, 0, 0.02);
}

.lp-programmes__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
}

.lp-programmes__title {
  margin: 0;
  width: min(726px, 100%);
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
  color: #020219;
}

.lp-programmes__title span {
  display: block;
}

.lp-programmes__tracks {
  display: grid;
  grid-template-columns: 337px repeat(3, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  min-height: 112px;
  border-radius: 16.369px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 7.754px 34.462px rgba(0, 0, 0, 0.07),
    0 3.239px 14.397px rgba(0, 0, 0, 0.05),
    0 1.732px 7.697px rgba(0, 0, 0, 0.04),
    0 0.971px 4.315px rgba(0, 0, 0, 0.04),
    0 0.516px 2.292px rgba(0, 0, 0, 0.03),
    0 0.215px 0.954px rgba(0, 0, 0, 0.02);
}

.lp-programmes__track {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 22px 32px;
  border: 0;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-align: left;
  color: #808080;
}

.lp-programmes__track--active {
  background: #0938df;
  color: #fff;
  box-shadow:
    0 12.923px 34.462px rgba(0, 0, 0, 0.07),
    0 5.399px 14.397px rgba(0, 0, 0, 0.05),
    0 2.887px 7.697px rgba(0, 0, 0, 0.04),
    0 1.618px 4.315px rgba(0, 0, 0, 0.04),
    0 0.859px 2.292px rgba(0, 0, 0, 0.03),
    0 0.358px 0.954px rgba(0, 0, 0, 0.02);
}

.lp-programmes__track-index,
.lp-programmes__track-label {
  font-family: "Montserrat", sans-serif;
  line-height: 1.49;
}

.lp-programmes__track-index {
  font-size: 17.231px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.lp-programmes__track-label {
  font-size: 20.677px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.lp-programmes__track-label--multiline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}

.lp-programmes__track-label--multiline .lp-programmes__track-meta {
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: -0.03em;
  opacity: 0.82;
}

.lp-programmes__track--active .lp-programmes__track-label--multiline .lp-programmes__track-meta {
  opacity: 0.95;
}

.lp-programmes__track:focus-visible {
  outline: 2px solid rgba(9, 56, 223, 0.35);
  outline-offset: -2px;
}

.lp-programmes__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.lp-programmes__intro {
  display: flex;
  flex: 0 1 591px;
  flex-direction: column;
  gap: 52px;
  min-width: 0;
}

.lp-programmes__degreeWrap {
  min-width: 0;
}

.lp-programmes__degree {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: #000;
}

.lp-programmes__multi {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.lp-programmes__multi[hidden] {
  display: none !important;
}

.lp-programmes__programme {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.lp-programmes__programme + .lp-programmes__programme {
  padding-top: 48px;
  border-top: 1px solid #d8d8d8;
}

.lp-programmes__sync[hidden] {
  display: none !important;
}

.lp-programmes__sync:not([hidden]) {
  display: grid;
  grid-template-columns: minmax(0, 591fr) minmax(0, 518fr);
  column-gap: 48px;
  row-gap: clamp(32px, 3vw, 48px);
  align-items: start;
  width: 100%;
}

.lp-programmes__row {
  display: contents;
}

.lp-programmes__row-degree {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  min-width: 0;
}

.lp-programmes__row-list {
  min-width: 0;
}

.lp-programmes__grid-footer {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 591fr) minmax(0, 518fr);
  column-gap: 48px;
  align-items: end;
  margin-top: 4px;
}

.lp-programmes__body--multi {
  align-items: stretch;
}

.lp-programmes__body--multi .lp-programmes__intro,
.lp-programmes__body--multi .lp-programmes__specialisations {
  display: none !important;
}

.lp-programmes__body--multi .lp-programmes__programme,
.lp-programmes__body--multi .lp-programmes__list {
  text-align: left;
}

.lp-programmes__domains {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: min(503px, 100%);
  border-radius: 30.5px;
  background: #fff;
  box-shadow:
    0 13.456px 43.059px rgba(0, 0, 0, 0.07),
    0 5.622px 17.989px rgba(0, 0, 0, 0.05),
    0 3.006px 9.618px rgba(0, 0, 0, 0.04),
    0 1.685px 5.392px rgba(0, 0, 0, 0.04),
    0 0.895px 2.863px rgba(0, 0, 0, 0.03),
    0 0.372px 1.192px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.lp-programmes__domain {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 61px;
  padding: 10px 24px;
  border: 0;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-align: center;
}

.lp-programmes__domain span {
  font-family: "Montserrat", sans-serif;
  font-size: 17.941px;
  line-height: 1.33;
  letter-spacing: -0.03em;
}

.lp-programmes__domain--active {
  background: #0938df;
  color: #fff;
}

.lp-programmes__domain:not(.lp-programmes__domain--active) {
  color: #010767;
}

.lp-programmes__domain--active span {
  font-weight: 600;
}

.lp-programmes__domain:not(.lp-programmes__domain--active) span {
  font-weight: 300;
}

.lp-programmes__domain:focus-visible {
  outline: 2px solid rgba(9, 56, 223, 0.35);
  outline-offset: -2px;
}

.lp-programmes__specialisations {
  display: flex;
  flex: 0 1 518px;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  min-width: 0;
}

.lp-programmes__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-programmes__item {
  padding: 0 0 12px;
  border-bottom: 1px solid #b4b4b4;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-programmes__item + .lp-programmes__item {
  margin-top: 12px;
}

.lp-programmes__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #b0002d;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.lp-programmes__cta span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.lp-programmes__cta img {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.lp-programmes__cta:hover,
.lp-programmes__cta:focus-visible {
  background: #970026;
  box-shadow: 0 10px 28px rgba(160, 5, 45, 0.3);
  transform: translateY(-2px);
}

.lp-programmes__cta:focus-visible {
  outline: 2px solid rgba(9, 56, 223, 0.55);
  outline-offset: 4px;
}

/* ——— 9. Map your pathway — Figma 1480:3152 ——— */
.lp-pathway {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 77px 128px;
  background: #f2f2f2;
  box-sizing: border-box;
}

.lp-pathway__panel {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 784px;
  overflow: visible;
  padding: 0 86px;
}

.lp-pathway__panel::before {
  content: "";
  position: absolute;
  inset: 97px 0 0;
  background-color: #020219;
  background-image: url("assets/section9/pathway-bg.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  /* Avoid 100% × 100% — it stretches the artwork (e.g. WPU GOA word) at mid viewports */
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.lp-pathway__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 0 1 360px;
  width: auto;
  max-width: 360px;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  height: 100%;
  padding-top: 370px;
  padding-bottom: 200px;
}

.lp-pathway__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.11;
  color: #fff;
}

.lp-pathway__title span {
  display: block;
}

.lp-pathway__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 16px;
  background: #ce0637;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.lp-pathway__cta span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.lp-pathway__cta img {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.lp-pathway__cta:hover,
.lp-pathway__cta:focus-visible {
  background: #b50532;
  box-shadow: 0 10px 28px rgba(160, 5, 45, 0.36);
  transform: translateY(-2px);
}

.lp-pathway__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.lp-pathway__visual {
  position: relative;
  flex: 0 0 848px;
  width: 848px;
  min-width: 0;
  height: 100%;
  z-index: 2;
}

.lp-pathway__figure {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.lp-pathway__tag {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 347px;
  height: 110px;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border: 1px solid #151515;
  border-radius: 16px;
  background: linear-gradient(170.81deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  box-sizing: border-box;
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
}

.lp-pathway__tag-icon {
  display: flex;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 9px;
  background: #fff;
  box-sizing: border-box;
}

.lp-pathway__tag-icon img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-pathway__tag p {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.11;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-pathway__tag--innovator {
  left: -9.25%;
  top: 49.36%;
}

.lp-pathway__tag--entrepreneur {
  left: -19.75%;
  top: 78.42%;
}

.lp-pathway__tag--thinker {
  right: 0;
  top: 55.29%;
}

.lp-pathway__tag--solver {
  right: 0;
  top: 78.42%;
}

@media (max-width: 1599px) {
  .lp-aiarch {
    padding: clamp(72px, 6vw, 108px) clamp(36px, 4vw, 64px) clamp(72px, 6vw, 108px) clamp(56px, 4.8vw, 140px);
  }

  .lp-aiarch__inner {
    gap: clamp(28px, 3.2vw, 48px);
  }

  .lp-aiarch__content {
    gap: clamp(56px, 7vw, 110px);
  }

  .lp-aiarch__title {
    font-size: clamp(64px, 6.2vw, 96px);
  }

  .lp-aiarch__copy {
    width: min(420px, 100%);
    gap: clamp(24px, 2vw, 31px);
  }

  .lp-aiarch__lead {
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.35;
  }

  .lp-aiarch__sublead {
    font-size: clamp(18px, 1.55vw, 22px);
  }

  .lp-aiarch__body {
    font-size: clamp(16px, 1.25vw, 19px);
  }

  .lp-aiarch__stack {
    flex-basis: min(760px, 58vw);
    width: min(760px, 58vw);
    gap: 18px;
  }

  .lp-aiarch__item {
    --lp-aiarch-open-pad: clamp(24px, 2.2vw, 34px);
    --lp-aiarch-open-title: min(240px, 100%);
  }

  .lp-aiarch__item-head {
    padding: clamp(24px, 2.2vw, 34px);
  }

  .lp-aiarch__item[open] .lp-aiarch__item-head {
    padding-bottom: 0;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-text {
    max-width: min(240px, 100%);
    width: 100%;
    font-size: clamp(24px, 2vw, 30px);
  }

  .lp-aiarch__kicker,
  .lp-aiarch__list {
    font-size: clamp(15px, 1.2vw, 18px);
  }

  .lp-aiarch__item:not([open]) .lp-aiarch__item-text {
    font-size: clamp(18px, 1.55vw, 24px);
  }

  .lp-immersions {
    padding: clamp(72px, 6vw, 100px) clamp(36px, 4vw, 64px);
  }

  .lp-immersions__header {
    padding: 0 0 clamp(40px, 3vw, 64px);
  }

  .lp-immersions__title {
    font-size: clamp(36px, 3vw, 48px);
    line-height: 1.2;
  }

  .lp-immersions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2vw, 31px);
  }

  .lp-immersions__card {
    gap: 26px;
  }

  .lp-immersions__frame {
    margin-bottom: 4px;
  }

  .lp-immersions__copy {
    padding: 0 clamp(18px, 1.5vw, 28px);
  }

  .lp-programmes {
    padding: clamp(72px, 6vw, 108px) clamp(36px, 4vw, 120px);
  }

  .lp-programmes__panel {
    gap: clamp(48px, 4vw, 70px);
    padding: clamp(56px, 5vw, 88px);
  }

  .lp-programmes__title {
    font-size: clamp(46px, 4.1vw, 64px);
  }

  .lp-programmes__tracks {
    grid-template-columns: 280px repeat(3, minmax(0, 1fr));
  }

  .lp-programmes__track {
    padding: 20px clamp(18px, 1.8vw, 32px);
  }

  .lp-programmes__degree {
    font-size: clamp(36px, 3.2vw, 48px);
  }

  .lp-pathway {
    padding: 0 clamp(36px, 4vw, 77px) clamp(84px, 7vw, 128px);
  }

  .lp-pathway__panel {
    gap: clamp(16px, 1.8vw, 24px);
    min-height: clamp(650px, 49vw, 784px);
    padding: 0 clamp(36px, 3vw, 86px);
  }

  .lp-pathway__panel::before {
    inset: clamp(72px, 7vw, 97px) 0 0;
    background-size: cover;
    background-position: left top;
  }

  .lp-pathway__copy {
    width: auto;
    max-width: min(320px, 100%);
    padding-top: clamp(250px, 21vw, 370px);
    padding-bottom: clamp(120px, 11vw, 200px);
  }

  .lp-pathway__title {
    font-size: clamp(32px, 2.6vw, 40px);
  }

  .lp-pathway__visual {
    flex-basis: min(760px, 54%);
    width: min(760px, 54%);
  }

  .lp-pathway__tag {
    width: min(320px, 40.92%);
    min-height: 96px;
    padding: 20px;
  }

  .lp-pathway__tag p {
    font-size: clamp(20px, 1.55vw, 24px);
  }

  .lp-pathway__tag--innovator {
    left: -11.62%;
    top: 49.36%;
  }

  .lp-pathway__tag--entrepreneur {
    left: -22.41%;
    top: 78.42%;
  }

  .lp-pathway__tag--thinker {
    top: 55.29%;
  }

  .lp-pathway__tag--solver {
    right: 0;
    top: 78.42%;
  }
}

@media (max-width: 1299px) {
  .lp-programmes__sync:not([hidden]) {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .lp-programmes__row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1 / -1;
  }

  .lp-programmes__grid-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 0;
  }

  .lp-aiarch__inner {
    flex-direction: column;
  }

  .lp-aiarch__content,
  .lp-aiarch__stack {
    width: 100%;
    flex-basis: auto;
  }

  .lp-aiarch__content {
    gap: 40px;
  }

  .lp-aiarch__copy {
    width: min(700px, 100%);
  }

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

  .lp-programmes__body {
    flex-direction: column;
    align-items: stretch;
  }

  .lp-programmes__intro,
  .lp-programmes__specialisations {
    width: 100%;
    flex-basis: auto;
  }

  .lp-programmes__specialisations {
    max-width: 640px;
  }
}

@media (max-width: 1199px) {
  .lp-pathway {
    padding: 64px 24px 88px;
  }

  .lp-pathway__panel {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    min-height: 0;
    padding: 0 32px 40px;
  }

  .lp-pathway__panel::before {
    inset: 0;
    background-position: center top;
    background-size: cover;
  }

  .lp-pathway__copy {
    width: 100%;
    max-width: min(480px, 100%);
    height: auto;
    padding-top: clamp(180px, 18vw, 210px);
    padding-bottom: 8px;
  }

  .lp-pathway__visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    flex-basis: auto;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .lp-pathway__figure {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: min(100%, 460px);
    height: auto;
    justify-self: center;
    transform: none;
  }

  .lp-pathway__tag {
    position: static;
    width: 100%;
    min-height: 96px;
    padding: 18px 16px;
  }
}

@media (max-width: 991px) {
  .lp-aiarch {
    padding: 56px 24px;
  }

  .lp-aiarch__title {
    font-size: clamp(42px, 10.5vw, 68px);
    line-height: 0.96;
  }

  .lp-aiarch__copy {
    width: 100%;
    gap: 24px;
  }

  .lp-aiarch__item {
    --lp-aiarch-open-pad: 20px;
    --lp-aiarch-open-title: min(190px, 36vw);
    --lp-aiarch-open-gap: 16px;
  }

  .lp-aiarch__item-head {
    padding: 24px 20px;
    row-gap: 0;
  }

  .lp-aiarch__item[open] {
    display: block;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-head {
    grid-template-columns: minmax(0, 1fr) 16px;
    align-items: start;
    column-gap: 16px;
    padding: var(--lp-aiarch-open-pad) var(--lp-aiarch-open-pad) 0;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-text {
    max-width: none;
    width: auto;
    font-size: clamp(24px, 5vw, 30px);
  }

  .lp-aiarch__item:not([open]) .lp-aiarch__item-head {
    grid-template-columns: minmax(0, 1fr) 16px;
    column-gap: 16px;
  }

  .lp-aiarch__item-content {
    gap: 14px;
    padding: 16px 20px 24px;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-content {
    gap: 8px;
    padding: 18px var(--lp-aiarch-open-pad) var(--lp-aiarch-open-pad);
  }

  .lp-aiarch__item:not([open]) .lp-aiarch__item-text {
    font-size: 18px;
    line-height: 1.35;
  }

  .lp-immersions {
    padding: 56px 24px;
  }

  .lp-immersions__header {
    padding: 0 0 32px;
  }

  .lp-immersions__title {
    font-size: clamp(34px, 7vw, 42px);
    line-height: 1.18;
  }

  .lp-immersions__grid {
    gap: 24px 18px;
  }

  .lp-immersions__card {
    gap: 22px;
  }

  .lp-immersions__frame {
    margin-bottom: 4px;
  }

  .lp-immersions__copy {
    padding: 0 10px;
  }

  .lp-programmes {
    padding: 56px 24px;
  }

  .lp-programmes__panel {
    gap: 36px;
    padding: 40px 24px;
  }

  .lp-programmes__top {
    gap: 24px;
  }

  .lp-programmes__title {
    font-size: clamp(38px, 7vw, 52px);
  }

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

  .lp-programmes__track {
    min-height: 92px;
  }

  .lp-programmes__body {
    gap: 32px;
  }

  .lp-programmes__intro {
    gap: 28px;
  }

  .lp-programmes__degree {
    font-size: clamp(32px, 6vw, 40px);
  }

  .lp-programmes__domains {
    width: 100%;
    max-width: 503px;
  }

  .lp-pathway {
    padding: 56px 24px;
  }

  .lp-pathway__panel {
    padding: 180px 24px 24px;
  }

  .lp-pathway__copy {
    width: 100%;
    padding: 0 0 32px;
  }

  .lp-pathway__title {
    font-size: clamp(30px, 6vw, 38px);
  }

  .lp-pathway__visual {
    position: relative;
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .lp-pathway__figure {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    width: min(100%, 380px);
    height: auto;
    justify-self: center;
    transform: none;
  }

  .lp-pathway__tag {
    position: static;
    width: 100%;
    min-height: 88px;
    padding: 18px 16px;
  }

  .lp-pathway__tag-icon {
    width: 56px;
    height: 56px;
  }

  .lp-pathway__tag p {
    font-size: 18px;
  }
}

@media (max-width: 599px) {
  .lp-aiarch {
    padding: 44px 16px;
  }

  .lp-aiarch__title {
    font-size: clamp(34px, 12vw, 46px);
  }

  .lp-aiarch__lead {
    font-size: 20px;
  }

  .lp-aiarch__sublead {
    font-size: 16px;
    line-height: 1.4;
  }

  .lp-aiarch__body {
    font-size: 15px;
    line-height: 1.55;
  }

  .lp-aiarch__item-head {
    padding: 20px 16px;
    row-gap: 0;
  }

  .lp-aiarch__item[open] {
    display: block;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-head {
    grid-template-columns: minmax(0, 1fr) 16px;
    column-gap: 14px;
    padding-bottom: 0;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-text {
    font-size: 22px;
  }

  .lp-aiarch__kicker,
  .lp-aiarch__list,
  .lp-aiarch__item:not([open]) .lp-aiarch__item-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .lp-aiarch__item-content {
    gap: 12px;
    padding: 14px 16px 20px;
  }

  .lp-aiarch__item[open] .lp-aiarch__item-content {
    padding: 14px 16px 20px;
  }

  .lp-immersions {
    padding: 44px 16px;
  }

  .lp-immersions__header {
    padding: 0 0 24px;
  }

  .lp-immersions__title {
    font-size: 30px;
  }

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

  .lp-immersions__copy {
    padding: 0 6px;
  }

  .lp-immersions__card-title {
    font-size: 17px;
  }

  .lp-immersions__card-body {
    font-size: 13px;
    line-height: 1.4;
  }

  .lp-programmes {
    padding: 44px 16px;
  }

  .lp-programmes__panel {
    gap: 28px;
    padding: 28px 16px;
  }

  .lp-programmes__title {
    font-size: 32px;
  }

  .lp-programmes__tracks {
    grid-template-columns: 1fr;
  }

  .lp-programmes__track {
    min-height: 0;
    padding: 18px 20px;
  }

  .lp-programmes__track-label {
    font-size: 18px;
  }

  .lp-programmes__degree {
    font-size: 28px;
  }

  .lp-programmes__domains {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .lp-programmes__domain {
    min-height: 54px;
  }

  .lp-programmes__specialisations {
    gap: 28px;
  }

  .lp-programmes__item {
    font-size: 16px;
  }

  .lp-programmes__cta {
    width: 100%;
    justify-content: center;
  }

  .lp-programmes__cta span {
    font-size: 18px;
  }

  .lp-pathway {
    padding: 40px 24px;
  }

  .lp-pathway__panel {
    min-height: 945px;
    padding: 32px 24px;
    align-items: stretch;
    justify-content: flex-end;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
  }

  .lp-pathway__panel::before {
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(137deg, transparent 0 58%, rgba(97, 151, 255, 0.18) 58% 100%),
      linear-gradient(137deg, transparent 0 67%, #0a1c87 67% 80%, transparent 80% 100%),
      linear-gradient(90deg, #05041d 0 29%, #173cae 29% 100%);
    background-repeat: no-repeat;
  }

  .lp-pathway__panel::after {
    content: "WPU GOA";
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(42px, 13vw, 64px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.06em;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
  }

  .lp-pathway__title {
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .lp-pathway__title span {
    display: inline;
  }

  .lp-pathway__cta {
    display: inline-flex !important;
  }

  .lp-pathway__visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .lp-pathway__figure {
    position: absolute;
    inset: 74px auto auto 50%;
    display: block;
    width: min(100%, 304px);
    height: auto;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center top;
    pointer-events: none;
  }

  .lp-pathway__tag {
    position: relative;
    width: 100%;
    min-height: 0;
    padding: 12px;
    gap: 20px;
    border-radius: 12px;
    border: 0.542px solid #151515;
    background: linear-gradient(174.75deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(11.378px);
    -webkit-backdrop-filter: blur(11.378px);
  }

  .lp-pathway__tag-icon {
    width: 38px;
    height: 38px;
    padding: 4px;
    border-radius: 4px;
  }

  .lp-pathway__tag p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 1599px) and (min-width: 1200px) {
  .lp-world {
    min-height: clamp(920px, 76vw, 1120px);
  }

  .lp-world__inner {
    min-height: inherit;
    padding: clamp(104px, 8vw, 164px) clamp(40px, 4vw, 72px) 0 clamp(80px, 5.5vw, 140px);
  }

  .lp-world__copy {
    width: min(580px, 47vw);
  }

  .lp-world__title {
    font-size: clamp(62px, 5.4vw, 88px);
    line-height: 0.94;
  }

  .lp-world__body {
    width: min(560px, 45vw);
  }

  .lp-world__card {
    width: clamp(250px, 22vw, 340px);
  }

  .lp-world__card--careers {
    right: 41.98%;
    top: 61.83%;
  }

  .lp-world__card--ground {
    right: 8.59%;
    top: 63.98%;
  }

  .lp-world__card--outcomes {
    right: 46.77%;
    top: 77.45%;
  }

  .lp-world__card--complexity {
    right: 3.96%;
    top: 80.56%;
  }

  .lp-founding {
    padding: 0 clamp(28px, 3.5vw, 56px) 24px;
  }

  .lp-founding__content {
    min-height: clamp(560px, 42vw, 679px);
  }

  .lp-founding__copy {
    flex-basis: clamp(340px, 28vw, 420px);
    width: clamp(340px, 28vw, 420px);
    gap: clamp(36px, 4vw, 88px);
    padding: clamp(52px, 4.2vw, 88px) clamp(24px, 2vw, 32px) clamp(48px, 4vw, 80px) clamp(36px, 3vw, 64px);
  }

  .lp-founding__title {
    font-size: clamp(34px, 3.1vw, 46px);
  }

  .lp-founding__body {
    width: min(260px, 100%);
  }

  .lp-founding__tag {
    width: clamp(180px, 16vw, 250px);
    min-height: clamp(56px, 4.2vw, 68px);
  }

  .lp-founding__tag p {
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.3;
  }

  .lp-meaning {
    padding: clamp(84px, 7vw, 120px) clamp(48px, 4.5vw, 96px) clamp(92px, 8vw, 128px);
  }

  .lp-meaning__inner {
    align-items: flex-end;
    gap: clamp(40px, 4.4vw, 96px);
  }

  .lp-meaning__content {
    flex-basis: min(560px, 48vw);
    gap: clamp(32px, 3vw, 56px);
  }

  .lp-meaning__grid {
    column-gap: clamp(24px, 2.4vw, 48px);
  }

  .lp-meaning__column {
    gap: clamp(24px, 2.2vw, 40px);
  }

  .lp-meaning__statement {
    flex: 0 1 460px;
    max-width: clamp(360px, 32vw, 500px);
  }

  .lp-meaning__statement-lead {
    font-size: 40px;
    line-height: 51px;
  }

  .lp-meaning__statement-body {
    font-size: 32px;
    line-height: 51px;
  }

  .lp-different {
    padding: clamp(72px, 6vw, 96px) clamp(36px, 4vw, 72px);
  }

  .lp-different__grid {
    grid-template-columns: minmax(300px, 1.08fr) repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 24px);
  }

  .lp-different__intro,
  .lp-different__column {
    gap: clamp(18px, 1.6vw, 24px);
  }

  .lp-different__headline,
  .lp-different__card {
    padding: clamp(22px, 1.8vw, 28px);
  }

  .lp-different__eyebrow {
    font-size: clamp(22px, 1.65vw, 28px);
  }

  .lp-different__title {
    font-size: clamp(54px, 4.8vw, 72px);
    line-height: 0.9;
  }

  .lp-different__card-title {
    font-size: clamp(19px, 1.45vw, 22px);
  }

  .lp-different__card-body {
    margin-top: 12px;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.35;
  }

  .lp-immersions__grid {
    gap: clamp(20px, 1.8vw, 28px);
  }

  .lp-programmes__body {
    gap: clamp(36px, 3vw, 64px);
  }

  .lp-pathway__visual {
    width: min(760px, 54%);
  }

  .lp-pathway__tag {
    width: clamp(250px, 21vw, 320px);
  }
}

@media (max-width: 1439px) and (min-width: 992px) {
  .lp-meaning__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .lp-meaning__content {
    flex-basis: auto;
  }

  .lp-meaning__statement {
    flex: 0 0 auto;
    margin-left: 0;
    align-self: auto;
    max-width: 100%;
    padding-bottom: 0;
  }

  .lp-meaning__statement-lead {
    font-size: clamp(32px, 2.9vw, 40px);
    line-height: 1.18;
  }

  .lp-meaning__statement-body {
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.35;
  }

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

  .lp-different__intro {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .lp-different__headline {
    flex: 0 0 auto;
    max-width: 640px;
    padding: 0 0 8px;
  }

  .lp-different__column {
    align-self: start;
  }

  .lp-different__card {
    flex: 0 0 auto;
    min-height: clamp(220px, 17vw, 252px);
  }

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

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

  .lp-pathway__tag--innovator {
    left: -11.62%;
  }

  .lp-pathway__tag--entrepreneur {
    left: -22.41%;
  }
}

/* ——— 5. Pathway — 207:1896 / 207:1897; slightly wider band than strict px (tighter outer + inner x) ——— */
.lp-path {
  position: relative;
  width: 100%;
  max-width: var(--lp-max);
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(4px, 0.65vw, 12px);
  margin-bottom: clamp(2px, 0.45vw, 6px);
  box-sizing: border-box;
  /* No side padding — band uses full .lp width; mobile gutters in responsive.css */
  padding: clamp(18px, 3.2vw, 52px) 0 clamp(18px, 4.25vw, 72px);
  overflow: visible;
}

/* Colored band + bg: inset matches inner row; tighter x = wider visible band */
.lp-path__container {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --lp-path-inset-x: clamp(4px, 2.6vw, 44px);
  --lp-path-inset-t: clamp(22px, 3.5vw, 64px);
  --lp-path-inset-b: clamp(22px, 3.9vw, 72px);
  /* Extra left inset for headline + CTA vs WPU lockup (207:1898) */
  --lp-path-copy-pad: clamp(16px, 2.5vw, 48px);
  overflow: hidden;
  isolation: isolate;
}

.lp-path__bg {
  position: absolute;
  top: var(--lp-path-inset-t);
  right: var(--lp-path-inset-x);
  bottom: var(--lp-path-inset-b);
  left: var(--lp-path-inset-x);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

/* 207:1897 bg — same crop as Figma; object-position nudges diagonal / WPU lockup with headline */
.lp-path__bg img {
  position: absolute;
  left: 0;
  top: 11.8%;
  width: 100%;
  height: 88.2%;
  max-width: none;
  object-fit: cover;
  object-position: 38% 48%;
  pointer-events: none;
}

/* 207:1897 — flex gap 24, h 784.89; padding matches .lp-path__bg inset; clip chips to panel */
.lp-path__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(20px, 1.35vw, 28px);
  box-sizing: border-box;
  min-height: 0;
  padding: var(--lp-path-inset-t) var(--lp-path-inset-x) var(--lp-path-inset-b);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media (min-width: 1101px) {
  .lp-path__inner {
    flex-wrap: nowrap;
    min-height: clamp(520px, 40.88vw, 784.89px);
    align-items: center;
  }
}

@media (min-width: 1920px) {
  .lp-path__inner {
    min-height: clamp(784.89px, 40.88vw, 920px);
  }
}

/* 207:1898 — copy column slightly wider than photo for headline + CTA alignment */
.lp-path__text {
  position: relative;
  z-index: 3;
  flex: 1.12 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  justify-content: flex-start;
  gap: clamp(20px, 1.25vw, 28px);
  padding: clamp(20px, 4.5vw, 56px) 0 clamp(16px, 3vw, 56px) var(--lp-path-copy-pad);
  box-sizing: border-box;
}

@media (min-width: 1101px) {

  /* Figma 207:1898 — pt-[370px] pb-[200px] gap-[24px] (1920 artboard); vw tracks width */
  .lp-path__text {
    min-height: 0;
    flex: 1.14 1 0;
    padding-top: clamp(36px, 19.27vw, 370px);
    padding-bottom: clamp(24px, 10.42vw, 200px);
    padding-left: var(--lp-path-copy-pad);
    padding-right: 0;
    gap: 24px;
  }
}

/* 207:1899 — Montserrat Semibold 40px; stacked lines left-aligned with even rhythm */
.lp-path__h2 {
  margin: 0;
  width: max-content;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.08vw, 40px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}

.lp-path__h2-line {
  display: block;
  max-width: 100%;
}

.lp-path__h2-line+.lp-path__h2-line {
  margin-top: 0.06em;
}

.lp-path__text .lp-btn--apply-red {
  align-self: flex-start;
  flex-shrink: 0;
}

.lp-path__stage {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-width: 0;
  min-height: clamp(280px, 52vw, 400px);
  align-self: stretch;
  overflow: visible;
}

@media (min-width: 1101px) {
  .lp-path__stage {
    min-height: clamp(400px, 40.88vw, 784.89px);
    height: auto;
  }
}

@media (min-width: 1920px) {
  .lp-path__stage {
    min-height: clamp(784.89px, 40.88vw, 920px);
  }
}

.lp-path__model-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-width: 0;
  pointer-events: none;
}

/* 207:1904 — Figma: inset-0, object-contain; bottom-aligned in stage */
.lp-path__model {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
}

/* Role layer — %-positions from Figma px ÷ ref col ~785 × ref h 784.89; 1920px = exact px */
.lp-path__role-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.lp-path__role-layer .lp-glass--path {
  pointer-events: auto;
  box-sizing: border-box;
  width: min(347px, calc(100% - 24px));
  min-height: 110.06px;
  padding: clamp(16px, 1.3vw, 25px);
  gap: clamp(14px, 1.04vw, 20px);
  border: 1px solid #151515;
  border-radius: 16px;
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  background: linear-gradient(170.81deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.lp-glass {
  position: absolute;
  display: flex;
  align-items: center;
  border-radius: 16px;
}

.lp-path__role-layer .lp-glass--path p {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.11;
  text-transform: uppercase;
  color: #fff;
}

.lp-glass--end {
  display: flex;
}

.lp-glass--end p {
  white-space: nowrap;
  flex: 0 1 auto;
}

.lp-path__role-layer .lp-glass__ico-w {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 3.44vw, 66px);
  height: clamp(52px, 3.44vw, 66px);
  padding: clamp(6px, 0.52vw, 10px);
  background: #fff;
  border-radius: 9px;
  flex-shrink: 0;
}

.lp-path__role-layer .lp-glass__ico-w img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-path__role-layer .lp-glass:nth-child(2) .lp-glass__ico-w img {
  object-fit: contain;
  max-height: 67px;
}

/* Glass chips: inside stage + vertical spacing so pairs don’t crowd */
.lp-glass--path-innovator {
  top: 45.5%;
  left: clamp(4px, 1.45vw, 12px);
  right: auto;
}

.lp-glass--path-entrepreneur {
  top: calc(min(84%, calc(78.42% + clamp(24px, 3.2vw, 40px))) - clamp(10px, 1.4vw, 18px));
  left: clamp(4px, 1.45vw, 12px);
  right: auto;
}

.lp-glass--path-thinker {
  top: 51%;
  left: auto;
  right: clamp(10px, 2.2vw, 24px);
}

.lp-glass--path-solver {
  top: calc(min(85%, calc(78.42% + clamp(28px, 3.5vw, 44px))) - clamp(10px, 1.4vw, 18px));
  right: clamp(10px, 2.2vw, 24px);
  left: auto;
}

@media (min-width: 1920px) {

  /* Figma px at 1920 → scale with vw so chips track the model on ultra-wide */
  .lp-glass--path-innovator {
    top: clamp(357px, 18.6vw, 432px);
    left: clamp(12px, 0.625vw, 16px);
  }

  .lp-glass--path-entrepreneur {
    top: clamp(634px, 33.02vw, 768px);
    left: clamp(12px, 0.625vw, 16px);
  }

  .lp-glass--path-thinker {
    top: clamp(400px, 20.83vw, 484px);
    right: clamp(20px, 1.04vw, 26px);
    left: auto;
  }

  .lp-glass--path-solver {
    top: clamp(642px, 33.44vw, 778px);
    right: clamp(20px, 1.04vw, 26px);
    left: auto;
  }

  .lp-path__role-layer .lp-glass--path {
    width: clamp(347px, 18.07vw, 400px);
    max-width: min(400px, calc(100% - 40px));
    padding: clamp(22px, 1.3vw, 28px);
    gap: clamp(18px, 1.04vw, 24px);
  }
}

/* ——— 6. Learning model — Figma 1480:3181 ——— */
.lp-learn {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  margin-top: clamp(24px, 4vw, 80px);
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  --lp-learn-rule: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #000 0%, #010767 100%);
  box-shadow:
    0 6px 203px rgba(0, 0, 0, 0.07),
    0 2.507px 84.809px rgba(0, 0, 0, 0.05),
    0 1.34px 45.343px rgba(0, 0, 0, 0.04),
    0 0.751px 25.419px rgba(0, 0, 0, 0.04),
    0 0.399px 13.5px rgba(0, 0, 0, 0.03),
    0 0.166px 5.618px rgba(0, 0, 0, 0.02);
}

/* 340:448 — p-164; headline + CTA gap 32px (951:1449) */
.lp-learn__left {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  min-height: 0;
  padding: clamp(32px, 8.55vw, 164px);
  box-sizing: border-box;
}

@media (min-width: 1001px) {
  .lp-learn__left {
    min-height: 500px;
  }
}

@media (min-width: 1920px) {
  .lp-learn__left {
    min-height: 1235px;
  }
}

.lp-learn__h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  max-width: min(100%, 560px);
  font-size: clamp(40px, 5.2vw, 96px);
  line-height: 0.97;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.03em;
}

.lp-learn__h2-line {
  display: block;
}

.lp-learn__lead {
  margin: 0;
  max-width: min(100%, 365px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-learn__cta {
  align-self: flex-start;
}

.lp-learn__vline {
  flex: 0 0 1px;
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 200px;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--lp-learn-rule);
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 1001px) {
  .lp-learn__vline {
    min-height: clamp(520px, 45vw + 280px, 1235px);
  }
}

/* 1985: w-970 h-1235; 1986 pl-100 pr-77 py-30; tag+bundle gap-12; title+body gap-14 */
/* flex-start: equal flex+min-height on rows was shrinking year blocks and letting long copy overlap the next row */
.lp-learn__years {
  flex: 1 1 400px;
  min-width: 0;
  max-width: 970px;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 1920px) {
  .lp-learn__years {
    min-height: 1235px;
  }
}

/* Years: no Swiper JS; ≤1199px = column stack in responsive.css; desktop = display:contents */
.lp-learn__swiper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lp-learn__swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

/* Desktop ≥1200px: Figma 340:447 — flatten Swiper; extra top inset on years column. */
@media (min-width: 1200px) {
  .lp-learn__left {
    padding-top: calc(clamp(32px, 8.55vw, 164px) + clamp(32px, 3.5vw, 72px));
    padding-bottom: clamp(32px, 8.55vw, 164px);
    padding-left: clamp(32px, 8.55vw, 164px);
    padding-right: clamp(32px, 8.55vw, 164px);
  }

  .lp-learn__years {
    padding-top: clamp(32px, 3.5vw, 72px);
    box-sizing: border-box;
  }

  /* Swiper bundle can override display — keep four year rows + desktop dividers (sep in markup) */
  .lp-learn__swiper,
  .lp-learn__swiper .swiper-wrapper,
  .lp-learn__swiper .swiper-slide {
    display: contents !important;
  }
}

@media (min-width: 1920px) {
  .lp-learn {
    min-height: 1235px;
  }

  .lp-learn__h2 {
    max-width: 560px;
    font-size: 96px;
    line-height: 0.97;
  }

  .lp-learn__lead {
    font-size: 20px;
  }
}

.lp-yr {
  padding: 30px 77px 30px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 auto;
  justify-content: flex-start;
  min-height: 0;
  box-sizing: border-box;
}

.lp-yr__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 0;
  color: #fff;
}

.lp-yr__tag {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.11;
  font-weight: 600;
  text-transform: uppercase;
  color: #5697fe;
  flex-shrink: 0;
}

.lp-yr__content h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.05vw, 40px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-yr__title-line {
  display: block;
}

.lp-yr__desc {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 400;
  line-height: 1.39;
  letter-spacing: -0.02em;
  color: #fff;
}

.lp-yr__pathways {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 502px;
}

.lp-yr__pathway-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 500;
  line-height: 1.39;
  letter-spacing: -0.02em;
  color: #fff;
}

.lp-yr__pathway-item {
  white-space: nowrap;
}

.lp-yr__pathway-sep {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

.lp-yr__sep {
  width: 100%;
  height: 1px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--lp-learn-rule, rgba(255, 255, 255, 0.5));
}

/* ——— 7. Campus community — Figma 1480:3430 ——— */
.lp-community {
  width: 100%;
  background: #fff;
}

.lp-community__inner {
  width: 100%;
  max-width: 1918px;
  margin: 0 auto;
  padding: clamp(40px, 5.63vw, 108px) clamp(20px, 5.21vw, 100px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(320px, 558px) minmax(520px, 1fr);
  column-gap: clamp(48px, 6vw, 120px);
  align-items: center;
}

.lp-community__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  min-width: 0;
}

.lp-community__title {
  margin: 0;
  max-width: 558px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 96px);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-community__title-growth {
  background: linear-gradient(180deg, #000 0%, #0938df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-community__lead {
  margin: 0;
  max-width: 558px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 300;
  line-height: 1.29;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-community__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  column-gap: clamp(48px, 7.66vw, 147px);
  row-gap: clamp(28px, 3.13vw, 60px);
  min-width: 0;
}

.lp-community__feature {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.34vw, 45px);
  min-width: 0;
}

.lp-community__icon-wrap {
  flex: 0 0 auto;
  width: var(--lp-community-icon-size, 74px);
  height: var(--lp-community-icon-size, 74px);
}

.lp-community__feature--education {
  --lp-community-icon-size: 63px;
}

.lp-community__feature--mentorship {
  --lp-community-icon-size: 76px;
}

.lp-community__feature--sports {
  --lp-community-icon-size: 74px;
}

.lp-community__feature--campus {
  --lp-community-icon-size: 73px;
}

.lp-community__icon {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.lp-community__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.lp-community__feature-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-community__feature-text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 0.84vw, 16px);
  font-weight: 300;
  line-height: 1.29;
  letter-spacing: -0.02em;
  color: #000;
}

/* ——— 8. Goa is alive — Figma 1497:3464 ——— */
.lp-goa {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 55vw, 1066px);
  overflow: hidden;
  background: #000;
}

.lp-goa::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 15, 35, 0.02) 0%, rgba(8, 15, 35, 0.18) 48%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.lp-goa__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.lp-goa__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: clamp(32px, 3.65vw, 70px) clamp(24px, 11.15vw, 214px) clamp(40px, 6.67vw, 128px) clamp(24px, 14.06vw, 270px);
}

.lp-goa__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.03vw, 39px);
  width: 100%;
}

.lp-goa__eyebrow {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 2.08vw, 40px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-goa__columns {
  display: grid;
  grid-template-columns: minmax(320px, 737px) minmax(280px, 642px);
  gap: clamp(24px, 3.18vw, 61px);
  align-items: start;
}

.lp-goa__copy,
.lp-goa__callout {
  min-width: 0;
  color: #fff;
}

.lp-goa__copy p,
.lp-goa__callout p {
  margin: 0;
}

.lp-goa__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 300;
  line-height: 1.33;
  letter-spacing: -0.03em;
}

.lp-goa__copy p + p {
  margin-top: 12px;
}

.lp-goa__callout {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.03em;
}

/* ——— 9. Programme focus — desktop Figma 954:1474; mobile stack Figma 1005:1460 (responsive.css) ——— */
.lp-prog-focus {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  /* Right gutter only — image (954:1475) bleeds to viewport/section left like Figma */
  padding: 0 var(--lp-pad-l, 24px) 0 0;
  background: linear-gradient(118deg, #e8eef9 0%, #f4f7fd 38%, #ffffff 100%);
  overflow-x: visible;
}

.lp-prog-focus__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 23px;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  min-height: 0;
}

/* 954:1475 — flex-[1_0_0]; image absolute inset-0 object-cover (Figma) */
.lp-prog-focus__art {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.lp-prog-focus__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  pointer-events: none;
}

/* 954:1476 — w 764 shrink-0; gap 57; py 147 pr 70 (gutter = flex gap, not pl) */
.lp-prog-focus__body {
  flex: 0 0 auto;
  width: min(764px, calc((100% - 23px) * 764 / 1921));
  max-width: 764px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 57px;
  padding: 147px 70px 147px 0;
  min-width: 0;
  align-self: stretch;
}

.lp-prog-focus__lede {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.6px;
  color: #000;
}

.lp-prog-focus__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.lp-prog-focus__item--gap-sm {
  gap: 10px;
}

.lp-prog-focus__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #427bee;
}

.lp-prog-focus__title-line {
  display: block;
}

.lp-prog-focus__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.6px;
  color: #000;
}

/* ——— 8. Legacy — desktop Figma 218:2147; mobile Figma 374:1509 ——— */
/* Gradient: 040c6d → 457be1 @ 41.93% → transparent; p-164; 99px below intro, 21px between stat rows */
.lp-legacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(32px, 8.55vw, 164px) clamp(20px, 8.55vw, 164px);
  gap: 99px;
  background: linear-gradient(180deg, #040c6d 0%, #457be1 41.93%, rgba(69, 123, 225, 0) 100%);
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  color: #fff;
}

@media (max-width: 1199px) {
  .lp-legacy {
    gap: clamp(40px, 5vw, 99px);
  }
}

.lp-legacy__grids {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
  max-width: 100%;
}

/* 2148: gap-114, items-start; title 895×64 Bold; body 20 Regular Montserrat, lh 1.43 */
.lp-legacy__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px clamp(24px, 5vw, 114px);
  width: 100%;
}

.lp-legacy__h2 {
  margin: 0;
  flex: 1 1 300px;
  min-width: 0;
  max-width: 895px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 1.04;
  font-weight: 700;
}

.lp-legacy__lede {
  flex: 1 1 300px;
  min-width: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 0;
}

.lp-legacy__lede p {
  margin: 0;
  line-height: 1.43;
  color: #fff;
}

.lp-legacy__lede p+p {
  margin-top: 1.43em;
}

/* Row 1: 2152 gap-21; cards h-177; first 464px, num col w 160/294/348 */
.lp-legacy__grid1 {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  width: 100%;
  align-items: stretch;
}

.lp-legacy__cell {
  display: flex;
  min-width: 0;
  gap: 10px;
  align-items: center;
  min-height: 177px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  color: #000;
  box-sizing: border-box;
}

.lp-legacy__cell:nth-child(1) {
  flex: 0 1 464px;
  max-width: 100%;
  min-width: 0;
}

.lp-legacy__cell:nth-child(2),
.lp-legacy__cell:nth-child(3) {
  flex: 1 1 0;
  min-width: 0;
}

@media (max-width: 1000px) {
  .lp-legacy__cell:nth-child(1) {
    flex: 1 1 100%;
  }
}

.lp-legacy__n {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(40px, 5vw, 96px);
  line-height: 1.04;
  font-weight: 600;
  text-align: center;
  letter-spacing: -1.92px;
  color: #010767;
}

@media (min-width: 1001px) {
  .lp-legacy__cell:nth-child(1) .lp-legacy__n {
    flex: 0 0 160px;
    width: 160px;
  }

  .lp-legacy__cell:nth-child(2) .lp-legacy__n {
    flex: 0 0 294px;
    width: 294px;
  }

  .lp-legacy__cell:nth-child(3) .lp-legacy__n {
    flex: 0 0 348px;
    width: 348px;
  }
}

@media (max-width: 1000px) {
  .lp-legacy__cell .lp-legacy__n {
    width: auto !important;
    max-width: 100%;
    flex: 0 0 auto !important;
  }

  .lp-legacy__cell {
    min-height: 0;
  }
}

/* Inter Semibold 24, lh 0.94, tracking -0.72 — label copy */
.lp-legacy__label {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-legacy__label p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2.2vw, 24px);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.72px;
  color: #000;
  text-transform: uppercase;
}

/* Intentional two-line copy; each line keeps together (avoids “Student” / “s” breaks) */
.lp-legacy__label-txt {
  line-height: 1.05;
  text-align: left;
}

.lp-legacy__label-line {
  white-space: nowrap;
}

/* Row 2: 2162 gap-21; col cards gap-10; 540+ 223h, 240+ 219h */
.lp-legacy__grid2 {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  width: 100%;
  align-items: stretch;
}

.lp-legacy__s {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  text-align: left;
  align-items: flex-start;
  box-sizing: border-box;
}

.lp-legacy__n2 {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(40px, 5vw, 96px);
  line-height: 1.04;
  font-weight: 600;
  color: #010767;
  letter-spacing: -1.92px;
}

.lp-legacy__s--h223 {
  min-height: 223px;
  justify-content: center;
}

.lp-legacy__s--h219 {
  min-height: 219px;
  justify-content: center;
}

@media (min-width: 1920px) {

  .lp-legacy__grid1,
  .lp-legacy__grid2 {
    flex-wrap: nowrap;
  }
}

/* ——— 9. Leadership — Figma 1497:3522 ——— */
.lp-lead {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.7vw, 71px);
  width: 100%;
  padding: clamp(40px, 5.63vw, 108px) clamp(20px, 8.55vw, 164px) clamp(40px, 4.69vw, 90px);
  box-sizing: border-box;
  background: #ededed;
}

.lp-lead__h2 {
  margin: 0;
  max-width: 1348px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 3.34vw, 64px);
  line-height: 0.97;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-lead__h2-line {
  display: block;
}

.lp-lead__slider-wrap {
  width: 100%;
  box-sizing: border-box;
}

.lp-lead__swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.lp-lead__swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.lp-lead__card {
  width: 100%;
  max-width: 443px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}

.lp-lead__panel {
  width: 100%;
  min-height: 470px;
  background: #b0002d;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 30px 30px 0;
  gap: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.lp-lead__headban {
  display: flex;
  width: 100%;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.lp-lead__rule {
  flex: 0 0 2px;
  width: 2px;
  height: 28px;
  background: #fff;
}

.lp-lead__headban p {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 0.94;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.lp-lead__photo-clip {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.lp-lead__photo {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 402.678 / 314.688;
  overflow: hidden;
}

.lp-lead__photo img {
  position: absolute;
  left: 0;
  top: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(100%);
}

.lp-lead__photo--satish img {
  left: -7.74%;
  top: -35.06%;
  width: 166.35%;
  height: 135.06%;
}

.lp-lead__photo--walter img {
  object-fit: cover;
  object-position: center bottom;
}

.lp-lead__photo--shivakumar img,
.lp-lead__photo--garimella img {
  object-fit: contain;
  object-position: center bottom;
}

.lp-lead__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.lp-lead__meta p {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #000;
}

/* ——— 10. Trust and potential — Figma 1504:3713 ——— */
.lp-trust {
  width: 100%;
  padding: clamp(24px, 3.13vw, 60px) var(--lp-pad) clamp(32px, 3.65vw, 70px);
  box-sizing: border-box;
  background: #fff;
}

.lp-trust:has(+ .lp-sch-intro) {
  padding-bottom: clamp(16px, 2vw, 32px);
}

.lp-trust__surface {
  max-width: 1920px;
  margin: 0 auto;
  border-radius: 45px;
  overflow: hidden;
  background: linear-gradient(0deg, #fff 28.08%, #5697fe 73.392%, #010767 99.985%, #000 99.993%);
}

.lp-trust__top {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  gap: clamp(20px, 2.5vw, 40px);
  padding: clamp(64px, 8.54vw, 164px) clamp(20px, 3vw, 56px) clamp(72px, 9.58vw, 184px) clamp(20px, 7.5vw, 120px);
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.lp-trust__intro {
  flex: 0 1 340px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 100%;
  max-width: 340px;
  min-width: 0;
}

.lp-trust__title,
.lp-trust__lead,
.lp-trust__hero-eyebrow,
.lp-trust__hero-title,
.lp-trust__hero-lead,
.lp-trust__hero-note,
.lp-trust__num,
.lp-trust__label,
.lp-trust__label-sub,
.lp-trust__chip {
  margin: 0;
}

.lp-trust__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-trust__title-line,
.lp-trust__hero-title-line,
.lp-trust__label-line {
  display: block;
}

.lp-trust__lead {
  max-width: 296px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-trust__stats {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 21px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.lp-trust__stats-row {
  display: grid;
  gap: 21px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  align-items: stretch;
}

/* Top row: spacer + proportional cards (right-aligned, stays in container) */
.lp-trust__stats-row--top {
  grid-template-columns: minmax(0, 1fr) minmax(0, 258fr) minmax(0, 360fr) minmax(0, 520fr);
}

/* Bottom row: proportional widths (496 : 465 : 325) */
.lp-trust__stats-row--bottom {
  grid-template-columns: minmax(0, 496fr) minmax(0, 465fr) minmax(0, 325fr);
}

.lp-trust__stat {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: 177px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.lp-trust__stat--universities,
.lp-trust__stat--institutes,
.lp-trust__stat--hospital {
  width: 100%;
  max-width: 100%;
}

.lp-trust__stat--students {
  height: 185px;
}

.lp-trust__stat--schools {
  height: 185px;
  gap: 20px;
  padding: 26px 30px 30px;
}

.lp-trust__stat--medical {
  width: 100%;
  max-width: 100%;
}

/* 5 Universities — num + label with clear gap (no overlap) */
.lp-trust__stat--universities {
  padding: 20px 16px;
  gap: 10px;
  justify-content: flex-start;
}

.lp-trust__stat--universities .lp-trust__num {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  padding: 0;
  text-align: left;
  line-height: 1.04;
  font-size: clamp(40px, 7vw, 80px);
}

.lp-trust__stat--universities .lp-trust__label {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow-wrap: normal;
}

/* 2000+ Bedded Hospital — num + label, no overlap */
.lp-trust__stat--hospital .lp-trust__num {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  text-align: left;
  line-height: 1.04;
  font-size: clamp(40px, 6vw, 96px);
}

.lp-trust__stat--hospital .lp-trust__label {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  white-space: normal;
  overflow-wrap: normal;
}

/* 8600+ Students — num + label with clear gap */
.lp-trust__stat--students .lp-trust__num {
  flex: 0 0 auto;
  line-height: 1.04;
  font-size: clamp(40px, 6vw, 96px);
}

.lp-trust__stat--students .lp-trust__label {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: none;
  height: auto;
  white-space: nowrap;
  overflow-wrap: normal;
  align-self: center;
}

.lp-trust__stat--medical .lp-trust__num {
  flex: 0 0 83px;
  width: 83px;
  text-align: center;
}

.lp-trust__label-group {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-width: 0;
}

.lp-trust__num {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #010767;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-trust__label {
  flex: 1 1 0;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #000;
  overflow-wrap: anywhere;
}

.lp-trust__label-sub {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-trust__bottom {
  padding: clamp(24px, 3.13vw, 60px) clamp(16px, 5.21vw, 100px) clamp(20px, 1.56vw, 30px);
}

.lp-trust__hero {
  position: relative;
  height: clamp(560px, 34.84vw, 669px);
  border-radius: 30px;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: #01011b;
}

.lp-trust__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.lp-trust__hero-copy,
.lp-trust__hero-visual {
  position: relative;
  z-index: 2;
}

.lp-trust__hero-copy {
  flex: 1 1 0;
  min-width: 0;
  height: clamp(472px, 29.84vw, 573px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(36px, 4.27vw, 82px);
  padding-left: clamp(24px, 5.21vw, 100px);
  color: #fff;
}

.lp-trust__hero-main {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: min(100%, 551px);
}

.lp-trust__hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 2.29vw, 44px);
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: -0.03em;
  color: #a7c9ff;
}

.lp-trust__hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: #fff;
  width: min(100%, 551px);
}

.lp-trust__hero-lead {
  width: min(100%, 455px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.29;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-trust__hero-note {
  width: min(100%, 417px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 0.84vw, 16px);
  font-weight: 300;
  line-height: 1.29;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-trust__hero-visual {
  position: relative;
  flex: 0 0 clamp(520px, 55vw, 1056px);
  display: flex;
  flex-direction: column;
  gap: 126px;
  align-items: flex-start;
  align-self: flex-end;
  width: clamp(520px, 55vw, 1056px);
  height: clamp(560px, 38.23vw, 734px);
  pointer-events: none;
}

.lp-trust__hero-figure-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.lp-trust__hero-figure {
  position: absolute;
  left: 23.91%;
  top: -13.02%;
  width: 62.13%;
  height: 113.02%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
}

.lp-trust__chip {
  position: absolute;
  width: 277px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 0.542px solid rgba(21, 21, 21, 0.65);
  background: linear-gradient(172deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(11.378px);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
  text-align: center;
  color: #fff;
}

.lp-trust__chip--grow {
  left: 211px;
  top: 367px;
}

.lp-trust__chip--curious {
  left: 201px;
  top: 496px;
}

.lp-trust__chip--ambitious {
  left: 664px;
  top: 578px;
}

.lp-trust__chip--open {
  left: 664px;
  top: 390px;
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .lp-trust__hero-visual {
    overflow: visible;
  }

  .lp-trust__chip {
    width: clamp(220px, 18vw, 277px);
    height: clamp(64px, 4.8vw, 76px);
    font-size: clamp(17px, 1.2vw, 20px);
  }

  .lp-trust__chip--grow {
    left: 20%;
    top: 50%;
  }

  .lp-trust__chip--curious {
    left: 19%;
    top: 67.6%;
  }

  .lp-trust__chip--open {
    left: 62.9%;
    top: 53.1%;
  }

  .lp-trust__chip--ambitious {
    left: 62.9%;
    top: 78.7%;
  }
}

@media (min-width: 1600px) {
  .lp-trust__bottom {
    padding: 60px 100px 30px;
  }

  .lp-trust__hero {
    height: 669px;
  }

  .lp-trust__hero-copy {
    height: 573px;
    gap: 82px;
    padding-left: 100px;
  }

  .lp-trust__hero-main,
  .lp-trust__hero-title {
    width: 551px;
    max-width: none;
  }

  .lp-trust__hero-eyebrow {
    font-size: 44px;
  }

  .lp-trust__hero-title {
    font-size: 96px;
    letter-spacing: -0.03em;
  }

  .lp-trust__hero-lead {
    width: 455px;
    max-width: none;
    font-size: 20px;
  }

  .lp-trust__hero-note {
    width: 417px;
    max-width: none;
    font-size: 16px;
  }

  .lp-trust__hero-visual {
    flex-basis: 1056px;
    width: 1056px;
    height: 734px;
  }

  .lp-trust__chip {
    width: 277px;
    height: 76px;
    padding: 10px;
    font-size: 20px;
  }

  .lp-trust__top {
    gap: 32px;
    padding: 164px 56px 184px 80px;
  }

  .lp-trust__intro {
    flex: 0 0 340px;
    max-width: 340px;
  }

  .lp-trust__title {
    max-width: 340px;
    font-size: 48px;
  }

  .lp-trust__lead {
    max-width: 296px;
    font-size: 20px;
  }

  .lp-trust__stats {
    max-width: 1327px;
  }

  .lp-trust__stat--universities {
    grid-column: 2;
  }

  .lp-trust__stat--institutes {
    grid-column: 3;
  }

  .lp-trust__stat--hospital {
    grid-column: 4;
  }

  .lp-trust__num {
    font-size: 96px;
  }

  .lp-trust__label {
    font-size: 24px;
  }

  .lp-trust__label-sub {
    font-size: 18px;
  }

  .lp-trust__stat--universities .lp-trust__num {
    font-size: clamp(56px, 4vw, 72px);
  }

  .lp-trust__stat--hospital .lp-trust__num,
  .lp-trust__stat--students .lp-trust__num {
    font-size: 96px;
  }

  .lp-trust__stat--universities .lp-trust__label,
  .lp-trust__stat--hospital .lp-trust__label,
  .lp-trust__stat--students .lp-trust__label {
    font-size: 24px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .lp-trust__stats-row--top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-trust__stat--universities,
  .lp-trust__stat--institutes,
  .lp-trust__stat--hospital {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .lp-trust__top,
  .lp-trust__stats {
    overflow: visible;
  }

  .lp-trust__stats-row--bottom {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-trust__stat--medical {
    max-width: none;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .lp-trust__top {
    gap: 28px;
    padding-left: 64px;
    padding-right: 48px;
  }

  .lp-trust__intro {
    max-width: 320px;
    flex: 0 0 320px;
  }

  .lp-trust__stat--universities,
  .lp-trust__stat--institutes,
  .lp-trust__stat--hospital {
    grid-column: auto;
  }

  .lp-trust__stats-row--top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 258fr) minmax(0, 360fr) minmax(0, 520fr);
  }

  .lp-trust__stat--universities {
    grid-column: 2;
  }

  .lp-trust__stat--institutes {
    grid-column: 3;
  }

  .lp-trust__stat--hospital {
    grid-column: 4;
  }
}

@media (max-width: 1399px) {
  .lp-trust__top {
    flex-direction: column;
    gap: 48px;
    overflow: visible;
  }

  .lp-trust__intro {
    flex: 0 0 auto;
    max-width: 640px;
  }

  .lp-trust__lead {
    max-width: 560px;
  }

  .lp-trust__stats {
    width: 100%;
    max-width: none;
    overflow: visible;
  }

  .lp-trust__stat--universities,
  .lp-trust__stat--institutes,
  .lp-trust__stat--hospital {
    grid-column: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .lp-trust__stats-row--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-trust__stat--universities,
  .lp-trust__stat--institutes,
  .lp-trust__stat--hospital {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .lp-trust__stat--hospital {
    grid-column: 1 / -1;
  }

  .lp-trust__stats-row--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-trust__stat--students {
    grid-column: 1 / -1;
  }

  .lp-trust__stat--medical {
    max-width: none;
  }
}

@media (max-width: 991px) {
  .lp-trust__top,
  .lp-trust__stats,
  .lp-trust__stat {
    overflow: visible;
  }

  .lp-trust__top {
    padding: 48px 24px 48px;
    gap: 32px;
  }

  .lp-trust__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .lp-trust__stats-row--top,
  .lp-trust__stats-row--bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .lp-trust__stat--universities,
  .lp-trust__stat--institutes,
  .lp-trust__stat--hospital,
  .lp-trust__stat--students,
  .lp-trust__stat--schools,
  .lp-trust__stat--medical {
    grid-column: unset;
  }

  .lp-trust__stat,
  .lp-trust__stat--universities,
  .lp-trust__stat--institutes,
  .lp-trust__stat--hospital,
  .lp-trust__stat--students,
  .lp-trust__stat--schools,
  .lp-trust__stat--medical {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    padding: 24px 20px;
    gap: 10px;
  }

  .lp-trust__num,
  .lp-trust__stat--universities .lp-trust__num,
  .lp-trust__stat--hospital .lp-trust__num,
  .lp-trust__stat--students .lp-trust__num,
  .lp-trust__stat--medical .lp-trust__num {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 0;
    margin: 0;
    text-align: left;
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(48px, 12vw, 64px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
  }

  .lp-trust__label,
  .lp-trust__stat--universities .lp-trust__label,
  .lp-trust__stat--hospital .lp-trust__label,
  .lp-trust__stat--students .lp-trust__label {
    font-size: 18px;
    line-height: 0.94;
  }

  .lp-trust__label-sub {
    font-size: 15px;
  }

  .lp-trust__stat--medical .lp-trust__num {
    text-align: left;
  }
}

/* ——— 11. Scholarships intro — Figma 1504:3709 ——— */
.lp-sch-intro {
  width: 100%;
  background: #fff;
  padding: 0;
}

.lp-sch-intro__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 689px) minmax(320px, 1fr);
  align-items: center;
  column-gap: clamp(40px, 6.82vw, 131px);
  padding-top: clamp(16px, 1.8vw, 28px);
  padding-bottom: clamp(32px, 3.5vw, 56px);
  padding-inline: clamp(24px, 17.55vw, 337px) clamp(24px, 11.2vw, 215px);
  box-sizing: border-box;
}

.lp-trust + .lp-sch-intro .lp-sch-intro__inner {
  padding-top: clamp(12px, 1.4vw, 20px);
}

.lp-sch-intro__title,
.lp-sch-intro__copy {
  margin: 0;
  color: #000;
}

.lp-sch-intro__title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 3.34vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lp-sch-intro__title-line {
  display: block;
}

.lp-sch-intro__copy {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.03em;
}

/* ——— 12. Scholarships detail — Figma 1504:3824 ——— */
.lp-sch-detail {
  width: 100%;
  background: #fff;
  padding: 0;
}

.lp-sch-detail__inner {
  max-width: 1919px;
  margin: 0 auto;
  padding: 0 var(--lp-pad) clamp(32px, 3.5vw, 56px);
  box-sizing: border-box;
}

.lp-sch-intro + .lp-sch-detail .lp-sch-detail__inner {
  padding-top: 0;
}

.lp-sch-detail__surface {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5.68vw, 109px);
  padding: clamp(40px, 5.63vw, 108px) clamp(24px, 5.21vw, 100px);
  border-radius: 20px;
  background: #020219;
}

.lp-sch-detail__switch {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 50px;
  background: #fff;
  overflow: hidden;
}

.lp-sch-detail__switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(240px, 20.31vw, 390px);
  height: 83px;
  padding: 10px 24px;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.33;
  letter-spacing: -0.03em;
  text-align: center;
  color: #000;
}

.lp-sch-detail__switch-btn--active {
  border-radius: 50px;
  background: #0938df;
  font-weight: 600;
  color: #fff;
}

.lp-sch-detail__switch-btn:focus-visible,
.lp-sch-detail__menu-item:focus-visible {
  outline: 2px solid #7ea6ff;
  outline-offset: 3px;
}

.lp-sch-detail__grid {
  display: grid;
  grid-template-columns: 521px minmax(0, 1fr);
  gap: clamp(36px, 4.32vw, 83px);
  align-items: start;
  width: 100%;
}

.lp-sch-detail__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 50px 30px 24px;
  border-radius: 32px;
  background: #fff;
  color: #000;
}

.lp-sch-detail__menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 0 0 13px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.55);
  background: transparent;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-align: left;
}

.lp-sch-detail__menu-item:last-child {
  margin-bottom: 0;
}

.lp-sch-detail__menu-copy,
.lp-sch-detail__hero-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lp-sch-detail__menu-title,
.lp-sch-detail__menu-subtitle,
.lp-sch-detail__hero-title,
.lp-sch-detail__hero-subtitle,
.lp-sch-detail__duration,
.lp-sch-detail__lead,
.lp-sch-detail__continuation-title {
  margin: 0;
}

.lp-sch-detail__menu-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-sch-detail__menu-subtitle {
  display: block;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #000;
}

.lp-sch-detail__menu-item:not(.lp-sch-detail__menu-item--active) .lp-sch-detail__menu-title,
.lp-sch-detail__menu-item:not(.lp-sch-detail__menu-item--active) .lp-sch-detail__menu-subtitle {
  font-weight: 400;
}

.lp-sch-detail__menu-arrow {
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lp-sch-detail__menu-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.lp-sch-detail__menu-item--active .lp-sch-detail__menu-arrow {
  opacity: 1;
  transform: scale(1);
}

.lp-sch-detail__content {
  display: flex;
  flex-direction: column;
  gap: 37px;
  color: #fff;
  min-width: 0;
}

.lp-sch-detail__hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 5.37vw, 103px);
  width: 100%;
}

.lp-sch-detail__hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-sch-detail__hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 2.08vw, 40px);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-sch-detail__hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-sch-detail__duration {
  flex: 0 0 auto;
  padding-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: #fff;
  white-space: nowrap;
}

.lp-sch-detail__body {
  display: flex;
  flex-direction: column;
  gap: 29px;
  max-width: 700px;
}

.lp-sch-detail__lead {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-sch-detail__lead,
.lp-sch-detail__list li {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-sch-detail__lead p {
  margin: 0;
}

.lp-sch-detail__list {
  margin: 0;
  padding: 0;
  list-style: disc;
}

.lp-sch-detail__list[data-sch-eligibility]:empty {
  display: none;
}

.lp-sch-detail__list li {
  margin-left: 27px;
}

.lp-sch-detail__continuation {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 770px;
}

.lp-sch-detail__continuation:has([data-sch-continuation]:empty) {
  display: none;
}

.lp-sch-detail__continuation-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-sch-detail__list--continuation li + li {
  margin-top: 2px;
}

/* ——— 13. Build what comes next — Figma 1504:3888 ——— */
.lp-next {
  position: relative;
  width: 100%;
  min-height: clamp(620px, 62.4vw, 1198px);
  overflow: hidden;
  background: #ffffff;
}

.lp-next::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 7, 103, 0) 0%, rgba(1, 7, 103, 0) 58%, rgba(1, 7, 103, 0.18) 72%, rgba(1, 7, 103, 0.54) 86%, #010767 100%),
    linear-gradient(90deg, rgba(2, 2, 25, 0.02) 0%, rgba(2, 2, 25, 0) 50%, rgba(2, 2, 25, 0.02) 100%);
  z-index: 1;
}

.lp-next__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.05) saturate(1.02);
  pointer-events: none;
}

.lp-next__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(40px, 6.82vw, 131px);
  padding: 0 clamp(24px, 13.23vw, 254px) clamp(64px, 9.38vw, 180px);
  box-sizing: border-box;
}

.lp-next__title,
.lp-next__copy {
  margin: 0;
  color: #fff;
}

.lp-next__title {
  width: min(100%, 767px);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 5vw, 96px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.lp-next__title-line {
  display: block;
}

.lp-next__cta {
  width: min(100%, 645px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 33px;
}

.lp-next__copy {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 2.08vw, 40px);
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
}

.lp-next__copy-line {
  display: block;
}

.lp-next__btn {
  align-self: flex-start;
  box-shadow: none;
}

.lp-next__btn span {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  font-variation-settings: "wdth" 100;
}

@media (min-width: 1920px) {
  .lp-next {
    min-height: 1198px;
  }

  .lp-next__inner {
    gap: 131px;
    padding: 0 254px 180px;
  }

  .lp-next__title {
    width: 767px;
    font-size: 96px;
    line-height: 109px;
  }

  .lp-next__cta {
    width: 645px;
    gap: 33px;
  }

  .lp-next__copy {
    font-size: 40px;
    line-height: 53px;
    letter-spacing: -1.2px;
  }
}

/* ——— 14. Eligibility — desktop Figma 218:2342; mobile Figma 417:1728 ——— */
.lp-eli {
  position: relative;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--lp-pad);
  gap: 52px;
}

.lp-eli__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Anchor to top so the diagonal/upper graphic isn’t vertically cropped (cover defaults to center) */
.lp-eli__bg img {
  position: absolute;
  height: 100%;
  left: -22.84%;
  top: 0;
  width: 194.85%;
  object-fit: cover;
  object-position: top center;
  max-width: none;
}

/* 2344: card p-80, gap-74; 2345: intro gap-43; mobile 411:368 p-24 gap-32 */
.lp-eli__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 74px;
  width: 100%;
  max-width: 1199px;
  background: #fff;
  padding: clamp(24px, 4vw, 80px);
  border-radius: 25px;
  box-shadow: 0 0 208px rgba(0, 0, 0, 0.09), 0 0 86.897px rgba(0, 0, 0, 0.06), 0 0 46.46px rgba(0, 0, 0, 0.05), 0 0 26.045px rgba(0, 0, 0, 0.05), 0 0 13.832px rgba(0, 0, 0, 0.04), 0 0 5.756px rgba(0, 0, 0, 0.03);
}

.lp-eli__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 43px;
}

.lp-eli__h2 {
  margin: 0;
  max-width: 100%;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 600;
  line-height: 0.97;
  text-transform: uppercase;
}

.lp-eli__h2-line {
  display: block;
}

/* 2347: segmented control gap-1px, shadow; 2348/2350: h-58, w-273 / w-335 */
.lp-eli__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: flex-start;
  max-width: 100%;
  width: auto;
  min-width: 0;
  gap: 1px;
  background: #fff;
  border-radius: 29px;
  box-shadow: 0 6px 80px rgba(0, 0, 0, 0.07), 0 2.507px 33.422px rgba(0, 0, 0, 0.05), 0 1.34px 17.869px rgba(0, 0, 0, 0.04), 0 0.751px 10.017px rgba(0, 0, 0, 0.04), 0 0.399px 5.32px rgba(0, 0, 0, 0.03), 0 0.166px 2.214px rgba(0, 0, 0, 0.02);
}

button.lp-eli__tab {
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  text-align: center;
  box-sizing: border-box;
}

.lp-eli__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  height: 58px;
  box-sizing: border-box;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.11;
  text-transform: uppercase;
  flex: 0 0 auto;
  border-radius: 29px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lp-eli__tab--on {
  width: 273px;
  max-width: 100%;
  min-width: 0;
  background: #b0002d;
  color: #fff;
}

.lp-eli__tab:not(.lp-eli__tab--on) {
  width: 335px;
  max-width: 100%;
  min-width: 0;
  background: #fff;
  color: #000;
}

.lp-eli__tab:focus-visible {
  outline: 2px solid #214cb5;
  outline-offset: 2px;
}

.lp-eli__panels {
  width: 100%;
  min-width: 0;
}

.lp-eli__panel[hidden] {
  display: none !important;
}

/* Two-column desktop Figma 218:2342; stacked accordion + CTA Figma 417:1728 (responsive.css ≤991) */
.lp-eli__grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 53px;
  row-gap: 32px;
  align-items: start;
  width: 100%;
}

.lp-eli__acc-item--elig {
  grid-column: 1;
  grid-row: 1;
}

.lp-eli__brochure {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  width: 100%;
  max-width: 609px; /* 273 + 1px gap + 335 — matches .lp-eli__tabs pair (Figma 2347) */
  box-sizing: border-box;
}

.lp-eli__acc-item--sel {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: start;
}

.lp-eli__left-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.lp-eli__acc-item {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lp-eli__acc-item--elig,
.lp-eli__acc-item--sel {
  display: flex;
  flex-direction: column;
}

.lp-eli__acc-rule {
  display: none;
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

button.lp-eli__acc-trigger {
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  box-sizing: border-box;
  font: inherit;
  color: inherit;
}

.lp-eli__acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.72px;
  line-height: 1.2;
  color: #000;
  box-sizing: border-box;
}

/* Figma: title flex-[1_0_0], icon shrink-0 20px */
.lp-eli__acc-title {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 700;
}

.lp-eli__acc-ico {
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #000;
}

.lp-eli__acc-item.is-open .lp-eli__acc-ico::before {
  content: "\2212";
}

.lp-eli__acc-item:not(.is-open) .lp-eli__acc-ico::before {
  content: "+";
}

.lp-eli__acc-panel {
  min-width: 0;
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lp-eli__acc-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.lp-eli__acc-text p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.54px;
  line-height: 1.31;
  color: #000;
  box-sizing: border-box;
}

.lp-eli__box .lp-btn--apply-red span {
  font-family: "Instrument Sans", "Montserrat", sans-serif;
  font-weight: 700;
}

.lp-eli__grid-wrap>.lp-eli__brochure {
  align-self: start;
  width: auto;
}

@media (min-width: 992px) {
  .lp-eli__acc-panel[hidden] {
    display: block !important;
  }

  .lp-eli__acc-item.is-open .lp-eli__acc-ico::before,
  .lp-eli__acc-item:not(.is-open) .lp-eli__acc-ico::before {
    content: none;
  }
}

/* ——— 11. Admission — Figma 954:1611 ——— */
.lp-adm {
  width: 100%;
  padding: 0 0 60px;
  background: #fff;
}

/* 954:1612 — pt 173, pb 120, pl 164, pr 77 */
.lp-adm__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(48px, 12vw, 173px) var(--lp-pad) clamp(40px, 8vw, 120px) var(--lp-pad-l);
}

.lp-adm__head h2 {
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 0.97;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -2.88px;
  color: #000;
}

.lp-adm__head-txt {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 916px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.lp-adm__lede {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.6px;
  color: #000;
}

/* 954:1615 — pl 117 pr 77 */
.lp-adm__g {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--lp-pad) 0 var(--lp-pad);
  margin-top: 0;
}

.lp-adm__r {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.lp-adm__swiper {
  width: 100%;
  min-width: 0;
}

/* Step card — 954:1617 (#02021b, px 32 py 40, gap 87 icon → copy; copy gap 11) */
.lp-adm__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 87px);
  box-sizing: border-box;
  flex: 1 1 220px;
  max-width: 100%;
  min-width: 0;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  background: #02021b;
  border: none;
}

.lp-adm__copy {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  min-height: 0;
  max-width: 15.12rem;
}

.lp-adm__step-label {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 1.96vw, 37.658px);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -1.13px;
  text-transform: uppercase;
  color: #5697fe;
}

.lp-adm__ico {
  width: clamp(88px, 7.1vw, 136.51px);
  height: clamp(88px, 7.1vw, 136.51px);
  object-fit: contain;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.lp-adm__ico--sm {
  width: clamp(72px, 6.2vw, 119px);
  height: clamp(72px, 6.2vw, 119px);
}

.lp-adm__txt {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.15vw, 18.829px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
  color: #fff;
}

@media (min-width: 1200px) {
  .lp-adm__swiper,
  .lp-adm__swiper .swiper-wrapper,
  .lp-adm__swiper .swiper-slide {
    display: contents !important;
  }

  .lp-adm__head {
    padding: 173px 77px 120px 164px;
    gap: 24px;
  }

  .lp-adm__head h2 {
    font-size: 96px;
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .lp-adm__head-txt {
    flex: 0 1 916px;
    max-width: 916px;
    width: 100%;
  }

  .lp-adm__g {
    padding: 0 77px 0 117px;
  }

  .lp-adm__r {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
  }

  .lp-adm__step {
    flex: none;
    min-height: 0;
    grid-column: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  .lp-adm__head {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: clamp(16px, 2vw, 24px);
    padding: clamp(64px, 10vw, 173px) clamp(48px, 5vw, 77px) clamp(48px, 8vw, 120px) clamp(72px, 8vw, 164px);
  }

  .lp-adm__head h2 {
    flex: 0 1 40%;
    max-width: min(520px, 42vw);
    min-width: 0;
    font-size: clamp(52px, calc(52px + (100vw - 1200px) * 44 / 500), 96px);
    letter-spacing: -0.03em;
  }

  .lp-adm__head-txt {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .lp-adm__g {
    padding-left: clamp(48px, 6vw, 117px);
    padding-right: clamp(40px, 4vw, 77px);
  }

  .lp-adm__step {
    padding: clamp(24px, 2vw, 40px) clamp(18px, 2vw, 32px);
    gap: clamp(36px, 4vw, 72px);
  }

  .lp-adm__lede {
    font-size: clamp(16px, 0.2vw + 15px, 20px);
  }
}

/* ——— 12. Scholarships — Figma 340:705 ——— */
.lp-sch {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.lp-sch__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px clamp(24px, 5vw, 121px);
  padding: clamp(48px, 4vw, 146px) var(--lp-pad-l) 53px;
}

.lp-sch__head h2 {
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 689px;
  width: 100%;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.97;
  font-weight: 600;
  letter-spacing: -1.92px;
  text-transform: uppercase;
}

.lp-sch__head p {
  flex: 1 1 300px;
  min-width: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.38;
  letter-spacing: -0.6px;
}

.lp-sch__types-label {
  margin: 0;
  width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.19;
  color: #fff;
}

.lp-sch__tablist {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.2vw, 28px);
  width: 100%;
  min-width: 0;
}

.lp-sch__panel-h {
  margin: 0;
  width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.19;
  color: #fff;
}

.lp-sch__row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 0 var(--lp-pad);
}

@media (min-width: 1001px) {
  .lp-sch__row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .lp-sch__left {
    flex: 0 1 700px;
  }

  .lp-sch__right {
    flex: 1;
    min-width: 0;
  }
}

.lp-sch__left {
  width: 100%;
  max-width: 700px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: #010767;
  color: #fff;
  padding: clamp(32px, 4vw, 90px) clamp(20px, 4vw, 100px);
}

button.lp-sch__tab {
  font: inherit;
  font-family: "Instrument Sans", "Montserrat", sans-serif;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  width: 100%;
  min-height: 48px;
  padding: 12px 8px 18px 4px;
  text-align: left;
  border: none;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  /* full-width straight rule — no rounded ends on the line */
  box-sizing: border-box;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Same padding in all states so hover/focus don’t nudge the row */
.lp-sch__tab:hover {
  background: transparent;
}

.lp-sch__tablist .lp-sch__tab:last-of-type {
  border-bottom: none;
}

.lp-sch__tab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.lp-sch__tab-txt {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  flex: 1;
  min-width: 0;
}

.lp-sch__tab--on .lp-sch__tab-txt {
  font-weight: 600;
}

/* Arrow: only for active tab — frosted white disc + brand-colour chevron (design) */
.lp-sch__tab .lp-sch__tab-ico {
  display: none;
}

.lp-sch__tab--on .lp-sch__tab-ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  line-height: 0;
  flex-shrink: 0;
  animation: lp-sch-tab-arrow 1.55s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lp-sch__tab--on .lp-sch__tab-ico {
    animation: none;
  }
}

@keyframes lp-sch-tab-arrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.lp-sch__tab-ico-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  pointer-events: none;
}

.lp-sch__tab-ico-chev {
  position: relative;
  z-index: 1;
  display: block;
  color: #010767;
  /* chevron: deep blue on white blur (matches Figma) */
  overflow: visible;
}

.lp-sch__tablist .lp-sch__rulef {
  line-height: 0;
  margin: 0;
}

.lp-sch__rulef img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-sch__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #214cb5;
  color: #fff;
  padding: clamp(32px, 4vw, 90px) clamp(20px, 4vw, 100px);
}

.lp-sch__panels {
  position: relative;
  min-height: 0;
}

.lp-sch__panel {
  display: flex;
  flex-direction: column;
  gap: 33px;
  animation: lp-sch-fade 0.45s ease;
}

.lp-sch__panel[hidden] {
  display: none !important;
}

@keyframes lp-sch-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-sch__panel {
    animation: none;
  }
}

.lp-sch__panel ul {
  margin: 0;
  padding: 0;
  list-style: disc;
}

.lp-sch__panel li {
  margin-left: 30px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.19;
}

.lp-sch__panel>ul+ul li {
  line-height: 1.38;
}

/* long criteria bullet */
.lp-sch__chancellor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
}

.lp-sch__chancellor>ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: disc;
}

.lp-sch__nest {
  width: 100%;
  padding-left: min(80px, 6vw);
}

.lp-sch__nest li {
  line-height: 1.38;
}

/* ——— 14. Note ——— */
/* ——— 15. Footer CTA — desktop Figma 231:2831; mobile Figma 417:1869 ——— */
.lp-footer {
  position: relative;
  width: 100%;
  padding: 70px 0 0;
}

.lp-footer__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-footer__bg-desktop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Anchor to top so “WPU GŌA” in the art stays in frame at all aspect ratios (cover centers by default). */
.lp-footer__bg-desktop .a {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lp-footer__bg-desktop .bwrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-footer__bg-desktop .b {
  position: absolute;
  top: 54.65%;
  left: 52.48%;
  width: 47.52%;
  height: 45.35%;
  object-fit: cover;
  max-width: none;
}

/* Mobile Figma 417:1869 — single composite; hidden ≥1200px (see responsive.css) */
.lp-footer__bg-mobile {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 122.89%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

/* Figma 231:2822 — h-[1739px] p-[164px] justify-end; scales ~90.6vw at 1920 */
.lp-footer__inner {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 80.625vw, 1739px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: var(--lp-pad-l);
  padding-bottom: max(var(--lp-pad-l), env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

/* Figma 231:2823 — column w-[848px] gap-[32px] */
.lp-footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 848px;
}

.lp-footer__h2 {
  margin: 0;
  font-size: clamp(28px, 3.333vw, 64px);
  line-height: 1.07;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.lp-footer__h2-line {
  display: block;
}

.lp-footer__h2-line+.lp-footer__h2-line {
  margin-top: 0;
}

.lp-footer__copy {
  width: 100%;
  max-width: 848px;
}

.lp-footer__copy p {
  margin: 0;
  max-width: 848px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.6px;
  color: #fff;
}

/* Figma 231:2825 — blank line between question block and “At WPU GŌA…” */
.lp-footer__copy-spacer {
  margin: 0;
  height: 1.45em;
  line-height: 1.45;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.lp-footer__content .lp-btn {
  align-self: flex-start;
  flex-shrink: 0;
}

/* Responsive: see responsive.css (5 breakpoint layers) */

















/* ==================================================================
   NEW HERO SECTION
   ================================================================== */

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

.heroNewSection {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(760px, 57.25vw, 1099px);
  padding: clamp(40px, 5.21vw, 100px) 0 clamp(56px, 7vw, 120px);
  background-color: #07084d;
}

.heroNewSection::before {
  content: none;
}

/* Desktop photo layer — injected HTML; avoids CSS-background crop drift vs Figma */
.heroBanner__deskBg {
  display: none;
}

.heroBanner__container,
.heroBanner__content {
  height: 100%;
}

.heroBanner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(40px, 4vw, 96px);
  min-height: clamp(640px, 47vw, 899px);
}

.heroBanner__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(44px, 4.17vw, 80px);
  max-width: min(980px, 100%);
  min-width: 0;
}

.heroBanner__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: min(383px, 100%);
}

.heroBanner__brand {
  width: auto;
  max-width: none;
  margin: 0;
}

.heroBanner__brand .lp-hero__logo {
  width: 204px;
  max-width: 204px;
  height: 79px;
}

.heroBanner__brand .lp-hero__logo-shade {
  border-radius: 4.383px;
}

.heroBanner__brand .lp-hero__logo-img {
  top: 50%;
  width: calc(100% - 20px);
  height: auto;
  transform: translate(-50%, -50%);
}

.heroBanner__brand .lp-hero__logo-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.heroBanner__question {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 2.28vw, 43.828px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: none;
}

.heroBanner__question-line,
.heroBanner__question span {
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.heroBanner__message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: min(940px, 100%);
}

.heroBanner__lead {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 2.31vw, 44.309px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.02em;
  color: #fff;
}

.heroBanner__lead--desktop,
.heroBanner__tagline {
  display: none;
}

.heroBanner__lead--mobile {
  display: block;
}

.heroBanner__highlight {
  display: inline-flex;
  max-width: 100%;
  padding: clamp(14px, 0.8vw, 18px) clamp(18px, 1.2vw, 24px);
  background: #ce0637;
  border-radius: 0;
}

.heroBanner__highlight span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.31vw, 44.309px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.02em;
  color: #fff;
}

.heroBanner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.heroBanner__pills li {
  display: flex;
}

.heroBanner__pills .heroBanner__pillLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 30px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12px, 0.82vw, 15.712px);
  font-style: italic;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #b0002d;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.heroBanner__pills .heroBanner__pillLink:hover,
.heroBanner__pills .heroBanner__pillLink:focus-visible {
  opacity: 0.88;
}

.heroBanner__pills .heroBanner__pillLink:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.heroBanner__pill-underline {
/*   text-decoration: underline; */
  text-underline-offset: 1px;
}

.heroBanner__formWrap {
  flex: 0 0 min(378px, 100%);
  width: min(378px, 100%);
  margin-left: auto;
}

.formContainer.heroBanner__formWrap {
  background: transparent;
}

.heroBanner__form {
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  height: auto;
  border: none;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(3, 9, 63, 0.18);
}

.heroBanner__formHeader {
  padding: 12px 20px;
  background: #b74a45;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.heroBanner__formBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 12px;
}

.heroBanner__formBody input,
.heroBanner__formBody select {
  width: 100%;
  height: 28px;
  padding: 0 10px;
  border: 1px solid #e4e4e4;
  background: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: #595959;
}

.heroBanner__formBody select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7b7b7b 50%),
    linear-gradient(135deg, #7b7b7b 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 50%,
    calc(100% - 8px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.heroBanner__formBody input::placeholder {
  color: #767676;
}

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

.heroBanner__captchaCode {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border: 1px solid #e4e4e4;
  background: #f6f6f6;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1f2d7a;
}

.heroBanner__formNote {
  position: relative;
  margin: 6px 0 0;
  padding-left: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.5;
  color: #8a8a8a;
}

.heroBanner__formNote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9c9c9c;
}

.heroBanner__submit {
  align-self: center;
  min-width: 114px;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: #b74a45;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

.heroBanner__login {
  align-self: center;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  color: #214cb5;
}

.heroBanner__submit:hover,
.heroBanner__submit:focus-visible {
  background: #a43d3a;
}

.heroBanner__submit:focus-visible,
.heroBanner__login:focus-visible,
.heroBanner__formBody input:focus-visible,
.heroBanner__formBody select:focus-visible {
  outline: 2px solid #214cb5;
  outline-offset: 2px;
}

.heroBanner__srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Figma mobile banner — decorative layers (hidden ≥768px); see 1807:887 */
.heroBanner__mobDecor {
  display: none;
}

/* Desktop banner — Figma 1440:2074 (fluid 1200px → wide) */
@media (min-width: 1200px) {
  .heroNewSection {
    min-height: clamp(760px, 63.08vw, 1211px);
    padding: clamp(56px, calc(28px + 2.33vw), 100px) 0
      clamp(18px, calc(8px + 0.83vw), 24px);
    background: #fff;
  }

  .heroBanner__deskBg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .heroBanner__deskBg img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
  }

  .heroNewSection::before {
    content: none;
  }

  .heroBanner__container {
    position: relative;
    z-index: 2;
    width: min(1720px, calc(100% - clamp(96px, 10.42vw, 200px)));
    max-width: 1720px;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .heroBanner__content {
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(24px, calc(8px + 1.33vw), 48px);
    min-height: 0;
  }

  .heroBanner__copy {
    flex: 1 1 0;
    max-width: min(725px, calc(100% - 330px));
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    gap: clamp(28px, calc(18px + 1.25vw), 43px);
  }

  .heroBanner__intro {
    width: 100%;
    max-width: min(620px, 100%);
    align-items: flex-start;
    gap: clamp(18px, calc(8px + 1.25vw), 27px);
  }

  .heroBanner__brand {
    align-self: flex-start;
  }

  .heroBanner__brand .lp-hero__logo {
    width: clamp(172px, calc(118.67px + 4.44vw), 204px);
    max-width: clamp(172px, calc(118.67px + 4.44vw), 204px);
    height: auto;
    aspect-ratio: 204 / 79;
  }

  .heroBanner__message {
    width: 100%;
    max-width: min(725px, 100%);
    align-items: flex-start;
    gap: clamp(18px, calc(10px + 0.83vw), 26px);
    text-align: left;
  }

  .heroBanner__question {
    text-align: left;
    width: 100%;
    max-width: min(620px, 100%);
    margin: 0;
    color: #5697fe;
    font-style: italic;
  }

  .heroBanner__question-line,
  .heroBanner__question span:first-child,
  .heroBanner__question span:last-child {
    display: block;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
    margin-top: 0;
    font-weight: 500;
    font-size: clamp(
      52px,
      calc(13.67px + 3.19vw),
      74.794px
    );
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: #5697fe;
    text-transform: none;
  }

  .heroBanner__lead {
    text-align: left;
    max-width: min(560px, 100%);
    font-size: clamp(
      28px,
      calc(5.64px + 1.86vw),
      41.415px
    );
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #010767;
  }

  .heroBanner__lead--desktop {
    display: block;
  }

  .heroBanner__lead--mobile,
  .heroBanner__highlight {
    display: none;
  }

  .heroBanner__tagline {
    display: block;
    width: 100%;
    margin: -18px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(
      20px,
      calc(8.59px + 0.95vw),
      26.847px
    );
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #010767;
  }

  .heroBanner__message .banner__last-date {
    order: 6;
    margin-top: clamp(8px, 0.83vw, 14px);
  }

  .heroBanner__pills {
    justify-content: flex-start;
    gap: 10px; padding: 10px 0 20px 0px;
  }

  .heroBanner__pills .heroBanner__pillLink {
    padding: 10px 15px;
    border-radius: 30px;
    background: #b0002d;
    color: #fff;
    font-size: clamp(
      13px,
      calc(6.42px + 0.55vw),
      16.947px
    );
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.02em;
  }

  .heroBanner__formWrap {
    flex: 0 0 clamp(300px, calc(170.22px + 10.81vw), 377.767px);
    width: clamp(300px, calc(170.22px + 10.81vw), 377.767px);
    max-width: clamp(300px, calc(170.22px + 10.81vw), 377.767px);
    margin-top: clamp(40px, 3.8vw, 72px);
    margin-right: clamp(24px, 2.4vw, 52px);
    margin-left: auto;
    align-self: flex-start;
  }

  .heroBanner__form {
    max-width: clamp(300px, calc(170.22px + 10.81vw), 377.767px);
    border: 1px solid rgba(90, 112, 165, 0.5);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
  }

  .heroBanner__formHeader {
    padding: 10px 18px;
    background: #b74a45;
    font-size: 14px;
  }

  .heroBanner__formBody {
    gap: 10px;
    padding: 10px 16px 8px;
  }

  .heroBanner__formBody input,
  .heroBanner__formBody select {
    height: 28px;
    padding: 0 4px;
    border-width: 0 0 1px;
    border-color: #dcdcdc;
    background-color: transparent;
    font-size: 9px;
  }

  .heroBanner__formBody select {
    background-position:
      calc(100% - 8px) 50%,
      calc(100% - 4px) 50%;
  }

  .heroBanner__formGrid,
  .heroBanner__captchaRow {
    gap: 10px;
  }

  .heroBanner__captchaCode {
    height: 28px;
    border-width: 0 0 1px;
    border-color: #dcdcdc;
    background: transparent;
    font-size: 12px;
  }

  .heroBanner__formNote {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.45;
  }

  .heroBanner__submit {
    min-width: 108px;
    margin-top: 2px;
    padding: 11px 24px;
    background: #b74a45;
  }

  .heroBanner__submit:hover,
  .heroBanner__submit:focus-visible {
    background: #a43d3a;
  }

  .heroBanner__login {
    color: #1b429c;
  }
}

@media (max-width: 1199px) {
  .container {
    width: min(720px, calc(100% - 32px));
  }

  .heroNewSection {
    min-height: 0;
    padding: 32px 0 40px;
    background-image: url("./assets/hero/hero-bg-mobile.webp");
    background-position: top center;
    background-size: cover;
  }

  .heroNewSection::before {
    content: none;
  }

  .heroBanner__deskBg {
    display: none;
  }

  .heroBanner__content {
    flex-direction: column;
    gap: 32px;
    min-height: 0;
  }

  .heroBanner__copy,
  .heroBanner__message,
  .heroBanner__intro {
    max-width: 100%;
    width: 100%;
  }

  .heroBanner__copy {
    gap: 28px;
  }

  .heroBanner__brand {
    align-self: center;
  }

  .heroBanner__brand .lp-hero__logo {
    width: 180px;
    max-width: 180px;
    height: 70px;
  }

  .heroBanner__question {
    font-size: clamp(30px, 6vw, 40px);
  }

  .heroBanner__lead,
  .heroBanner__highlight span {
    font-size: clamp(26px, 5.4vw, 38px);
  }

  .heroBanner__highlight {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .heroBanner__pills {
    gap: 10px;
  }

  .heroBanner__pills .heroBanner__pillLink {
    padding: 10px 16px;
    font-size: 12px;
    white-space: normal;
  }

  .heroBanner__formWrap {
    width: 100%;
    margin-left: 0;
  }

  .heroBanner__form {
    max-width: 440px;
    margin: 0 auto;
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .container {
    width: min(calc(100% - 48px), 360px);
  }

  .heroNewSection {
    min-height: 0;
    padding: max(22px, env(safe-area-inset-top, 0px))
      max(22px, env(safe-area-inset-right, 0px))
      max(28px, env(safe-area-inset-bottom, 0px))
      max(22px, env(safe-area-inset-left, 0px));
    background: #fff;
    background-image: none;
  }

  /* Mobile Figma 1807:887 — layered art (top / figure / bottom) */
  .heroBanner__mobDecor {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .heroBanner__mobDecor-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: min(208px, calc(48vw + 44px));
    overflow: hidden;
  }

  .heroBanner__mobDecor-top img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
  }

  .heroBanner__mobDecor-figure {
    position: absolute;
    top: clamp(64px, 18.6vw, 104px);
    right: clamp(-20px, -5.2vw, -6px);
    width: clamp(152px, 46vw, 196px);
    height: auto;
    max-width: none;
    z-index: 0;
    filter: drop-shadow(0 8px 28px rgba(6, 21, 90, 0.12));
  }

  .heroBanner__mobDecor-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(276px, 78vw, 420px);
    overflow: hidden;
    z-index: 0;
  }

  .heroBanner__mobDecor-bottom img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    min-width: 106%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center bottom;
  }

  .heroBanner__container {
    position: relative;
    z-index: 2;
  }

  .heroBanner__content,
  .heroBanner__copy,
  .heroBanner__message {
    position: relative;
    z-index: 2;
  }

  .heroBanner__content {
    gap: 22px;
  }

  .heroBanner__copy {
    gap: 18px;
  }

  .heroBanner__intro {
    position: relative;
    z-index: 2;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding-right: clamp(86px, 27vw, 118px);
    box-sizing: border-box;
  }

  .heroBanner__brand {
    align-self: flex-start;
  }

  .heroNewSection .heroBanner__brand .lp-hero__logo {
    width: 164px;
    max-width: 164px;
    height: 64px;
    min-height: 0;
    aspect-ratio: auto;
    margin: 0;
  }

  .heroNewSection .heroBanner__brand .lp-hero__logo-shade {
    border-radius: 4.383px;
  }

  .heroNewSection .heroBanner__brand .lp-hero__logo-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 18px);
    height: auto;
  }

  .heroNewSection .heroBanner__brand .lp-hero__logo-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
  }

  .heroBanner__question {
    max-width: 100%;
    margin: 0;
    font-size: inherit;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.03em;
    color: inherit;
    text-align: left;
  }

  .heroBanner__question-line,
  .heroBanner__question span {
    display: block;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .heroBanner__question span:first-child {
    font-size: clamp(28px, 8vw, 36px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.05;
    color: #4d9fff;
  }

  .heroBanner__question span:last-child {
    margin-top: 0.12em;
    font-size: clamp(32px, 9vw, 40px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.04;
    color: #3b8eef;
    letter-spacing: -0.032em;
  }

  .heroBanner__message {
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    margin-top: 4px;
  }

  .heroBanner__lead {
    order: 1;
    max-width: 18rem;
    margin: 0;
    font-size: clamp(24px, 7.15vw, 30px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: #010767;
    text-align: left;
  }

  .heroBanner__highlight {
    order: 3;
    padding: 0;
    background: transparent;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .heroBanner__highlight span {
    max-width: 16.5rem;
    margin: 0;
    font-size: clamp(14px, 4.1vw, 16px);
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: -0.02em;
    color: #010767;
  }

  .heroBanner__pills {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 9px;
    width: 100%;
    max-width: none;
    margin: 4px 0 0;
  }

  .heroBanner__pills li {
    width: auto;
    min-height: 44px;
  }

  .heroBanner__pills .heroBanner__pillLink {
    width: 100%;
    min-height: 44px;
    padding: 10px 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, #b50532 0%, #8f0732 100%);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    color: #fff;
    white-space: normal;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(176, 0, 45, 0.2);
  }

  .heroBanner__formWrap {
    width: 100%;
    margin: 10px 0 0;
    margin-left: 0;
  }

  .heroBanner__form {
    max-width: none;
    width: 100%;
    border-radius: 20px;
    box-shadow:
      0 12px 40px rgba(6, 21, 90, 0.12),
      0 26px 64px rgba(6, 21, 90, 0.08);
  }

  .heroBanner__formHeader {
    padding: 14px 16px;
    font-size: 13px;
  }

  .heroBanner__formBody {
    gap: 10px;
    padding: 16px;
  }

  .heroBanner__formBody input,
  .heroBanner__formBody select,
  .heroBanner__captchaCode {
    height: 40px;
    font-size: 12px;
  }

  .heroBanner__formGrid,
  .heroBanner__captchaRow {
    grid-template-columns: 1fr;
  }

  .heroBanner__formNote {
    font-size: 10px;
  }

  .heroBanner__submit {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .lp-pathway {
    padding: 40px 24px;
    background: #fff;
  }

  .lp-pathway__panel {
    position: relative;
    min-height: 945px;
    padding: 24px 24px 32px;
    display: block;
    overflow: hidden;
    border-radius: 0;
    background: #020219;
    isolation: isolate;
  }

  .lp-pathway__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(137deg, transparent 0 58%, rgba(97, 151, 255, 0.18) 58% 100%),
      linear-gradient(137deg, transparent 0 67%, #0a1c87 67% 80%, transparent 80% 100%),
      linear-gradient(90deg, #05041d 0 29%, #173cae 29% 100%);
    background-repeat: no-repeat;
  }

  .lp-pathway__panel::after {
    content: "WPU GOA";
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    font-family: "Instrument Sans", sans-serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -0.05em;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
  }

  .lp-pathway__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 368px;
    padding: 0;
  }

  .lp-pathway__title {
    max-width: 300px;
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: -0.03em;
    text-transform: none;
    color: #fff;
  }

  .lp-pathway__title span {
    display: inline;
  }

  .lp-pathway__cta {
    display: inline-flex !important;
    visibility: visible;
    width: fit-content;
    height: auto;
    margin: 0;
    padding: 12px 16px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .lp-pathway__visual {
    position: relative;
    z-index: 2;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px;
    width: 100%;
    margin-top: 24px;
  }

  .lp-pathway__figure {
    position: absolute;
    top: 64px;
    left: 50%;
    z-index: 1;
    display: block;
    width: 286px;
    height: auto;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center top;
    pointer-events: none;
  }

  .lp-pathway__tag {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    min-height: 0;
    padding: 12px;
    gap: 20px;
    border: 0.542px solid #151515;
    border-radius: 12px;
    background: linear-gradient(174.75deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow:
      0 15px 80px rgba(0, 0, 0, 0.07),
      0 6.267px 33.422px rgba(0, 0, 0, 0.05),
      0 3.35px 17.869px rgba(0, 0, 0, 0.04),
      0 1.878px 10.017px rgba(0, 0, 0, 0.04),
      0 0.998px 5.32px rgba(0, 0, 0, 0.03),
      0 0.415px 2.214px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(11.378px);
    -webkit-backdrop-filter: blur(11.378px);
  }

  .lp-pathway__tag--innovator {
    order: 1;
  }

  .lp-pathway__tag--thinker {
    order: 2;
  }

  .lp-pathway__tag--entrepreneur {
    order: 3;
  }

  .lp-pathway__tag--solver {
    order: 4;
  }

  .lp-pathway__tag-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 4px;
    border-radius: 4px;
  }

  .lp-pathway__tag p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    white-space: nowrap;
  }
}