@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-900: #050810;
  --navy-800: #080d1a;
  --navy-700: #0b1224;
  --navy-600: #0d172c;
  --navy-500: #101c36;
  --blue-600: #2758bb;
  --blue-500: #2f6be4;
  --blue-400: #6d97ec;
  --sky-300: #b0c8f5;
  --sky-200: #c5d6f7;
  --sky-100: #e6edfc;
  --paper: #f7f9fc;
  --white: #ffffff;
  --ink: #0b1220;
  --slate: #1e2a44;
  --steel: #48566f;
  --border: rgba(47, 107, 228, 0.3);
  --shadow: 0 24px 60px rgba(5, 8, 16, 0.12);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

body,
button,
input {
  font-family: "Inter", Arial, sans-serif;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.button,
.site-header,
.section-label,
.footer-links strong {
  font-family: "Poppins", Arial, sans-serif;
}

:focus-visible {
  outline: 3px solid var(--sky-300);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  height: 100px;
  padding: 20px 48px;
  color: var(--white);
}

.brand {
  width: 146px;
  flex: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand .custom-logo-link {
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.4vw, 47px);
  margin-left: auto;
  margin-right: 30px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav li {
  list-style: none;
}

.desktop-nav > li {
  position: relative;
}

.desktop-nav > li > a {
  display: inline-flex;
  align-items: center;
  padding-block: 15px;
}

.desktop-nav .menu-item-has-children > a::after {
  content: "\f347";
  margin-left: 7px;
  font-family: dashicons;
  font-size: 13px;
}

.desktop-nav .sub-menu {
  position: absolute;
  top: 46px;
  left: -20px;
  display: grid;
  min-width: 210px;
  margin: 0;
  padding: 12px;
  background: rgba(8, 13, 26, 0.98);
  border: 1px solid rgba(168, 192, 232, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
  box-shadow: var(--shadow);
}

.desktop-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
}

.desktop-nav li:hover > .sub-menu,
.desktop-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-nav > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-block: 15px;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav .active,
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a {
  color: var(--sky-300);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 46px;
  left: -20px;
  display: grid;
  min-width: 190px;
  padding: 12px;
  background: rgba(8, 13, 26, 0.98);
  border: 1px solid rgba(168, 192, 232, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
  box-shadow: var(--shadow);
}

.dropdown-panel a {
  padding: 10px 12px;
  font-size: 13px;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta {
  display: grid;
  place-items: center;
  width: 133px;
  height: 46px;
  border: 1px solid var(--sky-300);
  color: var(--sky-300);
  font-size: 14px;
  font-weight: 600;
  transition: 180ms ease;
}

.header-cta:hover {
  color: var(--navy-500);
  background: var(--sky-300);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: min(800px, 100svh);
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-500);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center top;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 146px;
  left: 48px;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(76px, 5.2vw, 96px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero h1 span,
.section-light h2 span,
.section-dark h2 span {
  color: var(--sky-300);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 30px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue-500);
}

.button-primary:hover {
  background: var(--blue-600);
}

.button-outline {
  color: var(--blue-500);
  border-color: var(--blue-500);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--blue-500);
}

.hero-copy .button {
  margin-top: 27px;
  min-width: 223px;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-proof img {
  width: 164px;
  height: 68px;
  object-fit: cover;
  object-position: center;
}

.hero-proof p {
  color: var(--sky-300);
  font-size: 16px;
  line-height: 1.32;
}

.hero-aside-copy {
  position: absolute;
  z-index: 2;
  top: 229px;
  right: 96px;
  width: 250px;
  color: var(--sky-300);
  font-size: 16px;
  line-height: 1.55;
}

.hero-promo {
  position: absolute;
  z-index: 3;
  right: 95px;
  bottom: 42px;
  width: 250px;
  padding: 13px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(5, 8, 16, 0.2);
  transition: transform 180ms ease;
}

.hero-promo:hover {
  transform: translateY(-4px);
}

.hero-promo > img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.hero-promo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}

.hero-promo-footer strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.15;
}

.circle-action {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: none;
  color: var(--navy-500);
  border: 1px solid var(--sky-300);
  border-radius: 50%;
  background: var(--white);
}

.hero-rail {
  position: absolute;
  z-index: 4;
  top: 359px;
  right: 12px;
  display: grid;
  width: 61px;
  color: var(--white);
  border: 1px solid var(--sky-300);
}

.hero-rail a {
  display: grid;
  place-items: center;
  height: 56px;
  border-bottom: 1px solid var(--sky-300);
  transition: 180ms ease;
}

.hero-rail a:last-child {
  border-bottom: 0;
}

.hero-rail a:hover {
  color: var(--navy-500);
  background: var(--sky-300);
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--navy-500);
}

.section-label {
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.section-label-light {
  color: var(--sky-300);
}

.section-heading h2,
.learn-heading h2,
.compass-copy h2,
.prepare-copy h2,
.insights-heading h2 {
  font-weight: 600;
  letter-spacing: -0.045em;
}

.paths-section {
  position: relative;
  min-height: 930px;
  padding: 58px 4.2vw 70px;
  overflow: hidden;
}

.section-heading-centered {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-heading-centered h2 {
  margin-top: 12px;
  color: var(--navy-500);
  font-size: clamp(44px, 4.2vw, 72px);
  line-height: 1.03;
}

.section-heading-centered > p:last-child {
  margin-top: 18px;
  color: var(--steel);
  font-size: 18px;
}

.paths-mark {
  position: absolute;
  z-index: 0;
  top: 250px;
  left: 50%;
  width: min(35vw, 530px);
  transform: translateX(-50%);
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.paths-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: min(31vw, 550px);
  margin-top: 72px;
}

.path-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.path-icon {
  color: var(--blue-500);
  width: 43px;
  height: 43px;
  font-size: 43px;
}

.path-column h3 {
  margin-top: 20px;
  color: var(--blue-500);
  font-size: clamp(38px, 3.5vw, 56px);
  line-height: 1;
}

.path-column > p {
  max-width: 410px;
  min-height: 78px;
  margin-top: 20px;
  color: var(--navy-500);
  font-size: 19px;
  line-height: 1.5;
}

.path-column .button {
  margin-top: 25px;
}

.path-column > img {
  width: 100%;
  height: 270px;
  margin-top: 30px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.compass-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 920px;
  padding: 105px max(48px, 4.2vw);
  overflow: hidden;
}

.compass-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 680px;
}

.compass-copy h2 {
  margin-top: 22px;
  font-size: clamp(58px, 5.2vw, 90px);
  line-height: 1.02;
}

.section-body {
  max-width: 610px;
  margin-top: 28px;
  color: var(--sky-300);
  font-size: 20px;
  line-height: 1.58;
}

.compass-copy .button,
.prepare-copy .button {
  margin-top: 35px;
}

.compass-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 47px;
  color: var(--sky-300);
}

.compass-note span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--blue-400);
  border-radius: 50%;
}

