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

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(1120px, 100%);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.hero-badge span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.92) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, rgba(255, 255, 255, 0.92) 45% 55%, transparent 55%),
    var(--orange);
  box-shadow: 0 0 18px rgba(253, 126, 21, 0.62);
}

.hero-copy h1 {
  max-width: 1080px;
  margin: 0;
  color: var(--black);
  font-size: clamp(52px, 5.6vw, 74px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-ai-ready {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 48px 0 22px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(255, 132, 26, .32);
  border-radius: 999px;
  background: linear-gradient(115deg, rgba(255, 237, 204, .92), rgba(255, 177, 79, .52), rgba(255, 104, 22, .92));
  box-shadow: 0 0 24px rgba(253, 126, 21, .25), inset 0 1px 0 rgba(255, 255, 255, .72);
  color: #6b2704;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.hero-ai-ready:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(253, 126, 21, .35), inset 0 1px 0 rgba(255, 255, 255, .72); }

.hero-ai-ready span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #fff6e9;
  color: #f36e13;
  font-size: 15px;
}

.hero-copy h1 span {
  display: block;
  padding-bottom: 0.08em;
  background: linear-gradient(90deg, #ff8a1f 0%, #ff6f1a 45%, #ffc078 100%);
  background-clip: text;
  color: transparent;
  font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 700;
}

.primary-pill {
  gap: 13px;
  padding: 0 26px;
  background: #111423;
  color: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 -10px 22px rgba(253, 126, 21, 0.14);
}

.primary-pill b {
  color: rgba(255, 255, 255, 0.62);
  font-size: 22px;
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  margin-top: 52px;
}

.product-browser {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px 18px 0 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
  animation: productRise 900ms var(--ease) both, productFloat 8s ease-in-out 900ms infinite;
}

.product-browser-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(244, 246, 247, 0.92);
  color: rgba(0, 0, 0, 0.52);
  font-size: 12px;
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c9ced1;
}

.product-browser-top strong {
  overflow: hidden;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-dashboard {
  display: grid;
  min-height: 360px;
  padding: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(253, 126, 21, 0.12), transparent 26%),
    #f6f6f4;
}

.dashboard-main {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.dashboard-heading span,
.card-label {
  display: block;
  color: rgba(0, 0, 0, 0.48);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-heading h2 {
  max-width: 760px;
  margin: 0;
  color: rgba(0, 0, 0, 0.86);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(350px, 1.45fr) minmax(175px, 0.72fr) repeat(3, minmax(165px, 0.78fr));
  gap: 14px;
}

.area-card,
.hero-pie-card,
.video-card,
.mc-card,
.profile-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  padding: 18px;
  min-height: 214px;
  transition:
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease),
    border-color 260ms var(--ease);
}

.area-card:hover,
.hero-pie-card:hover,
.video-card:hover,
.mc-card:hover,
.profile-card:hover {
  border-color: rgba(253, 126, 21, 0.28);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.area-card {
  align-content: space-between;
}

.hero-area-chart {
  width: 100%;
  height: 118px;
  margin-top: 12px;
  overflow: visible;
}

.area-fill {
  fill: url(#heroAreaGradient);
  transform-origin: bottom;
  animation: areaFillBreath 6s ease-in-out infinite;
}

.area-line {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 5;
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  animation: areaLineDraw 2.2s var(--ease) 450ms forwards, areaLinePulse 5.5s ease-in-out 2.8s infinite;
}

.area-stat-row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 8px;
}

.area-stat-row span {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(247, 247, 244, 0.94);
  color: rgba(0, 0, 0, 0.54);
  font-size: 11px;
  font-weight: 600;
}

.area-stat-row strong {
  margin-right: 4px;
  color: var(--black);
}

.hero-pie-card {
  justify-items: center;
  align-content: start;
  text-align: center;
}

.hero-pie-card strong {
  margin-top: 8px;
  color: var(--black);
  font-size: 26px;
  line-height: 1;
}

.hero-donut {
  width: 104px;
  height: 104px;
  margin: 18px 0 0;
  border-radius: 50%;
  background: conic-gradient(#087fc4 0 126deg, #f5ef68 126deg 214deg, #65c08d 214deg 292deg, #ef6b86 292deg 360deg);
  animation: conceptDonut 9s ease-in-out infinite;
}

.hero-donut::after {
  display: block;
  width: 48px;
  height: 48px;
  margin: 28px;
  border-radius: 50%;
  background: white;
  content: "";
}

.video-card {
  align-content: space-between;
}

.video-preview {
  position: relative;
  display: grid;
  min-height: 94px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)),
    url("../assets/shared/module-ui/online.png") center / cover;
}

.video-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.34) 48%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  animation: videoShine 5.5s ease-in-out infinite;
}

.video-preview span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
  animation: playPulse 3.4s ease-in-out infinite;
}

