:root {
  --header-height: 4.15rem;
  --it-blue: #3965f2;
  --it-blue-dark: #234fcd;
  --it-ink: #0d1b2e;
  --it-muted: #667892;
  --it-soft: #f3f6fd;
  --it-soft-2: #eef3fb;
  --it-border: rgb(13 27 46 / 10%);
  --it-violet: #8a60f6;
  --it-violet-soft: #f1edff;
  --it-green: #1fbe79;
  --it-green-soft: #dff3e9;
  --it-orange: #ff6d35;
  --it-orange-soft: #f8ece6;
  --it-display: "Unbounded", "Onest", sans-serif;
  --it-radius-xl: 2rem;
}

body { background: #fff; }

.it-shell {
  width: min(calc(100% - clamp(2rem, 4vw, 4rem)), 96rem);
  margin-inline: auto;
}

.it-page {
  padding-top: 4.15rem;
  overflow: clip;
  color: var(--it-ink);
  background: #fff;
}

.it-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 4.15rem;
  border-bottom: 1px solid var(--it-border);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.it-header__inner {
  display: flex;
  min-height: 4.15rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.it-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--it-ink);
  font-family: var(--it-display);
  font-size: clamp(0.7rem, 1.1vw, 0.88rem);
  font-weight: 800;
}

.it-brand b { color: var(--it-blue); }

