:root {
  --bg: #04131c;
  --bg-deep: #020d14;
  --surface: #0a202b;
  --surface-2: #0d2a36;
  --surface-3: #113743;
  --line: rgba(132, 211, 218, 0.24);
  --line-strong: rgba(70, 220, 215, 0.48);
  --muted: #b9d0d5;
  --text: #f8fcfd;
  --accent: #2ed2cf;
  --accent-2: #19aeb8;
  --professional: #2ed2cf;
  --student: #58a7ff;
  --patient: #7bd957;
  color-scheme: dark;
}

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

body {
  background:
    radial-gradient(circle at 82% 8%, rgba(30, 139, 151, 0.11), transparent 30rem),
    linear-gradient(180deg, #04131c 0%, #061924 56%, #04131c 100%);
}

body.high-contrast {
  --bg: #00080d;
  --surface: #071b24;
  --surface-2: #0a2732;
  --line: rgba(174, 242, 244, 0.46);
  --muted: #e2eff1;
  --text: #ffffff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #ffe78a;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #ffffff;
  color: #03151d;
  font-weight: 900;
}

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

.brand-mark {
  width: 50px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--accent);
}

.login-layout {
  position: relative;
  isolation: isolate;
  width: min(1320px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.68fr);
  gap: clamp(40px, 6vw, 92px);
}

.login-layout::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(2, 13, 20, 0.98) 0%, rgba(2, 13, 20, 0.88) 45%, rgba(2, 13, 20, 0.5) 100%),
    url("./academy-hero-clean.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0.64;
}

.login-layout::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(2, 13, 20, 0.92));
}

.brand-large {
  margin-bottom: clamp(64px, 9vh, 110px);
}

.login-showcase h1 {
  max-width: 760px;
  margin-top: 20px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.login-showcase h1 em {
  color: var(--accent);
}

.lead {
  color: #e1eef0;
}

.trust-row span {
  border-color: rgba(128, 224, 224, 0.34);
  background: rgba(5, 27, 37, 0.78);
  color: #e7f4f5;
  backdrop-filter: blur(10px);
}

.trust-row {
  padding: 0;
  list-style: none;
}

.trust-row li {
  padding: 10px 14px;
  border: 1px solid rgba(128, 224, 224, 0.34);
  border-radius: 999px;
  background: rgba(5, 27, 37, 0.78);
  color: #e7f4f5;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.login-card {
  border-color: rgba(116, 220, 220, 0.34);
  background: rgba(4, 23, 32, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(22px);
}

.academy-app {
  min-height: 100vh;
  display: block;
}

.academy-main {
  min-width: 0;
  padding: 0 clamp(16px, 3.2vw, 54px) 34px;
}

.academy-sidebar {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 84px;
  margin: 0 calc(clamp(16px, 3.2vw, 54px) * -1);
  padding: 0 clamp(16px, 3.2vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 17, 25, 0.86);
  backdrop-filter: blur(20px);
}

.topbar-brand {
  flex: 0 0 auto;
  text-decoration: none;
}

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

.topbar-brand strong {
  font-size: 20px;
}

.topbar-brand span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 26px);
}

.topbar-nav a {
  position: relative;
  padding: 12px 6px;
  color: #c1d5d9;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.topbar-nav a::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 5px;
  left: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.topbar-nav a:hover,
.topbar-nav a.active {
  color: #ffffff;
}

.topbar-nav a:hover::after,
.topbar-nav a.active::after {
  transform: scaleX(1);
}

.topbar-account {
  min-width: 0;
}

.topbar-greeting {
  min-width: 0;
  text-align: right;
}

.topbar-greeting strong {
  margin: 0;
  font-size: 14px;
}

.topbar-greeting .account-chip {
  display: block;
  max-width: 250px;
  margin-top: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 11px;
}

.account-avatar {
  border-color: var(--line-strong);
  background: #071c26;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  min-height: 470px;
  margin-top: 26px;
  padding: clamp(28px, 4.6vw, 68px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.5fr);
  align-items: end;
  overflow: hidden;
  border-color: rgba(86, 221, 219, 0.3);
  background:
    linear-gradient(90deg, rgba(2, 16, 24, 0.98) 0%, rgba(2, 16, 24, 0.92) 40%, rgba(2, 16, 24, 0.46) 72%, rgba(2, 16, 24, 0.72) 100%),
    #071d28;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./academy-hero-clean.jpg");
  background-repeat: no-repeat;
  background-size: auto 285%;
  background-position: 55% top;
  filter: saturate(0.92) contrast(1.04);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 15, 23, 0.03) 35%, rgba(2, 15, 23, 0.9) 100%),
    linear-gradient(90deg, rgba(2, 15, 23, 0.98) 0%, rgba(2, 15, 23, 0.82) 44%, rgba(2, 15, 23, 0.18) 76%, rgba(2, 15, 23, 0.66) 100%);
}

