:root {
  --black: #050505;
  --ink: rgba(0, 0, 0, 0.88);
  --muted: rgba(0, 0, 0, 0.58);
  --canvas: #f4f4f1;
  --line: rgba(0, 0, 0, 0.12);
  --orange: #fd7e15;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Learning module pages — banner with overlapping content panel */
.module-detail-page .inner-page {
  padding-top: 0;
}

.module-detail-page .site-header {
  border-bottom-color: transparent;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background-color 280ms var(--ease),
    border-color 280ms var(--ease),
    backdrop-filter 280ms var(--ease);
}

.module-detail-page .site-header.is-scrolled-down {
  border-bottom-color: transparent;
  background: transparent;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

@media (min-width: 981px) {
  .module-detail-page .site-header {
    border-bottom-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.module-detail-page .internal-banner-hero {
  width: 100%;
  padding-bottom: 108px;
  overflow: hidden;
  background: transparent;
}

.module-detail-page .internal-banner-media {
  width: 100%;
  height: clamp(430px, 31vw, 600px);
  overflow: hidden;
  background: #eee7dc;
}

.module-detail-page .internal-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.module-detail-page .internal-banner-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 80px));
  min-height: 0;
  margin: -165px auto 0;
  padding: 72px 140px 76px;
  border-radius: 40px;
  background: #fff;
}

.module-detail-page .internal-banner-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, .5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.module-detail-page .internal-banner-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

/* About page */

.module-detail-page .internal-banner-panel h1 {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--black);
  font-size: clamp(76px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -.085em;
  line-height: .86;
}

.module-detail-page .internal-banner-panel h1 em {
  display: block;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.module-detail-page .internal-banner-panel > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(0, 0, 0, .58);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .module-detail-page .internal-banner-panel {
    width: min(100% - 48px, 760px);
    min-height: 0;
    padding: 64px 72px 68px;
  }
}

@media (max-width: 640px) {
  .module-detail-page .inner-page {
    padding-top: 0;
  }

  .module-detail-page .internal-banner-hero {
    padding-bottom: 64px;
  }

  .module-detail-page .internal-banner-media {
    height: 330px;
  }

  .module-detail-page .internal-banner-image {
    object-position: center;
  }

  .module-detail-page .internal-banner-panel {
    width: calc(100% - 32px);
    margin-top: -82px;
    padding: 42px 26px 46px;
    border-radius: 28px;
  }

  .module-detail-page .internal-banner-panel h1 {
    margin-top: 24px;
    font-size: clamp(58px, 18vw, 76px);
  }

  .module-detail-page .internal-banner-panel > p {
    margin-top: 28px;
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.1) 1px, transparent 0) 0 0 / 22px 22px,
    var(--canvas);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

body.has-mobile-menu {
  overflow: hidden;
}

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

button,
summary {
  font: inherit;
}

section {
  scroll-margin-top: 118px;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 126, 21, 0.34) 0%, rgba(253, 126, 21, 0.16) 34%, transparent 70%);
  filter: blur(34px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 260ms var(--ease);
  will-change: transform, opacity;
}

.cursor-glow.is-active {
  opacity: 1;
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 18px 40px;
  color: var(--ink);
}

.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  height: 58px;
  max-width: 160px;
  padding-top: 6px;
  transition:
    opacity 240ms var(--ease),
    transform 240ms var(--ease);
}

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

.menu-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 700;
}

.menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.menu-bar button.menu-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.menu-link::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0;
  content: "";
  transform: scaleX(0.35);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.menu-link:hover,
.mega-root:hover > .menu-link,
.mega-root:focus-within > .menu-link,
.mega-root.is-menu-open > .menu-link {
  background: var(--black);
  color: white;
}

.menu-link:hover::after,
.mega-root:hover > .menu-link::after,
.mega-root:focus-within > .menu-link::after,
.mega-root.is-menu-open > .menu-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.mega-root {
  position: static;
}