.compass-note p {
  font-size: 17px;
}

.compass-photo-wrap {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  width: min(44vw, 650px);
}

.compass-photo-wrap img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border: 1px solid rgba(168, 192, 232, 0.32);
  box-shadow: 0 30px 80px rgba(5, 8, 16, 0.35);
}

.compass-mark {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: -60px;
  width: min(58vw, 820px);
  opacity: 0.42;
}

.learn-section {
  position: relative;
  min-height: 900px;
  padding: 100px max(48px, 4.2vw) 115px;
  overflow: hidden;
}

.learn-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.learn-heading h2,
.insights-heading h2 {
  margin-top: 16px;
  color: var(--navy-500);
  font-size: clamp(54px, 5.2vw, 86px);
  line-height: 1.02;
}

.learn-heading > div > p:last-child {
  max-width: 580px;
  margin-top: 22px;
  color: var(--steel);
  font-size: 19px;
  line-height: 1.55;
}

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

.course-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.course-card > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.course-card-image {
  display: block;
}

.course-card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.course-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 142px;
  padding: 27px 24px;
}

.course-card h3 {
  color: var(--navy-500);
  font-size: 20px;
  line-height: 1.25;
}

.course-card p {
  margin-top: 9px;
  color: var(--steel);
  font-size: 15px;
}

.course-card-body > a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  color: var(--blue-500);
  border: 1px solid var(--blue-500);
  border-radius: 50%;
}

.course-card-body .circle-action {
  color: var(--blue-500);
}

.prepare-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  min-height: 890px;
  padding: 105px max(48px, 4.2vw);
}

.prepare-copy {
  align-self: center;
}

.prepare-copy h2 {
  margin-top: 24px;
  font-size: clamp(50px, 4.4vw, 76px);
  line-height: 1.05;
}

.prepare-copy .section-body {
  max-width: 510px;
  font-size: 18px;
}

.prepare-promises {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.prepare-promises p {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--sky-200);
  font-size: 15px;
  line-height: 1.4;
}

.prepare-promises svg {
  flex: none;
  color: var(--blue-400);
}

.prepare-promises .dashicons {
  width: 25px;
  height: 25px;
  flex: none;
  color: var(--blue-400);
  font-size: 25px;
}

.prepare-demo {
  align-self: center;
}

.track-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.track-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 72px;
  color: var(--sky-300);
  border: 1px solid var(--sky-300);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.track-tabs .dashicons {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.track-tabs button.active {
  color: var(--white);
  border-color: var(--blue-500);
  box-shadow: inset 0 -3px 0 var(--blue-500);
}

.exam-panel {
  overflow: hidden;
  border: 1px solid rgba(168, 192, 232, 0.35);
  background: var(--navy-600);
  box-shadow: 0 28px 80px rgba(5, 8, 16, 0.32);
}

.exam-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px 17px;
  color: var(--sky-300);
  font-size: 12px;
}

.exam-panel-top > div:first-child {
  display: grid;
  gap: 4px;
}

.exam-panel-top strong {
  color: var(--white);
  font-size: 13px;
}

.exam-status {
  display: flex;
  align-items: center;
  gap: 28px;
}

.exam-status span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.exam-progress {
  height: 4px;
  margin-inline: 25px;
  background: rgba(168, 192, 232, 0.24);
}

.exam-progress span {
  display: block;
  height: 100%;
  background: var(--blue-500);
  transition: width 180ms ease;
}

.exam-workspace {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 400px;
  margin: 20px;
}

.answer-list {
  padding: 27px 25px;
  border: 1px solid rgba(168, 192, 232, 0.16);
  border-right: 0;
}

.answer-list > p {
  margin-bottom: 28px;
  color: var(--sky-300);
  font-size: 13px;
}