.it-back {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem 0.45rem 0.5rem;
  border: 1px solid var(--it-border);
  border-radius: 0.85rem;
  background: white;
  color: var(--it-ink);
  font-family: var(--it-display);
  font-size: 0.75rem;
  font-weight: 850;
  white-space: nowrap;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.it-back:hover { border-color: #c9d5ec; background: var(--it-soft); transform: translateX(-1px); }
.it-back__icon {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 0.6rem;
  background: var(--it-blue);
  color: white;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.it-brand__mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--it-blue);
  color: white;
  font-size: 0.62rem;
  font-weight: 900;
}

.it-nav { display: flex; gap: 1.35rem; }
.it-nav a,
.it-header__phone {
  color: var(--it-muted);
  font-size: 0.82rem;
  font-weight: 650;
}
.it-nav a:hover,
.it-header__phone:hover { color: var(--it-ink); }
.it-header__actions { display: flex; align-items: center; gap: 0.75rem; }

.it-button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 0.95rem;
  background: var(--it-blue);
  box-shadow: 0 0.65rem 1.9rem rgb(57 101 242 / 22%);
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.it-button:hover { background: var(--it-blue-dark); box-shadow: 0 0.8rem 2rem rgb(57 101 242 / 28%); transform: translateY(-1px); }
.it-button--small { min-height: 2.7rem; padding: 0.7rem 1rem; font-size: 0.78rem; border-radius: 0.8rem; }
.it-button--ghost {
  border: 1px solid var(--it-border);
  background: white;
  box-shadow: none;
  color: var(--it-ink);
}
.it-button--ghost:hover { background: #f8faff; box-shadow: none; }
.it-button--light {
  background: white;
  color: var(--it-blue);
  box-shadow: none;
}
.it-button--light:hover { background: #edf3ff; color: var(--it-blue-dark); box-shadow: none; }

.it-menu {
  position: relative;
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--it-border);
  border-radius: 50%;
  background: white;
  color: var(--it-ink);
}
.it-menu span {
  position: absolute;
  width: 1.125rem;
  height: 0.125rem;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, translate 220ms ease;
}
.it-menu span:first-child { translate: 0 -0.25rem; }
.it-menu span:last-child { translate: 0 0.25rem; }
.it-menu[aria-expanded="true"] span:first-child { translate: 0 0; transform: rotate(45deg); }
.it-menu[aria-expanded="true"] span:last-child { translate: 0 0; transform: rotate(-45deg); }

.it-nav-backdrop,
.it-mobile-nav { display: none; }

.it-mobile-nav__links { display: grid; align-content: start; }
.it-mobile-nav__links a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--it-border);
  color: var(--it-ink);
  font-size: 1rem;
  font-weight: 760;
}
.it-mobile-nav__links a span {
  color: rgb(57 101 242 / 42%);
  font-family: var(--it-display);
  font-size: 0.64rem;
  font-weight: 900;
}
.it-mobile-nav__links a:hover { color: var(--it-blue); }
.it-mobile-nav__actions {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--it-border);
  background: #f4f7fd;
}
.it-mobile-nav__phone {
  display: grid;
  gap: 0.18rem;
  min-height: 3.35rem;
  align-content: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--it-border);
  border-radius: 0.95rem;
  background: white;
}
.it-mobile-nav__phone small { color: var(--it-muted); font-size: 0.62rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.it-mobile-nav__phone strong { color: var(--it-blue); font-size: 1rem; }

.it-kicker {
  margin: 0 0 0.95rem;
  color: var(--it-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.it-section { padding: clamp(4.4rem, 8vw, 7rem) 0; }
.it-section--soft { background: #f4f7fc; }
.it-section-head { margin-bottom: 2rem; }
.it-section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.it-section-head h2,
.it-enroll__copy h2,
.it-location__copy h2,
.it-final h2 {
  margin: 0;
  font-family: var(--it-display);
  font-size: clamp(2.2rem, 5vw, 4.45rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.065em;
}
.it-section-head p,
.it-enroll__copy > p,
.it-location__note,
.it-faq-lead > p,
.it-final p:not(.it-kicker) {
  color: var(--it-muted);
  line-height: 1.65;
}

.it-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 4.15rem);
  min-height: calc(100dvh - 4.15rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(3rem, 5.5vw, 5.25rem) 0;
  background: #172033;
  isolation: isolate;
}
.it-hero__media,
.it-hero__media img,
.it-hero__veil {
  position: absolute;
  inset: 0;
}
.it-hero__media { z-index: -2; }
.it-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.it-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(4 11 24 / 90%) 0%, rgb(4 11 24 / 74%) 43%, rgb(4 11 24 / 52%) 72%, rgb(4 11 24 / 60%) 100%),
    linear-gradient(0deg, rgb(4 11 24 / 42%) 0%, transparent 46%, rgb(4 11 24 / 12%) 100%);
}
.it-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - clamp(2rem, 4vw, 4rem)), 120rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(27rem, 0.78fr);
  gap: clamp(3rem, 5.5vw, 6rem);
  align-items: center;
}
.it-hero__copy { min-width: 0; color: white; }
.it-hero__copy h1 {
  max-width: 8.5ch;
  margin: 0;
  font-family: var(--it-display);
  font-size: clamp(3.75rem, 6vw, 6.6rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.07em;
  text-wrap: normal;
  overflow-wrap: normal;
  word-break: normal;
  color: white;
}
.it-hero__copy .it-kicker { color: #9bb5ff; }
.it-hero__copy h1 span { color: #6f93ff; }
.it-hero__lead {
  max-width: 44rem;
  margin: 1.35rem 0 0;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.62;
}
.it-hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.65rem; }
.it-hero__tracks {
  display: grid;
  max-width: 39rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.55rem;
}
.it-hero__tracks a {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 0.22rem;
  padding: 0.9rem 1rem 0.95rem 3rem;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 1.15rem;
  background: rgb(7 18 37 / 48%);
  box-shadow: 0 0.65rem 1.8rem rgb(0 0 0 / 10%);
  color: white;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.it-hero__tracks a:hover { background: rgb(7 18 37 / 68%); box-shadow: 0 0.9rem 2rem rgb(0 0 0 / 16%); transform: translateY(-1px); }
.it-hero__tracks span {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 0.55rem;
  background: #e9f0ff;
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: 0.58rem;
  font-weight: 900;
}
.it-hero__tracks a:last-child span { background: #e4f7ef; color: var(--it-green); }
.it-hero__tracks strong { overflow: hidden; font-family: var(--it-display); font-size: 0.82rem; font-weight: 900; text-overflow: ellipsis; white-space: nowrap; }
.it-hero__tracks small { color: rgb(255 255 255 / 72%); font-size: 0.68rem; font-weight: 750; }
.it-hero__stats {
  display: grid;
  max-width: 44rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.7rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 1.15rem;
  background: rgb(7 18 37 / 42%);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.it-hero__stats > div { padding: 0.72rem 0.8rem; text-align: center; }
.it-hero__stats > div + div { border-left: 1px solid rgb(255 255 255 / 18%); }
.it-hero__stats strong { display: block; font-family: var(--it-display); font-size: 0.95rem; font-weight: 900; }
.it-hero__stats span { display: block; margin-top: 0.18rem; color: rgb(255 255 255 / 70%); font-size: 0.65rem; }
.it-hero__form-wrap {
  position: relative;
  width: min(100%, 31rem);
  justify-self: end;
  scroll-margin-top: 5.25rem;
}
.it-hero__form-wrap::before {
  position: absolute;
  z-index: -1;
  width: 15rem;
  height: 15rem;
  top: -4rem;
  right: -4rem;
  border-radius: 50%;
  background: rgb(57 101 242 / 13%);
  content: "";
  filter: blur(12px);
}
.it-hero__form-wrap .lead-card {
  max-width: none;
  border: 1px solid rgb(255 255 255 / 82%);
  box-shadow: 0 1.4rem 3.6rem rgb(32 67 145 / 16%);
}
.it-hero__form-wrap .lead-card__header { padding: 1.65rem 1.8rem 1.25rem; }
.it-hero__form-wrap .lead-card h2 { font-size: clamp(1.55rem, 1.7vw, 1.9rem); }
.it-hero__form-wrap .lead-form { gap: 0.85rem; padding: 1.25rem 1.8rem 1.65rem; }
.it-hero__form-wrap .form-field input,
.it-hero__form-wrap .form-field select { min-height: 2.95rem; }
.it-hero__form-wrap .form-field textarea { min-height: 4.4rem; }
.it-hero__form-wrap .button { background: var(--it-blue); box-shadow: 0 0.65rem 1.8rem rgb(57 101 242 / 22%); }
.it-hero__form-wrap .button:hover { background: var(--it-blue-dark); box-shadow: 0 0.8rem 2rem rgb(57 101 242 / 28%); }
.it-hero__form-wrap input:focus,
.it-hero__form-wrap textarea:focus { border-color: var(--it-blue); box-shadow: 0 0 0 3px rgb(57 101 242 / 12%); }
.it-hero__form-wrap .consent-field input { accent-color: var(--it-blue); }

.it-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.it-program {
  overflow: hidden;
  border: 1px solid var(--it-border);
  border-radius: var(--it-radius-xl);
  background: white;
  box-shadow: 0 1rem 3rem rgb(19 39 87 / 7%);
}
.it-program__cover {
  position: relative;
  overflow: hidden;
  height: 16.3rem;
  background: #dce7fb;
}
.it-program__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.it-program:hover .it-program__cover img { transform: scale(1.03); }
.it-program__cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(57 101 242 / 85%) 0%, rgb(57 101 242 / 30%) 38%, transparent 72%);
  content: "";
}
.it-program--warm .it-program__cover::after { background: linear-gradient(to top, rgb(255 109 53 / 88%) 0%, rgb(255 109 53 / 32%) 38%, transparent 72%); }
.it-program__cover span {
  position: absolute;
  z-index: 2;
  bottom: 1.35rem;
  left: 1.35rem;
  color: white;
  font-family: var(--it-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.05;
}
.it-program__body { padding: 1.5rem; }
.it-program__body h3 {
  margin: 0;
  font-family: var(--it-display);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.06;
}
.it-program__subtitle { margin: 0.55rem 0 0; color: var(--it-blue); font-size: 0.84rem; font-weight: 800; }
.it-program--warm .it-program__subtitle { color: var(--it-orange); }
.it-program__description { margin: 0.9rem 0 0; color: var(--it-muted); font-size: 0.92rem; line-height: 1.62; }
.it-program__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--it-border);
}
.it-program__stats > div { text-align: center; }
.it-program__stats strong {
  display: block;
  color: var(--it-ink);
  font-family: var(--it-display);
  font-size: 1.18rem;
  font-weight: 900;
}
.it-program__stats span { color: var(--it-muted); font-size: 0.73rem; }
.it-program__bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 1rem;
  margin-top: 1.45rem;
}
.it-program__bottom--actions-only { grid-template-columns: 1fr; }
.it-program__bottom--actions-only .it-program__buttons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
}
.it-program__price { min-width: 0; }
.it-program__price strong {
  display: block;
  color: var(--it-ink);
  font-family: var(--it-display);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}