.hero-copy {
  max-width: 820px;
}

.hero-panel h1 {
  margin: 16px 0 18px;
  font-size: clamp(44px, 5vw, 76px);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.42);
}

.hero-panel h1 em {
  color: var(--accent);
}

.hero-panel p {
  max-width: 680px;
  color: #e2eef0;
  font-size: clamp(15px, 1.35vw, 19px);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(920px, 100%);
  margin: 30px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(97, 225, 221, 0.32);
  border-radius: 17px;
  background: rgba(4, 27, 37, 0.72);
  backdrop-filter: blur(13px);
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 74px;
  padding: 13px 15px;
  color: #f0f8f9;
  font-size: 12px;
  font-weight: 760;
}

.benefit-item + .benefit-item {
  border-left: 1px solid rgba(117, 222, 220, 0.23);
}

.benefit-item svg {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(46, 210, 207, 0.25));
}

.continue-panel {
  min-height: 280px;
  border-color: rgba(100, 230, 226, 0.42);
  background: rgba(3, 24, 33, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.continue-panel p {
  color: #d7e7e9;
  font-size: 14px;
}

.continue-button,
.onboarding-action {
  transition: transform 180ms ease, filter 180ms ease;
}

.continue-button:hover,
.onboarding-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.onboarding-section {
  max-width: 1450px;
  margin: 26px auto 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(94, 212, 216, 0.28);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(13, 47, 59, 0.94), rgba(6, 29, 39, 0.96));
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(450px, 1.4fr) auto;
  align-items: center;
  gap: 28px;
}

.onboarding-section h2 {
  margin: 4px 0 8px;
  font-size: 28px;
}

.onboarding-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.onboarding-steps li > strong {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(46, 210, 207, 0.17);
  color: var(--accent);
}

.onboarding-steps span {
  color: #bcd1d5;
  font-size: 12px;
  line-height: 1.4;
}

.onboarding-steps b {
  display: block;
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 13px;
}

.onboarding-action {
  min-width: 170px;
  padding: 13px 16px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(90deg, var(--accent), #57a9f3);
  color: #03212b;
  font-weight: 950;
  cursor: pointer;
}

.catalog-section {
  margin-top: 42px;
}

.section-heading h2 {
  color: #ffffff;
}

.section-heading p,
.search-box span {
  color: var(--muted);
}

.search-box input {
  border-color: rgba(131, 211, 219, 0.33);
  background: rgba(6, 29, 39, 0.9);
}

.filter-tabs {
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  margin: 22px 0 24px;
  border-color: rgba(117, 213, 217, 0.26);
  background: rgba(5, 26, 35, 0.92);
}

.filter {
  min-height: 42px;
  padding: 10px 17px;
  color: #c5d8dc;
}

.filter.active {
  background: linear-gradient(135deg, rgba(46, 210, 207, 0.3), rgba(33, 135, 148, 0.38));
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(86, 226, 222, 0.25);
}

.course-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.course-group {
  min-width: 0;
  grid-column: 1 / -1;
}

.course-group[hidden] {
  display: none;
}

.course-group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.course-group-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
}

.course-group-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.course-group-count {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #cbe0e3;
  font-size: 11px;
}

.course-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 340px);
  gap: 17px;
  margin: 0 -4px;
  padding: 4px 4px 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-color: rgba(69, 206, 205, 0.52) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