.video-preview span::before {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--orange);
  content: "";
}

.video-card strong,
.mc-card strong {
  display: block;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.84);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
}

.mc-card {
  align-content: start;
}

.mc-options {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.mc-options span {
  display: flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(247, 247, 244, 0.95);
  color: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-weight: 600;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.mc-card:hover .mc-options span {
  transform: translateX(2px);
}

.mc-options .selected {
  background: #111423;
  color: #fff;
  animation: selectedAnswerGlow 4s ease-in-out infinite;
}

.profile-card {
  align-content: start;
  justify-items: center;
}

.team-map {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 150px;
  place-items: center;
  margin-top: 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 34%, rgba(253, 126, 21, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(247, 247, 244, 0.92), rgba(255, 255, 255, 0.78));
}

.team-map::before,
.team-map::after {
  position: absolute;
  content: "";
  transform-origin: top;
  animation: teamRoutePulse 4.8s ease-in-out infinite;
}

.team-map::before {
  top: 56px;
  left: 50%;
  width: 2px;
  height: 44px;
  background: linear-gradient(180deg, rgba(253, 126, 21, 0.72), rgba(0, 0, 0, 0.08));
}

.team-map::after {
  top: 98px;
  left: 50%;
  width: 104px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(253, 126, 21, 0.66), rgba(0, 0, 0, 0.08));
  transform: translateX(-50%);
}

.team-hub {
  position: absolute;
  top: 18px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 24px;
  background: #111423;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16), 0 0 0 8px rgba(253, 126, 21, 0.08);
  animation: teamHubFloat 5.2s ease-in-out infinite;
}

.team-hub i {
  position: relative;
  display: block;
  width: 34px;
  height: 30px;
}

.team-hub i::before,
.team-hub i::after {
  position: absolute;
  content: "";
}

.team-hub i::before {
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.team-hub i::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 16px;
  border-radius: 16px 16px 7px 7px;
  background: #fff;
}

.team-branches {
  position: absolute;
  right: 12px;
  bottom: 16px;
  left: 12px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.team-branches span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  animation: teamNodeRise 4.8s ease-in-out infinite;
}

.team-branches span:nth-child(2) {
  animation-delay: 160ms;
}

.team-branches span:nth-child(3) {
  animation-delay: 320ms;
}

.hero-float,
.hero-plus {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-float {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.9), 0 26px 54px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  animation: floatToken 7s ease-in-out infinite;
}

.hero-float-left {
  top: 225px;
  left: max(28px, calc(50% - 640px));
  color: rgba(0, 0, 0, 0.26);
}

.book-icon {
  position: relative;
  display: grid;
  width: 72px;
  height: 52px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0 48%, rgba(255, 245, 235, 0.88) 48% 52%, rgba(255, 255, 255, 0.78) 52% 100%);
  box-shadow:
    inset 0 0 0 3px rgba(0, 0, 0, 0.07),
    0 16px 30px rgba(0, 0, 0, 0.08);
}

.book-icon::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 3px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(253, 126, 21, 0.28);
}

.book-icon::after {
  position: absolute;
  top: 16px;
  right: 12px;
  left: 12px;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 28%, transparent 28% 50%, rgba(0, 0, 0, 0.16) 50% 78%, transparent 78%);
  box-shadow:
    0 10px 0 rgba(0, 0, 0, 0.1),
    0 20px 0 rgba(0, 0, 0, 0.08);
  content: "";
}

.hero-float-right {
  top: 200px;
  right: max(32px, calc(50% - 620px));
  background: linear-gradient(145deg, #ff7d25, #ffb266);
  box-shadow: 0 28px 60px rgba(253, 126, 21, 0.38);
}

.video-icon {
  position: relative;
  display: grid;
  width: 68px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.35),
    0 18px 36px rgba(0, 0, 0, 0.12);
}

.video-icon::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--orange);
  content: "";
}

.hero-plus {
  color: rgba(0, 0, 0, 0.09);
  font-size: 56px;
  font-weight: 800;
  animation: plusSpin 12s linear infinite;
}

.hero-plus-left {
  top: 188px;
  left: max(18px, calc(50% - 760px));
}

.hero-plus-right {
  top: 105px;
  right: max(40px, calc(50% - 470px));
  color: rgba(253, 126, 21, 0.1);
}

.client-marquee {
  width: min(1180px, calc(100% - 40px));
  margin: 72px auto 0;
  padding: 0 0 78px;
}

.client-copy {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.client-copy h2 {
  max-width: 460px;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}

.client-track-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.08);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  animation: clientMarquee 36s linear infinite;
}

.client-track-wrap:hover .client-track {
  animation-play-state: paused;
}