.it-program__price small { color: var(--it-muted); font-size: 0.58em; }
.it-program__buttons { display: grid; grid-template-columns: repeat(2, minmax(0, auto)); justify-content: end; gap: 0.7rem; }
.it-program__buttons .it-button {
  min-height: 2.9rem;
  padding-inline: 1rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.it-path {
  overflow: hidden;
  border: 1px solid var(--it-border);
  border-radius: var(--it-radius-xl);
  background: white;
  box-shadow: 0 1rem 3rem rgb(19 39 87 / 6%);
}
.it-path__tabs {
  display: flex;
  gap: 1.6rem;
  padding: 1.25rem 1.2rem 0;
  border-bottom: 1px solid var(--it-border);
  overflow-x: auto;
}
.it-path__tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 1rem;
  border: 0;
  background: transparent;
  color: #b4bccb;
  font-size: 0.92rem;
  font-weight: 850;
}
.it-path__tabs button.is-active { color: var(--it-blue); }
.it-path__tabs button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
}
.it-path__panel {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  min-height: 28rem;
}
.it-path__panel[hidden] { display: none; }
.it-path__steps {
  display: grid;
  border-right: 1px solid var(--it-border);
  background: #fbfcff;
}
.it-path__steps button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  gap: 0.3rem 0.75rem;
  padding: 1.2rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--it-border);
  background: transparent;
  color: #c8ced9;
  text-align: left;
}
.it-path__steps button:last-child { border-bottom: 0; }
.it-path__steps button.is-active { background: #e9f7f1; color: var(--it-green); box-shadow: inset 3px 0 0 var(--it-green); }
.it-path__steps b {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--it-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.it-path__steps span { color: var(--it-ink); font-size: 0.86rem; font-weight: 850; }
.it-path__steps button.is-active span { color: var(--it-ink); }
.it-path__steps small { color: var(--it-muted); font-size: 0.68rem; font-weight: 700; }
.it-path__stage { display: grid; grid-template-rows: 12.5rem auto; }
.it-path__stage[hidden] { display: none; }
.it-path__stage-media { position: relative; overflow: hidden; }
.it-path__stage-media img { width: 100%; height: 100%; object-fit: cover; }
.it-path__stage-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(31 190 121 / 72%) 0%, rgb(31 190 121 / 15%) 48%, transparent 78%);
  content: "";
}
.it-path__stage-body { padding: 1.5rem; }
.it-path__stage-body > p:first-child {
  margin: 0;
  color: var(--it-muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.it-path__stage-body h3 {
  margin: 0.55rem 0 0;
  font-family: var(--it-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
}
.it-path__stage-body p + p { margin: 1rem 0 0; color: var(--it-muted); line-height: 1.65; }
.it-path__stage-body strong {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #eaf7ef;
  font-size: 0.96rem;
  font-weight: 900;
}
.it-path__stage-body strong span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  background: var(--it-green);
  color: white;
  font-family: var(--it-display);
  font-size: 0.72rem;
}

.it-formats {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.it-format {
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--it-border);
  border-radius: 1.6rem;
  background: white;
}
.it-format--featured {
  grid-row: span 2;
  border-color: transparent;
  background: var(--it-blue);
  color: white;
}
.it-format__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgb(255 255 255 / 52%);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.it-format__top b {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 14%);
  color: white;
  font-size: 0.58rem;
}
.it-format > span {
  color: var(--it-muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.it-format h3 {
  margin: 0.65rem 0 0;
  font-family: var(--it-display);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.15;
}
.it-format strong {
  display: block;
  margin-top: 0.65rem;
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: 1.55rem;
  font-weight: 900;
}
.it-format p { margin: 0.95rem 0 0; color: var(--it-muted); line-height: 1.65; }
.it-format ul { display: grid; gap: 0.45rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.it-format li { position: relative; padding-left: 1rem; color: var(--it-muted); font-size: 0.84rem; }
.it-format li::before { position: absolute; top: 0.52rem; left: 0; width: 0.34rem; height: 0.34rem; border-radius: 999px; background: rgb(57 101 242 / 42%); content: ""; }
.it-format--featured strong,
.it-format--featured p,
.it-format--featured li { color: white; }
.it-format--featured li::before { background: rgb(255 255 255 / 38%); }
.it-format--featured .it-button { margin-top: auto; }

.it-media-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid #d8e0ed;
  border-radius: 999px;
  background: #f4f7fc;
}
.it-media-switch button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--it-muted);
  font-size: 0.84rem;
  font-weight: 850;
}
.it-media-switch button span {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 999px;
  background: #e3e9f3;
  font-size: 0.66rem;
}
.it-media-switch button.is-active { background: var(--it-blue); color: white; }
.it-media-switch button.is-active span { background: rgb(255 255 255 / 18%); }

.it-gallery__main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 1.9rem;
  background: #d9e3f3;
}
.it-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.it-gallery__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgb(0 0 0 / 62%) 0%, transparent 50%); }
.it-gallery__main strong {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  color: white;
  font-family: var(--it-display);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 900;
}
.it-gallery__play {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 18%);
  color: white;
  font-size: 0.74rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.it-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.it-gallery__thumbs button {
  position: relative;
  aspect-ratio: 1.65;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: #d9e3f3;
  opacity: 0.78;
  outline: 2px solid transparent;
  transition: opacity 160ms ease, outline-color 160ms ease;
}
.it-gallery__thumbs button::before {
  position: absolute;
  inset: 0;
  background-image: var(--thumb-image);
  background-position: center;
  background-size: cover;
  content: "";
}
.it-gallery__thumbs button.is-active { opacity: 1; outline-color: var(--it-blue); }
.it-gallery__thumbs button[hidden] { display: none; }