.course-rail::-webkit-scrollbar {
  height: 8px;
}

.course-rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.course-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(69, 206, 205, 0.52);
}

.course-card {
  --card-accent: var(--professional);
  min-height: 398px;
  scroll-snap-align: start;
  border-color: color-mix(in srgb, var(--card-accent) 45%, transparent);
  background:
    radial-gradient(circle at 22% 0%, color-mix(in srgb, var(--card-accent) 22%, transparent), transparent 38%),
    linear-gradient(180deg, color-mix(in srgb, var(--card-accent) 9%, #0a2531), #071d27 62%);
}

.course-card.kind-course,
.course-card.kind-tool,
.course-card.audience-professionals {
  --card-accent: var(--professional);
}

.course-card.audience-students {
  --card-accent: var(--student);
}

.course-card.audience-patients {
  --card-accent: var(--patient);
}

.course-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--card-accent) 76%, #0b3643);
  color: #031b25;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--card-accent) 20%, transparent);
}

.status-badge {
  color: color-mix(in srgb, var(--card-accent) 72%, white);
}

.course-type {
  color: color-mix(in srgb, var(--card-accent) 77%, white);
}

.course-card p {
  color: #c4d7da;
}

.course-meta {
  color: #9abdc4;
}

.course-progress {
  margin-top: auto;
  padding-top: 18px;
}

.course-progress-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #bcd2d6;
  font-size: 11px;
}

.course-progress-copy strong {
  color: #ffffff;
  font-size: 14px;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
}

.progress-fill {
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent) 72%, #ffffff), var(--card-accent));
  transform-origin: left;
  animation: progress-reveal 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.course-progress-detail {
  display: block;
  min-height: 17px;
  margin-top: 7px;
  color: #91b1b8;
  font-size: 10px;
}

.course-button {
  margin-top: 13px;
  border-color: color-mix(in srgb, var(--card-accent) 55%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent) 70%, #0c3d4b), var(--card-accent));
  color: #031b24;
}

.course-button:disabled {
  color: #a8bdc2;
}

.course-card .course-rating {
  margin-top: 13px;
}

.empty-catalog {
  padding: 34px;
  border-color: rgba(139, 211, 218, 0.3);
  background: rgba(8, 32, 43, 0.5);
  color: #c7dadd;
}

.resource-section {
  margin-top: 42px;
  gap: 22px;
}

.resource-card {
  min-height: 150px;
  gap: 17px;
  padding: 26px;
  border-color: rgba(125, 208, 214, 0.25);
  background:
    linear-gradient(145deg, rgba(13, 43, 54, 0.94), rgba(6, 29, 39, 0.96));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

button.resource-card {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.resource-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.resource-icon {
  flex-basis: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(46, 210, 207, 0.14);
  color: var(--accent);
  font-size: 18px;
}

.resource-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card p {
  color: #bcd1d5;
  font-size: 13px;
}

.resource-copy {
  display: block;
}

.resource-description {
  display: block;
  margin-top: 6px;
  color: #bcd1d5;
  font-size: 13px;
  line-height: 1.45;
}

.account-section {
  scroll-margin-top: 104px;
  max-width: 1450px;
  margin: 42px auto 0;
  padding-top: 8px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.account-grid article {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 32, 43, 0.78);
}

.account-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(46, 210, 207, 0.14);
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
}

.account-grid p,
.account-grid small,
.account-grid li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.account-grid p {
  margin: 7px 0;
}

.account-grid ol {
  margin: 8px 0 0;
  padding-left: 18px;
}

.account-grid button {
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(46, 210, 207, 0.1);
  color: #eaf7f8;
  cursor: pointer;
}

.support-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 500;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.support-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 11px 17px;
  border: 1px solid rgba(93, 229, 224, 0.5);
  border-radius: 999px;
  background: linear-gradient(135deg, #0b5660, #087781);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
  cursor: pointer;
}

.support-launcher span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  letter-spacing: -1px;
}