.client-logo {
  display: grid;
  flex: 0 0 228px;
  height: 108px;
  place-items: center;
  padding: 18px 26px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.explore-section,
.possibility-section,
.enterprise-section,
.qa-section,
.contact-section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.explore-section,
.possibility-section,
.enterprise-section,
.qa-section {
  padding: 92px 0;
}

.explore-section h2,
.possibility-section h2 {
  margin: 10px 0 34px;
  color: var(--black);
  font-size: 96px;
  line-height: 0.94;
  font-weight: 800;
}

.explore-section h2 {
  font-size: 72px;
  line-height: 0.98;
}

.possibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

.possibility-grid article {
  min-height: 0;
  padding: 26px 28px 28px;
  border-radius: 34px;
}

.possibility-grid h3 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 25px;
}

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

.enterprise-section {
  padding-top: 28px;
}

.enterprise-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 26px;
}

.enterprise-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--black);
  font-size: 64px;
  line-height: 1.04;
  font-weight: 700;
}

.enterprise-copy p,
.possibility-intro {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
  font-weight: 400;
}

.enterprise-copy p {
  margin: 0 0 8px;
}

.enterprise-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(208px, auto);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.08) 1px, transparent 0) 0 0 / 18px 18px,
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.1);
}

.enterprise-tile {
  position: relative;
  overflow: hidden;
  min-height: 208px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 360ms var(--ease),
    transform 360ms var(--ease);
}

.enterprise-tile:hover {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.enterprise-tile h3 {
  margin: 16px 0 0;
  color: var(--black);
  font-size: 24px;
  line-height: 1.1;
}

.enterprise-tile p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.workflow-tile {
  display: grid;
  grid-column: span 2;
  grid-row: span 2;
  align-content: space-between;
  min-height: 430px;
  background:
    radial-gradient(circle at 84% 18%, rgba(253, 126, 21, 0.28), transparent 24%),
    linear-gradient(145deg, #ffffff 0%, #f6f6f2 100%);
}

.workflow-tile::before {
  position: absolute;
  inset: auto -12% -22% 18%;
  height: 260px;
  border-radius: 50%;
  background: rgba(253, 126, 21, 0.22);
  content: "";
  filter: blur(42px);
}

.tile-copy {
  position: relative;
  z-index: 1;
}

.tile-copy span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tile-copy h3 {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 38px;
  line-height: 1.04;
}

.tile-copy p {
  max-width: 620px;
  font-size: 16px;
}

.workflow-graphic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.workflow-graphic span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.workflow-graphic span:nth-of-type(2) {
  background: var(--orange);
  color: #fff;
}

.workflow-graphic i {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.workflow-graphic i::before {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), rgba(253, 126, 21, 0.18));
  content: "";
  transform-origin: left;
  animation: workflowRoute 4.8s ease-in-out infinite;
}

.workflow-graphic i:nth-of-type(2)::before {
  animation-delay: 0.35s;
}

.workflow-graphic i:nth-of-type(3)::before {
  animation-delay: 0.7s;
}

.integration-tile {
  grid-column: span 2;
}

.integration-graphic {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.integration-graphic::before {
  position: absolute;
  right: 15%;
  left: 15%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), var(--orange), rgba(0, 0, 0, 0.12));
  content: "";
  animation: integrationLine 4.2s ease-in-out infinite;
}

.integration-graphic span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.integration-graphic span:nth-child(2) {
  background: var(--orange);
}

.ai-tile {
  background:
    radial-gradient(circle at 78% 20%, rgba(253, 126, 21, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.ai-pulse {
  position: relative;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
}

.ai-pulse::before {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  box-shadow: 0 0 42px rgba(253, 126, 21, 0.42);
}

.ai-pulse span {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(253, 126, 21, 0.38);
  border-radius: 50%;
  animation: aiPulse 3s ease-out infinite;
}

.ai-pulse span:nth-child(2) {
  animation-delay: 0.6s;
}

.ai-pulse span:nth-child(3) {
  animation-delay: 1.2s;
}

.security-tile {
  background: var(--black);
  color: #fff;
}

.user-tile,
.support-tile {
  grid-column: span 2;
}

.support-tile {
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at 18% 18%, rgba(253, 126, 21, 0.2), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7f7f4 100%);
}

.security-tile h3,
.security-tile p {
  color: inherit;
}

.security-tile p {
  color: rgba(255, 255, 255, 0.64);
}

.security-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(253, 126, 21, 0.42), transparent 58%),
    rgba(255, 255, 255, 0.08);
}

.security-mark span {
  width: 34px;
  height: 44px;
  border: 3px solid var(--orange);
  border-top-width: 6px;
  border-radius: 16px 16px 20px 20px;
  animation: securityGlow 3.8s ease-in-out infinite;
}