.answer-list button {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 55px;
  margin-top: 12px;
  padding: 8px 13px;
  color: var(--sky-300);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.answer-list button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid rgba(168, 192, 232, 0.55);
  border-radius: 50%;
}

.answer-list button i {
  width: min(70%, 260px);
  height: 9px;
  background: rgba(168, 192, 232, 0.25);
}

.answer-list button.selected {
  color: var(--white);
  border-color: rgba(47, 107, 228, 0.65);
  background: rgba(47, 107, 228, 0.13);
}

.answer-list button.selected span {
  border-color: var(--blue-500);
  background: var(--blue-500);
}

.radiograph-frame {
  padding: 22px;
  border: 1px solid rgba(168, 192, 232, 0.16);
  background: var(--navy-700);
}

.radiograph-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03);
}

.exam-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px 20px;
}

.exam-panel-footer button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 18px;
  color: var(--sky-300);
  border: 1px solid var(--blue-400);
  background: transparent;
  cursor: pointer;
}

.exam-panel-footer > div {
  display: flex;
  gap: 12px;
}

.exam-panel-footer .next,
.exam-panel-footer .flagged {
  color: var(--white);
  background: var(--blue-500);
}

.insights-section {
  padding: 90px max(48px, 4.2vw) 80px;
}

.insights-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.insights-heading h2 {
  font-size: clamp(46px, 4.4vw, 74px);
}

.insight-list {
  margin-top: 43px;
}

.insight-row {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) 52px 1.28fr;
  align-items: center;
  gap: 36px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(168, 192, 232, 0.65);
}

.insight-row:last-child {
  border-bottom: 0;
}

.insight-row > img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.insight-row h3 {
  color: var(--navy-500);
  font-size: 20px;
  line-height: 1.3;
}

.insight-row p {
  max-width: 600px;
  margin-top: 8px;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.45;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 39px max(48px, 4.2vw);
  color: var(--white);
  background: var(--blue-500);
}

.newsletter > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 38px;
}

.newsletter h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.newsletter p {
  font-size: 15px;
  line-height: 1.45;
}

.newsletter form {
  display: flex;
  gap: 15px;
}

.form-notice {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid currentColor;
}

.form-notice.success {
  color: #0d6148;
  background: #eaf8f3;
}

.form-notice.error {
  color: #8a2030;
  background: #fff0f2;
}

.newsletter input,
.newsletter button {
  min-height: 51px;
  border: 1px solid var(--white);
  border-radius: 0;
  font-size: 15px;
}

.newsletter input {
  width: 100%;
  padding: 12px 18px;
  color: var(--navy-500);
  background: var(--white);
}

.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  padding: 12px 22px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.newsletter button:hover {
  color: var(--blue-500);
  background: var(--white);
}

.site-footer {
  padding: 57px max(48px, 4.2vw) 28px;
  color: var(--sky-300);
  background: var(--navy-500);
}

.footer-intro {
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-intro img {
  width: 220px;
}

.footer-intro p {
  padding-left: 36px;
  border-left: 1px solid rgba(168, 192, 232, 0.55);
  font-size: 19px;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  width: min(58%, 760px);
  margin: -71px 0 54px auto;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.footer-links a {
  font-size: 13px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 192, 232, 0.4);
  font-size: 12px;
}

.footer-bottom a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(168, 192, 232, 0.55);
}

/* Inner pages */
.page-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  min-height: 720px;
  padding: 150px max(48px, 4.2vw) 80px;
  color: var(--white);
  background: var(--navy-500);
}

.page-hero-copy {
  align-self: center;
  max-width: 830px;
  padding-right: 60px;
}