.support-panel {
  position: relative;
  width: min(340px, calc(100vw - 28px));
  padding: 22px;
  border: 1px solid rgba(106, 225, 222, 0.4);
  border-radius: 20px;
  background: rgba(4, 24, 33, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.support-panel strong {
  display: block;
  padding-right: 28px;
  font-size: 18px;
}

.support-panel p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.support-panel a {
  display: flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent), #54a9f1);
  color: #03202a;
  font-weight: 900;
  text-decoration: none;
}

.support-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.academy-footer {
  padding-bottom: 78px;
  color: #96b4ba;
}

@keyframes progress-reveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1160px) {
  .topbar-nav {
    gap: 6px;
  }

  .topbar-nav a {
    font-size: 13px;
  }

  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.44fr);
  }

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

  .benefit-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(117, 222, 220, 0.23);
  }

  .benefit-item:nth-child(4) {
    border-top: 1px solid rgba(117, 222, 220, 0.23);
  }

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

  .onboarding-action {
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .login-layout {
    width: min(520px, calc(100% - 28px));
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 24px 0;
  }

  .login-showcase {
    display: none;
  }

  .login-card {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
  }

  .academy-main {
    padding: 0 16px 26px;
  }

  .topbar {
    margin: 0 -16px;
    padding: 0 16px;
  }

  .topbar > div:first-of-type {
    margin-right: 0;
  }

  .menu-button {
    display: block;
    order: -1;
  }

  .topbar-brand {
    margin-right: auto;
  }

  .topbar-nav {
    display: none;
  }

  .topbar-account {
    flex: 0 1 auto;
  }

  .academy-sidebar {
    display: flex;
    position: fixed;
    inset: 0 auto 0 0;
    width: min(310px, 86vw);
    transform: translateX(-105%);
    transition: transform 200ms ease;
  }

  .academy-sidebar.open {
    transform: translateX(0);
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .continue-panel {
    min-height: 210px;
  }

  .resource-section,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .account-grid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .login-layout {
    width: calc(100% - 20px);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  }

  .login-layout::before {
    background-position: 69% top;
  }

  .login-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .login-card h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .login-card > p {
    font-size: 15px;
  }

  .topbar {
    min-height: 70px;
  }

  .topbar-brand .brand-mark {
    width: 34px;
    height: 30px;
  }

  .topbar-brand strong {
    font-size: 16px;
  }

  .topbar-brand span {
    font-size: 8px;
  }

  .topbar-greeting {
    display: none;
  }

  .account-avatar {
    width: 36px;
    height: 36px;
  }

  .hero-panel {
    min-height: 0;
    margin-top: 12px;
    padding: 28px 18px 20px;
    border-radius: 20px;
  }

  .hero-panel::before {
    background-size: auto 205%;
    background-position: 72% top;
    opacity: 0.46;
  }

  .hero-panel::after {
    background: linear-gradient(180deg, rgba(2, 15, 23, 0.62), rgba(2, 15, 23, 0.96) 58%);
  }

  .hero-panel h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero-panel p {
    font-size: 15px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: 62px;
    padding: 10px 13px;
  }

  .benefit-item + .benefit-item,
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) {
    border-top: 1px solid rgba(117, 222, 220, 0.23);
    border-left: 0;
  }

  .benefit-item svg {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .onboarding-section {
    padding: 22px 18px;
  }

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

  .onboarding-steps li {
    min-height: 0;
  }

  .catalog-section {
    margin-top: 34px;
  }

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

  .filter-tabs {
    width: 100%;
  }

  .course-group-heading {
    align-items: flex-start;
  }

  .course-rail {
    grid-auto-columns: minmax(270px, 88vw);
  }

  .course-card {
    min-height: 390px;
  }

  .resource-section,
  .account-section {
    margin-top: 34px;
  }

  .resource-card,
  .account-grid article {
    padding: 20px;
  }

  .support-launcher b {
    display: none;
  }

  .support-launcher {
    width: 52px;
    padding: 10px;
  }

  .support-launcher span {
    width: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