.mega-root::after {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.mega-root:hover::after,
.mega-root:focus-within::after,
.mega-root.is-menu-open::after {
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: 55px;
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 28px;
  width: min(1040px, calc(100vw - 40px));
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.mega-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 34px;
  content: "";
}

.mega-root:hover .mega-menu,
.mega-root:focus-within .mega-menu,
.mega-root.is-menu-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.learning-mega {
  grid-template-columns: minmax(320px, 1fr);
  width: min(560px, calc(100vw - 40px));
}

.strategy-mega {
  grid-template-columns: minmax(360px, 1fr);
  width: min(560px, calc(100vw - 40px));
}

.strategy-mega .mega-menu-list {
  display: grid;
  gap: 4px;
}

.strategy-mega .mega-column a {
  min-height: 58px;
}

.mega-column h3 {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-column a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 64px 0 20px;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  transition: background 220ms var(--ease), box-shadow 220ms var(--ease), padding 220ms var(--ease), transform 220ms var(--ease);
}

.mega-column a::after {
  position: absolute;
  right: 8px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: rgba(0, 0, 0, 0.46);
  content: "→";
  font-size: 18px;
  opacity: 1;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.mega-column a:hover {
  padding-left: 28px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.045), rgba(255, 255, 255, 0.92) 72%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.mega-column a:hover::after {
  background: var(--black);
  color: #fff;
  transform: translateX(4px);
}

.mega-column strong {
  display: block;
  color: rgba(0, 0, 0, 0.86);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 560;
}

.menu-cta {
  justify-self: end;
  padding: 13px 22px;
  border-radius: 999px;
  background: #202020;
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) inset, 0 12px 24px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

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

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 820px;
  padding: 180px 28px 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 640px;
  background:
    radial-gradient(circle at 50% 0%, rgba(253, 126, 21, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}


.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


.qa-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}


.qa-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.qa-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-top: 30px;
}

.qa-list details {
  overflow: hidden;
  padding: 0 22px;
}

.qa-list summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 24px 0;
  cursor: pointer;
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

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

.qa-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
  content: "↓";
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition:
    background 240ms var(--ease),
    color 240ms var(--ease),
    transform 280ms var(--ease);
}

.qa-list details[open] summary::after {
  background: var(--black);
  color: #fff;
  transform: rotate(180deg);
}

.qa-list summary:hover::after {
  background: var(--orange);
  color: #fff;
}

.qa-answer {
  overflow: hidden;
  will-change: height, opacity;
}

.qa-list p {
  margin: 0;
  padding-bottom: 22px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(190px, 0.7fr) minmax(190px, 0.7fr) auto;
  gap: 34px;
  align-items: start;
  padding: 44px 0 52px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--muted);
}

.footer-brand img {
  display: block;
  width: 128px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 14px 0 18px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.footer-brand small {
  color: rgba(0, 0, 0, 0.48);
  font-size: 13px;
}

.footer-contact,
.footer-social {
  display: grid;
  gap: 12px;
}

.footer-contact span,
.footer-social span {
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact a {
  color: rgba(0, 0, 0, 0.64);
  font-size: 15px;
  line-height: 1.4;
  transition: color 220ms var(--ease);
}

.footer-contact a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a,
.footer-top {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--black);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  font-weight: 700;
  transition:
    background 240ms var(--ease),
    box-shadow 240ms var(--ease),
    color 240ms var(--ease),
    transform 240ms var(--ease);
}

.social-links a:hover,
.footer-top:hover {
  background: var(--black);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-top {
  align-self: start;
}

.inner-page {
  padding-top: 136px;
}


.detail-overview-section,
.detail-process-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


.detail-section-heading span,
.detail-process-copy span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.internal-mockup-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 92px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 88%, rgba(253, 126, 21, 0.14), transparent 36%),
    #202a2d;
  box-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.internal-mockup-section::before,
.internal-mockup-section::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.internal-mockup-section::before {
  right: 8%;
  bottom: -220px;
  width: 620px;
  height: 620px;
  background: rgba(253, 126, 21, 0.18);
  filter: blur(78px);
  opacity: 0.72;
  animation: mockupSectionGlow 8s ease-in-out infinite;
}

.internal-mockup-section::after {
  top: 72px;
  left: 4%;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(66px);
  opacity: 0.62;
  animation: mockupSectionGlow 9s ease-in-out 1.2s infinite;
}


.product-carousel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.product-carousel {
  position: relative;
  padding: 0 72px 54px;
  --carousel-gap: 22px;
  --carousel-visible: 1.5;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 0;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform 560ms var(--ease);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-visible) - 1))) / var(--carousel-visible));
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1619 / 972;
  object-fit: cover;
  transition: transform 480ms var(--ease);
}

.carousel-slide:hover img {
  transform: scale(1.035);
}

.carousel-slide figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.carousel-control {
  position: absolute;
  top: calc(50% - 27px);
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  transition:
    background 240ms var(--ease),
    box-shadow 240ms var(--ease),
    transform 240ms var(--ease);
}