.user-tile {
  background:
    linear-gradient(145deg, var(--orange), #ff9b42);
  color: #fff;
}

.user-tile strong {
  display: block;
  font-size: 62px;
  line-height: 0.9;
  letter-spacing: 0;
}

.user-tile h3,
.user-tile p {
  color: inherit;
}

.user-tile p {
  color: rgba(255, 255, 255, 0.76);
}

.deployment-graphic {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(70px, 1fr) 104px;
  min-height: 112px;
  align-items: center;
  gap: 12px;
}

.deployment-graphic::before {
  position: absolute;
  inset: 10px 18px 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 126, 21, 0.16), transparent 68%);
  content: "";
  filter: blur(10px);
}

.deploy-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.08);
  animation: deployNodeFloat 5s ease-in-out infinite;
}

.server-node {
  animation-delay: 0.6s;
}

.deploy-node > span {
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.cloud-node svg {
  width: 58px;
  height: 58px;
}

.cloud-node svg path {
  fill: none;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
}

.server-rack {
  display: grid;
  width: 54px;
  gap: 5px;
}

.server-rack span {
  position: relative;
  display: block;
  height: 14px;
  border-radius: 6px;
  background: var(--black);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.server-rack span::before,
.server-rack span::after {
  position: absolute;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
}

.server-rack span::before {
  right: 16px;
  background: var(--orange);
  animation: deployBlink 2.4s ease-in-out infinite;
}

.server-rack span::after {
  right: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.server-rack span:nth-child(2)::before {
  animation-delay: 0.35s;
}

.server-rack span:nth-child(3)::before {
  animation-delay: 0.7s;
}

.deploy-route {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.deploy-route i {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
}

.deploy-route i::before {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(253, 126, 21, 0), var(--orange), rgba(253, 126, 21, 0));
  content: "";
  animation: deployRoute 2.8s ease-in-out infinite;
}

.deploy-route i:nth-child(2)::before {
  animation-delay: 0.55s;
}

.deploy-signal {
  position: absolute;
  right: 24px;
  top: 18px;
  display: flex;
  gap: 6px;
}

.deploy-signal span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(253, 126, 21, 0.5);
  animation: deployBlink 2.2s ease-in-out infinite;
}

.deploy-signal span:nth-child(2) {
  animation-delay: 0.22s;
}

.deploy-signal span:nth-child(3) {
  animation-delay: 0.44s;
}

.hk-enterprise-section {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  margin: 46px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.64) 40%, rgba(0, 0, 0, 0.24) 100%),
    url("../assets/home/hong-kong-enterprise-bg.jpg") center / cover no-repeat;
  color: #fff;
}

.hk-enterprise-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0) 0 0 / 22px 22px;
  content: "";
}

.hk-enterprise-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent);
  content: "";
}

.hk-enterprise-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.hk-enterprise-logo {
  display: block;
  width: 58px;
  height: auto;
}

.hk-enterprise-inner h2 {
  max-width: 780px;
  margin: 30px 0 0;
  color: #fff;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 800;
}

.hk-enterprise-inner p {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  line-height: 1.72;
}

.hk-enterprise-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.hk-enterprise-link span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.hk-enterprise-link:hover {
  background: #fff;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.mode-showcase {
  display: grid;
  gap: 18px;
}

.mode-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 24px;
  min-height: 430px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.12);
}

.mode-panel:nth-child(even) {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.mode-panel:nth-child(even) .mode-copy {
  order: 2;
}

.mode-panel:nth-child(even) .mode-visual {
  order: 1;
}

.mode-copy {
  display: flex;
  flex-direction: column;
}

.mode-copy h3 {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--black);
  font-size: 54px;
  line-height: 0.98;
}

.mode-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.82;
}

.mode-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mode-copy li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 999px;
  background: var(--canvas);
  color: var(--black);
  font-weight: 600;
}

.mode-copy li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.mode-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.mode-link span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--orange);
  transition:
    background 260ms var(--ease),
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.mode-link:hover {
  background: #111;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.mode-link:hover span {
  background: var(--orange);
  color: #fff;
  transform: translateX(2px);
}

.mode-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.24) 1px, transparent 0) 0 0 / 20px 20px,
    var(--black);
}

.mode-image-visual {
  display: grid;
  place-items: center;
  padding: 26px;
}

.mode-image-visual::before {
  position: absolute;
  inset: auto 18% 10% 18%;
  height: 38%;
  border-radius: 50%;
  background: rgba(253, 126, 21, 0.34);
  content: "";
  filter: blur(42px);
  opacity: 0.72;
}

.mode-screenshot-plate {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  aspect-ratio: 1200 / 724;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #f4f4f2;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(-1.4deg);
  transition:
    transform 700ms var(--ease),
    box-shadow 700ms var(--ease);
}

.mode-panel:nth-child(even) .mode-screenshot-plate {
  transform: rotate(1.4deg);
}

.mode-panel:hover .mode-screenshot-plate {
  box-shadow:
    0 38px 94px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) rotate(0deg) scale(1.018);
}