.it-stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.it-stat-card {
  min-height: 11rem;
  padding: 1.5rem;
  border-radius: 1.65rem;
  background: #eef3fb;
}
.it-stat-card--warm { background: var(--it-orange-soft); }
.it-stat-card--violet { background: var(--it-violet-soft); }
.it-stat-card--green { background: var(--it-green-soft); }
.it-why-stats { margin-top: 0.25rem; }
.it-stat-card strong {
  display: block;
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
}
.it-stat-card--warm strong { color: var(--it-orange); }
.it-stat-card--violet strong { color: var(--it-violet); }
.it-stat-card--green strong { color: var(--it-green); }
.it-stat-card span {
  display: block;
  max-width: 18ch;
  margin-top: 0.7rem;
  color: var(--it-muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.it-why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.it-why-card {
  min-width: 0;
  min-height: 11rem;
  padding: 1.5rem;
  border-radius: 1.65rem;
  background: #eef3fb;
}
.it-why-card--span-12 { grid-column: span 12; }
.it-why-card--span-8 { grid-column: span 8; }
.it-why-card--span-4 { grid-column: span 4; }
.it-why-card--span-3 { grid-column: span 3; }
.it-why-card--feature {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.it-why-card--fact { min-height: 9.5rem; }
.it-why-card--green { background: var(--it-green-soft); }
.it-why-card--warm { background: var(--it-orange-soft); }
.it-why-card--violet { background: var(--it-violet-soft); }
.it-why-card__metric {
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: lowercase;
}
.it-why-card--green .it-why-card__metric { color: var(--it-green); }
.it-why-card__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  flex: 1;
}
.it-why-card__copy span,
.it-why-card__head span { color: rgb(13 27 46 / 28%); font-size: 0.82rem; font-weight: 900; }
.it-why-card__copy h3,
.it-why-card h3 { margin: 0; font-family: var(--it-display); font-size: 1.1rem; font-weight: 900; }
.it-why-card__copy p,
.it-why-card p { margin: 0.45rem 0 0; color: var(--it-muted); line-height: 1.6; }
.it-why-card__head { display: flex; align-items: start; justify-content: space-between; gap: 0.7rem; margin-bottom: 0.85rem; }
.it-why-card__head strong {
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.92;
}
.it-why-card--warm .it-why-card__head strong { color: var(--it-orange); }
.it-why-card--violet .it-why-card__head strong { color: var(--it-violet); }
.it-why-cta { margin-top: 2rem; text-align: center; }

.it-enroll {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.it-enroll__copy .it-kicker { margin-bottom: 1rem; }
.it-enroll__aside {
  padding: 1.15rem;
  border: 1px solid var(--it-border);
  border-radius: 1.6rem;
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 1rem 2.8rem rgb(19 39 87 / 6%);
}
.it-enroll__steps { display: grid; gap: 0.45rem; }
.it-enroll__steps > div {
  position: relative;
  display: grid;
  min-height: 4.5rem;
  gap: 0.15rem;
  align-content: center;
  padding: 0.75rem 0.8rem 0.75rem 3.4rem;
  border-radius: 1rem;
  background: #f7f9fd;
}
.it-enroll__steps span {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 0.65rem;
  background: #e8efff;
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: 0.62rem;
  font-weight: 900;
  transform: translateY(-50%);
}
.it-enroll__steps strong { font-size: 0.84rem; }
.it-enroll__steps small { color: var(--it-muted); font-size: 0.72rem; line-height: 1.35; }
.it-enroll__actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.85rem; }
.it-enroll__phone { color: var(--it-ink); font-size: 0.88rem; font-weight: 850; }

.it-location {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  gap: 2rem;
  align-items: start;
}
.it-location__details { display: grid; gap: 0.8rem; margin-top: 1.3rem; }
.it-location__details div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--it-border);
  border-radius: 1rem;
  background: #fbfcff;
}
.it-location__details span { display: block; margin-bottom: 0.35rem; color: var(--it-muted); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.it-location__details a,
.it-location__details b { color: var(--it-ink); font-size: 0.94rem; }
.it-location__note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--it-soft);
}
.it-location__map {
  min-height: 24rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background: var(--it-soft);
}
.it-location__map iframe,
.it-location__map > div { width: 100%; height: 100%; min-height: 24rem; border: 0; }
.it-location__map > div { display: grid; place-items: center; }