.carousel-control:hover {
  background: #fff;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.carousel-control span {
  display: block;
  font-size: 36px;
  line-height: 0.8;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  right: 72px;
  bottom: 0;
  left: 72px;
  display: flex;
  gap: 9px;
  justify-content: center;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    background 240ms var(--ease),
    transform 240ms var(--ease),
    width 240ms var(--ease);
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--black);
  transform: scaleY(1.05);
}

.module-detail-page .internal-mockup-section .carousel-dots button {
  background: rgba(255, 255, 255, .34);
}

.module-detail-page .internal-mockup-section .carousel-dots button.is-active {
  background: #fff;
}

.detail-overview-section,
.detail-process-section {
  padding: 86px 0;
}

.detail-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 30px;
}

.detail-section-heading span {
  grid-column: 1 / -1;
}

.detail-section-heading h2,
.detail-process-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.04;
  font-weight: 700;
}

.module-detail-page .detail-process-list {
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, .16);
}

.module-detail-page .detail-process-list article {
  min-height: 112px;
  padding: 26px 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.module-detail-page .detail-process-list article::before {
  display: none;
}

.module-detail-page .detail-process-list article:hover {
  box-shadow: none;
  transform: none;
}

.module-detail-page .module-explorer-heading {
  justify-content: flex-end;
  text-align: right;
}

.module-detail-page .module-explorer-heading h2 {
  margin-left: auto;
}

.detail-section-heading p,
.detail-process-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

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

.detail-capability-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 300ms var(--ease),
    transform 300ms var(--ease);
}

.detail-capability-card:hover {
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.13);
  transform: translateY(-5px);
}

.capability-number {
  display: block;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.detail-capability-card h3 {
  margin: 26px 0 0;
  color: var(--black);
  font-size: 24px;
  line-height: 1.12;
}

.detail-capability-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.detail-process-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.detail-process-copy {
  position: sticky;
  top: 132px;
}

.detail-process-copy h2 {
  margin-top: 18px;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.08;
}

.detail-process-copy p {
  margin-top: 22px;
}

.detail-process-list {
  display: grid;
  gap: 12px;
}

.detail-process-list article {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 124px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.07);
  transition:
    box-shadow 300ms var(--ease),
    transform 300ms var(--ease);
}

.detail-process-list article::before {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(253, 126, 21, 0));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}

.detail-process-list article:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.detail-process-list article:hover::before {
  transform: scaleX(1);
}

.detail-process-list strong {
  color: var(--black);
  font-size: 22px;
}

.detail-process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.module-explorer-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
  padding: 38px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.07);
}

.module-explorer-heading {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.module-explorer-heading span,
.module-explorer-card-copy span {
  color: rgba(0, 0, 0, 0.46);
  font-size: 12px;
  font-weight: 700;
}

.module-explorer-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 650;
  line-height: 1.08;
}

.module-explorer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.module-explorer-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 238px;
  padding: 10px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(245, 245, 242, 0.82);
  color: var(--black);
}

.module-explorer-card.is-current {
  cursor: default;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 3px var(--orange);
}

/* External training request and sponsorship workspace. */
.external-request-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 96px;
}

.external-request-section {
  margin-top: 82px;
}

.external-request-copy {
  align-self: center;
  max-width: 340px;
  margin: 0;
  padding: 28px;
}

.external-request-copy h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 34px;
  font-weight: 650;
  line-height: 1.06;
}

.external-request-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.72;
}

.external-request-board {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 15%, rgba(253, 126, 21, 0.34), transparent 28%),
    radial-gradient(circle at 18% 92%, rgba(253, 126, 21, 0.16), transparent 25%),
    #151515;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.16);
}

.external-request-board.is-approval-only {
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: stretch;
}


.request-approval-preview {
  min-height: 400px;
  border-radius: 28px;
}