.mode-screenshot-plate img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.insight-section {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) minmax(0, 620px) minmax(0, 760px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  width: 100%;
  min-height: 600px;
  margin: 12px 0 96px;
  overflow: hidden;
  background: #fff;
}

.insight-copy {
  grid-column: 2;
  width: auto;
  margin: 0;
  padding: 72px 0;
}

.insight-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--black);
  font-size: 88px;
  line-height: 0.92;
  font-weight: 800;
}

.insight-copy p {
  max-width: 640px;
  margin: 34px 0 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
}

.insight-visual {
  position: relative;
  grid-column: 3 / 5;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px 0 0 34px;
  background: #f4f4f1;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.insight-visual img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}

.qa-section h2,
.contact-section h2 {
  margin: 10px 0 0;
  color: var(--black);
  font-size: 52px;
  line-height: 1.1;
}

.possibility-section h2 {
  max-width: 880px;
  margin-bottom: 24px;
}

.possibility-section .role-heading {
  max-width: 820px;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 700;
}

.possibility-intro {
  max-width: 760px;
  margin: 0 0 34px;
}

.possibility-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.award-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: stretch;
  width: min(900px, calc(100% - 40px));
  margin: -36px auto 70px max(20px, calc((100% - 1180px) / 2));
}

.award-copy {
  display: grid;
  align-content: center;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 14%, rgba(253, 126, 21, 0.16), transparent 28%),
    #111423;
  color: #fff;
}

.award-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.award-copy h2 {
  max-width: 320px;
  margin: 14px 0 0;
  color: inherit;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 650;
}

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