.it-faq-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.it-faq-lead > p { margin: 1rem 0 0; }
.it-faq-card {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: var(--it-blue);
  color: white;
}
.it-faq-card span { color: rgb(255 255 255 / 72%); font-size: 0.8rem; }
.it-faq-card a { color: white; font-weight: 700; }
.it-faq-card .it-button { background: white; color: var(--it-blue); box-shadow: none; }
.it-faq { display: grid; gap: 0.7rem; }
.it-faq details { border: 1px solid var(--it-border); border-radius: 1.2rem; background: white; }
.it-faq summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  color: var(--it-ink);
  font-size: 0.9rem;
  font-weight: 850;
}
.it-faq summary::-webkit-details-marker { display: none; }
.it-faq summary span {
  display: inline-grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 0.7rem;
  background: #edf3ff;
  color: var(--it-blue);
  font-family: var(--it-display);
  font-size: 0.66rem;
  font-weight: 900;
}
.it-faq details p { margin: 0; padding: 0 1.1rem 1rem 3.85rem; color: var(--it-muted); line-height: 1.62; }

.it-final {
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 95% -10%, rgb(255 255 255 / 15%) 0%, transparent 22%),
    var(--it-blue);
  text-align: center;
}
.it-final .it-kicker { color: rgb(255 255 255 / 64%); }
.it-final h2,
.it-final p { color: white; }
.it-final p:not(.it-kicker) { max-width: 38rem; margin: 1rem auto 0; color: rgb(255 255 255 / 72%); }
.it-final .it-button { margin-top: 1.7rem; }

.it-scroll-to-form {
  position: fixed;
  z-index: 55;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 62%);
  border-radius: 50%;
  background: var(--it-blue);
  box-shadow: 0 0.9rem 2.4rem rgb(35 79 205 / 30%);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.85rem) scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease, background-color 160ms ease;
}

.it-scroll-to-form.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.it-scroll-to-form:hover {
  background: var(--it-blue-dark);
  transform: translateY(-2px) scale(1.02);
}

.it-footer {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--it-border);
  background: white;
}
.it-footer__top,
.it-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.it-footer__top { padding-bottom: 1rem; }
.it-footer__top > div,
.it-footer__bottom { color: var(--it-muted); font-size: 0.84rem; }
.it-footer__top > div { display: flex; flex-wrap: wrap; gap: 1rem; }
.it-footer__bottom { padding-top: 1rem; border-top: 1px solid var(--it-border); }
.it-footer__bottom a { color: var(--it-muted); }

@media (min-width: 90rem) {
  .it-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(32rem, 36rem);
    gap: clamp(4rem, 5vw, 6.5rem);
  }
  .it-hero__copy h1 { font-size: clamp(5.8rem, 5.4vw, 7.4rem); }
  .it-hero__lead { max-width: 42rem; font-size: 1.12rem; }
  .it-hero__tracks,
  .it-hero__stats { max-width: 46rem; }
  .it-hero__form-wrap { width: min(100%, 34rem); }
}