.request-approval-preview {
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.external-request-board.is-approval-only .request-approval-preview {
  min-height: 430px;
}

.request-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.request-status-head span { color: rgba(255, 255, 255, 0.62); font-size: 13px; }
.request-status-head strong { color: #fff; font-size: 15px; }

.approval-request-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.approval-request-summary > div {
  min-height: 72px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.approval-request-summary span,
.approval-request-summary strong {
  display: block;
}

.approval-request-summary span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.approval-request-summary strong {
  margin-top: 7px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.approval-request-summary .approval-doc-status { background: rgba(253, 126, 21, 0.14); }

.approval-route {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.approval-route::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 16px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--orange), var(--orange)) top / 100% 0% no-repeat, rgba(255, 255, 255, 0.18);
  content: "";
  animation: approvalProgress 5.6s ease-in-out infinite;
}

.approval-route li {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
  gap: 13px;
  align-items: center;
}

.approval-route i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.approval-route strong,
.approval-route span { display: block; }
.approval-route strong { color: #fff; font-size: 15px; }
.approval-route span { margin-top: 3px; color: rgba(255, 255, 255, 0.56); font-size: 12px; }
.approval-route em { padding: 5px 9px; border-radius: 999px; color: rgba(255, 255, 255, 0.66); background: rgba(255, 255, 255, 0.09); font-size: 11px; font-style: normal; font-weight: 700; }
.approval-route time { min-width: 38px; color: rgba(255, 255, 255, 0.46); font-size: 12px; text-align: right; }
.approval-route .is-complete i { background: #fff; color: var(--black); }
.approval-route .is-complete em { color: #1c1c1c; background: #fff; }
.approval-route .is-active i { background: var(--orange); color: #fff; box-shadow: 0 0 0 7px rgba(253, 126, 21, 0.16); animation: approvalPulse 1.8s ease-in-out infinite; }
.approval-route .is-active em { color: #fff; background: var(--orange); }

@keyframes approvalProgress {
  0%, 16% { background-size: 100% 0%, 100% 100%; }
  48%, 72% { background-size: 100% 48%, 100% 100%; }
  100% { background-size: 100% 0%, 100% 100%; }
}

@keyframes approvalPulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(253, 126, 21, 0.16); }
  50% { box-shadow: 0 0 0 13px rgba(253, 126, 21, 0); }
}

.overseas-sponsorship-section {
  width: 100%;
  padding: 102px 0;
}

.overseas-sponsorship-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.overseas-sponsorship-copy > span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.overseas-sponsorship-copy h2 {
  max-width: 540px;
  margin: 14px 0 20px;
  color: var(--black);
  font-size: clamp(40px, 4.7vw, 62px);
  font-weight: 700;
  line-height: 1.02;
}

.overseas-sponsorship-copy h2 span,
.overseas-sponsorship-copy h2 em {
  display: block;
}

.overseas-sponsorship-copy h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}

.overseas-sponsorship-copy p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

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

.eligibility-preview {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.11);
}

.eligibility-grade-card {
  display: flex;
  min-height: 382px;
  flex-direction: column;
  align-items: center;
  padding: 34px 24px 24px;
  border-radius: 32px;
  text-align: center;
}

.eligibility-avatar-image {
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.72);
}

.eligibility-grade-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 24px;
  line-height: 1.1;
}

.eligibility-grade-card > p {
  margin: 8px 0 26px;
  color: rgba(0, 0, 0, 0.46);
  font-size: 14px;
}

.eligibility-list {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.eligibility-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 13px;
  color: var(--black);
  font-size: 14px;
  font-weight: 650;
  text-align: left;
}

.eligibility-list b {
  color: #4bbf2b;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.eligibility-grade-card.is-limited .eligibility-list li:not(:first-child) b {
  color: #ee3b3b;
}

@keyframes sponsorshipGlow {
  0%, 100% { opacity: 0.42; transform: translate(-50%, -50%) scale(0.84); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.14); }
}

@media (max-width: 860px) {
  
  .external-request-board { grid-template-columns: 1fr; }
  .external-request-board.is-approval-only { grid-template-columns: minmax(0, 1fr); }
  .external-request-board.is-approval-only .external-request-copy { order: 1; }
  .external-request-board.is-approval-only .request-approval-preview {
    order: 2;
    width: 100%;
    min-width: 0;
  }
  .approval-request-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overseas-sponsorship-inner { grid-template-columns: 1fr; gap: 38px; }
  .eligibility-comparison { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .external-request-section { width: min(100% - 28px, 1180px); padding-bottom: 58px; }
  .external-request-section { margin-top: 52px; }
  .external-request-copy { max-width: none; margin: 0; padding: 16px 10px 4px; }
  .external-request-copy h2 { margin-bottom: 12px; font-size: 29px; }
  .external-request-copy p { font-size: 16px; }
  .external-request-board { gap: 12px; padding: 12px; border-radius: 26px; }
  
  .request-approval-preview { min-height: 0; border-radius: 20px; }
  .request-approval-preview { padding: 20px; }
  .external-request-board.is-approval-only .request-approval-preview { min-height: 0; }
  .approval-route { gap: 16px; }
  .approval-route li { grid-template-columns: 32px minmax(0, 1fr) auto; gap: 10px; }
  .approval-route i { width: 32px; height: 32px; }
  .approval-route time { display: none; }
  .overseas-sponsorship-section { padding: 64px 0; }
  .overseas-sponsorship-inner { width: min(100% - 28px, 1180px); gap: 30px; }
  .overseas-sponsorship-copy h2 { font-size: 37px; }
  .overseas-sponsorship-copy p { font-size: 16px; }
  .eligibility-comparison { grid-template-columns: 1fr; gap: 12px; }
  .eligibility-preview { padding: 12px; border-radius: 24px; }
  .eligibility-grade-card { min-height: 0; padding: 26px 18px 18px; }
  .eligibility-avatar-image { width: 76px; height: 76px; margin-bottom: 18px; }
  .eligibility-grade-card h3 { font-size: 22px; }
}

.module-explorer-image {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
  border-radius: 18px;
  background: #fbfbfa;
}

.module-explorer-card-copy {
  display: grid;
  gap: 5px;
  padding: 14px 6px 6px;
}

.module-explorer-card-copy strong {
  font-size: 18px;
  font-weight: 650;
  line-height: 1.18;
}

.module-explorer-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes laptopFloat {
  0%,
  100% {
    transform: translateY(-50%) rotateX(3deg) rotateY(-5deg);
  }
  50% {
    transform: translateY(-52%) rotateX(3.5deg) rotateY(-4deg);
  }
}

@keyframes productRise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatToken {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

@keyframes plusSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes conceptDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes conceptDonut {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.015);
  }
}