.page-hero h1,
.single-hero h1,
.article-hero h1,
.archive-header h1,
.not-found h1 {
  margin-top: 22px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(58px, 5.8vw, 102px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.page-hero h1 span,
.single-hero h1 span,
.article-hero h1 span,
.values-section h2 span,
.institution-band h2 span {
  color: var(--sky-300);
}

.page-hero-copy > p:last-child,
.single-hero > div > p,
.article-hero > p {
  max-width: 680px;
  margin-top: 28px;
  color: var(--sky-300);
  font-size: 20px;
  line-height: 1.58;
}

.page-hero-image {
  align-self: center;
  height: 510px;
  overflow: hidden;
  border: 1px solid rgba(168, 192, 232, 0.34);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  padding: 100px max(48px, 4.2vw);
  background: var(--paper);
}

.content-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.content-intro h2,
.story-section h2,
.team-section h2,
.process-section > h2,
.values-section > h2,
.institution-band h2 {
  margin-top: 14px;
  color: var(--navy-500);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(45px, 4.5vw, 74px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.content-intro h2 span,
.story-section h2 span,
.team-section h2 span,
.process-section > h2 span {
  color: var(--blue-400);
}

.content-intro > p,
.story-copy > p:last-child,
.team-section > div > p,
.institution-band p {
  color: var(--steel);
  font-size: 18px;
  line-height: 1.65;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(168, 192, 232, 0.6);
}

.filter-bar button {
  min-height: 43px;
  padding: 9px 17px;
  color: var(--blue-500);
  border: 1px solid var(--blue-500);
  background: transparent;
  cursor: pointer;
}

.filter-bar button.active {
  color: var(--white);
  background: var(--blue-500);
}

.course-grid-library .course-card[hidden] {
  display: none;
}

.feature-band,
.values-section {
  padding: 100px max(48px, 4.2vw);
}

.feature-band > div:first-child {
  max-width: 850px;
}

.feature-band h2,
.values-section > h2 {
  margin-top: 17px;
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(46px, 4.6vw, 76px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.feature-grid,
.question-grid,
.numbered-grid,
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.feature-grid article {
  min-height: 240px;
  padding: 32px;
  border: 1px solid rgba(168, 192, 232, 0.32);
}

.feature-grid article > span,
.question-grid article > span {
  width: 35px;
  height: 35px;
  color: var(--sky-300);
  font-size: 35px;
}

.feature-grid h3,
.question-grid h3,
.numbered-grid h3,
.destination-grid h3 {
  margin-top: 25px;
  color: inherit;
  font-size: 22px;
}

.feature-grid p,
.question-grid p,
.numbered-grid p,
.destination-grid p {
  margin-top: 14px;
  color: var(--sky-300);
  font-size: 16px;
  line-height: 1.6;
}

.destination-grid article,
.question-grid article,
.numbered-grid article {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--border);
  background: var(--white);
}

.destination-code,
.numbered-grid article > span {
  color: var(--blue-500);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 38px;
  font-weight: 600;
}

.destination-grid h3,
.question-grid h3,
.numbered-grid h3 {
  color: var(--navy-500);
}

.destination-grid p,
.question-grid p,
.numbered-grid p {
  color: var(--steel);
}

.destination-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--blue-500);
  font-weight: 600;
}

.prepare-page-demo {
  padding: 100px max(48px, 4.2vw);
}

.content-intro-dark h2 {
  color: var(--white);
}

.content-intro-dark > p {
  color: var(--sky-300);
}

.prepare-page-demo .prepare-demo {
  max-width: 1080px;
  margin: 65px auto 0;
}

.process-section > h2 {
  max-width: 850px;
}

.compass-intro .question-grid article {
  min-height: 300px;
}

.junction-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 700px;
  padding: 90px max(48px, 4.2vw);
  overflow: hidden;
}

.junction-section > img {
  width: min(560px, 46vw);
  opacity: 0.84;
}

.junction-section > div {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.junction-section h2 {
  margin-top: 18px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(48px, 4.8vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.junction-section p:not(.section-label) {
  margin-top: 25px;
  color: var(--sky-300);
  font-size: 18px;
  line-height: 1.6;
}

.junction-section .button {
  margin-top: 34px;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.story-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.story-copy > p:last-child,
.team-section > div > p {
  margin-top: 26px;
}

.values-section > h2 {
  max-width: 780px;
}

.values-section .feature-grid article > span {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.team-section {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 100px;
}

.team-section > img {
  width: 100%;
}

.team-section .button {
  margin-top: 32px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.contact-details h2 {
  margin-top: 14px;
  color: var(--navy-500);
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(45px, 4.2vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.contact-details > p:not(.section-label) {
  margin-top: 26px;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.65;
}

.contact-details dl {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

.contact-details dt {
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 7px 0 0;
  color: var(--navy-500);
  font-size: 17px;
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--navy-500);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(72, 86, 111, 0.42);
  border-radius: 0;
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.institution-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  padding: 90px max(48px, 4.2vw);
}

.institution-band h2 {
  max-width: 900px;
  color: var(--white);
}

.institution-band p:not(.section-label) {
  max-width: 700px;
  margin-top: 20px;
  color: var(--sky-300);
}

.insights-library {
  padding-top: 70px;
}

.single-hero {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 70px;
  min-height: 720px;
  padding: 150px max(48px, 4.2vw) 90px;
}

.single-hero > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--sky-300);
}

.single-hero .button {
  margin-top: 30px;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  gap: 100px;
}

.single-layout aside {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--white);
}

.single-layout aside p {
  margin-top: 14px;
  color: var(--steel);
  line-height: 1.6;
}

.single-layout aside a {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue-500);
  font-weight: 600;
}

.editor-content,
.article-content {
  color: var(--slate);
  font-size: 18px;
  line-height: 1.75;
}

.editor-content > *,
.article-content > * {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.editor-content h2,
.article-content h2 {
  margin-top: 46px;
  margin-bottom: 18px;
  color: var(--navy-500);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 38px;
  line-height: 1.2;
}

.editor-content p + p,
.article-content p + p {
  margin-top: 24px;
}

.article-hero,
.archive-header,
.not-found {
  min-height: 560px;
  padding: 160px max(48px, 10vw) 90px;
}

.article-hero h1 {
  max-width: 1050px;
}

.article-hero > span {
  display: block;
  margin-top: 30px;
  color: var(--sky-300);
}

.article-image {
  width: min(1180px, calc(100% - 96px));
  height: 560px;
  margin: -80px auto 0;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 90px 24px 45px;
}

.article-back {
  padding: 0 24px 90px;
  text-align: center;
}

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

.post-grid article {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--white);
}

.post-grid article h2 {
  margin-top: 14px;
  color: var(--navy-500);
  font-size: 25px;
}

.post-grid article > p:not(.section-label) {
  margin-top: 16px;
  color: var(--steel);
  line-height: 1.6;
}

.post-grid article > a {
  display: inline-block;
  margin-top: 22px;
  color: var(--blue-500);
  font-weight: 600;
}

.not-found {
  min-height: 750px;
}

.not-found > p:not(.section-label) {
  margin-top: 24px;
  color: var(--sky-300);
  font-size: 20px;
}

.not-found .button {
  margin-top: 34px;
}

@media (max-width: 1250px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero-aside-copy,
  .hero-promo {
    right: 76px;
  }

  .prepare-section {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
  }

  .exam-workspace {
    min-height: 340px;
  }
}

@media (max-width: 1040px) {
  .site-header {
    padding-inline: 30px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    color: var(--white);
    border: 1px solid var(--sky-300);
    background: rgba(5, 8, 16, 0.35);
    cursor: pointer;
  }

  .mobile-menu {
    position: absolute;
    top: 80px;
    right: 30px;
    display: grid;
    width: min(330px, calc(100vw - 60px));
    padding: 18px;
    background: rgba(8, 13, 26, 0.98);
    border: 1px solid rgba(168, 192, 232, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(168, 192, 232, 0.18);
    font-size: 15px;
  }

  .mobile-menu li {
    list-style: none;
  }

  .mobile-menu > li > a {
    display: block;
  }

  .mobile-menu-cta {
    margin-top: 12px;
    color: var(--white);
    background: var(--blue-500);
    border: 0 !important;
    text-align: center;
  }

  .hero-copy {
    left: 30px;
  }

  .hero-proof {
    left: 30px;
  }

  .hero-aside-copy {
    right: 82px;
    width: 220px;
  }

  .hero-promo {
    right: 80px;
    width: 235px;
  }

  .paths-grid {
    gap: 25vw;
  }

  .compass-section,
  .prepare-section {
    grid-template-columns: 1fr;
  }

  .compass-photo-wrap {
    justify-self: stretch;
    width: 100%;
    margin-top: 70px;
  }

  .compass-photo-wrap img {
    max-height: 620px;
  }

  .prepare-demo {
    margin-top: 30px;
  }

  .footer-links {
    width: 100%;
    margin: 50px 0;
  }

  .page-hero,
  .single-hero,
  .story-section,
  .team-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .page-hero-image,
  .single-hero > img {
    height: 520px;
    max-height: none;
  }

  .junction-section {
    grid-template-columns: 1fr;
  }

  .junction-section > img {
    width: min(520px, 80vw);
    margin: 0 auto 50px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 86px;
    padding: 14px 20px;
  }

  .brand {
    width: 128px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    top: 74px;
    right: 20px;
    width: calc(100vw - 40px);
  }

  .hero {
    height: 1040px;
    min-height: 1040px;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-copy {
    top: 118px;
    left: 20px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(54px, 15vw, 68px);
    line-height: 0.98;
  }

  .hero-copy .button {
    min-width: 190px;
    margin-top: 22px;
  }

  .hero-aside-copy {
    top: 405px;
    right: auto;
    left: 20px;
    width: min(300px, calc(100vw - 40px));
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-promo {
    right: 20px;
    bottom: 115px;
    width: 235px;
  }

  .hero-proof {
    left: 20px;
    bottom: 34px;
  }

  .hero-proof img {
    width: 142px;
    height: 59px;
  }

  .hero-proof p {
    font-size: 14px;
  }

  .hero-rail {
    top: 517px;
    right: 0;
    width: 50px;
  }

  .hero-rail a {
    height: 50px;
  }

  .paths-section,
  .compass-section,
  .learn-section,
  .prepare-section,
  .insights-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paths-section {
    padding-top: 74px;
  }

  .section-heading-centered h2 {
    font-size: 45px;
  }

  .section-heading-centered > p:last-child {
    font-size: 16px;
  }

  .paths-mark {
    top: 430px;
    width: 90vw;
    opacity: 0.24;
  }

  .paths-grid {
    grid-template-columns: 1fr;
    gap: 75px;
    margin-top: 68px;
  }

  .path-column > p {
    min-height: 0;
    font-size: 17px;
  }

  .path-column > img {
    height: 230px;
  }

  .compass-section,
  .learn-section,
  .prepare-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .compass-copy h2,
  .prepare-copy h2,
  .learn-heading h2,
  .insights-heading h2 {
    font-size: 46px;
  }

  .section-body {
    font-size: 17px;
  }

  .compass-note {
    margin-top: 36px;
  }

  .compass-photo-wrap {
    margin-top: 50px;
  }

  .compass-photo-wrap img {
    max-height: 500px;
  }

  .learn-heading,
  .insights-heading {
    display: grid;
    align-items: start;
  }

  .learn-heading .button,
  .insights-heading .button {
    justify-self: start;
    margin-top: 25px;
  }

  .course-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .course-card > img {
    height: 240px;
  }

  .prepare-promises {
    grid-template-columns: 1fr;
  }

  .prepare-section > *,
  .prepare-copy,
  .prepare-demo,
  .exam-panel {
    min-width: 0;
    max-width: 100%;
  }

  .track-tabs {
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    padding-bottom: 8px;
  }

  .exam-panel-top {
    align-items: flex-start;
  }

  .exam-status {
    display: grid;
    gap: 6px;
  }

  .exam-workspace {
    grid-template-columns: 1fr;
    margin: 12px;
  }

  .answer-list {
    border-right: 1px solid rgba(168, 192, 232, 0.16);
  }

  .radiograph-frame {
    min-height: 260px;
  }

  .exam-panel-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .exam-panel-footer > div,
  .exam-panel-footer button {
    flex: 1;
  }

  .insight-row {
    grid-template-columns: 1fr 43px;
    gap: 18px;
    padding-block: 24px;
  }

  .insight-row > img {
    grid-column: 1 / -1;
    height: 190px;
  }

  .insight-row > div {
    grid-column: 1;
    grid-row: 2;
  }

  .insight-row .circle-action {
    grid-column: 2;
    grid-row: 2;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 20px;
  }

  .newsletter > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .site-footer {
    padding: 50px 20px 24px;
  }

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

  .footer-intro img {
    width: 190px;
  }

  .footer-intro p {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgba(168, 192, 232, 0.55);
    border-left: 0;
  }

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

  body.admin-bar .site-header {
    top: 46px;
  }

  .page-hero,
  .single-hero,
  .article-hero,
  .archive-header,
  .not-found {
    min-height: 0;
    padding: 125px 20px 60px;
  }

  .page-hero-copy {
    padding-right: 0;
  }

  .page-hero h1,
  .single-hero h1,
  .article-hero h1,
  .archive-header h1,
  .not-found h1 {
    font-size: 48px;
  }

  .page-hero-copy > p:last-child,
  .single-hero > div > p,
  .article-hero > p {
    font-size: 17px;
  }

  .page-hero-image,
  .single-hero > img {
    height: 330px;
    margin-top: 40px;
  }

  .content-section,
  .feature-band,
  .values-section,
  .prepare-page-demo,
  .junction-section,
  .institution-band {
    padding: 72px 20px;
  }

  .content-intro,
  .institution-band,
  .single-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-intro h2,
  .story-section h2,
  .team-section h2,
  .process-section > h2,
  .values-section > h2,
  .institution-band h2,
  .contact-details h2,
  .junction-section h2 {
    font-size: 43px;
  }

  .feature-grid,
  .question-grid,
  .numbered-grid,
  .destination-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .destination-grid article,
  .question-grid article,
  .numbered-grid article {
    min-height: 0;
  }

  .prepare-page-demo .prepare-demo {
    margin-top: 45px;
  }

  .story-section,
  .team-section,
  .contact-section {
    gap: 45px;
  }

  .contact-form {
    padding: 24px;
  }

  .institution-band {
    align-items: start;
  }

  .article-image {
    width: calc(100% - 40px);
    height: 280px;
    margin-top: -30px;
  }
}

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

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

/* Compass onboarding */
.cej-onboarding-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--navy-500);
}

.cej-onboarding-page .skip-link {
  z-index: 100;
}

.onboarding-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 26px 32px;
  color: var(--white);
  background: var(--navy-500);
}

.onboarding-header-brand {
  display: flex;
  align-items: center;
  gap: 32px;
}

.onboarding-header-brand > a {
  width: 132px;
}

.onboarding-header-brand img {
  width: 100%;
}

.onboarding-header-brand > span {
  width: 1px;
  height: 54px;
  background: rgba(168, 192, 232, 0.35);
}

.onboarding-header-brand strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.onboarding-home-link,
.onboarding-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-400);
  font-size: 16px;
  transition: color 180ms ease;
}

.onboarding-home-link:hover,
.onboarding-back:hover {
  color: var(--white);
}

.onboarding-shell {
  position: relative;
  display: grid;
  grid-template-columns: 276px minmax(0, 930px);
  gap: 46px;
  justify-content: start;
  min-height: calc(100vh - 112px);
  padding: 56px 64px 74px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-500);
}

.onboarding-route-mark {
  position: absolute;
  z-index: 0;
  width: 460px;
  pointer-events: none;
  opacity: 0.075;
}

.onboarding-route-mark-top {
  top: -220px;
  right: -55px;
  transform: rotate(73deg);
}

.onboarding-route-mark-bottom {
  right: 70px;
  bottom: -290px;
  transform: rotate(15deg) scale(1.15);
}

.onboarding-progress,
.onboarding-stage {
  position: relative;
  z-index: 2;
}

.onboarding-progress {
  padding-top: 5px;
}

.onboarding-progress ol {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding-progress ol::before {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 31px;
  width: 1px;
  background: rgba(168, 192, 232, 0.46);
}

.onboarding-progress li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 170px;
  color: rgba(168, 192, 232, 0.72);
}

.onboarding-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-left: 4px;
  border: 1px solid rgba(168, 192, 232, 0.7);
  border-radius: 50%;
  background: var(--navy-500);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.onboarding-progress li.is-active,
.onboarding-progress li.is-complete {
  color: var(--white);
}

.onboarding-progress li.is-active .onboarding-step-number {
  width: 62px;
  height: 62px;
  margin-left: 0;
  color: var(--white);
  border: 5px solid rgba(47, 107, 228, 0.35);
  outline: 2px solid var(--blue-500);
  background: var(--blue-500);
}

.onboarding-progress li.is-complete .onboarding-step-number {
  color: var(--white);
  border-color: var(--blue-500);
  background: var(--blue-500);
}

.onboarding-progress li strong,
.onboarding-progress li small {
  display: block;
}

.onboarding-progress li strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.onboarding-progress li small {
  margin-top: 6px;
  color: var(--sky-300);
  font-size: 14px;
}

.onboarding-stage {
  width: 100%;
  max-width: 930px;
}

.onboarding-panel[hidden] {
  display: none;
}

.onboarding-panel.is-active {
  animation: cej-panel-in 260ms ease both;
}

@keyframes cej-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.onboarding-kicker {
  color: var(--blue-400);
  font-size: 16px;
  font-weight: 600;
}

.onboarding-panel h1,
.onboarding-panel h2 {
  max-width: 850px;
  margin-top: 27px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.onboarding-panel h2 {
  font-size: clamp(46px, 4.7vw, 70px);
}

.onboarding-intro {
  max-width: 760px;
  margin-top: 22px;
  color: var(--sky-300);
  font-size: 18px;
  line-height: 1.55;
}

.onboarding-choice-grid {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.onboarding-choice-grid-primary {
  grid-template-columns: 430px 465px;
  gap: 35px;
}

.onboarding-choice {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 410px;
  padding: 43px 40px 34px;
  text-align: left;
  color: var(--white);
  border: 1px solid rgba(168, 192, 232, 0.75);
  border-radius: 5px;
  background: rgba(16, 28, 54, 0.62);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.onboarding-choice:hover,
.onboarding-choice:focus-visible,
.onboarding-choice[aria-checked="true"] {
  border-color: var(--blue-500);
  background: rgba(47, 107, 228, 0.08);
  box-shadow: inset 0 0 0 1px var(--blue-500);
  transform: translateY(-2px);
}

.onboarding-choice-featured {
  border-color: var(--blue-500);
  box-shadow: inset 0 0 0 1px var(--blue-500);
}

.onboarding-choice-badge {
  position: absolute;
  top: 26px;
  right: 28px;
  padding: 8px 12px;
  color: var(--white);
  border-radius: 4px;
  background: var(--blue-500);
  font-size: 13px;
  font-weight: 600;
}

.onboarding-choice-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: none;
  color: var(--blue-500);
  border: 1px solid var(--blue-500);
  border-radius: 50%;
}

.onboarding-choice-icon .dashicons {
  width: 31px;
  height: 31px;
  font-size: 31px;
}

.onboarding-choice-grid-primary .onboarding-choice {
  flex-direction: column;
}

.onboarding-choice-copy {
  display: block;
}

.onboarding-choice-grid-primary .onboarding-choice-copy {
  margin-top: 40px;
}

.onboarding-choice-copy strong,
.onboarding-choice-copy small {
  display: block;
}

.onboarding-choice-copy strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
}

.onboarding-choice-copy small {
  max-width: 320px;
  margin-top: 18px;
  color: var(--sky-300);
  font-size: 17px;
  line-height: 1.45;
}

.onboarding-choice-action {
  position: absolute;
  right: 27px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  color: var(--white);
  background: var(--blue-500);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.onboarding-choice-featured .onboarding-choice-action,
.onboarding-choice:hover .onboarding-choice-action,
.onboarding-choice:focus-visible .onboarding-choice-action,
.onboarding-choice[aria-checked="true"] .onboarding-choice-action {
  opacity: 1;
  transform: translateX(0);
}

.onboarding-reassurance {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 66px;
  color: var(--sky-300);
  font-size: 15px;
}

.onboarding-reassurance .dashicons {
  color: var(--blue-500);
}

.onboarding-choice-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 850px;
  margin-top: 36px;
}

.onboarding-choice-compact {
  align-items: center;
  gap: 20px;
  min-height: 116px;
  padding: 21px 23px;
}

.onboarding-choice-compact:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.onboarding-choice-compact .onboarding-choice-icon {
  width: 48px;
  height: 48px;
}

.onboarding-choice-compact .onboarding-choice-icon .dashicons {
  width: 23px;
  height: 23px;
  font-size: 23px;
}

.onboarding-choice-compact .onboarding-choice-copy {
  flex: 1;
}

.onboarding-choice-compact .onboarding-choice-copy strong {
  font-size: 17px;
}

.onboarding-choice-compact .onboarding-choice-copy small {
  margin-top: 5px;
  font-size: 13px;
}

.onboarding-radio-dot {
  width: 22px;
  height: 22px;
  flex: none;
  border: 1px solid var(--sky-300);
  border-radius: 50%;
}

.onboarding-choice[aria-checked="true"] .onboarding-radio-dot {
  border: 6px solid var(--blue-500);
  background: var(--white);
}

.onboarding-tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 850px;
  margin-top: 36px;
}

.onboarding-tool {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 132px;
  padding: 26px;
  text-align: left;
  color: var(--white);
  border: 1px solid rgba(168, 192, 232, 0.65);
  border-radius: 5px;
  background: rgba(16, 28, 54, 0.62);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.onboarding-tool:hover,
.onboarding-tool:focus-visible,
.onboarding-tool[aria-pressed="true"] {
  border-color: var(--blue-500);
  background: rgba(47, 107, 228, 0.1);
  transform: translateY(-2px);
}

.onboarding-tool-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  color: transparent;
  border: 1px solid var(--sky-300);
  border-radius: 4px;
}

.onboarding-tool[aria-pressed="true"] .onboarding-tool-check {
  color: var(--white);
  border-color: var(--blue-500);
  background: var(--blue-500);
}

.onboarding-tool strong,
.onboarding-tool small {
  display: block;
}

.onboarding-tool strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
}

.onboarding-tool small {
  margin-top: 8px;
  color: var(--sky-300);
  font-size: 14px;
  line-height: 1.45;
}

.onboarding-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 850px;
  margin-top: 34px;
}

.onboarding-back {
  padding: 12px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.onboarding-next[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
}

.onboarding-plan {
  max-width: 850px;
  margin-top: 36px;
  padding: 30px;
  border: 1px solid var(--blue-500);
  border-radius: 5px;
  background: rgba(47, 107, 228, 0.08);
}

.onboarding-plan-heading {
  display: flex;
  align-items: center;
  gap: 22px;
}

.onboarding-plan-heading > div > span {
  color: var(--blue-400);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.onboarding-plan-heading h3 {
  margin-top: 5px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 27px;
  font-weight: 600;
}

.onboarding-plan-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(168, 192, 232, 0.28);
}

.onboarding-plan-details span,
.onboarding-plan-details strong {
  display: block;
}

.onboarding-plan-details span {
  color: var(--sky-300);
  font-size: 12px;
}

.onboarding-plan-details strong {
  margin-top: 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
}

.onboarding-plan > p {
  max-width: 720px;
  margin-top: 25px;
  color: var(--sky-300);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .onboarding-header {
    min-height: 96px;
    padding: 20px 24px;
  }

  .onboarding-header-brand {
    gap: 20px;
  }

  .onboarding-header-brand > a {
    width: 116px;
  }

  .onboarding-header-brand > span {
    height: 44px;
  }

  .onboarding-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    min-height: calc(100vh - 96px);
    padding: 45px 28px 60px;
  }

  .onboarding-progress {
    padding-top: 0;
  }

  .onboarding-progress li {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    min-height: 145px;
  }

  .onboarding-progress ol::before {
    left: 25px;
  }

  .onboarding-step-number,
  .onboarding-progress li.is-active .onboarding-step-number {
    width: 50px;
    height: 50px;
    margin-left: 0;
  }

  .onboarding-choice {
    min-height: 320px;
    padding: 34px 28px 30px;
  }

  .onboarding-choice-grid-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .onboarding-header {
    min-height: 82px;
    padding: 15px 18px;
  }

  .onboarding-header-brand {
    gap: 14px;
  }

  .onboarding-header-brand > a {
    width: 100px;
  }

  .onboarding-header-brand > span,
  .onboarding-header-brand strong {
    display: none;
  }

  .onboarding-home-link {
    gap: 5px;
    font-size: 13px;
  }

  .onboarding-shell {
    display: block;
    min-height: calc(100vh - 82px);
    padding: 26px 18px 48px;
  }

  .onboarding-route-mark {
    width: 330px;
  }

  .onboarding-route-mark-top {
    top: -90px;
    right: -165px;
  }

  .onboarding-route-mark-bottom {
    right: -110px;
    bottom: -200px;
  }

  .onboarding-progress {
    padding-top: 0;
  }

  .onboarding-progress ol {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .onboarding-progress ol::before {
    top: 20px;
    right: 12.5%;
    bottom: auto;
    left: 12.5%;
    width: auto;
    height: 1px;
  }

  .onboarding-progress li {
    display: flex;
    min-height: 80px;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .onboarding-step-number,
  .onboarding-progress li.is-active .onboarding-step-number {
    width: 40px;
    height: 40px;
    border-width: 1px;
    outline-width: 1px;
    font-size: 14px;
  }

  .onboarding-progress li strong {
    font-size: 10px;
  }

  .onboarding-progress li small {
    display: none;
  }

  .onboarding-stage {
    margin-top: 22px;
  }

  .onboarding-kicker {
    font-size: 13px;
  }

  .onboarding-panel h1,
  .onboarding-panel h2 {
    margin-top: 14px;
    font-size: 40px;
    line-height: 1.08;
  }

  .onboarding-intro {
    margin-top: 16px;
    font-size: 15px;
  }

  .onboarding-choice-grid,
  .onboarding-choice-grid-primary,
  .onboarding-choice-grid-compact,
  .onboarding-tools-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .onboarding-choice-grid-primary .onboarding-choice {
    min-height: 218px;
    padding: 27px 23px 25px;
  }

  .onboarding-choice-icon {
    width: 49px;
    height: 49px;
  }

  .onboarding-choice-icon .dashicons {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .onboarding-choice-copy strong {
    font-size: 21px;
  }

  .onboarding-choice-copy small {
    max-width: 270px;
    margin-top: 10px;
    font-size: 14px;
  }

  .onboarding-choice-badge {
    top: 20px;
    right: 20px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .onboarding-choice-action {
    right: 20px;
    bottom: 22px;
    width: 44px;
    height: 44px;
  }

  .onboarding-reassurance {
    margin-top: 26px;
  }

  .onboarding-choice-compact,
  .onboarding-choice-compact:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 104px;
    padding: 17px;
  }

  .onboarding-tool {
    min-height: 110px;
    padding: 20px;
  }

  .onboarding-actions {
    gap: 18px;
    margin-top: 28px;
  }

  .onboarding-next,
  .onboarding-finish {
    min-width: 0;
    padding-inline: 20px;
  }

  .onboarding-plan {
    margin-top: 28px;
    padding: 22px;
  }

  .onboarding-plan-heading {
    align-items: flex-start;
  }

  .onboarding-plan-heading h3 {
    font-size: 22px;
  }

  .onboarding-plan-details {
    grid-template-columns: 1fr;
  }
}