.award-card {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.award-card:hover {
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.award-card img {
  display: block;
  width: min(150px, 100%);
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.award-card h3 {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 650;
}

.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 70px;
  padding: 52px;
  overflow: hidden;
  border: 1px solid rgba(253, 126, 21, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.8), transparent 30%),
    radial-gradient(circle at 84% 22%, rgba(255, 180, 101, 0.55), transparent 34%),
    linear-gradient(120deg, #fff7ef 0%, #ffd1a1 32%, #ff8a2b 58%, #ffe8d4 100%);
  background-size: 100% 100%, 100% 100%, 220% 220%;
  box-shadow:
    0 26px 80px rgba(253, 126, 21, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  animation: ctaGradientFlow 9s ease-in-out infinite;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-section::before {
  right: 10%;
  bottom: -46%;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(32px);
}

.contact-section::after {
  top: -18%;
  bottom: -18%;
  left: -34%;
  width: 34%;
  height: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  filter: blur(10px);
  transform: rotate(14deg);
  animation: ctaLightSweep 6.8s ease-in-out infinite;
}

.contact-section h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.contact-section .primary-pill {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--black);
  box-shadow:
    0 20px 52px rgba(253, 126, 21, 0.2),
    0 0 30px rgba(255, 255, 255, 0.46);
}

.contact-section .primary-pill b {
  color: var(--orange);
}

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

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

  .hero-copy h1 {
    font-size: clamp(48px, 9vw, 70px);
  }

  .hero-product {
    margin-top: 52px;
  }

  .product-dashboard {
    min-height: 390px;
  }

  .dashboard-main {
    padding: 22px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-card {
    grid-column: 1 / -1;
  }

  .area-card,
  .hero-pie-card,
  .video-card,
  .mc-card,
  .profile-card {
    min-height: 190px;
  }

  .hero-float,
  .hero-plus {
    opacity: 0.42;
    transform: scale(0.82);
  }

  .client-marquee {
    margin-top: 0;
  }

  .possibility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .enterprise-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .enterprise-copy h2 {
    font-size: 52px;
    line-height: 1.06;
  }

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

  .workflow-tile,
  .integration-tile {
    grid-column: span 2;
  }

  
  .mode-panel,
  .mode-panel:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .mode-panel:nth-child(even) .mode-copy,
  .mode-panel:nth-child(even) .mode-visual {
    order: initial;
  }

  .mode-copy h3 {
    font-size: 44px;
  }

  .insight-section {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .insight-copy {
    grid-column: 1;
    width: auto;
    margin: 0;
    padding: 54px 28px 34px;
  }

  .insight-copy h2 {
    font-size: 64px;
  }

  .insight-visual {
    grid-column: 1;
    min-height: 0;
    border-radius: 28px 28px 0 0;
  }

  .insight-visual img {
    height: clamp(360px, 68vw, 620px);
  }

  .award-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .award-copy {
    min-height: 220px;
  }

}

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

  .hero-copy {
    text-align: left;
    justify-items: start;
  }

  .hero-badge {
    max-width: 100%;
    min-height: auto;
    margin-top: 24px;
    padding: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-copy h1 {
    font-size: 43px;
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .primary-pill {
    width: 100%;
  }

  .hero-product {
    width: calc(100% + 8px);
    margin-top: 28px;
  }

  .product-browser {
    border-radius: 12px 12px 0 0;
    animation: none;
  }

  .product-browser-top {
    grid-template-columns: auto 1fr;
    min-height: 38px;
    padding: 0 12px;
  }

  .product-dashboard {
    min-height: auto;
    padding: 8px;
  }

  .dashboard-main {
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .dashboard-heading {
    display: grid;
    gap: 10px;
  }

  .dashboard-heading h2 {
    font-size: 18px;
    line-height: 1.22;
  }

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

  .area-card {
    grid-column: 1 / -1;
    min-height: 136px;
    padding: 12px;
  }

  .hero-area-chart {
    height: 68px;
    margin-top: 4px;
  }

  .area-stat-row {
    margin-top: 2px;
  }

  .area-stat-row span {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .hero-pie-card,
  .video-card,
  .mc-card,
  .profile-card {
    min-height: 132px;
    padding: 12px;
  }

  .hero-pie-card strong {
    font-size: 20px;
  }

  .hero-donut {
    width: 60px;
    height: 60px;
    margin-top: 10px;
  }

  .hero-donut::after {
    width: 28px;
    height: 28px;
    margin: 16px;
  }

  .video-preview {
    min-height: 58px;
    border-radius: 10px;
  }

  .video-preview span {
    width: 32px;
    height: 32px;
  }

  .video-card strong,
  .mc-card strong {
    font-size: 12px;
  }

  .mc-options {
    gap: 5px;
    margin-top: 8px;
  }

  .mc-options span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 9px;
  }

  .team-map {
    min-height: 96px;
    margin-top: 8px;
    border-radius: 12px;
  }

  .team-map::before {
    top: 40px;
    height: 28px;
  }

  .team-map::after {
    top: 68px;
    width: 76px;
  }

  .team-hub {
    top: 10px;
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }

  .team-hub i {
    width: 25px;
    height: 23px;
  }

  .team-hub i::before {
    width: 12px;
    height: 12px;
  }

  .team-hub i::after {
    height: 12px;
    border-radius: 12px 12px 5px 5px;
  }

  .team-branches {
    right: 7px;
    bottom: 8px;
    left: 7px;
    gap: 5px;
  }

  .team-branches span {
    min-height: 28px;
    border-radius: 10px;
    font-size: 9px;
  }

  .hero-float,
  .hero-plus {
    display: none;
  }

  .explore-section,
  .client-marquee,
  .possibility-section,
  .enterprise-section,
  .qa-section,
  .contact-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .client-marquee {
    padding-bottom: 56px;
  }

  .client-logo {
    flex-basis: 184px;
    height: 92px;
    padding: 16px 20px;
  }

  .client-logo img {
    max-height: 60px;
  }

  .explore-section h2,
  .possibility-section h2 {
    font-size: 48px;
  }

  .possibility-section .role-heading {
    font-size: 38px;
    line-height: 1.08;
  }

  .enterprise-copy h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .enterprise-copy p,
  .possibility-intro {
    font-size: 16px;
  }

  .qa-section h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .award-section {
    width: min(100% - 28px, 900px);
    margin: -18px 14px 54px;
  }

  .award-copy,
  .award-card {
    padding: 18px;
    border-radius: 24px;
  }

  .award-copy {
    min-height: auto;
  }

  .award-copy h2 {
    font-size: 24px;
  }

  .award-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .award-card {
    min-height: 168px;
  }

  .award-card img {
    width: min(110px, 100%);
    max-height: 58px;
  }

  .award-card h3 {
    margin-top: 18px;
    font-size: 12px;
  }

  .possibility-grid,
  .enterprise-board {
    grid-template-columns: 1fr;
  }

  .enterprise-section {
    padding: 58px 0;
  }

  .enterprise-board {
    padding: 8px;
    border-radius: 24px;
  }

  .enterprise-tile,
  .workflow-tile {
    grid-column: span 1;
    grid-row: span 1;
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .tile-copy h3 {
    font-size: 29px;
  }

  .workflow-graphic {
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 26px;
  }

  .workflow-graphic i {
    width: 3px;
    height: 22px;
    margin: 0 auto;
    transform-origin: top;
  }

  .workflow-graphic i::before {
    animation: none;
  }

  .integration-tile {
    grid-column: span 1;
  }

  .deployment-graphic {
    grid-template-columns: 76px minmax(42px, 1fr) 76px;
    min-height: 96px;
    gap: 8px;
  }

  .deploy-node {
    min-height: 78px;
    padding: 9px;
    border-radius: 20px;
  }

  .cloud-node svg {
    width: 42px;
    height: 42px;
  }

  .server-rack {
    width: 42px;
    gap: 4px;
  }

  .server-rack span {
    height: 12px;
  }

  .deploy-node > span {
    font-size: 10px;
  }

  .user-tile strong {
    font-size: 52px;
  }

  .hk-enterprise-section {
    min-height: 640px;
    margin: 28px 0 70px;
    background-position: 58% center;
  }

  .hk-enterprise-inner {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .hk-enterprise-inner h2 {
    font-size: 42px;
    line-height: 1;
  }

  .hk-enterprise-inner p {
    font-size: 17px;
  }

  .mode-panel {
    min-height: auto;
    padding: 20px;
    border-radius: 30px;
  }

  .mode-copy h3 {
    font-size: 36px;
  }

  .insight-section {
    width: 100%;
    margin-bottom: 70px;
  }

  .insight-copy {
    padding: 34px 20px 24px;
  }

  .insight-copy h2 {
    font-size: 43px;
  }

  .insight-copy p {
    margin-top: 22px;
    font-size: 17px;
  }

  .insight-visual {
    min-height: 0;
    border-radius: 24px 24px 0 0;
  }

  .insight-visual img {
    height: 420px;
  }

  .mode-copy p {
    font-size: 16px;
  }

  .mode-copy li {
    border-radius: var(--radius);
  }

  .mode-visual {
    min-height: 270px;
    border-radius: 26px;
  }

  .mode-image-visual {
    min-height: 260px;
    padding: 18px;
  }

  .mode-screenshot-plate {
    width: 100%;
    border-radius: 24px;
    transform: none;
  }

  .mode-panel:nth-child(even) .mode-screenshot-plate,
  .mode-panel:hover .mode-screenshot-plate {
    transform: none;
  }

  .contact-section,
  .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;
  }

  .hero-badge {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-copy h1 {
    font-size: 46px;
    line-height: 1.04;
  }

  .hero-copy p {
    margin-top: 24px;
  }

  .hero-product {
    margin-top: 42px;
  }

  .client-marquee {
    margin-top: 32px;
    padding-bottom: 74px;
  }

  .explore-section,
  .possibility-section,
  .enterprise-section,
  .qa-section {
    padding: 74px 0;
  }

  .explore-section h2,
  .possibility-section h2 {
    margin-bottom: 32px;
  }

  .mode-showcase {
    gap: 24px;
  }

  .mode-panel {
    gap: 24px;
    padding: 24px;
  }

  .mode-copy ul {
    margin-top: 24px;
  }

  .mode-link {
    margin-top: 28px;
  }

  .possibility-grid {
    gap: 16px;
  }

  .possibility-grid article {
    padding: 28px;
  }

  .possibility-intro {
    margin-bottom: 32px;
  }

  .enterprise-copy {
    margin-bottom: 32px;
  }

  .enterprise-board {
    gap: 12px;
    padding: 10px;
  }

  .enterprise-tile,
  .workflow-tile {
    padding: 24px;
    border-radius: 24px;
  }

  .insight-section {
    margin: 28px 0 82px;
  }

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

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

  .contact-section {
    gap: 24px;
    margin-bottom: 54px;
    padding: 32px 28px;
  }

  .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 */
@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 */
.home-page .hero-copy h1 {
  max-width:1120px;
  font-size:clamp(64px,7.2vw,108px);
  font-weight:700;
  letter-spacing:-.078em;
  line-height:.9;
}
.home-page .hero-copy h1 span {
  margin-top:.08em;
  padding:0;
  background:none;
  color:var(--orange);
  font-family:Georgia,serif;
  font-size:.9em;
  font-style:italic;
  font-weight:400;
  letter-spacing:-.075em;
  -webkit-text-fill-color:var(--orange);
}

/* Homepage learning-mode artwork: present every image directly without the
   dark screenshot frame. */
.home-page .mode-image-visual {
  padding:0;
  background:transparent;
}
.home-page .mode-image-visual::before {
  content:none;
}
.home-page .mode-image-visual .mode-screenshot-plate,
.home-page .mode-panel:hover .mode-image-visual .mode-screenshot-plate {
  width:100%;
  height:auto;
  aspect-ratio:4 / 3;
  border:0;
  border-radius:28px;
  box-shadow:none;
  transform:none;
}
.home-page .mode-image-visual .mode-screenshot-plate img {
  object-fit:cover;
  object-position:center;
}
.home-page .hero-copy p {
  max-width:720px;
  color:rgba(0,0,0,.62);
  font-size:17px;
  font-weight:400;
  line-height:1.72;
}
.home-page .hero-badge {
  color:rgba(0,0,0,.48);
  font-size:11px;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.home-page .explore-section h2,
.home-page .insight-copy h2 {
  font-size:clamp(54px,6vw,82px);
  font-weight:700;
  letter-spacing:-.078em;
  line-height:.91;
  text-transform:none;
}
.home-page .explore-section h2 em,
.home-page .insight-copy h2 em {
  color:var(--orange);
  font-family:Georgia,serif;
  font-weight:400;
}
.home-page .mode-copy h3 {
  font-size:clamp(38px,4vw,52px);
  font-weight:650;
  letter-spacing:-.065em;
  line-height:.96;
}
.home-page .mode-copy p {
  color:rgba(0,0,0,.6);
  font-size:16px;
  line-height:1.72;
}
.home-page .mode-copy li {
  font-size:14px;
  line-height:1.45;
}
.home-page .mode-link,
.home-page .primary-pill {
  font-size:13px;
  font-weight:750;
  letter-spacing:-.01em;
}
.home-page .insight-copy p {
  color:rgba(0,0,0,.62);
  font-size:18px;
  font-weight:400;
  line-height:1.72;
}
.home-page .possibility-section .role-heading,
.home-page .enterprise-copy h2 {
  font-size:clamp(48px,5vw,68px);
  font-weight:650;
  letter-spacing:-.075em;
  line-height:.94;
}
.home-page .possibility-intro,
.home-page .enterprise-copy p {
  color:rgba(0,0,0,.6);
  font-size:17px;
  line-height:1.68;
}
.home-page .possibility-grid h3 {
  font-size:22px;
  font-weight:650;
  letter-spacing:-.045em;
  line-height:1.05;
}
.home-page .possibility-grid p,
.home-page .qa-list p {
  font-size:15px;
  line-height:1.65;
}
.home-page .qa-section h2,
.home-page .contact-section h2 {
  font-size:clamp(42px,4.4vw,62px);
  font-weight:650;
  letter-spacing:-.07em;
  line-height:.98;
}
.home-page .qa-list summary {
  font-size:18px;
  font-weight:650;
  letter-spacing:-.025em;
}
.home-page .qa-list {
  gap:0;
  border-top:1px solid rgba(0,0,0,.16);
}
.home-page .qa-list details {
  padding:0;
  border:0;
  border-bottom:1px solid rgba(0,0,0,.16);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.home-page .qa-list summary {
  padding:22px 0;
}
.home-page .qa-list p {
  max-width:760px;
  padding:0 52px 24px 0;
}
.home-page .contact-section {
  min-height:360px;
  padding:64px 68px;
  border:0;
  border-radius:30px;
  background:#202a2b;
  box-shadow:none;
  color:#f5f2eb;
  animation:none;
}
.home-page .contact-section::before,
.home-page .contact-section::after {
  content:none;
}
.home-page .contact-copy {
  position:relative;
  z-index:1;
  max-width:760px;
}
.home-page .contact-copy > span {
  display:block;
  margin-bottom:22px;
  color:rgba(255,255,255,.52);
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.home-page .contact-section h2 {
  max-width:760px;
  margin:0;
  color:#f5f2eb;
  font-size:clamp(46px,5vw,68px);
  font-weight:650;
  letter-spacing:-.075em;
  line-height:.94;
}
.home-page .contact-section h2 em {
  color:var(--orange);
  font-family:Georgia,serif;
  font-weight:400;
}
.home-page .contact-copy p {
  max-width:650px;
  margin:26px 0 0;
  color:rgba(255,255,255,.58);
  font-size:16px;
  line-height:1.65;
}
.home-page .contact-section .primary-pill {
  flex:0 0 auto;
  background:#fff;
  color:#151b1c;
  box-shadow:none;
}
.home-page .contact-section .primary-pill:hover {
  background:var(--orange);
  color:#fff;
}
.home-page .contact-section .primary-pill b {
  display:grid;
  width:26px;
  height:26px;
  flex:0 0 26px;
  place-items:center;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  font-size:17px;
  line-height:1;
  transition:transform 260ms var(--ease);
}
.home-page .contact-section .primary-pill:hover b {
  background:#fff;
  color:var(--orange);
  transform:translateX(2px);
}
.home-page .award-copy span,
.home-page .client-copy h2 {
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.home-page .award-copy h2 {
  font-size:30px;
  font-weight:650;
  letter-spacing:-.045em;
  line-height:1.03;
}
@media (max-width:640px) {
  .home-page .hero-copy h1 {
    font-size:clamp(47px,14vw,62px);
    line-height:.92;
  }
  .home-page .hero-copy h1 span { margin-top:.12em; }
  .home-page .hero-copy p { font-size:16px; line-height:1.65; }
  .home-page .hero-badge { font-size:10px; }
  .home-page .explore-section h2,
  .home-page .insight-copy h2 { font-size:48px; }
  .home-page .mode-copy h3 { font-size:38px; }
  .home-page .possibility-section .role-heading,
  .home-page .enterprise-copy h2 { font-size:40px; }
  .home-page .qa-section h2,
  .home-page .contact-section h2 { font-size:38px; }
  .home-page .contact-section {
    align-items:flex-start;
    flex-direction:column;
    min-height:0;
    padding:42px 28px;
  }
}

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