@media (min-width: 58.01rem) and (max-height: 48rem) {
  .it-hero {
    min-height: min(calc(100vh - 4.15rem), 45rem);
    min-height: min(calc(100dvh - 4.15rem), 45rem);
    padding: 1.5rem 0;
  }
  .it-hero__grid { gap: clamp(2rem, 4vw, 4rem); }
  .it-hero__copy h1 { font-size: clamp(3.45rem, 5.4vw, 5rem); }
  .it-hero__lead { margin-top: 0.9rem; font-size: 0.96rem; line-height: 1.5; }
  .it-hero__actions { margin-top: 1rem; }
  .it-hero__tracks { margin-top: 0.9rem; }
  .it-hero__stats { display: none; }
  .it-hero__form-wrap { width: min(100%, 28.5rem); }
  .it-hero__form-wrap .lead-card__header { padding: 1.15rem 1.4rem 0.9rem; }
  .it-hero__form-wrap .lead-form { gap: 0.68rem; padding: 0.9rem 1.4rem 1.15rem; }
  .it-hero__form-wrap .form-field textarea { min-height: 3.5rem; }
}

@media (max-width: 77.999rem) {
  .it-nav,
  .it-header__phone { display: none; }

  .it-header__apply {
    display: inline-flex;
    white-space: nowrap;
  }

  .it-header__actions { z-index: 4; margin-left: auto; }
  .it-menu { z-index: 4; display: grid; }
  .it-back { z-index: 4; }

  .it-nav-backdrop {
    position: fixed;
    z-index: 1;
    inset: 4.15rem 0 0;
    display: block;
    width: 100%;
    height: calc(100vh - 4.15rem);
    height: calc(100dvh - 4.15rem);
    padding: 0;
    border: 0;
    background: rgb(13 27 46 / 48%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }
  .it-nav-backdrop:not([hidden]) { opacity: 1; pointer-events: auto; }

  .it-mobile-nav {
    position: fixed;
    z-index: 2;
    inset: 4.15rem 0 0 auto;
    display: grid;
    width: min(23rem, calc(100vw - 1.25rem));
    height: calc(100svh - 4.15rem);
    height: calc(100dvh - 4.15rem);
    grid-template-rows: minmax(0, 1fr) auto;
    margin: 0;
    border-left: 1px solid var(--it-border);
    background: white;
    box-shadow: -1.5rem 0 3rem rgb(13 27 46 / 16%);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateX(102%);
    transition: transform 240ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }
  .it-mobile-nav.is-open { pointer-events: auto; transform: translateX(0); }
  .it-mobile-nav__links { padding: 0.75rem 1.25rem 1rem; }
}

@media (max-width: 77.999rem) and (max-height: 38rem) {
  .it-mobile-nav {
    grid-template-rows: auto auto;
    align-content: start;
  }
  .it-mobile-nav__links a { padding-block: 0.72rem; }
  .it-mobile-nav__actions {
    gap: 0.55rem;
    padding-top: 0.75rem;
    padding-bottom: max(0.85rem, env(safe-area-inset-bottom));
  }
  .it-mobile-nav__phone { min-height: 2.9rem; padding-block: 0.5rem; }
  .it-mobile-nav__actions .it-button { min-height: 2.8rem; padding-block: 0.65rem; }
}

@media (max-width: 72rem) {
  .it-nav { gap: 1rem; }
  .it-program__bottom { grid-template-columns: 1fr; align-items: stretch; }
  .it-program__price {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: var(--it-soft);
  }
  .it-program__buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; }
  .it-formats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .it-format--featured { grid-row: auto; grid-column: 1 / -1; }

  /* Keep the whole “why us” section as one deliberate composition:
     01 full width; 02–04 in one row; 05 + 06 together; facts 07–10 in two balanced rows. */
  .it-why-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .it-why-card--span-12 { grid-column: 1 / -1; }
  .it-why-card--span-8 { grid-column: span 4; }
  .it-why-card--span-4 { grid-column: span 2; }
  .it-why-card--span-3 { grid-column: span 3; }
}

