: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 */

/* About page */

* {
  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;
}

.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);
}

/* External training request and sponsorship workspace. */

@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); }
}

@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); }
}

.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;
}

@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;
  }

}

@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;
  }
}

/* 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 */
.ai-learning-page { background: #f7f7f5; }
.ai-learning-page .site-header { background: linear-gradient(#f7f7f5 0%, rgba(247,247,245,0) 100%); }
.menu-link.is-current { background: var(--black); color: #fff; }
.ai-hero, .ai-capabilities { width: min(1380px, calc(100% - 80px)); margin: 0 auto; }
.ai-hero { display: grid; grid-template-columns: .98fr 1.02fr; gap: 6.5vw; min-height: 780px; align-items: center; padding: 145px 0 72px; }
.ai-hero-copy { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 48px 0; }
.ai-hero h1 { margin: 27px 0 26px; max-width: 620px; color: #080808; font-size: clamp(65px, 7.3vw, 122px); font-weight: 700; letter-spacing: -.082em; line-height: .86; }
.ai-hero h1 em { color: #ff7053; font-family: Georgia, serif; font-size: .92em; font-weight: 400; letter-spacing: -.08em; }
.ai-hero-intro { max-width: 460px; margin: 0; color: rgba(0,0,0,.66); font-size: 18px; line-height: 1.7; }
.ai-text-link { display: inline-flex; align-items: center; gap: 15px; width: fit-content; margin-top: 37px; padding-bottom: 7px; border-bottom: 1px solid #111; font-size: 14px; font-weight: 750; transition: gap .3s var(--ease), color .3s var(--ease); }
.ai-text-link span { font-size: 19px; line-height: .7; }.ai-text-link:hover { gap: 22px; color: #ff7053; }
.ai-hero-stage { position: relative; min-height: 635px; overflow: hidden; border-radius: 32px; background: #e9eae7; box-shadow: inset 0 0 0 1px rgba(0,0,0,.035); isolation: isolate; }
.ai-capabilities { padding:76px 0 130px; }.ai-capabilities-heading { display:grid; grid-template-columns:1fr 1.1fr; gap:20px; padding-bottom:72px; }.ai-capabilities-heading h2 { grid-column:1; margin:20px 0 0; font-size:clamp(41px,4.6vw,72px); letter-spacing:-.07em; line-height:.95; }.ai-capabilities-heading > p:last-child { align-self:end; max-width:405px; margin:0 0 5px; color:rgba(0,0,0,.59); font-size:16px; line-height:1.7; }
.ai-feature { display:grid; grid-template-columns:74px 1fr 1fr; gap:42px; min-height:520px; padding:48px 0; border-top:1px solid rgba(0,0,0,.13); }.ai-feature-number { color:#ff7053; font-size:12px; font-weight:800; }.ai-feature-label { margin:0; color:rgba(0,0,0,.44); font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }.ai-feature h3 { margin:22px 0 22px; font-size:clamp(36px,3.6vw,57px); letter-spacing:-.07em; line-height:.94; }.ai-feature-content > p:not(.ai-feature-label) { max-width:415px; margin:0; color:rgba(0,0,0,.62); font-size:15px; line-height:1.68; }.ai-feature ul { padding:0; margin:28px 0 0; list-style:none; }.ai-feature li { position:relative; padding:10px 0 10px 20px; border-top:1px solid rgba(0,0,0,.1); color:rgba(0,0,0,.68); font-size:13px; font-weight:600; }.ai-feature li::before { position:absolute; top:12px; left:0; color:#ff7053; content:"✦"; }.ai-feature-visual { position:relative; min-height:400px; overflow:hidden; border-radius:25px; background:#e8ece8; }.ai-feature-reverse .ai-feature-content { grid-column:2; }.ai-feature-reverse .ai-feature-visual { grid-column:3; }
.ai-match-visual { padding:30px; background:linear-gradient(140deg,#e5ede7,#d6dfdb); }.ai-match-title { margin-bottom:28px; color:rgba(0,0,0,.5); font-size:12px; }.ai-match-title strong { color:#101b1c; }.ai-match-row { display:flex; align-items:center; gap:12px; margin:11px 0; padding:13px; border-radius:14px; background:rgba(255,255,255,.83); box-shadow:0 8px 16px rgba(0,0,0,.04); transition:transform .3s var(--ease); }.ai-match-row:hover { transform:translateX(8px); }.ai-avatar { display:grid; flex:0 0 auto; width:34px; height:34px; place-items:center; border-radius:50%; background:#ff9d87; color:#fff; font-size:12px; font-weight:800; }.ai-avatar-dark { background:#263639; }.ai-avatar-orange { background:#f79434; }.ai-match-row div { flex:1; }.ai-match-row b { display:block; font-size:12px; }.ai-match-row small { color:rgba(0,0,0,.45); font-size:10px; }.ai-match-row i { font-style:normal; font-size:19px; }
.ai-create-visual { padding:25px; background:#20292b; }.ai-create-top { display:flex; justify-content:space-between; color:rgba(255,255,255,.72); font-size:11px; font-weight:700; }.ai-prompt { display:flex; gap:12px; align-items:flex-start; margin:62px 0 17px; padding:16px; border-radius:15px 15px 3px 15px; background:#ff8069; color:#fff; }.ai-prompt span { font-size:18px; }.ai-prompt p { margin:0; font-size:13px; font-weight:600; line-height:1.48; }.ai-create-result { padding:18px; border-radius:14px; background:#f4f4f0; box-shadow:0 14px 28px rgba(0,0,0,.19); }.ai-create-result small { color:#fe725d; font-size:10px; font-weight:800; text-transform:uppercase; }.ai-create-result b { display:block; margin:8px 0 13px; font-size:12px; line-height:1.35; }.ai-create-result span { display:block; margin-top:5px; padding:7px 9px; border:1px solid rgba(0,0,0,.1); border-radius:6px; color:rgba(0,0,0,.57); font-size:10px; }
.ai-insight-visual { padding:29px; background:linear-gradient(135deg,#e4e5dd,#d8d8d0); }.ai-chart-head { display:flex; justify-content:space-between; }.ai-chart-head small { display:block; color:rgba(0,0,0,.47); font-size:11px; }.ai-chart-head b { display:block; margin-top:5px; font-size:16px; }.ai-chart-head > span { padding:7px 9px; height:fit-content; border-radius:99px; background:rgba(255,255,255,.65); color:#3c795d; font-size:9px; font-weight:800; }.ai-bars { display:flex; height:170px; gap:10px; align-items:end; margin:39px 0 17px; border-bottom:1px solid rgba(0,0,0,.12); }.ai-bars i { flex:1; height:var(--h); border-radius:7px 7px 0 0; background:#25383a; animation: aiBars 1.2s var(--ease) both; transform-origin:bottom; }.ai-bars i:nth-child(2n) { background:#ff8068; }.ai-insight-callout { display:flex; gap:10px; align-items:center; padding:12px; border-radius:12px; background:rgba(255,255,255,.72); }.ai-insight-callout span { color:#27895f; font-size:15px; font-weight:800; }.ai-insight-callout p { margin:0; color:rgba(0,0,0,.61); font-size:11px; font-weight:600; }
@keyframes aiFloat { 50% { transform:translateY(-11px) rotate(1deg); } } @keyframes aiBars { from { transform:scaleY(.05); } }
@media (max-width: 820px) { .ai-hero,.ai-capabilities { width:min(100% - 40px,640px); }.ai-hero { grid-template-columns:1fr; gap:18px; min-height:0; padding:140px 0 60px; }.ai-hero-copy { padding:0; }.ai-hero h1 { font-size:clamp(61px,17vw,98px); }.ai-hero-stage { min-height:510px; }.ai-capabilities { padding:54px 0 70px; }.ai-capabilities-heading { display:block; padding-bottom:42px; }.ai-capabilities-heading h2 { margin:19px 0 24px; }.ai-feature { grid-template-columns:40px 1fr; gap:15px; min-height:0; padding:40px 0; }.ai-feature-content,.ai-feature-reverse .ai-feature-content { grid-column:2; }.ai-feature-visual,.ai-feature-reverse .ai-feature-visual { grid-column:1 / -1; min-height:360px; margin-top:17px; } }
@media (prefers-reduced-motion: reduce) { .ai-bars i { animation:none; } }

/* Keep the AI page inside the core Karas palette. */
.ai-learning-page { background: radial-gradient(circle at 1px 1px, rgba(0,0,0,.1) 1px, transparent 0) 0 0 / 22px 22px, var(--canvas); }
.ai-learning-page .site-header { background: linear-gradient(var(--canvas), rgba(244,244,241,0)); }
.ai-hero h1 em, .ai-text-link:hover, .ai-feature-number, .ai-feature li::before, .ai-create-result small { color: var(--orange); }
.ai-hero-stage { background: #ebebe6; }
.ai-hero-stage { background:#f4f0eb; }
.ai-glow-stage {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 208, 53, 0.18), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(255, 104, 26, 0.32), transparent 46%),
    #171411;
}
.ai-glow-field { position:absolute; inset:0; overflow:hidden; isolation:isolate; }
.ai-glow-field::after {
  position:absolute;
  inset:0;
  z-index:4;
  background:linear-gradient(125deg, rgba(255,255,255,.08), transparent 31%, transparent 69%, rgba(255,172,37,.14));
  content:"";
  mix-blend-mode:screen;
}
.ai-glow-orb { position:absolute; border-radius:50%; filter:blur(18px); mix-blend-mode:screen; will-change:transform; }
.ai-glow-orb-one {
  top:14%; left:18%; width:58%; aspect-ratio:1;
  background:radial-gradient(circle at 60% 40%, #fff39c 0 4%, #ffc21d 19%, #ff761f 49%, rgba(255,72,26,0) 72%);
  animation:aiGlowDriftOne 8s ease-in-out infinite alternate;
}
.ai-glow-orb-two {
  right:-12%; bottom:-18%; width:64%; aspect-ratio:1;
  background:radial-gradient(circle, rgba(255,211,50,.96) 0, rgba(255,133,27,.82) 31%, rgba(255,71,25,0) 71%);
  animation:aiGlowDriftTwo 10s ease-in-out infinite alternate;
}
.ai-glow-orb-three {
  top:-24%; left:-20%; width:62%; aspect-ratio:1;
  background:radial-gradient(circle, rgba(255,177,28,.78) 0, rgba(255,90,31,.42) 39%, rgba(255,70,29,0) 72%);
  animation:aiGlowDriftThree 12s ease-in-out infinite alternate;
}
.ai-glow-ring {
  position:absolute; top:50%; left:50%; z-index:3; width:54%; aspect-ratio:1;
  border:1px solid rgba(255,237,161,.56); border-radius:50%; box-shadow:0 0 55px rgba(255,171,28,.55), inset 0 0 45px rgba(255,117,26,.32);
  transform:translate(-50%,-50%); animation:aiGlowPulse 5s ease-in-out infinite;
}
@keyframes aiGlowDriftOne { to { transform:translate(15%, -8%) scale(1.16) rotate(18deg); } }
@keyframes aiGlowDriftTwo { to { transform:translate(-25%, -18%) scale(.83); } }
@keyframes aiGlowDriftThree { to { transform:translate(26%, 28%) scale(1.1); } }
@keyframes aiGlowPulse { 50% { opacity:.48; transform:translate(-50%,-50%) scale(1.23); } }
@media (prefers-reduced-motion: reduce) {
  .ai-glow-orb, .ai-glow-ring { animation:none; }
}
 .ai-avatar-orange { background: var(--orange); }
.ai-match-visual { background: linear-gradient(140deg, #f2eee7, #e4ded3); }
.ai-avatar { background: #f2914c; }
.ai-feature .ai-feature-label { display:inline-flex; align-items:center; gap:11px; color:var(--black); font-size:19px; font-weight:800; letter-spacing:-.035em; line-height:1.2; text-transform:none; }
.ai-feature .ai-feature-label::before { flex:0 0 auto; width:10px; height:10px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 6px rgba(253,126,21,.12); content:""; }
.ai-feature .ai-feature-label + h3 { margin-top:28px; }
@media (max-width:820px) { .ai-feature .ai-feature-label { font-size:18px; } }

/* Training operations */.ops-closing em { color:var(--orange); font-family:Georgia,serif; font-weight:400; }.ops-closing { padding:120px 20px; background:var(--black); color:#fff; text-align:center; }.ops-closing p { margin:0; font-size:clamp(46px,6vw,86px); font-weight:600; letter-spacing:-.08em; line-height:.93; }.ops-closing a { display:inline-flex; gap:15px; align-items:center; margin-top:34px; padding:8px 9px 8px 18px; border-radius:999px; background:#fff; color:#111; font-size:13px; font-weight:800; }.ops-closing a span { display:grid; width:25px; height:25px; place-items:center; border-radius:50%; background:var(--orange); color:#fff; font-size:16px; }@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 */

/* AI hero — iridescent, code-drawn learning sphere */
.ai-glow-stage {
  overflow: hidden;
  background: #e5f2fb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .78);
}

.ai-glow-field {
  overflow: hidden;
  background: #e5f2fb;
}

.ai-glow-field::after {
  background: linear-gradient(125deg, rgba(255, 255, 255, .32), transparent 33%, transparent 69%, rgba(255, 255, 255, .12));
  mix-blend-mode: soft-light;
}

.ai-glow-orb {
  border-radius: 50%;
  filter: none;
  mix-blend-mode: normal;
  transform-origin: center;
}

.ai-glow-orb-one {
  top: 6%;
  left: 6%;
  width: 88%;
  height: auto;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 74% 34%, #08d5df 0 13%, transparent 42%),
    radial-gradient(circle at 37% 17%, #ffbf43 0 10%, transparent 34%),
    radial-gradient(circle at 52% 84%, #ff62ca 0 11%, transparent 35%),
    radial-gradient(circle at 14% 62%, #2639ea 0 15%, transparent 38%),
    conic-gradient(from 215deg at 51% 51%, #2339ee, #6857ed, #d65ee3, #ffbf53, #11d6df, #00ccd8, #2339ee);
  box-shadow:
    0 24px 42px rgba(77, 113, 167, .28),
    inset 2px 3px 9px rgba(255, 255, 255, .68),
    inset -28px -24px 52px rgba(31, 50, 181, .2);
  animation: aiSphereFloat 9s ease-in-out infinite alternate;
}

.ai-glow-orb-two,
.ai-glow-orb-three {
  top: 8%;
  left: 8%;
  width: 84%;
  height: auto;
  aspect-ratio: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}

.ai-glow-orb-two {
  background:
    radial-gradient(circle at 81% 42%, rgba(0, 244, 239, .95) 0 14%, transparent 44%),
    radial-gradient(circle at 39% 22%, rgba(255, 111, 214, .83) 0 13%, transparent 42%),
    radial-gradient(circle at 46% 76%, rgba(255, 188, 76, .86) 0 13%, transparent 39%);
  filter: blur(22px);
  opacity: .78;
  animation: aiSphereColorShift 11s ease-in-out infinite alternate;
}

.ai-glow-orb-three {
  background:
    radial-gradient(circle at 22% 63%, rgba(26, 20, 255, .88) 0 17%, transparent 45%),
    radial-gradient(circle at 60% 69%, rgba(110, 83, 255, .62) 0 19%, transparent 49%);
  filter: blur(28px);
  opacity: .78;
  animation: aiSphereColorShift 13s ease-in-out -4s infinite alternate-reverse;
}

.ai-glow-ring {
  top: 6%;
  left: 6%;
  width: 88%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .72);
  background: radial-gradient(circle at 31% 10%, rgba(255, 255, 255, .72), transparent 18%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, .38);
  opacity: .84;
  transform: none;
  animation: none;
}

@keyframes aiSphereFloat {
  0% { transform: translate3d(-1.5%, 1.5%, 0) scale(.985); }
  100% { transform: translate3d(1.5%, -1.5%, 0) scale(1.02); }
}

@keyframes aiSphereColorShift {
  0% { transform: translate3d(-20%, 14%, 0); filter: blur(30px) saturate(1.05) hue-rotate(-10deg); }
  100% { transform: translate3d(20%, -14%, 0); filter: blur(30px) saturate(1.55) hue-rotate(14deg); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-glow-orb-one,
  .ai-glow-orb-two,
  .ai-glow-orb-three { animation: none; }
}

/* Keep the visual as one fluid orb rather than separate decorative layers. */
.ai-glow-stage,
.ai-glow-field { background: #e7f2fc; }

.ai-glow-orb-one {
  top: 7%;
  left: 7%;
  width: 86%;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 63%, #1738ee 0 12%, transparent 33%),
    radial-gradient(circle at 37% 15%, #ff83d8 0 4%, #ffc358 19%, transparent 38%),
    radial-gradient(circle at 52% 87%, #ee56d6 0 3%, #ffcc67 20%, transparent 40%),
    radial-gradient(circle at 80% 41%, #03d8e2 0 19%, transparent 48%),
    linear-gradient(135deg, #1234ed 1%, #473df0 27%, #9b79ee 51%, #69d4e9 73%, #04d8df 100%);
  box-shadow: 0 22px 35px rgba(94, 120, 174, .25), inset 0 1px 3px rgba(255, 255, 255, .48);
  animation: aiSphereFloat 12s ease-in-out infinite alternate;
}

.ai-glow-orb-one::before,
.ai-glow-orb-one::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.ai-glow-orb-one::before {
  inset: -16%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 38% 19%, rgba(255, 202, 76, .98) 0 13%, transparent 36%),
    radial-gradient(ellipse at 20% 13%, rgba(255, 111, 210, .92) 0 12%, transparent 33%),
    radial-gradient(ellipse at 18% 72%, rgba(13, 33, 255, .92) 0 16%, transparent 39%),
    radial-gradient(ellipse at 53% 83%, rgba(255, 164, 74, .96) 0 12%, transparent 37%),
    radial-gradient(ellipse at 47% 91%, rgba(255, 69, 201, .85) 0 8%, transparent 30%),
    radial-gradient(ellipse at 83% 39%, rgba(0, 243, 232, .92) 0 20%, transparent 44%);
  filter: blur(30px) saturate(1.2);
  mix-blend-mode: soft-light;
  opacity: .96;
  will-change: transform;
  animation: aiSphereColorShift 3.2s cubic-bezier(.55, 0, .25, 1) infinite alternate;
}

.ai-glow-orb-one::after {
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, .32), transparent 27%, transparent 67%, rgba(0, 82, 215, .12));
  mix-blend-mode: soft-light;
}

.ai-glow-orb-two,
.ai-glow-orb-three,
.ai-glow-ring { display: none; }

/* Warm orange variant */
.ai-glow-stage,
.ai-glow-field { background: transparent; }

.ai-glow-field::after { background: none; }

.ai-glow-stage { box-shadow: none; }

.ai-glow-orb-one {
  background:
    radial-gradient(circle at 18% 68%, #ef4c2d 0 13%, transparent 35%),
    radial-gradient(circle at 35% 16%, #ffd15c 0 13%, transparent 37%),
    radial-gradient(circle at 53% 86%, #f75d8d 0 9%, transparent 34%),
    radial-gradient(circle at 81% 38%, #ff9b20 0 21%, transparent 49%),
    linear-gradient(135deg, #f04427 0%, #f7662b 26%, #ff8c2b 52%, #ffc54d 76%, #ff9b1f 100%);
  box-shadow: 0 22px 35px rgba(198, 93, 31, .23), inset 0 1px 3px rgba(255, 255, 255, .5);
}

.ai-glow-orb-one::before {
  background:
    radial-gradient(ellipse at 37% 19%, rgba(255, 216, 91, .98) 0 13%, transparent 36%),
    radial-gradient(ellipse at 20% 13%, rgba(255, 116, 133, .88) 0 12%, transparent 33%),
    radial-gradient(ellipse at 18% 72%, rgba(232, 59, 37, .9) 0 17%, transparent 40%),
    radial-gradient(ellipse at 53% 83%, rgba(255, 161, 49, .96) 0 13%, transparent 38%),
    radial-gradient(ellipse at 47% 91%, rgba(246, 71, 142, .8) 0 8%, transparent 30%),
    radial-gradient(ellipse at 83% 39%, rgba(255, 119, 19, .93) 0 20%, transparent 44%);
}

.ai-glow-orb-one::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, .38), transparent 28%, transparent 66%, rgba(179, 58, 20, .12));
}

.ai-glow-orb-one {
  background-size: 185% 185%, 175% 175%, 180% 180%, 190% 190%, 160% 160%;
  animation: aiWarmGradientFlow 3.8s cubic-bezier(.55, 0, .25, 1) infinite alternate;
}

@keyframes aiWarmGradientFlow {
  0% { background-position: 5% 82%, 18% 5%, 72% 95%, 98% 18%, 0% 50%; filter: saturate(1); }
  50% { background-position: 52% 38%, 68% 56%, 20% 35%, 36% 72%, 52% 45%; filter: saturate(1.35); }
  100% { background-position: -12% 28%, 4% 52%, 96% 42%, 112% 72%, 100% 52%; filter: saturate(1.12); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-glow-orb-one { animation: none; }
}

/* Smooth, continuous warm gradient motion. */
@property --orb-warm-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.ai-glow-orb-one {
  background:
    radial-gradient(circle at 24% 22%, #ffcf67 0 12%, transparent 42%),
    radial-gradient(circle at 76% 39%, #ff8e24 0 20%, transparent 47%),
    radial-gradient(circle at 50% 83%, #ed5a72 0 14%, transparent 43%),
    linear-gradient(135deg, #f34e27 0%, #f97825 42%, #ffba3e 100%);
  background-size: auto;
  filter: none;
  animation: none;
}

.ai-glow-orb-one::before {
  inset: -28%;
  z-index: 1;
  opacity: .72;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #f04627 0deg,
    #ffb92f 65deg,
    #ffe07b 122deg,
    #ff7525 182deg,
    #da3d56 242deg,
    #ff6622 302deg,
    #f04627 360deg
  );
  filter: blur(38px) saturate(1.2);
  mix-blend-mode: normal;
  transform: rotate(0deg);
  animation: aiSmoothWarmFlow 5s linear infinite;
}

.ai-glow-orb-one::after {
  z-index: 2;
  background:
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, .44), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, .2), transparent 42%, rgba(174, 48, 22, .12));
}

@keyframes aiSmoothWarmFlow {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-glow-orb-one::before { animation: none; }
}

/* Course matching — person, signals, then a clear next-course recommendation. */
.ai-match-visual {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: linear-gradient(145deg, #f5f0e7, #e9e2d6);
}

.ai-match-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  color: rgba(17, 17, 17, .47);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ai-match-head b { color: #171717; font-size: 11px; letter-spacing: 0; text-transform: none; }
.ai-match-layout { display: grid; grid-template-columns: 116px 46px minmax(0, 1fr); gap: 10px; align-items: center; }

.ai-match-person {
  min-height: 196px;
  padding: 15px 12px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 12px 22px rgba(73, 52, 27, .07);
}

.ai-match-avatar {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: #1f2829;
  box-shadow: inset 0 0 0 5px #f4a05b;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.ai-match-person strong, .ai-match-person small { display: block; }
.ai-match-person strong { color: #111; font-size: 12px; letter-spacing: -.02em; }
.ai-match-person small { margin-top: 3px; color: rgba(17, 17, 17, .52); font-size: 10px; }
.ai-match-person div { display: grid; gap: 5px; margin-top: 19px; }
.ai-match-person div span { padding: 5px 7px; border-radius: 6px; background: #fff; color: #48423b; font-size: 8px; font-weight: 700; line-height: 1.1; }

.ai-match-flow { position: relative; display: grid; gap: 7px; justify-items: center; }
.ai-match-flow::before { position: absolute; top: 11px; bottom: 11px; left: 50%; width: 1px; background: linear-gradient(#f68b24, rgba(246, 139, 36, .12)); content: ""; }
.ai-match-flow span { position: relative; z-index: 1; padding: 4px 5px; border: 1px solid rgba(246, 139, 36, .28); border-radius: 99px; background: #fff8ee; color: #bf620e; font-size: 8px; font-weight: 800; }
.ai-match-flow i { position: relative; z-index: 1; display: grid; width: 25px; height: 25px; margin-top: 4px; place-items: center; border-radius: 50%; background: var(--orange); box-shadow: 0 7px 13px rgba(239, 117, 25, .25); color: #fff; font-size: 15px; font-style: normal; }

.ai-match-results p { margin: 0 0 7px; color: rgba(17, 17, 17, .44); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ai-match-best { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 8px; align-items: center; padding: 12px 10px; border-radius: 14px; background: #1f2829; box-shadow: 0 14px 22px rgba(35, 43, 42, .2); color: #fff; }
.ai-course-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: var(--orange); font-size: 14px; }
.ai-match-best b, .ai-match-best small { display: block; }
.ai-match-best b { font-size: 11px; letter-spacing: -.02em; line-height: 1.12; }
.ai-match-best small { margin-top: 4px; color: rgba(255, 255, 255, .63); font-size: 9px; }
.ai-match-best em { padding: 5px 4px; border-radius: 7px; background: rgba(255, 255, 255, .13); color: #ffbf76; font-size: 10px; font-style: normal; font-weight: 800; }
.ai-match-alternatives { display: grid; gap: 5px; margin-top: 9px; }
.ai-match-alternatives span { overflow: hidden; padding: 7px 9px; border-radius: 8px; background: rgba(255, 255, 255, .65); color: #4f4a43; font-size: 9px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.ai-match-note { display: flex; gap: 6px; margin: auto 0 0; padding-top: 17px; color: rgba(17, 17, 17, .54); font-size: 10px; line-height: 1.35; }
.ai-match-note span { color: var(--orange); }

@media (max-width: 560px) {
  .ai-match-layout { grid-template-columns: 105px 38px minmax(0, 1fr); gap: 7px; }
  .ai-match-visual { padding: 18px; }
  .ai-match-person { padding: 12px 9px; }
}

/* Course matching, reduced to the core visual idea. */
.ai-match-visual {
  display: grid;
  min-height: 400px;
  padding: 30px;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, #f8f4ec 0 10%, #eee7db 72%);
}

.ai-match-concept {
  display: grid;
  grid-template-columns: 90px 115px 46px 155px;
  align-items: center;
  width: min(100%, 480px);
}

.ai-match-person-mark { display: grid; gap: 11px; justify-items: center; }
.ai-match-person-mark span { display: grid; width: 62px; height: 62px; place-items: center; border: 8px solid #f7c79b; border-radius: 50%; background: #1f2829; box-shadow: 0 14px 24px rgba(38, 38, 35, .14); color: #fff; font-size: 20px; font-weight: 800; }
.ai-match-person-mark small { color: #393631; font-size: 11px; font-weight: 800; }

.ai-match-orbit { position: relative; width: 104px; height: 104px; border: 1px solid rgba(239, 117, 25, .36); border-radius: 50%; }
.ai-match-orbit::before, .ai-match-orbit::after { position: absolute; inset: 14px; border: 1px solid rgba(239, 117, 25, .18); border-radius: 50%; content: ""; }
.ai-match-orbit::after { inset: 29px; border-color: rgba(239, 117, 25, .11); }
.ai-match-orbit i { position: absolute; z-index: 1; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(253, 126, 21, .12); }
.ai-match-orbit i:nth-of-type(1) { top: -5px; left: 47px; }.ai-match-orbit i:nth-of-type(2) { right: 4px; bottom: 16px; }.ai-match-orbit i:nth-of-type(3) { bottom: 8px; left: 12px; }
.ai-match-orbit b { position: absolute; inset: 33px; z-index: 2; display: grid; place-items: center; border-radius: 50%; background: var(--orange); box-shadow: 0 10px 20px rgba(239, 117, 25, .28); color: #fff; font-size: 17px; }

.ai-match-arrow { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: #fff; box-shadow: 0 8px 17px rgba(63, 47, 26, .1); color: var(--orange); font-size: 20px; font-weight: 700; }
.ai-match-course-stack { position: relative; height: 145px; }
.ai-match-course-stack > span { position: absolute; right: 3px; left: 10px; height: 88px; border-radius: 16px; background: #d8d0c2; transform: translateY(25px) rotate(5deg); }.ai-match-course-stack > span:nth-child(2) { right: 0; left: 5px; background: #e6dccd; transform: translateY(13px) rotate(2deg); }
.ai-match-course-stack article { position: relative; z-index: 2; display: flex; gap: 12px; align-items: center; min-height: 106px; padding: 16px; border-radius: 17px; background: #1f2829; box-shadow: 0 17px 27px rgba(34, 42, 40, .22); color: #fff; }
.ai-match-course-stack article > i { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; border-radius: 10px; background: var(--orange); color: #fff; font-size: 15px; font-style: normal; }.ai-match-course-stack b, .ai-match-course-stack small { display: block; }.ai-match-course-stack b { font-size: 14px; line-height: 1.08; letter-spacing: -.035em; }.ai-match-course-stack small { margin-top: 7px; color: #ffbe78; font-size: 10px; font-weight: 800; }

@media (max-width: 560px) { .ai-match-concept { grid-template-columns: 64px 84px 32px 1fr; }.ai-match-person-mark span { width: 48px; height: 48px; border-width: 6px; font-size: 15px; }.ai-match-orbit { width: 76px; height: 76px; }.ai-match-orbit b { inset: 22px; }.ai-match-orbit i:nth-of-type(1) { top: -5px; left: 33px; }.ai-match-course-stack article { padding: 12px; }.ai-match-course-stack article > i { width: 28px; height: 28px; }.ai-match-course-stack b { font-size: 12px; } }

/* Course matching — deliberately oversized learner-to-course visual. */
.ai-match-visual { padding: 32px; background: linear-gradient(140deg, #f5efe5, #e9dfcf); }
.ai-match-concept { grid-template-columns: minmax(136px, 1fr) 74px minmax(150px, 1.05fr); gap: 12px; align-items: center; width: 100%; max-width: none; }
.ai-match-big-user { display: grid; gap: 14px; justify-items: center; }
.ai-match-big-user > i { position: relative; display: block; width: clamp(132px, 15vw, 176px); aspect-ratio: 1; border-radius: 50%; background: #1f2829; box-shadow: 0 20px 34px rgba(31, 40, 41, .22), inset 0 0 0 10px #f5a354; }
.ai-match-big-user > i::before { position: absolute; top: 26%; left: 50%; width: 35%; aspect-ratio: 1; border-radius: 50%; background: #fff; content: ""; transform: translateX(-50%); }
.ai-match-big-user > i::after { position: absolute; bottom: 21%; left: 50%; width: 63%; height: 30%; border-radius: 55% 55% 28% 28%; background: #fff; content: ""; transform: translateX(-50%); }
.ai-match-big-user small { color: #282621; font-size: 13px; font-weight: 800; }

.ai-match-connection { position: relative; height: 2px; background: linear-gradient(90deg, var(--orange), rgba(239, 117, 25, .2)); }
.ai-match-connection::before, .ai-match-connection::after { position: absolute; top: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); content: ""; transform: translateY(-50%); }.ai-match-connection::before { left: -1px; }.ai-match-connection::after { right: -1px; }
.ai-match-connection i { position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: 0 10px 20px rgba(93, 67, 29, .12); transform: translate(-50%, -50%); }.ai-match-connection span { position: absolute; z-index: 1; top: 50%; left: 50%; color: var(--orange); font-size: 19px; transform: translate(-50%, -50%); }

.ai-match-course-stack { height: 183px; }
.ai-match-course-stack > span { right: 9px; left: 14px; height: 125px; background: #d5cab9; transform: translateY(27px) rotate(4deg); }
.ai-match-course-stack article { min-height: 136px; padding: 20px; border-radius: 20px; }.ai-match-course-stack article > i { width: 43px; height: 43px; border-radius: 12px; font-size: 18px; }.ai-match-course-stack b { font-size: 17px; }.ai-match-course-stack small { margin-top: 9px; font-size: 11px; }

@media (max-width: 560px) { .ai-match-visual { padding: 22px; }.ai-match-concept { grid-template-columns: 1fr 40px 1fr; gap: 8px; }.ai-match-big-user > i { width: 112px; }.ai-match-course-stack { height: 145px; }.ai-match-course-stack article { min-height: 110px; padding: 13px; }.ai-match-course-stack b { font-size: 13px; }.ai-match-course-stack article > i { width: 32px; height: 32px; }.ai-match-connection i { width: 32px; height: 32px; } }

.ai-feature li { font-size: 16px; line-height: 1.45; }

/* Course matching — an abstract route map rather than a profile card. */
.ai-match-visual { display: block; min-height: 400px; padding: 0; overflow: hidden; background: #1e292a; }
.ai-match-map { position: relative; width: 100%; height: 100%; min-height: 400px; overflow: hidden; background: radial-gradient(circle at 78% 23%, rgba(255, 142, 33, .2), transparent 30%), #1e292a; }
.ai-match-map::before { position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,.11) 1px, transparent 1.5px) 0 0 / 18px 18px; content: ""; opacity: .38; }
.ai-match-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }.ai-match-map path { fill: none; stroke: rgba(255, 255, 255, .27); stroke-width: 2; stroke-dasharray: 4 8; }.ai-match-map path:first-child { stroke: #ff9129; stroke-width: 3; stroke-dasharray: none; }
.ai-map-label { position: absolute; top: 29px; left: 31px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ai-map-node { position: absolute; z-index: 1; width: 13px; height: 13px; border: 3px solid #1e292a; border-radius: 50%; background: rgba(255,255,255,.78); box-shadow: 0 0 0 1px rgba(255,255,255,.46); }.ai-map-node-one { bottom: 44px; left: 11%; background: #ff9129; box-shadow: 0 0 0 7px rgba(255,145,41,.14); }.ai-map-node-two { top: 37%; left: 31%; }.ai-map-node-three { bottom: 29%; left: 56%; background: #ff9129; box-shadow: 0 0 0 7px rgba(255,145,41,.14); }.ai-map-node-four { top: 26%; left: 68%; }.ai-map-node-five { top: 12%; right: 12%; }
.ai-map-course { position: absolute; z-index: 2; top: 45%; right: 9%; display: flex; gap: 12px; align-items: center; width: min(61%, 230px); padding: 15px; border-radius: 16px; background: #fff8ed; box-shadow: 0 16px 26px rgba(0,0,0,.2); color: #1f292a; }.ai-map-course > span { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 9px; background: var(--orange); color: #fff; font-size: 15px; }.ai-map-course div { min-width: 0; flex: 1; }.ai-map-course small, .ai-map-course b { display: block; }.ai-map-course small { margin-bottom: 4px; color: rgba(25, 31, 31, .5); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.ai-map-course b { font-size: 13px; line-height: 1.06; letter-spacing: -.025em; }.ai-map-course em { color: var(--orange); font-size: 12px; font-style: normal; font-weight: 800; }
.ai-map-key { position: absolute; bottom: 28px; left: 31px; display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; }.ai-map-key span { width: 21px; height: 2px; background: var(--orange); }
@media (max-width: 560px) { .ai-match-map { min-height: 340px; }.ai-map-course { right: 7%; width: 68%; }.ai-map-label { top: 20px; left: 22px; }.ai-map-key { bottom: 20px; left: 22px; } }

/* Content creation shares the route-map visual language. */
.ai-create-visual { padding: 0; overflow: hidden; background: #1e292a; }
.ai-create-map { position: relative; width: 100%; height: 100%; min-height: 400px; overflow: hidden; background: radial-gradient(circle at 70% 30%, rgba(255, 142, 33, .2), transparent 32%), #1e292a; }
.ai-create-map::before { position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,.11) 1px, transparent 1.5px) 0 0 / 18px 18px; content: ""; opacity: .38; }.ai-create-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }.ai-create-map path { fill: none; stroke: #ff9129; stroke-width: 3; }
.ai-create-label { position: absolute; top: 29px; left: 31px; color: rgba(255,255,255,.64); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ai-create-source, .ai-create-quiz { position: absolute; z-index: 1; display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 15px; }.ai-create-source { top: 42%; left: 10%; width: min(46%, 166px); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.17); color: #fff; }.ai-create-quiz { top: 34%; right: 9%; width: min(50%, 190px); background: #fff8ed; box-shadow: 0 16px 26px rgba(0,0,0,.2); color: #1f292a; }
.ai-create-source i, .ai-create-quiz i { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 9px; font-style: normal; }.ai-create-source i { background: rgba(255,255,255,.16); color: #ffbd77; }.ai-create-quiz i { background: var(--orange); color: #fff; }.ai-create-source div, .ai-create-quiz div { min-width: 0; }.ai-create-source small, .ai-create-source b, .ai-create-quiz small, .ai-create-quiz b, .ai-create-quiz span { display: block; }.ai-create-source small, .ai-create-quiz small { margin-bottom: 4px; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.ai-create-source small { color: rgba(255,255,255,.52); }.ai-create-quiz small { color: rgba(25,31,31,.48); }.ai-create-source b, .ai-create-quiz b { font-size: 13px; letter-spacing: -.02em; }.ai-create-quiz span { margin-top: 6px; color: var(--orange); font-size: 10px; font-weight: 800; }
.ai-create-key { position: absolute; bottom: 28px; left: 31px; display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; }.ai-create-key span { width: 21px; height: 2px; background: var(--orange); }
@media (max-width:560px) { .ai-create-map { min-height: 340px; }.ai-create-label { top: 20px; left: 22px; }.ai-create-source { left: 7%; }.ai-create-quiz { right: 7%; }.ai-create-key { bottom: 20px; left: 22px; } }

/* Content creation — from an empty page to a ready learning experience. */
.ai-create-visual { padding: 0; background: #efeae1; }
.ai-create-transform { position: relative; display: grid; grid-template-columns: minmax(100px, .78fr) 48px minmax(150px, 1.15fr); gap: 14px; align-items: center; min-height: 400px; padding: 58px 42px 46px; background: radial-gradient(circle at 76% 23%, rgba(255, 157, 35, .19), transparent 26%), linear-gradient(135deg, #f5f1e9, #e7dfd2); }
.ai-create-title { position: absolute; top: 28px; left: 34px; color: rgba(29, 31, 29, .51); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ai-blank-page { display: flex; min-height: 190px; flex-direction: column; padding: 18px; border: 1px dashed rgba(36, 38, 35, .24); border-radius: 14px; background: rgba(255,255,255,.48); color: rgba(35,35,31,.48); transform: rotate(-4deg); }.ai-blank-page small { font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }.ai-blank-page i { display: grid; width: 42px; height: 42px; margin: auto; place-items: center; border-radius: 50%; border: 1px solid rgba(33,33,30,.18); font-size: 23px; font-style: normal; }.ai-blank-page span { height: 6px; margin-top: 9px; border-radius: 99px; background: rgba(43,43,38,.09); }.ai-blank-page span:last-child { width: 62%; }
.ai-create-spark { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--orange); box-shadow: 0 12px 22px rgba(238, 117, 26, .25); color: #fff; font-size: 18px; }
.ai-ready-course { min-height: 215px; padding: 20px; border-radius: 18px; background: #1f292a; box-shadow: 0 18px 28px rgba(31, 41, 42, .22); color: #fff; transform: rotate(2deg); }.ai-ready-course small, .ai-ready-course b, .ai-ready-course span { display: block; }.ai-ready-course small { color: #ffba78; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.ai-ready-course b { margin: 10px 0 18px; font-size: 19px; letter-spacing: -.045em; line-height: .96; }.ai-ready-course span { display: flex; gap: 8px; align-items: center; padding: 7px 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.77); font-size: 10px; font-weight: 700; }.ai-ready-course i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.ai-create-transform > p { position: absolute; bottom: 25px; left: 34px; margin: 0; color: rgba(30,31,28,.5); font-size: 10px; font-weight: 700; }.ai-create-transform > p span { color: var(--orange); }
@media (max-width:560px) { .ai-create-transform { grid-template-columns: minmax(86px, .78fr) 34px minmax(122px, 1.15fr); gap: 8px; min-height: 340px; padding: 50px 24px 38px; }.ai-create-title { top: 19px; left: 22px; }.ai-blank-page { min-height: 150px; padding: 12px; }.ai-blank-page i { width: 32px; height: 32px; }.ai-create-spark { width: 34px; height: 34px; }.ai-ready-course { min-height: 172px; padding: 14px; }.ai-ready-course b { font-size: 15px; }.ai-create-transform > p { bottom: 18px; left: 22px; } }

/* Learning insights — skill-demand radar chart. */
.ai-insight-visual { display: flex; min-height: 400px; flex-direction: column; padding: 28px 30px 24px; background: linear-gradient(145deg, #eef0ed, #dfe5e1); }
.ai-radar-head { display: flex; justify-content: space-between; align-items: flex-start; }.ai-radar-head small, .ai-radar-head b { display: block; }.ai-radar-head small { color: rgba(24,31,30,.48); font-size: 10px; }.ai-radar-head b { margin-top: 5px; color: #1f2829; font-size: 16px; }.ai-radar-head > span { padding: 7px 10px; border-radius: 99px; background: rgba(255,255,255,.72); color: #26885d; font-size: 9px; font-weight: 800; }
.ai-radar-chart { display: grid; flex: 1; min-height: 245px; place-items: center; }.ai-radar-chart svg { width: min(100%, 330px); max-height: 272px; overflow: visible; }.ai-radar-grid polygon { fill: none; stroke: rgba(31,40,41,.17); stroke-width: 1; }.ai-radar-grid line { stroke: rgba(31,40,41,.13); stroke-width: 1; }.ai-radar-area { fill: rgba(253,126,21,.25); stroke: var(--orange); stroke-width: 3; }.ai-radar-points circle { fill: #fff; stroke: var(--orange); stroke-width: 3; }.ai-radar-labels text { fill: rgba(31,40,41,.6); font-size: 10px; font-weight: 700; text-anchor: middle; }
.ai-radar-callout { display: flex; gap: 9px; align-items: center; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.74); }.ai-radar-callout span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: #1f2829; color: #ffb46c; font-size: 11px; font-weight: 800; }.ai-radar-callout p { margin: 0; color: rgba(24,31,30,.66); font-size: 11px; font-weight: 700; }