@keyframes areaLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes areaLinePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(253, 126, 21, 0));
  }
  50% {
    filter: drop-shadow(0 8px 14px rgba(253, 126, 21, 0.22));
  }
}

@keyframes areaFillBreath {
  0%,
  100% {
    opacity: 0.74;
    transform: scaleY(0.94);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes videoShine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes playPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes selectedAnswerGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(253, 126, 21, 0);
  }
  50% {
    box-shadow: 0 12px 24px rgba(253, 126, 21, 0.18);
  }
}

@keyframes teamRoutePulse {
  0%,
  100% {
    opacity: 0.36;
  }
  50% {
    opacity: 1;
  }
}

@keyframes teamHubFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@keyframes teamNodeRise {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(253, 126, 21, 0.12);
  }
}

@keyframes conceptProgress {
  0%,
  100% {
    transform: scaleX(0.72);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes ctaGradientFlow {
  0%,
  100% {
    background-position: 0 0, 0 0, 0% 50%;
  }
  50% {
    background-position: 0 0, 0 0, 100% 50%;
  }
}

@keyframes ctaLightSweep {
  0%,
  36% {
    left: -38%;
    opacity: 0;
  }
  52% {
    opacity: 0.72;
  }
  78%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

@keyframes insightWindowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pieBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes barRise {
  0%,
  100% {
    transform: scaleY(0.78);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes demandBar {
  0%,
  100% {
    transform: scaleX(0.76);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes workflowRoute {
  0%,
  100% {
    transform: scaleX(0.22);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes integrationLine {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes aiPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.56);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes securityGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(253, 126, 21, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(253, 126, 21, 0.52);
  }
}

@keyframes deployNodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes deployRoute {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(250%);
  }
}

@keyframes deployBlink {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes moduleGlowBreath {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes moduleFrameFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
}

@keyframes moduleRouteMove {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: calc(100% - 10px);
  }
}

@keyframes moduleFloatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes moduleMiniLine {
  0%,
  100% {
    width: 54%;
  }
  50% {
    width: 88%;
  }
}

@keyframes moduleSeatLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes moduleBarRise {
  0%,
  100% {
    transform: scaleY(0.74);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes detailScreenSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes detailCtaLine {
  0%,
  100% {
    opacity: 0.36;
    transform: translateX(-34%);
  }
  50% {
    opacity: 1;
    transform: translateX(34%);
  }
}

@keyframes notificationFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes qrScanLine {
  0%,
  100% {
    transform: translateY(-18px);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes internalMockupFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes internalScreenPan {
  0%,
  100% {
    transform: scale(1.01) translateY(0);
  }
  50% {
    transform: scale(1.04) translateY(-10%);
  }
}

@keyframes mockupSectionGlow {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.92) translateY(0);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.04) translateY(-18px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }

  .brand-link {
    height: 58px;
    max-width: 138px;
    padding-top: 8px;
  }

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

  .site-header.is-scrolled-down .brand-link {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .menu-bar,
  .menu-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 52px;
    height: 52px;
    align-content: center;
    justify-items: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    transition:
      background 220ms var(--ease),
      box-shadow 220ms var(--ease),
      border-color 220ms var(--ease);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
    transition:
      opacity 180ms var(--ease),
      transform 220ms var(--ease),
      background 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--black);
    border-color: var(--black);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  }

  .menu-toggle[aria-expanded="true"] span {
    background: #fff;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-panel {
    position: fixed;
    inset: 98px 16px 18px;
    z-index: 45;
    display: grid;
    align-content: start;
    gap: 12px;
    max-height: calc(100dvh - 116px);
    padding: 18px 18px 42px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }

  .mobile-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel::after {
    display: block;
    min-height: 1px;
    content: "";
  }

  .mobile-link,
  .mobile-menu-group summary,
  .mobile-cta {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(244, 244, 241, 0.92);
    color: var(--black);
    font-weight: 700;
  }

  .mobile-link,
  .mobile-cta {
    display: flex;
    align-items: center;
  }

  .mobile-menu-group {
    min-height: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(244, 244, 241, 0.72);
  }

  .mobile-menu-group summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-group summary::after {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--black);
    content: "↓";
    font-size: 16px;
    transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
  }

  .mobile-menu-group[open] summary {
    background: var(--black);
    color: white;
  }

  .mobile-menu-group[open] summary::after {
    background: var(--orange);
    color: #fff;
    transform: rotate(180deg);
  }

  .mobile-submenu {
    display: grid;
    gap: 8px;
    padding: 12px;
    overflow: visible;
    transform-origin: top;
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
  }

  .mobile-menu-group:not([open]) .mobile-submenu {
    opacity: 0;
    transform: translateY(-6px);
  }

  .mobile-menu-group[open] .mobile-submenu {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-submenu div {
    display: grid;
    gap: 8px;
  }

  .mobile-submenu span {
    padding: 10px 10px 2px;
    color: rgba(0, 0, 0, 0.46);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-submenu a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 14px;
    border-radius: 18px;
    background: #fff;
    color: rgba(0, 0, 0, 0.76);
    font-size: 14px;
    font-weight: 650;
  }

  .mobile-panel .mobile-cta {
    justify-content: center;
    background: var(--black);
    color: white;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 154px 20px 0;
  }

  .inner-page {
    padding-top: 118px;
  }

  .detail-section-heading,
  .detail-process-section {
    grid-template-columns: 1fr;
  }

  .internal-mockup-section {
    padding-bottom: 72px;
  }

  .product-carousel {
    padding-right: 58px;
    padding-left: 58px;
  }

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

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

  .detail-process-copy {
    position: static;
  }

}

@media (max-width: 640px) {
  .brand-link {
    justify-content: center;
    width: auto;
    height: 56px;
    max-width: 104px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .site-header.is-scrolled-down .brand-link {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .hero {
    padding: 126px 14px 0;
  }

  
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  
  .site-footer {
    display: grid;
    padding: 28px;
  }

  .site-header {
    padding: 16px;
  }

  .mobile-panel {
    inset: 102px 14px 16px;
    gap: 12px;
    max-height: calc(100dvh - 118px);
    padding: 16px 16px 40px;
  }

  .hero {
    padding: 140px 18px 0;
  }

  .qa-list {
    gap: 14px;
    margin-top: 28px;
  }

  .qa-list details {
    padding: 0 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 28px 42px;
  }

  .footer-top {
    justify-self: start;
  }

  .inner-page {
    padding-top: 104px;
  }

  
  .detail-overview-section,
  .detail-process-section,
  .module-explorer-section {
    width: min(100% - 28px, 1180px);
  }

  .internal-mockup-section {
    width: 100%;
    padding: 58px 0 54px;
  }

  .product-carousel {
    width: min(100% - 28px, 1180px);
    padding: 0 0 44px;
    --carousel-gap: 14px;
    --carousel-visible: 1;
  }

  :is(.external-training-page, .internal-training-page) .product-carousel {
    --carousel-visible: 1.2;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
  }

  :is(.external-training-page, .internal-training-page) .product-carousel .carousel-control {
    display: none;
  }

  :is(.external-training-page, .internal-training-page) .product-carousel.is-dragging {
    cursor: grabbing;
  }

  :is(.external-training-page, .internal-training-page) .product-carousel .carousel-slide img {
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .carousel-viewport {
    border-radius: 24px;
  }

  .carousel-slide figcaption {
    right: 14px;
    bottom: 14px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .carousel-control {
    top: auto;
    bottom: 0;
    width: 42px;
    height: 42px;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .carousel-control span {
    font-size: 28px;
  }

  .carousel-dots {
    right: 54px;
    bottom: 15px;
    left: 54px;
  }

  .detail-capability-grid {
    grid-template-columns: 1fr;
  }

  .module-explorer-section {
    margin-bottom: 54px;
    padding: 24px;
    border-radius: 30px;
  }

  .module-explorer-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
  }

  .module-explorer-heading h2 {
    font-size: 30px;
  }

  .module-explorer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .module-explorer-card {
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    padding: 10px;
    border-radius: 22px;
  }

  
  .module-explorer-image {
    grid-row: 1;
    height: 86px;
    border-radius: 15px;
  }

  .module-explorer-card-copy {
    padding: 6px 10px;
  }

  .module-explorer-card-copy strong {
    font-size: 17px;
  }

  .module-explorer-arrow {
    right: 16px;
    bottom: 16px;
    width: 30px;
    height: 30px;
    opacity: 1;
    transform: none;
  }

  .detail-overview-section,
  .detail-process-section {
    padding: 58px 0;
  }

  .detail-section-heading {
    gap: 18px;
    margin-bottom: 22px;
  }

  .detail-section-heading h2,
  .detail-process-copy h2 {
    font-size: 36px;
  }

  .detail-section-heading p,
  .detail-process-copy p {
    font-size: 16px;
  }

  .detail-capability-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .detail-process-section {
    gap: 26px;
  }

  .detail-process-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .detail-process-list article:hover {
    transform: translateY(-3px);
  }
}

/* Online learning page */

.online-course-summary {
  position: relative;
  z-index: 1;
  display: block;
  padding: 22px;
  border-radius: 20px;
  background: var(--black);
  color: #fff;
  margin-bottom: 14px;
}

.online-course-summary > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.online-course-summary > strong {
  display: block;
  margin: 8px 0 20px;
  font-size: 27px;
  line-height: 1.3;
}

.online-course-summary > div {
  position: relative;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.online-course-summary > div i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width 1200ms cubic-bezier(.22, 1, .36, 1);
}

.online-course-summary.is-progress-visible > div i {
  width: 62%;
}

.online-course-summary > div b {
  position: absolute;
  right: 0;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
}

@keyframes interactivePanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes multipleChoiceProgress {
  0%, 18% { opacity: 0.35; }
  28%, 100% { opacity: 1; }
}

@keyframes multipleChoiceAnswer {
  0%, 28% {
    border-color: rgba(0, 0, 0, 0.09);
    background: #fff;
    box-shadow: none;
  }
  40%, 88% {
    border-color: #49a363;
    background: #f0f8f2;
    box-shadow: inset 3px 0 0 #49a363;
  }
  100% {
    border-color: rgba(0, 0, 0, 0.09);
    background: #fff;
    box-shadow: none;
  }
}

@keyframes multipleChoiceAnswerIcon {
  0%, 28%, 100% { background: #efeee9; color: var(--black); transform: scale(1); }
  40%, 88% { background: #49a363; color: #fff; transform: scale(1.08); }
}

@keyframes multipleChoiceFeedback {
  0%, 34%, 100% { opacity: 0; transform: translateY(14px) scale(0.96); }
  44%, 88% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes multipleChoiceNext {
  0%, 48%, 100% { opacity: 0.45; transform: translateX(0); }
  58%, 88% { opacity: 1; transform: translateX(4px); }
}

@keyframes timelineProgressX {
  0%, 8% { transform: scaleX(0); }
  78%, 92% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@keyframes timelineProgressY {
  0%, 8% { transform: scaleY(0); }
  78%, 92% { transform: scaleY(1); }
  100% { transform: scaleY(0); }
}

@keyframes timelineCardReveal {
  0%, 8% { opacity: 0.28; transform: translateY(8px); }
  18%, 72% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0.28; transform: translateY(0); }
}

@keyframes timelineNodePulse {
  0%, 8% {
    background: #aaa8a1;
    box-shadow: 0 0 0 1px #aaa8a1;
    transform: translate(-50%, -50%) scale(1);
  }
  18%, 72% {
    background: var(--orange);
    box-shadow: 0 0 0 1px var(--orange), 0 0 0 8px rgba(253, 126, 21, 0.14);
    transform: translate(-50%, -50%) scale(1.08);
  }
  90%, 100% {
    background: #aaa8a1;
    box-shadow: 0 0 0 1px #aaa8a1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes dragMovingWord {
  0%, 14% { opacity: 0; transform: translate(-50%, 0) scale(1); }
  18% { opacity: 1; transform: translate(-50%, 0) scale(1.04); }
  46% { opacity: 1; transform: translate(-50%, var(--drag-distance)) scale(0.96); }
  52%, 100% { opacity: 0; transform: translate(-50%, var(--drag-distance)) scale(0.96); }
}

@keyframes dragSourceWord {
  0%, 14%, 88%, 100% { opacity: 1; }
  20%, 82% { opacity: 0; }
}

@keyframes dragTargetState {
  0%, 40%, 90%, 100% {
    border-color: #c5c3bc;
    background: #f5f4f0;
    transform: scale(1);
  }
  48%, 82% {
    border-color: #49a363;
    background: #f0f8f2;
    transform: scale(1.03);
  }
}

@keyframes dragPlacedWord {
  0%, 44%, 90%, 100% { opacity: 0; }
  50%, 84% { opacity: 1; }
}

@keyframes dragSuccessMessage {
  0%, 50%, 92%, 100% { opacity: 0; transform: translateY(8px); }
  58%, 84% { opacity: 1; transform: translateY(0); }
}

@keyframes juxtapositionImageReveal {
  0%, 10%, 100% { clip-path: inset(0 72% 0 0); }
  44%, 66% { clip-path: inset(0 28% 0 0); }
  90% { clip-path: inset(0 72% 0 0); }
}

@keyframes juxtapositionDivider {
  0%, 10%, 100% { left: 28%; }
  44%, 66% { left: 72%; }
  90% { left: 28%; }
}

@keyframes fillBlanksWrongType {
  0%, 10%, 100% { width: 0; }
  22%, 34% { width: 48px; }
  44%, 100% { width: 0; }
}

@keyframes fillBlanksCorrectType {
  0%, 52% { width: 0; }
  70%, 90% { width: 104px; }
  100% { width: 0; }
}

@keyframes fillBlanksCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes fillBlanksInputState {
  0%, 12%, 44%, 100% { border-color: #aeaca4; background: #f6f5f1; }
  22%, 34% { border-color: #ba3939; background: #fff3f3; }
  70%, 90% { border-color: #49a363; background: #f0f8f2; }
}

@keyframes fillBlanksFeedback {
  0%, 74%, 94%, 100% { opacity: 0; transform: translateY(8px); }
  80%, 90% { opacity: 1; transform: translateY(0); }
}

@keyframes fillBlanksWrongFeedback {
  0%, 24%, 48%, 100% { opacity: 0; transform: translateY(8px); }
  30%, 42% { opacity: 1; transform: translateY(0); }
}

@keyframes onlinePresenter {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(2deg); }
}

@keyframes onlinePulse {
  0% { box-shadow: 0 0 0 0 rgba(253, 126, 21, 0.38); }
  70%, 100% { box-shadow: 0 0 0 22px rgba(253, 126, 21, 0); }
}

@keyframes onlineQuestion {
  0%, 15% { opacity: 0; transform: translateY(16px) scale(0.98); }
  25%, 82% { opacity: 1; transform: translateY(0) scale(1); }
  92%, 100% { opacity: 0; transform: translateY(-8px) scale(0.99); }
}

@keyframes onlineScrub {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.35); }
}

@media (max-width: 640px) {
  .online-course-summary { padding: 18px; border-radius: 17px; }
}

/* Micro Learning detail page */

@keyframes microPlayPulse {
  0%, 35% { box-shadow: 0 0 0 0 rgba(253, 126, 21, 0.42); }
  75%, 100% { box-shadow: 0 0 0 14px rgba(253, 126, 21, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow {
    display: none;
  }

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

/* Karas Journal */

/* Blog article */

/* AI-powered learning */
.menu-link.is-current { background: var(--black); color: #fff; }
@keyframes aiFloat { 50% { transform:translateY(-11px) rotate(1deg); } } @keyframes aiBars { from { transform:scaleY(.05); } }

/* Keep the AI page inside the core Karas palette. */

/* Training operations */@keyframes opsPhotoDrift { 50% { transform:scale(1.028) translate(-5px,-5px); } }@keyframes opsImageSwap { from { opacity:0; transform:scale(.96); } to { opacity:1; transform:scale(1); } }

/* Operations notifications heading */

/* Workflow & Claims */

/* Simplified Workflow & Claims visuals */

/* Claims layout aligned with Training Records */

/* Claims & Reimbursements: quiet bento layout */

/* Refined claims bento proportions */

/* Detailed workflow functions */

/* Insights & Reporting */

/* Enterprise Platform */

/* Homepage typography refinement */

/* Homepage learning-mode artwork: present every image directly without the
   dark screenshot frame. */

/* Micro Learning — align existing content with the shared module-page typography. */
/* Book demo page */