@media (max-width: 58rem) {
  .it-enroll,
  .it-location,
  .it-faq-layout { grid-template-columns: 1fr; }
  .it-program-grid { grid-template-columns: 1fr; }
  .it-path__panel { grid-template-columns: 1fr; }
  .it-path__steps { border-right: 0; border-bottom: 1px solid var(--it-border); }
  .it-path__stage { grid-template-rows: 11rem auto; }
  .it-gallery__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .it-stats-band__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 64rem) {
  .it-shell { width: min(100% - 1rem, 96rem); }
  .it-section { padding: 3.8rem 0; }

  .it-hero {
    min-height: calc(100vh - 4.15rem);
    min-height: calc(100dvh - 4.15rem);
    align-items: center;
    padding: clamp(1.75rem, 4dvh, 3.25rem) 0;
  }

  .it-hero__veil {
    background:
      linear-gradient(90deg, rgb(4 11 24 / 88%) 0%, rgb(4 11 24 / 67%) 60%, rgb(4 11 24 / 40%) 100%),
      linear-gradient(0deg, rgb(4 11 24 / 55%) 0%, rgb(4 11 24 / 12%) 58%, rgb(4 11 24 / 34%) 100%);
  }

  .it-hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: clamp(1.05rem, 2.25dvh, 1.55rem);
    align-items: start;
  }

  .it-hero__copy,
  .it-hero__form-wrap {
    width: min(100%, 42rem);
    max-width: 42rem;
    margin-inline: auto;
  }

  .it-hero__copy h1 {
    max-width: 10.75ch;
    font-size: clamp(3.8rem, 7.8vw, 5.35rem);
    line-height: 0.92;
    text-wrap: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .it-hero__lead {
    max-width: 41rem;
    margin-top: 0.9rem;
    font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    line-height: 1.5;
  }

  .it-hero__actions,
  .it-hero__tracks,
  .it-hero__stats { display: none; }
  .it-hero__form-wrap { justify-self: center; }
  .it-hero__form-wrap::before { width: 10rem; height: 10rem; top: -2rem; right: -1rem; }
  .it-hero__form-wrap .lead-card { border-radius: 1.35rem; box-shadow: 0 1rem 2.5rem rgb(32 67 145 / 13%); }
  .it-hero__form-wrap .lead-card__header { padding: 0.95rem 1.2rem 0.7rem; text-align: center; }
  .it-hero__form-wrap .lead-card__header > p:last-child { display: none; }
  .it-hero__form-wrap .lead-card h2 { margin: 0; font-size: 1.22rem; }
  .it-hero__form-wrap .lead-form { gap: 0.62rem; padding: 0.75rem 1.2rem 1rem; }
  .it-hero__form-wrap .form-field textarea { min-height: 3.8rem; }

  .it-hero__actions,
  .it-section-head--row { align-items: stretch; flex-direction: column; }
  .it-program__cover { height: 13rem; }
  .it-path__steps button { padding: 1rem 0.8rem; }
  .it-path__steps b { font-size: 1.75rem; }
  .it-gallery__main { border-radius: 1.35rem; }
  .it-gallery__thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .it-stats-band__grid { grid-template-columns: 1fr; }

  /* Preserve the desktop mosaic instead of collapsing every card into the
     same full-width mobile rectangle. Four tracks give the larger stories,
     compact facts and feature cards visibly different weights. */
  .it-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 0.8rem;
  }
  .it-why-card--span-12,
  .it-why-card--span-8 { grid-column: 1 / -1; }
  .it-why-card--span-4,
  .it-why-card--span-3 { grid-column: span 2; }
  .it-why-card--feature { align-items: center; gap: clamp(1rem, 3vw, 1.6rem); }
  .it-why-card { min-height: 9.5rem; padding: 1.25rem; border-radius: 1.4rem; }
  .it-why-card--fact { min-height: 8.25rem; }
  .it-why-card__metric { font-size: clamp(3rem, 10vw, 5rem); }
  .it-why-card__copy p,
  .it-why-card p { line-height: 1.52; }
  .it-footer__top,
  .it-footer__bottom { align-items: start; flex-direction: column; }
}

@media (max-width: 48rem) {
  .it-shell { width: min(100% - 1.5rem, 96rem); }
  .it-hero { padding-block: clamp(1.1rem, 3dvh, 1.8rem); }
  .it-hero__media img { object-position: 32% 45%; }
  .it-hero__grid { gap: 0.88rem; }
  .it-hero__copy,
  .it-hero__form-wrap { width: min(100%, 36rem); max-width: 36rem; }
  .it-hero__copy .it-kicker { margin-bottom: 0.65rem; }
  .it-hero__copy h1 { max-width: 10ch; font-size: clamp(2.5rem, 10vw, 3.75rem); letter-spacing: -0.062em; line-height: 0.93; }
  .it-hero__lead { margin-top: 0.68rem; font-size: clamp(0.88rem, 2.6vw, 0.96rem); line-height: 1.44; }
  .it-hero__form-wrap { width: 100%; max-width: 36rem; }
}

@media (min-width: 34.01rem) and (max-width: 64rem) {
  .it-hero__media img {
    object-position: 18% 45%;
    transform: none;
  }

  .it-hero__grid {
    align-content: center;
  }

  .it-hero__copy,
  .it-hero__form-wrap {
    width: min(50vw, 30rem);
    max-width: 30rem;
    margin-right: 0;
    margin-left: clamp(0.5rem, 2vw, 1.5rem);
  }

  .it-hero__copy h1 {
    max-width: 8.5ch;
    font-size: clamp(3rem, 6.5vw, 4.2rem);
  }

  .it-hero__lead {
    max-width: 30rem;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
  }

  .it-hero__form-wrap {
    justify-self: start;
  }

  .it-hero__form-wrap .lead-form--compact {
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "consent"
      "submit";
  }

  .it-hero__form-wrap .lead-form--compact > .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 48rem) {
  #why-us .it-section-head { margin-bottom: 1.35rem; }
  .it-why-grid { gap: 0.65rem; }
  .it-why-card { padding: 1rem; border-radius: 1.2rem; }
  .it-why-card__copy h3,
  .it-why-card h3 { font-size: 0.98rem; line-height: 1.18; }
  .it-why-card__copy p,
  .it-why-card p { margin-top: 0.42rem; font-size: 0.82rem; line-height: 1.48; }
  .it-why-card__head { margin-bottom: 0.65rem; }
  .it-why-card__head strong { font-size: clamp(1.9rem, 7vw, 2.55rem); }
  .it-why-card__copy span,
  .it-why-card__head span { font-size: 0.7rem; }
  .it-why-card--feature { min-height: 0; }
  .it-why-card--fact { min-height: 7.4rem; }

  /* On phone widths the long cards still form a composition: two detailed
     cards share a row, the author-program and comfort cards become pauses,
     and the four short facts finish as a 2×2 mini mosaic. */
  .it-why-grid > .it-why-card:nth-child(4),
  .it-why-grid > .it-why-card:nth-child(6) { grid-column: 1 / -1; }

  .it-why-cta { margin-top: 1.35rem; }
  .it-why-cta .it-button { width: 100%; min-height: 3.1rem; justify-content: center; }

  #formats .it-section-head { margin-bottom: 1.35rem; }
  .it-formats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
  .it-format--featured { grid-column: 1 / -1; }
  .it-formats > .it-format:last-child { grid-column: 1 / -1; }
  .it-format { padding: 1.2rem; border-radius: 1.35rem; }
  .it-format--featured { padding: 1.3rem; }
  .it-format__top { align-items: flex-start; gap: 0.75rem; line-height: 1.35; }
  .it-format__top > span { max-width: 17rem; }
  .it-format__top b {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0.32rem 0.6rem;
    border: 1px solid rgb(255 255 255 / 18%);
    background: rgb(255 255 255 / 12%);
  }
  .it-format h3 { margin-top: 0.8rem; font-size: 1.25rem; }
  .it-format strong { font-size: 1.5rem; }
  .it-format p { margin-top: 0.8rem; line-height: 1.55; }
  .it-format ul { gap: 0.52rem; margin-top: 0.9rem; }
  .it-format li { line-height: 1.42; }
  .it-format--featured .it-button {
    width: 100%;
    min-height: 3.15rem;
    justify-content: center;
    margin-top: 1.35rem;
  }
}

@media (max-width: 34rem) {
  .it-header__inner { gap: 0.5rem; }
  .it-why-card { min-height: 0; padding: 0.9rem; }
  .it-why-card--feature {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
  }
  .it-why-card__metric { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .it-why-card__copy h3,
  .it-why-card h3 { font-size: 0.9rem; }
  .it-why-card__copy p,
  .it-why-card p { font-size: 0.76rem; line-height: 1.43; }
  .it-why-card--fact { min-height: 6.9rem; }
  .it-why-card--fact .it-why-card__head { margin-bottom: 0.5rem; }
  .it-why-card--fact .it-why-card__head strong { font-size: clamp(1.65rem, 8.8vw, 2.2rem); }
  .it-why-card--fact h3 { font-size: 0.8rem; line-height: 1.2; }

  .it-formats { grid-template-columns: 1fr; }
  .it-format--featured,
  .it-formats > .it-format:last-child { grid-column: 1; }
  .it-format--featured { padding: 1.15rem; }
  .it-format__top { font-size: 0.59rem; letter-spacing: 0.1em; }
  .it-format__top b { padding-inline: 0.52rem; font-size: 0.54rem; }
  .it-back {
    width: auto;
    min-width: 0;
    padding: 0.45rem 0.65rem 0.45rem 0.45rem;
  }
  .it-header__actions { gap: 0.5rem; }
  .it-mobile-nav { width: min(22rem, calc(100vw - 0.75rem)); }
  .it-mobile-nav__links { padding-inline: 1rem; }
  .it-mobile-nav__actions { padding-inline: 1rem; }
  .it-header__apply {
    min-height: 2.55rem;
    padding: 0.68rem 0.82rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 26rem) {
  .it-scroll-to-form { width: 3.1rem; height: 3.1rem; }
  .it-header__inner { gap: 0.4rem; }
  .it-back { gap: 0.35rem; padding-right: 0.5rem; font-size: 0.58rem; letter-spacing: -0.02em; }
  .it-back__icon { width: 1.65rem; height: 1.65rem; }
  .it-menu { width: 2.55rem; height: 2.55rem; flex-basis: 2.55rem; }
  .it-header__apply { padding-inline: 0.7rem; font-size: 0.68rem; }
  .it-hero { padding-block: max(0.95rem, 2.4dvh) max(1.15rem, 2.8dvh); }
  .it-hero__copy .it-kicker { margin-bottom: 0.65rem; font-size: 0.6rem; }
  .it-hero__copy h1 { font-size: clamp(2.15rem, 10vw, 2.75rem); }
  .it-hero__lead { font-size: 0.84rem; }
  .it-hero__form-wrap .lead-card__header { padding-top: 1rem; padding-bottom: 0.75rem; }
  .it-hero__form-wrap .lead-form--compact { gap: 0.7rem; padding-top: 0.8rem; padding-bottom: 1rem; }
  .it-enroll__actions { align-items: stretch; flex-direction: column; }
}

@media (max-width: 34rem) {
  .it-program__buttons { grid-template-columns: 1fr; }
}


/* WebKit/Safari and short windows: keep the drawer in the visual viewport and
   let the hero grow instead of shrinking typography. */
@media (min-width: 34.01rem) and (max-width: 64rem) and (max-height: 42rem) {
  .it-hero {
    align-items: flex-start;
    padding-block: 1rem 1.25rem;
  }

  .it-hero__copy h1 {
    font-size: clamp(2.7rem, 7.4vw, 4rem);
  }
}

@media (max-width: 77.999rem) {
  .it-mobile-nav {
    -webkit-overflow-scrolling: touch;
  }
}
