@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");
/* Source entry for the PostCSS build (npm run build:css).
   styles.source.css is the canonical stable stylesheet; build output writes to styles.css. */
/* Source entry for the Tailwind + PostCSS build (npm run build:css) */
:root {
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --bg: #05070a;
  --bg-soft: #0c1016;
  --panel: #0f141c;
  --panel-2: #121a24;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f4f7fb;
  --text-muted: rgba(244, 247, 251, 0.66);
  --text-faint: rgba(244, 247, 251, 0.42);
  --accent: #8fb8ff;
  --accent-2: #bfd4ff;
  --accent-3: rgba(143, 184, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --gutter: clamp(16px, 4vw, 80px);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1600px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* 桌面端限制最小宽度，确保 topbar 始终完整显示 */
@media (pointer: fine) {
  body {
    min-width: 702px;
  }

  .topnav {
    flex-wrap: nowrap;
  }

  .topnav a {
    flex-shrink: 0;
  }
}
body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(143, 184, 255, 0.08), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #06080c 0%, #0a0e14 100%);
}
html[data-page-loader="visible"] {
  overflow: hidden;
}
html[data-page-loader="visible"] .site-shell,
html[data-i18n-ready="false"] .site-shell {
  visibility: hidden;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 420ms ease,
    visibility 0s linear 420ms;
}
html[data-page-loader="visible"] .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 420ms ease,
    visibility 0s;
}
.page-loader__orb {
  position: relative;
  width: min(320px, calc(100vw - 48px));
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(241, 247, 255, 0.24);
}
.page-loader__value {
  position: absolute;
  right: 0;
  top: -18px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(248, 252, 255, 0.97);
  transform: translateY(-100%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.page-loader__orb::before,
.page-loader__orb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
}
.page-loader__orb::before {
  background: transparent;
}
.page-loader__orb::after {
  inset: 0 auto 0 0;
  width: var(--page-loader-progress, 0%);
  background: rgba(255, 255, 255, 0.96);
  transition: width 140ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .page-loader__orb::after {
    transition-duration: 0ms;
  }
}
.route-progress {
  position: absolute;
  inset: 0;
  z-index: 22;
  display: grid;
  place-items: center;
  background: #03070d;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition:
    opacity 160ms ease,
    visibility 0s linear 160ms;
}
.route-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 160ms ease,
    visibility 0s;
}
.route-progress-inner {
  width: min(320px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  gap: 8px;
}
.route-progress-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 247, 255, 0.84);
}
.route-progress-value {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(248, 252, 255, 0.97);
}
.route-progress-track {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(241, 247, 255, 0.24);
  overflow: hidden;
}
.route-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  transition: width 120ms linear;
}
img,
video,
iframe {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
.site-shell {
  width: 100%;
  margin: 0;
  padding: 18px 0 72px;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.home-page .site-shell {
  padding-top: 0;
}
/* Keep topbar baseline identical to home page across subpages. */
body:not(.home-page) .site-shell {
  padding-top: 0;
}
.home-page main {
  margin-top: clamp(-86px, -7.2vw, -64px);
}
body.is-routing .site-shell {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  pointer-events: none;
}
.topbar {
  position: sticky;
  top: 30px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: auto;
  margin: 0 var(--gutter);
  padding: 8px 16px;
  border-radius: 14px;
  background: rgba(235, 235, 235, 0.3);
  border: 1px solid rgba(128, 146, 170, 0.42);
  backdrop-filter: blur(10px);
}
.home-page .topbar {
  position: sticky;
  top: 30px;
  left: auto;
  right: auto;
  margin: 0 var(--gutter);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  min-width: 0;
}
.brand-title {
  font-size: 0.96rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28, 40, 57, 0.96);
}
.eyebrow,
.pipeline-index,
.rail-index {
  color: var(--text-faint);
}
.topnav {
  display: inline-flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(4px, 1.25vw, 16px);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 12px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  color: rgba(48, 62, 82, 0.82);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}
/* Prevent browser-default aria-current emphasis from changing nav width. */
.topnav a[aria-current="page"] {
  font-weight: inherit;
}
.topnav a:hover,
.topnav a:focus-visible {
  color: rgba(22, 34, 50, 0.98);
  background: rgba(255, 255, 255, 0.22);
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 8px;
}
.lang-switcher-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(48, 62, 82, 0.76);
}
.lang-switcher-select {
  min-width: 108px;
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(128, 146, 170, 0.42);
  background: rgba(245, 249, 255, 0.66);
  color: rgba(28, 40, 57, 0.96);
  font-size: 0.76rem;
  font-weight: 600;
}
.lang-switcher-select:focus-visible {
  outline: 2px solid rgba(116, 155, 214, 0.7);
  outline-offset: 2px;
}
/* —— Pro matrix language switcher (glass panel, 2×4 grid) —— */
.lang-switcher--matrix {
  position: relative;
  align-self: center;
  flex: 0 0 auto;
}
/* English-only topbar overflow guard (do not affect other locales) */
html[lang="en"] .topbar {
  padding: 10px 14px;
}
html[lang="en"] .topnav {
  flex-wrap: nowrap;
  gap: clamp(2px, 0.8vw, 10px);
}
html[lang="en"] .topnav a {
  letter-spacing: -0.015em;
  padding-inline: 9px;
}
/* French-only topbar overflow guard (keep one row) */
html[lang="fr"] .topbar {
  padding: 9px 14px;
}
html[lang="fr"] .topnav {
  flex-wrap: nowrap;
  gap: clamp(2px, 0.8vw, 10px);
}
html[lang="fr"] .topnav a {
  letter-spacing: -0.012em;
  padding-inline: 8px;
}
/* Spanish / Russian overflow guard (keep same topbar layout). */
html[lang="es"] .topbar,
html[lang="ru"] .topbar {
  padding: 9px 14px;
}
html[lang="es"] .topnav,
html[lang="ru"] .topnav {
  flex-wrap: nowrap;
  gap: clamp(2px, 0.8vw, 10px);
}
html[lang="es"] .topnav a,
html[lang="ru"] .topnav a {
  letter-spacing: -0.012em;
  padding-inline: 8px;
}
@media (max-width: 1280px) {
  html[lang="en"] .topbar,
  html[lang="fr"] .topbar,
  html[lang="es"] .topbar,
  html[lang="ru"] .topbar {
    padding: 8px 12px;
  }
  html[lang="en"] .topnav,
  html[lang="fr"] .topnav,
  html[lang="es"] .topnav,
  html[lang="ru"] .topnav {
    gap: 4px;
    font-size: 0.84rem;
    flex-wrap: nowrap;
  }
  html[lang="en"] .topnav a,
  html[lang="fr"] .topnav a,
  html[lang="es"] .topnav a,
  html[lang="ru"] .topnav a {
    padding-inline: 7px;
    letter-spacing: -0.012em;
  }
}
.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  height: auto;
  min-height: 40px;
  padding: 6px 12px;
  margin: 0;
  border-radius: 10px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(28, 40, 57, 0.94);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease;
}
.lang-switcher-trigger:hover,
.lang-switcher-trigger:focus-visible,
.lang-switcher-trigger:active,
.lang-switcher--matrix.is-open .lang-switcher-trigger {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.lang-switcher-trigger:focus-visible {
  outline: 2px solid rgba(116, 155, 214, 0.65);
  outline-offset: 2px;
}
.lang-switcher-globe {
  display: inline-block;
  width: 1.34rem;
  height: 1.34rem;
  flex-shrink: 0;
  background-color: currentColor;
  opacity: 0.86;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.8 3.2 2.8 14.8 0 18M12 3c-2.8 3.2-2.8 14.8 0 18'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c2.8 3.2 2.8 14.8 0 18M12 3c-2.8 3.2-2.8 14.8 0 18'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.lang-switcher-current {
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lang-switcher-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  z-index: 80;
  min-width: 232px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(182, 201, 230, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(14, 18, 28, 0.2);
  backdrop-filter: blur(14px) saturate(122%);
  -webkit-backdrop-filter: blur(14px) saturate(122%);
  box-shadow:
    0 12px 30px rgba(10, 16, 28, 0.26),
    0 2px 0 rgba(255, 255, 255, 0.08) inset;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  transform: translateY(-4px) scale(0.985);
}
.lang-switcher-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(110% 85% at 8% 0%, rgba(255, 255, 255, 0.26), transparent 56%),
    radial-gradient(75% 70% at 100% 100%, rgba(143, 184, 255, 0.16), transparent 68%);
  opacity: 0.78;
}
html[dir="rtl"] .lang-switcher--matrix .lang-switcher-panel {
  right: auto;
  left: 0;
}
.lang-switcher--matrix.is-open .lang-switcher-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.lang-switcher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.lang-switcher-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  padding: 9px 11px;
  border-radius: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(241, 246, 255, 0.94);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: start;
  cursor: pointer;
  transition:
    background-color 140ms ease,
    color 140ms ease;
}
.lang-switcher-option:hover,
.lang-switcher-option:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}
.lang-switcher-option:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 1px;
}
.lang-switcher-option-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lang-switcher-option[data-lang="ar"] .lang-switcher-option-label {
  direction: rtl;
  unicode-bidi: isolate;
}
/* Matrix ordering: keep Simplified/Traditional Chinese on same row */
.lang-switcher-option[data-lang="zh"] { order: 1; }
.lang-switcher-option[data-lang="zht"] { order: 2; }
.lang-switcher-option[data-lang="en"] { order: 3; }
.lang-switcher-option[data-lang="ja"] { order: 4; }
.lang-switcher-option[data-lang="ko"] { order: 5; }
.lang-switcher-option[data-lang="fr"] { order: 6; }
.lang-switcher-option[data-lang="de"] { order: 7; }
.lang-switcher-option[data-lang="ar"] { order: 8; }
.lang-switcher-option[data-lang="sp"] { order: 9; }
.lang-switcher-option[data-lang="ra"] { order: 10; }
.lang-switcher-active-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 140ms ease, box-shadow 140ms ease;
  display: none;
}
.lang-switcher-option.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(16, 22, 32, 0.95);
}
.lang-switcher-option.is-active .lang-switcher-active-dot {
  opacity: 1;
  background: rgba(160, 205, 255, 0.95);
  box-shadow: 0 0 10px rgba(130, 175, 255, 0.65);
}
body .topbar,
body .brand-title,
body .brand-mark,
body .brand-copy strong,
body .brand-copy small,
body .topnav a,
body .lang-switcher-label,
body .lang-switcher-select,
body .lang-switcher-trigger,
body .lang-switcher-current,
body .lang-switcher-panel,
body .lang-switcher-option {
  transition:
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease,
    opacity 220ms ease;
}
body.nav-on-dark .topbar {
  background: rgba(244, 248, 255, 0.44);
  border-color: rgba(79, 101, 134, 0.28);
  backdrop-filter: blur(14px) saturate(136%);
  box-shadow: 0 10px 24px rgba(24, 35, 54, 0.14);
}
body.nav-on-dark .brand-title,
body.nav-on-dark .brand-mark,
body.nav-on-dark .brand-copy strong,
body.nav-on-dark .topnav a {
  color: rgba(28, 41, 60, 0.96);
}
body.nav-on-dark .brand-copy small {
  color: rgba(49, 67, 93, 0.8);
}
body.nav-on-dark .topnav a:hover,
body.nav-on-dark .topnav a:focus-visible {
  color: rgba(12, 24, 41, 0.98);
}
body.nav-on-dark .lang-switcher-label {
  color: rgba(39, 60, 89, 0.8);
}
body.nav-on-dark .lang-switcher-select {
  border-color: rgba(95, 120, 156, 0.38);
  background: rgba(246, 251, 255, 0.72);
  color: rgba(31, 48, 72, 0.92);
}
body.nav-on-light .topbar {
  background: rgba(14, 18, 28, 0.2);
  border-color: rgba(120, 140, 168, 0.24);
  backdrop-filter: blur(8px) saturate(110%);
  box-shadow: none;
}
body.nav-on-light .brand-title,
body.nav-on-light .brand-mark,
body.nav-on-light .brand-copy strong,
body.nav-on-light .topnav a {
  color: rgba(239, 246, 255, 0.96);
}
body.nav-on-light .brand-copy small {
  color: rgba(210, 226, 250, 0.78);
}
body.nav-on-light .topnav a:hover,
body.nav-on-light .topnav a:focus-visible {
  color: rgba(250, 253, 255, 0.98);
}
body.nav-on-light .lang-switcher-label {
  color: rgba(217, 230, 248, 0.82);
}
body.nav-on-light .lang-switcher-select {
  border-color: rgba(191, 212, 255, 0.3);
  background: rgba(16, 25, 39, 0.48);
  color: rgba(241, 248, 255, 0.95);
}
body.nav-on-dark .lang-switcher-trigger {
  border-color: transparent;
  background: transparent;
  color: rgba(31, 48, 72, 0.92);
}
body.nav-on-dark .lang-switcher-trigger:hover,
body.nav-on-dark .lang-switcher-trigger:focus-visible,
body.nav-on-dark .lang-switcher-trigger:active,
body.nav-on-dark .lang-switcher--matrix.is-open .lang-switcher-trigger {
  background: rgba(255, 255, 255, 0.22);
}
body.nav-on-dark .lang-switcher-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 245, 248, 0.78)),
    rgba(247, 248, 250, 0.44);
  border-color: rgba(90, 102, 118, 0.22);
  backdrop-filter: blur(14px) saturate(136%);
  -webkit-backdrop-filter: blur(14px) saturate(136%);
  box-shadow: 0 12px 28px rgba(24, 30, 38, 0.14);
}
body.nav-on-dark .lang-switcher-panel::before {
  background:
    radial-gradient(110% 85% at 8% 0%, rgba(255, 255, 255, 0.3), transparent 56%),
    radial-gradient(75% 70% at 100% 100%, rgba(200, 206, 216, 0.16), transparent 68%);
}
body.nav-on-dark .lang-switcher-option {
  color: rgba(30, 46, 71, 0.95);
  background: rgba(255, 255, 255, 0.72);
}
body.nav-on-dark .lang-switcher-option.is-active {
  background: rgba(20, 26, 36, 0.9);
  color: rgba(245, 249, 255, 0.95);
}
body.nav-on-light .lang-switcher-trigger {
  border-color: transparent;
  background: transparent;
  color: rgba(241, 248, 255, 0.95);
}
body.nav-on-light .lang-switcher-trigger:hover,
body.nav-on-light .lang-switcher-trigger:focus-visible,
body.nav-on-light .lang-switcher-trigger:active,
body.nav-on-light .lang-switcher--matrix.is-open .lang-switcher-trigger {
  background: rgba(255, 255, 255, 0.22);
}
body.nav-on-light .lang-switcher-panel {
  background:
    linear-gradient(180deg, rgba(22, 30, 44, 0.88), rgba(10, 16, 26, 0.78)),
    rgba(8, 12, 20, 0.58);
  border-color: rgba(191, 212, 255, 0.24);
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}
body.nav-on-light .lang-switcher-option {
  color: rgba(241, 248, 255, 0.94);
  background: rgba(255, 255, 255, 0.1);
}
body.nav-on-light .lang-switcher-option.is-active {
  background: rgba(247, 251, 255, 0.95);
  color: rgba(14, 20, 30, 0.96);
}
body.is-rtl .topbar {
  direction: rtl;
}
.hero,
.business-section,
.cases-section,
.contact-section {
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}
.architecture-hero,
.architecture-section {
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}
.architecture-section {
  margin-bottom: 0;
}
.business-section {
  border-top: 0;
}
.business-section .section-frame {
  padding-top: clamp(20px, 3.2vw, 44px);
}
.architecture-hero .section-frame {
  padding-top: clamp(38px, 5vw, 76px);
  padding-bottom: clamp(26px, 4vw, 52px);
}
.architecture-hero h1 {
  margin: 8px 0 0;
  font-family: var(--font-primary);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.architecture-intro {
  max-width: min(74ch, 100%);
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-muted);
}
.architecture-stack {
  display: grid;
  gap: 0;
}
.architecture-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin: 34px auto 0;
  padding: 0;
}
.architecture-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(1.12rem, 2.2vw, 2.05rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(244, 247, 251, 0.66);
  transition: color 180ms ease;
}
.architecture-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: rgba(191, 212, 255, 0.5);
  opacity: 0;
  transition: opacity 180ms ease;
}
.architecture-nav-item:hover,
.architecture-nav-item:focus-visible,
.architecture-nav-item.is-active {
  color: rgba(244, 247, 251, 0.96);
}
.architecture-nav-item:hover::after,
.architecture-nav-item:focus-visible::after,
.architecture-nav-item.is-active::after {
  opacity: 1;
}
.architecture-world-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 12px auto 16px;
}
.architecture-world-line {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1.14rem;
  letter-spacing: 0.02em;
  color: rgba(232, 240, 252, 0.9);
}
.architecture-layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 0;
  padding-top: 0;
}
.architecture-carousel {
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.architecture-carousel-track {
  display: block;
  width: 100%;
}
.architecture-carousel-slide {
  width: 100%;
}
.architecture-carousel-slide[data-arch-slide="ontology"] {
  display: none;
}
.architecture-three-viewport {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 52vw, 860px);
  margin: 0;
  border: 1px solid rgba(79, 111, 154, 0.46);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(8, 12, 18, 0.12) 58%,
    var(--bg-soft) 100%
  );
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.architecture-three-viewport.arch-slide-left {
  animation: architectureViewportSlideLeft 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.architecture-three-viewport.arch-slide-right {
  animation: architectureViewportSlideRight 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes architectureViewportSlideLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  46% {
    transform: translate3d(-106%, 0, 0);
  }
  54% {
    transform: translate3d(106%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes architectureViewportSlideRight {
  0% {
    transform: translate3d(0, 0, 0);
  }
  46% {
    transform: translate3d(106%, 0, 0);
  }
  54% {
    transform: translate3d(-106%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.architecture-section .architecture-three-viewport {
  border: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
.architecture-three-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #03070d;
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}
.architecture-three-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 48px;
  background: transparent;
  pointer-events: auto;
}
.architecture-three-viewport.is-scene-loading::before {
  opacity: 1;
}
.architecture-three-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.architecture-agentrix-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.architecture-agentrix-fallback img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: saturate(0.92) contrast(1.03);
}
.architecture-three-viewport.has-agentrix-fallback .architecture-agentrix-fallback {
  opacity: 1;
}
.ontology-cy {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #f7f9fc;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.ontology-three-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ontology-three-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.ontology-cy-fallback {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(49, 68, 96, 0.72);
}
.architecture-three-viewport.is-ontology-empty .ontology-cy {
  opacity: 1;
  pointer-events: auto;
}
.architecture-three-viewport.is-ontology-empty .architecture-agentrix-fallback {
  opacity: 0;
}
.architecture-three-viewport.is-ontology-empty::after {
  pointer-events: none;
}
.architecture-three-canvas,
.architecture-agentrix-fallback,
.ontology-cy,
.architecture-db-popup,
.architecture-task-popup,
.architecture-layer-popup,
.architecture-worker-popup,
.architecture-three-overlay {
  transition: opacity 240ms ease;
}
.architecture-three-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.architecture-three-overlay {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 3;
  padding: 4px 8px;
  border: 1px solid rgba(94, 130, 178, 0.36);
  border-radius: 6px;
  background: rgba(8, 14, 24, 0.74);
  color: rgba(193, 214, 246, 0.9);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.architecture-camera-panel {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 18;
  width: min(420px, calc(100% - 28px));
  padding: 10px 10px 8px;
  border: 1px solid rgba(86, 109, 143, 0.34);
  border-radius: 12px;
  background: rgba(7, 13, 22, 0.78);
  color: rgba(221, 234, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.architecture-camera-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.architecture-camera-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.architecture-camera-status {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(165, 195, 238, 0.9);
}
.architecture-camera-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.architecture-camera-fields label {
  display: grid;
  gap: 2px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(181, 206, 241, 0.86);
}
.architecture-camera-fields input {
  height: 24px;
  padding: 0 6px;
  border: 1px solid rgba(84, 116, 162, 0.52);
  border-radius: 6px;
  background: rgba(9, 16, 27, 0.86);
  color: rgba(230, 240, 255, 0.96);
  font-size: 0.68rem;
}
.architecture-camera-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.architecture-camera-actions button {
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(95, 126, 172, 0.56);
  border-radius: 999px;
  background: rgba(12, 20, 33, 0.9);
  color: rgba(228, 239, 255, 0.94);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.architecture-camera-json {
  width: 100%;
  height: 96px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(84, 116, 162, 0.45);
  border-radius: 8px;
  background: rgba(6, 12, 20, 0.92);
  color: rgba(214, 231, 255, 0.94);
  font-size: 0.62rem;
  line-height: 1.45;
  resize: vertical;
}
@media (max-width: 980px) {
  .architecture-camera-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-three-viewport::after {
    width: 40px;
  }
}
.ontology-camera-panel {
  display: none;
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 18;
  width: min(420px, calc(100% - 28px));
  padding: 10px 10px 8px;
  border: 1px solid rgba(86, 109, 143, 0.34);
  border-radius: 12px;
  background: rgba(7, 13, 22, 0.78);
  color: rgba(221, 234, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ontology-camera-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.ontology-camera-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ontology-camera-status {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(165, 195, 238, 0.9);
}
.ontology-camera-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.ontology-camera-fields label {
  display: grid;
  gap: 2px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(181, 206, 241, 0.86);
}
.ontology-camera-fields input {
  height: 24px;
  padding: 0 6px;
  border: 1px solid rgba(84, 116, 162, 0.52);
  border-radius: 6px;
  background: rgba(9, 16, 27, 0.86);
  color: rgba(230, 240, 255, 0.96);
  font-size: 0.68rem;
}
.ontology-camera-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.ontology-camera-actions button {
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(95, 126, 172, 0.56);
  border-radius: 999px;
  background: rgba(12, 20, 33, 0.9);
  color: rgba(228, 239, 255, 0.94);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ontology-camera-json {
  width: 100%;
  height: 96px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(84, 116, 162, 0.45);
  border-radius: 8px;
  background: rgba(6, 12, 20, 0.92);
  color: rgba(214, 231, 255, 0.94);
  font-size: 0.62rem;
  line-height: 1.45;
  resize: vertical;
}
@media (max-width: 980px) {
  .ontology-camera-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.ontology-node-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  width: min(280px, 23%);
  max-height: none;
  overflow: auto;
  padding: 18px 22px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #000;
  color: rgba(244, 247, 251, 0.94);
}
@media (min-width: 981px) {
  .ontology-cy.is-rtl .ontology-node-panel {
    right: auto;
    left: 0;
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    direction: rtl;
    text-align: right;
  }

  .ontology-cy.is-rtl .ontology-node-panel-list li {
    padding: 0 12px 0 0;
  }

  .ontology-cy.is-rtl .ontology-node-panel-list li::before {
    right: 0;
    left: auto;
  }
}
.ontology-node-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "kicker"
    "title"
    "summary"
    "meta"
    "points";
  align-items: start;
  gap: 16px;
}
.ontology-node-panel-kicker {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(143, 184, 255, 0.72);
}
.ontology-node-panel-title {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: rgba(248, 252, 255, 0.98);
}
.ontology-node-panel-kicker {
  grid-area: kicker;
}
.ontology-node-panel-title {
  grid-area: title;
  align-self: start;
}
.ontology-node-panel-section {
  display: grid;
  gap: 7px;
}
.ontology-node-panel-section:nth-of-type(1) {
  grid-area: summary;
}
.ontology-node-panel-section-meta {
  grid-area: meta;
}
.ontology-node-panel-section:nth-of-type(3) {
  grid-area: points;
}
.ontology-node-panel-section-title {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191, 212, 255, 0.58);
}
.ontology-node-panel-summary {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(232, 240, 252, 0.82);
  background: transparent;
}
.ontology-node-panel-meta {
  display: grid;
  gap: 8px;
}
.ontology-node-panel-meta-item {
  display: grid;
  gap: 2px;
}
.ontology-node-panel-meta-key {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(191, 212, 255, 0.5);
}
.ontology-node-panel-chip {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  line-height: 1.38;
  letter-spacing: 0.01em;
  color: rgba(244, 247, 251, 0.88);
  background: transparent;
}
.ontology-node-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.ontology-node-panel-list li {
  position: relative;
  padding: 0 0 0 12px;
  border: 0;
  border-radius: 0;
  font-size: 0.78rem;
  line-height: 1.48;
  color: rgba(232, 240, 252, 0.78);
  background: transparent;
}
.ontology-node-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(143, 184, 255, 0.74);
}
@media (max-width: 980px) {
  .ontology-cy {
    display: flex;
    flex-direction: column;
  }

  .ontology-three-canvas {
    position: relative;
    inset: auto;
    order: 2;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    background: #f7f9fc;
  }

  .ontology-node-panel {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    order: 1;
    width: 100%;
    max-height: none;
    overflow: visible;
    box-sizing: border-box;
    padding: 14px 16px 12px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ontology-node-panel-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "summary";
    gap: 10px;
  }

  .ontology-node-panel-kicker,
  .ontology-node-panel-section-title {
    display: none;
  }

  .ontology-node-panel-section-meta,
  .ontology-node-panel-section:nth-of-type(3) {
    display: none;
  }
}
.architecture-three-welcome {
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 4;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0.006em;
  word-spacing: 0;
  color: rgba(255, 255, 255, 0.96);
  display: inline-block;
  padding: 27px 38px 30px;
  border-radius: 10px;
  background: rgba(138, 149, 166, 0.72);
  border: 0;
  pointer-events: none;
}
.architecture-reset-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dbeafe;
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.architecture-reset-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 219, 254, 0.58);
  background: rgba(15, 23, 42, 0.78);
}
.architecture-reset-btn:active {
  transform: translateY(0);
}
.architecture-reset-btn:focus-visible {
  outline: 2px solid rgba(147, 197, 253, 0.85);
  outline-offset: 2px;
}
.architecture-reset-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.architecture-layer-popup {
  position: absolute;
  top: var(--layer-popup-safe-top, 14px);
  right: clamp(16px, 2.1vw, 30px);
  left: auto;
  z-index: 17;
  width: min(252px, calc(100% - 68px));
  padding: 8px 14px 12px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(206, 226, 255, 0.42);
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.38), rgba(221, 236, 255, 0.2)),
    linear-gradient(180deg, rgba(235, 246, 255, 0.22), rgba(216, 232, 255, 0.14)),
    rgba(208, 226, 248, 0.2);
  box-shadow:
    0 22px 46px rgba(19, 38, 66, 0.18),
    0 2px 12px rgba(19, 38, 66, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -1px 0 rgba(196, 220, 251, 0.28);
  color: rgba(16, 31, 52, 0.94);
  text-align: left;
  letter-spacing: 0.015em;
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
  overflow: hidden;
}
.architecture-layer-popup[hidden] {
  display: none !important;
}
.architecture-layer-popup > :first-child {
  margin-top: 0;
}
.architecture-layer-popup-head,
.architecture-layer-popup-title,
.architecture-layer-popup-summary {
  grid-column: 1 / -1;
}
.architecture-layer-popup-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.architecture-layer-popup-kicker {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(20, 36, 58, 0.98);
}
.architecture-layer-popup-title {
  margin: 2px 0 0;
  line-height: 1.2;
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(36, 56, 84, 0.88);
}
.architecture-layer-popup-summary {
  margin: 2px 0 0;
  font-size: 0.66rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.architecture-layer-popup-stats {
  grid-column: 1;
  align-self: center;
  display: grid;
  gap: 4px;
  padding-right: 8px;
}
.architecture-layer-popup-stat {
  display: grid;
  grid-template-columns: auto;
  gap: 1px;
}
.architecture-layer-popup-stat-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(70, 96, 130, 0.72);
}
.architecture-layer-popup-stat-value {
  font-size: 0.60rem;
  font-weight: 700;
  color: rgba(18, 35, 58, 0.9);
}
.architecture-layer-popup h3,
.architecture-layer-popup p,
.architecture-layer-popup li,
.architecture-layer-popup span,
.architecture-layer-popup strong {
  letter-spacing: 0.015em;
}
.architecture-layer-popup-features {
  grid-column: 2;
  align-self: center;
  margin: 0;
  padding: 0 0 0 0.8ch;
  list-style: none;
  border-left: 1px solid rgba(92, 118, 156, 0.34);
}
.architecture-layer-popup-features li {
  margin: 0;
  padding-left: 0.8ch;
  font-size: 0.60rem;
  line-height: 1.45;
  list-style: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.architecture-layer-popup-features li + li {
  margin-top: 4px;
}
.architecture-layer-popup-features li::marker {
  content: "";
}
.architecture-db-popup {
  position: absolute;
  top: var(--layer-popup-safe-top, 14px);
  right: 14px;
  z-index: 16;
  width: min(384px, calc(100% - 28px));
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(62, 82, 110, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.86)),
    rgba(248, 252, 255, 0.84);
  box-shadow:
    0 16px 34px rgba(25, 39, 57, 0.14),
    0 2px 10px rgba(25, 39, 57, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  color: rgba(22, 34, 50, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.architecture-db-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.architecture-db-popup-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(58, 77, 104, 0.66);
}
.architecture-db-popup-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(66, 88, 118, 0.18);
  background: rgba(240, 247, 255, 0.66);
  color: rgba(34, 52, 78, 0.76);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.architecture-db-popup-title {
  margin: 8px 0 0;
  padding-right: 34px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(18, 30, 46, 0.94);
  text-wrap: balance;
}
.architecture-db-popup-summary {
  margin: 7px 0 0;
  font-size: 0.76rem;
  line-height: 1.58;
  color: rgba(38, 53, 76, 0.74);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.architecture-db-popup-metrics {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid rgba(74, 95, 123, 0.14);
  background: rgba(245, 250, 255, 0.64);
  overflow: hidden;
}
.architecture-db-popup-metric {
  padding: 6px 9px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid rgba(74, 95, 123, 0.1);
}
.architecture-db-popup-metric:last-child {
  border-bottom: 0;
}
.architecture-db-popup-metric-label {
  flex-shrink: 0;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(64, 85, 112, 0.62);
  min-width: 36px;
}
.architecture-db-popup-metric-value {
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.36;
  color: rgba(27, 43, 64, 0.9);
  overflow-wrap: anywhere;
  word-break: break-all;
  min-width: 0;
}
.architecture-db-popup-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(74, 95, 123, 0.14);
}
.architecture-db-popup-list li {
  margin: 0;
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid rgba(74, 95, 123, 0.1);
}
.architecture-db-popup-list li:last-child {
  border-bottom: 0;
}
.architecture-db-popup-list-key {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(72, 92, 118, 0.66);
}
.architecture-db-popup-list-value {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(29, 45, 66, 0.86);
  overflow-wrap: anywhere;
  word-break: break-all;
}
.architecture-db-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(72, 96, 126, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(42, 60, 84, 0.66);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}
.architecture-db-popup-close:hover {
  background: rgba(255, 255, 255, 0.84);
  color: rgba(30, 47, 70, 0.86);
  border-color: rgba(72, 96, 126, 0.24);
}
.architecture-db-popup-close:active {
  transform: scale(0.94);
}
/* ── Worker popup ─────────────────────────────────────────────────────────── */
.architecture-worker-popup {
  --worker-accent-rgb: 112, 62, 178;
  position: absolute;
  top: var(--layer-popup-safe-top, 14px);
  right: 14px;
  left: auto;
  z-index: 17;
  width: min(240px, calc(100% - 28px));
  padding: 12px 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(var(--worker-accent-rgb), 0.28);
  background: #f7f8fb;
  box-shadow:
    0 16px 34px rgba(60, 30, 90, 0.12),
    0 2px 10px rgba(60, 30, 90, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
  color: rgba(30, 18, 48, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.architecture-worker-popup[hidden] { display: none !important; }
.architecture-worker-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(var(--worker-accent-rgb), 0.18);
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  color: rgba(var(--worker-accent-rgb), 0.6);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.architecture-worker-popup-close:hover {
  background: rgba(var(--worker-accent-rgb), 0.16);
  color: rgba(var(--worker-accent-rgb), 0.9);
}
.architecture-worker-popup-close:active {
  transform: scale(0.94);
}
.architecture-worker-popup-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
  margin-bottom: 10px;
}
.architecture-worker-popup-avatar {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--worker-accent-rgb), 0.16), rgba(var(--worker-accent-rgb), 0.34));
  border: 1.5px solid rgba(var(--worker-accent-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.architecture-worker-popup-avatar::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(var(--worker-accent-rgb), 0.56);
  display: block;
  box-shadow: 0 0 0 1px rgba(var(--worker-accent-rgb), 0.12);
}
.architecture-worker-popup-avatar::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 16px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 10px 10px 6px 6px;
  background: rgba(var(--worker-accent-rgb), 0.38);
}
.architecture-worker-popup-id {
  margin: 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--worker-accent-rgb), 0.72);
}
.architecture-worker-popup-role {
  margin: 2px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(28, 14, 50, 0.92);
}
.architecture-worker-popup-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.architecture-worker-popup-metric {
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid rgba(var(--worker-accent-rgb), 0.14);
  background: rgba(var(--worker-accent-rgb), 0.08);
}
.architecture-worker-popup-metric-label {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--worker-accent-rgb), 0.64);
}
.architecture-worker-popup-metric-dept,
.architecture-worker-popup-metric-load,
.architecture-worker-popup-metric-level,
.architecture-worker-popup-metric-since {
  display: block;
  margin-top: 2px;
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(28, 14, 50, 0.88);
  overflow-wrap: anywhere;
  word-break: break-all;
}
.architecture-worker-popup-task {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(var(--worker-accent-rgb), 0.12);
  border: 1px solid rgba(var(--worker-accent-rgb), 0.16);
  margin-bottom: 10px;
}
.architecture-worker-popup-task-label {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--worker-accent-rgb), 0.64);
  margin-bottom: 4px;
}
.architecture-worker-popup-task-value {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(28, 14, 50, 0.88);
}
.architecture-worker-popup-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.architecture-worker-popup-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(130, 130, 140, 0.5);
}
.architecture-worker-popup-status-dot[data-status="运行中"] {
  background: #34c97a;
  box-shadow: 0 0 6px rgba(52, 201, 122, 0.5);
}
.architecture-worker-popup-status-dot[data-status="待命"] {
  background: #8ab0e8;
}
.architecture-worker-popup-status-dot[data-status="审核中"] {
  background: #f0a040;
}
.architecture-worker-popup-status-text {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(50, 30, 80, 0.7);
}
.architecture-task-popup {
  position: absolute;
  top: var(--layer-popup-safe-top, 14px);
  right: 14px;
  z-index: 17;
  width: min(192px, calc(100% - 28px));
  padding: 14px 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(58, 80, 112, 0.18);
  background:
    linear-gradient(180deg, rgba(247, 252, 255, 0.9), rgba(239, 247, 255, 0.88)),
    rgba(247, 251, 255, 0.86);
  box-shadow:
    0 16px 36px rgba(24, 40, 66, 0.16),
    0 2px 10px rgba(24, 40, 66, 0.08);
  color: rgba(20, 33, 52, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.architecture-task-popup-title {
  margin: 0;
  padding-right: 34px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(20, 33, 52, 0.96);
}
.architecture-task-popup-kicker {
  margin: 0 0 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(64, 85, 112, 0.68);
}
.architecture-task-popup-summary {
  margin: 7px 0 0;
  font-size: 0.76rem;
  line-height: 1.58;
  color: rgba(34, 52, 78, 0.76);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.architecture-task-popup-meta {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.architecture-task-popup-meta-item {
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid rgba(76, 102, 138, 0.16);
  background: rgba(245, 250, 255, 0.72);
}
.architecture-task-popup-meta-label {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(67, 89, 118, 0.64);
}
.architecture-task-popup-meta-value {
  display: block;
  margin-top: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.32;
  color: rgba(24, 40, 61, 0.92);
  overflow-wrap: anywhere;
  word-break: break-all;
}
.architecture-task-popup-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(76, 102, 138, 0.14);
  margin-bottom: 2px;
}
.architecture-task-popup-list li {
  margin: 0;
  padding: 6px 2px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.44;
  color: rgba(30, 48, 71, 0.84);
  border-bottom: 1px solid rgba(76, 102, 138, 0.1);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.architecture-task-popup-list li:last-child {
  border-bottom: 0;
}
.architecture-task-popup-progressbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background:
    linear-gradient(90deg, rgba(172, 194, 223, 0.12), rgba(172, 194, 223, 0.04)),
    rgba(229, 239, 251, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(107, 132, 168, 0.08);
  overflow: hidden;
}
.architecture-task-popup-progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  border-radius: 0 10px 10px 12px;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(90, 48, 176, 0.9), rgba(118, 72, 204, 0.86)),
    rgba(102, 60, 190, 0.88);
  box-shadow:
    0 0 10px rgba(103, 66, 183, 0.26),
    inset 0 -1px 0 rgba(73, 41, 140, 0.28);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.architecture-task-popup-progressbar-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 2px rgba(15, 22, 36, 0.38);
  pointer-events: none;
}
.architecture-task-popup-progressbar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.16) 0,
    rgba(255, 255, 255, 0.16) 5px,
    rgba(255, 255, 255, 0.02) 5px,
    rgba(255, 255, 255, 0.02) 10px
  );
  animation: taskProgressStripe 1800ms linear infinite;
}
.architecture-task-popup-progressbar-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.34) 46%, transparent 74%);
  transform: translateX(-120%);
  animation: taskProgressSheen 2600ms ease-in-out infinite;
}
@keyframes taskProgressStripe {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(20px);
  }
}
@keyframes taskProgressSheen {
  0% {
    transform: translateX(-120%);
  }
  55% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}
.architecture-task-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(72, 96, 126, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(42, 60, 84, 0.66);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}
.architecture-task-popup-close:hover {
  background: rgba(255, 255, 255, 0.84);
  color: rgba(30, 47, 70, 0.86);
  border-color: rgba(72, 96, 126, 0.24);
}
.architecture-task-popup-close:active {
  transform: scale(0.94);
}
.architecture-db-popup-close,
.architecture-task-popup-close,
.architecture-worker-popup-close {
  display: none;
}
@media (hover: none), (pointer: coarse) {
  .architecture-reset-btn,
  .architecture-db-popup-close,
  .architecture-task-popup-close,
  .architecture-worker-popup-close {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}
@media (max-width: 720px) {
  .architecture-layer-popup {
    top: var(--layer-popup-safe-top, 10px);
    right: 10px;
    width: min(300px, calc(100% - 20px));
    grid-template-columns: max-content minmax(0, 1fr);
    row-gap: 8px;
  }

  .architecture-layer-popup-stats,
  .architecture-layer-popup-features {
    align-self: center;
  }

  .architecture-layer-popup-stats {
    grid-column: 1;
  }

  .architecture-layer-popup-features {
    grid-column: 2;
    margin-top: 0;
  }

  .architecture-three-overlay {
    display: none;
  }

  .architecture-db-popup {
    top: var(--layer-popup-safe-top, 10px);
    right: 10px;
    width: calc(100% - 20px);
    padding: 14px 14px 12px;
    border-radius: 12px;
  }

  .architecture-db-popup-title {
    font-size: 0.98rem;
  }

  .architecture-db-popup-summary {
    font-size: 0.76rem;
  }

  .architecture-db-popup-metrics {
    grid-template-columns: 1fr;
  }

  .architecture-db-popup-metric {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 95, 123, 0.12);
  }

  .architecture-db-popup-metric:last-child {
    border-bottom: 0;
  }

  .architecture-three-viewport .architecture-db-popup {
    top: max(calc(var(--layer-popup-safe-top, 10px) + 42px), calc(env(safe-area-inset-top) + 58px));
    right: auto;
    left: 50%;
    width: min(268px, calc(100% - 56px));
    padding: 10px;
    transform: translateX(-50%);
  }

  .architecture-three-viewport .architecture-db-popup-list {
    display: none;
  }

  .architecture-three-viewport .architecture-db-popup-kicker {
    font-size: 0;
    letter-spacing: 0;
  }

  .architecture-three-viewport .architecture-db-popup-kicker::after {
    content: attr(data-mobile-kicker);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(64, 85, 112, 0.68);
  }

  .architecture-three-viewport .architecture-db-popup-chip {
    display: none;
  }

  .architecture-three-viewport .architecture-db-popup-title {
    font-size: 1rem;
  }

  .architecture-three-viewport .architecture-db-popup-summary {
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .architecture-three-viewport .architecture-db-popup-metrics {
    margin-top: 0;
  }

  .architecture-task-popup {
    top: var(--layer-popup-safe-top, 10px);
    right: 10px;
    width: calc(100% - 20px);
    padding: 12px 12px 16px;
  }

  .architecture-three-viewport .architecture-task-popup {
    top: max(calc(var(--layer-popup-safe-top, 10px) + 42px), calc(env(safe-area-inset-top) + 58px));
    right: auto;
    left: 50%;
    width: min(300px, calc(100% - 56px));
    padding-bottom: 32px;
    transform: translateX(-50%);
  }

  .architecture-task-popup-meta,
  .architecture-three-viewport .architecture-task-popup-meta {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .architecture-three-viewport .architecture-task-popup-summary {
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .architecture-three-viewport .architecture-task-popup-meta-item:first-child {
    display: none;
  }

  .architecture-three-viewport .architecture-task-popup-meta-item:nth-child(3) {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
  }

  .architecture-three-viewport .architecture-task-popup-meta-item:nth-child(3) .architecture-task-popup-meta-label,
  .architecture-three-viewport .architecture-task-popup-meta-item:nth-child(3) .architecture-task-popup-meta-value {
    margin-top: 0;
    color: rgba(24, 40, 61, 0.76);
  }

  .architecture-worker-popup {
    top: var(--layer-popup-safe-top, 10px);
    right: 10px;
    left: auto;
    width: calc(100% - 20px);
  }

  .architecture-three-viewport .architecture-worker-popup {
    top: max(calc(var(--layer-popup-safe-top, 10px) + 42px), calc(env(safe-area-inset-top) + 58px));
    right: auto;
    left: 50%;
    width: min(280px, calc(100% - 56px));
    transform: translateX(-50%);
  }
}
.hero {
  --hero-fg: #f4f7fb;
  --hero-muted: rgba(244, 247, 251, 0.84);
  --hero-accent: #bfd4ff;
  --hero-line: rgba(191, 212, 255, 0.72);
  --hero-line-fade: rgba(191, 212, 255, 0.14);
  --hero-shadow: 0 2px 18px rgba(0, 0, 0, 0.46);
  --hero-secondary-bg: rgba(7, 12, 20, 0.14);
  --hero-secondary-border: rgba(214, 228, 255, 0.32);
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  border-top: none;
  isolation: isolate;
  background: transparent;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 44%;
     object-position: center 44%;
  filter: saturate(1.08) contrast(1.16) brightness(1.02);
}
.hero-video-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 12% 46%, rgba(10, 16, 26, 0.03), transparent 66%),
    radial-gradient(52% 72% at 78% 22%, rgba(10, 16, 26, 0.04), transparent 72%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.05), rgba(8, 12, 18, 0.1) 38%, rgba(8, 11, 17, 0.16) 100%);
}
.hero-grid,
.section-frame {
  width: 100%;
  margin: 0;
  padding: clamp(20px, 3vw, 48px) var(--gutter);
}
.architecture-section .section-frame {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.home-page .hero {
  margin-bottom: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 3vw, 72px);
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  z-index: 2;
}
.home-page .hero-grid {
  grid-template-columns: 1fr;
  padding-top: clamp(96px, 9vw, 132px);
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 4.8vh, 44px);
  transform: translateX(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.hero-scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(238, 246, 255, 0.9);
  border-bottom: 2px solid rgba(238, 246, 255, 0.9);
  transform: rotate(45deg);
  filter: drop-shadow(0 2px 10px rgba(14, 24, 38, 0.28));
  animation: hero-scroll-arrow-bob 2.2s ease-in-out infinite;
}
@keyframes hero-scroll-arrow-bob {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.42;
  }
  50% {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 0.96;
  }
}
.home-page .hero-copy {
  align-items: center;
  text-align: center;
  margin-inline: auto;
  max-width: min(86vw, 1200px);
}
.home-page .hero .eyebrow {
  color: var(--hero-muted);
  text-shadow: var(--hero-shadow);
  font-size: clamp(1.06rem, 1.8vw, 1.48rem);
  font-weight: 800;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 8px 0;
  max-width: min(86vw, 1200px);
}
.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-primary);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero h1 {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(3.2rem, 7vw, 8rem);
  font-weight: 900;
  min-height: 1.1em;
  padding-right: 0.12em;
  position: relative;
  text-wrap: balance;
}
#company-intro {
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.55;
}
.home-page .hero h1 {
  color: var(--hero-fg);
  text-shadow: var(--hero-shadow);
}
.hero h1 .typing-content,
.business-panel-name .typing-content,
.practice-card > h3 .typing-content {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: inherit;
}
.hero h1.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}
.hero h1.typing .typing-content::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.045em;
  height: 0.88em;
  margin-left: 0.06em;
  background: var(--hero-accent);
  transform: translateY(-52%);
  animation: caret-blink 900ms steps(1) infinite;
}
.hero h1.typing.done .typing-content::after {
  animation:
    caret-blink 900ms steps(1) 2,
    caret-fade 420ms ease forwards;
  animation-delay: 0s, 500ms;
}
.hero-text,
.section-heading p,
.business-summary,
.practice-description,
.pipeline-card p,
.rail-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}
.hero-text {
  max-width: 64ch;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.9;
}
.home-page .hero .hero-text.typing .typing-content {
  display: inline;
  min-height: 0;
}
.home-page .hero .hero-text .typing-content {
  display: inline;
  min-height: 0;
  white-space: inherit;
}
.home-page .hero .hero-text.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}
.home-page .hero .hero-text {
  color: var(--hero-muted);
  text-shadow: var(--hero-shadow);
  font-size: clamp(1.34rem, 2.25vw, 2.08rem);
  line-height: 2.3;
  white-space: pre-wrap;
}
.home-page .hero .hero-actions .button {
  border: 0;
  background: transparent;
  border-radius: 0;
  min-height: auto;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-page .hero-actions {
  justify-content: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}
.button-primary {
  color: var(--text);
  background: transparent;
  justify-content: flex-start;
  min-height: auto;
  padding: 0 28px 0 0;
  border: 0;
  border-radius: 0;
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.home-page .hero .button-primary {
  color: var(--hero-fg);
  text-shadow: var(--hero-shadow);
  padding: 0;
}
.button-primary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--hero-line), var(--hero-line-fade));
}
.button-primary::after {
  content: "\2192";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--hero-accent);
}
.home-page .hero .button-primary::before,
.home-page .hero .button-primary::after {
  content: none;
}
.button-secondary,
.button-download {
  color: var(--text);
  border-color: transparent;
  background: transparent;
}
.home-page .hero .button-secondary {
  color: var(--hero-fg);
  border-color: transparent;
  background: transparent;
  text-shadow: var(--hero-shadow);
  padding: 0;
  min-height: auto;
  border-radius: 0;
}
.hero-rail {
  display: grid;
  gap: 0;
  align-content: end;
}
.rail-card,
.practice-card,
.pipeline-card {
  background: none;
  border: 0;
}
.rail-card {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.rail-card:first-child {
  border-top: 0;
}
.rail-index,
.pipeline-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}
.rail-card strong,
.pipeline-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 600;
}
.logo-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.logo-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 20vw, 300px);
  min-height: 112px;
  padding: 24px 38px;
  overflow: visible;
  color: var(--text-faint);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.logo-item img {
  width: 130px;
  max-width: none;
  max-height: none;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.06) contrast(1.04);
  transition: filter 180ms ease, opacity 180ms ease;
}
.logo-item:hover img {
  opacity: 1;
  filter: brightness(1.02) contrast(1.02);
}
.logo-item.placeholder::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(143, 184, 255, 0.05);
}
.section-frame {
  display: grid;
  gap: 28px;
}
.section-heading {
  display: grid;
  gap: 10px;
  max-width: min(72ch, 62vw);
}
.business-heading {
  margin-bottom: 6px;
}
.section-heading-wide {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  max-width: none;
}
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
}
.business-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  border-top: 1px solid var(--line);
  padding-top: clamp(16px, 2vw, 32px);
}
.business-panel {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  position: relative;
}
.business-panel:hover,
.business-panel:focus-visible {
  transform: none;
}
.business-panel:active {
  transform: none;
}
.business-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 212, 255, 0.28), rgba(191, 212, 255, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}
.business-panel:hover::after,
.business-panel:focus-visible::after {
  opacity: 0;
}
.business-panel:hover .business-panel-name,
.business-panel:focus-visible .business-panel-name {
  color: var(--accent-2);
}
.business-panel:hover .business-panel-body,
.business-panel:focus-visible .business-panel-body {
  border-top-color: var(--line);
}
.business-panel-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
  min-width: 0;
}
.business-panel-index {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.business-panel-name {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--accent-2);
  white-space: normal;
  word-break: break-word;
  width: 100%;
}
.business-panel-name.typing {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: baseline;
}
.business-panel-name.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}
.practice-card > h3.typing .typed-char {
  display: inline-block;
  opacity: 0;
  animation: char-flash 220ms ease-out forwards;
}
.business-panel-name.typing .typing-content::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.045em;
  height: 0.88em;
  margin-left: 0.06em;
  background: var(--accent-2);
  transform: translateY(-52%);
  animation: caret-blink 900ms steps(1) infinite;
}
.practice-card > h3.typing .typing-content::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.045em;
  height: 0.88em;
  margin-left: 0.06em;
  background: var(--accent-2);
  transform: translateY(-52%);
  animation: caret-blink 900ms steps(1) infinite;
}
.business-panel-name.typing.done .typing-content::after {
  animation:
    caret-blink 900ms steps(1) 2,
    caret-fade 420ms ease forwards;
  animation-delay: 0s, 500ms;
}
.practice-card > h3.typing.done .typing-content::after {
  animation:
    caret-blink 900ms steps(1) 2,
    caret-fade 420ms ease forwards;
  animation-delay: 0s, 500ms;
}
.business-panel-tagline {
  display: block;
  margin-top: 4px;
  padding-left: 4px;
  white-space: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.business-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding-left: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191, 212, 255, 0.36);
  transition: color 180ms ease, transform 180ms ease;
}
.business-panel-links {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  margin-left: 0;
  flex-wrap: wrap;
  white-space: nowrap;
}
.business-panel-industries {
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(191, 212, 255, 0.58);
  white-space: normal;
}
.business-panel-cta::after {
  content: "\2192";
  font-size: 0.9rem;
}
.business-panel:hover .business-panel-cta,
.business-panel:focus-visible .business-panel-cta {
  color: rgba(191, 212, 255, 0.36);
  transform: none;
}
.business-summary.business-summary-inline {
  max-width: 100%;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.65;
}
.business-summary-nowrap {
  white-space: normal;
  max-width: 100%;
  overflow-wrap: break-word;
}
.business-panel-body {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.business-panel-photo {
  display: none;
}
.business-panel-agentrix .business-panel-photo {
  background-position: center 48%;
}
.business-panel-voice-agent .business-panel-photo {
  background-position: center 44%;
}
.business-panel-voice-agent .business-panel-body {
  background-position: center 65%;
}
.business-panel-digital-human .business-panel-photo {
  background-position: center 40%;
}
.business-panel-photo.reveal-photo {
  opacity: 0;
  transform: translateY(calc(-50% + 24px)) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.business-panel-photo.reveal-photo.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.business-summary {
  color: var(--text);
  font-size: 0.61rem;
  font-weight: 400;
  line-height: 1.6;
}
.practice-stream {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  position: relative;
}
.practice-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  grid-template-areas:
    "title title"
    "media side";
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  margin: 0;
  padding-bottom: 28px;
  position: relative;
  transition: transform 180ms ease;
}
.practice-card > h3 {
  grid-area: title;
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.practice-card:hover {
  transform: translateY(-2px);
}
.practice-media {
  grid-area: media;
  background:
    radial-gradient(circle at top left, rgba(143, 184, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #101722 0%, #0a0f16 100%);
}
.practice-card-bridge .practice-media {
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 520px;
}
.practices-page .practice-card-bridge .practice-media {
  min-height: 0;
}
.practice-card-supply .practice-media {
  background: transparent;
}
.practice-card-bridge .workflow-board {
  background: transparent;
}
.practice-card-supply .workflow-board {
  background: transparent;
}
.practice-card-bridge .workflow-board::before {
  display: none;
}
.practice-card-supply .workflow-board::before {
  display: none;
}
.practice-card-voiceagent-1 .practice-media {
  background: #161616;
}
.practice-card-bridge .practice-actions {
  transform: translateY(-20px);
}
.practice-media iframe,
.practice-media video,
.practice-media img,
.practice-media .media-placeholder,
.practice-media .audio-player,
.practice-media .workflow-board {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.practice-card-bridge .practice-media .talent-cycle-board.is-embedded-in-practice {
  width: calc(100% / 0.8);
  max-width: none;
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  transform: scale(0.8);
  transform-origin: top left;
  margin: 0;
}
.practice-card-metro .practice-media iframe.practice-embed-frame {
  width: calc(100% / 0.9);
  max-width: none;
  transform: scale(0.9);
  transform-origin: top left;
}
.media-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(244, 247, 251, 0.72);
  text-align: center;
  line-height: 1.7;
}
.audio-player {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(143, 184, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #101722 0%, #0a0f16 100%);
}
.audio-player-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.audio-player audio {
  width: 100%;
}
.workflow-board {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(180px, 1fr) minmax(170px, 1.05fr) minmax(180px, 1fr);
  gap: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  align-items: stretch;
  background:
    radial-gradient(circle at 8% 14%, rgba(143, 184, 255, 0.18), transparent 22%),
    radial-gradient(circle at 76% 18%, rgba(143, 184, 255, 0.1), transparent 18%),
    linear-gradient(180deg, #0f1621 0%, #091018 100%);
}
.workflow-board::before {
  content: "";
  position: absolute;
  inset: 24px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.34;
  pointer-events: none;
}
.workflow-column {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 72px minmax(264px, 1fr);
  gap: 14px;
  min-height: 100%;
}
.workflow-column-header {
  display: grid;
  gap: 6px;
  height: 72px;
  align-content: start;
}
.workflow-column-header strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.workflow-column-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}
.workflow-kicker {
  color: var(--text-faint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.workflow-source,
.workflow-task,
.workflow-team,
.workflow-manager-core {
  border: 1px solid rgba(191, 212, 255, 0.14);
  background: rgba(9, 15, 24, 0.8);
  backdrop-filter: blur(10px);
  animation: workflow-fade-in 780ms ease forwards;
  animation-delay: var(--workflow-delay, 0ms);
  opacity: 0;
}
.workflow-source {
  padding: 12px 14px;
  display: grid;
  align-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text);
  position: relative;
}
.workflow-source strong {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.workflow-source-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.workflow-source-inline-meta {
  color: var(--text-muted);
  font-size: 0.6rem;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: 100%;
}
.workflow-source-head,
.workflow-source-meta,
.workflow-task-meta,
.workflow-manager-status,
.workflow-manager-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.workflow-source-meta {
  flex-wrap: nowrap;
  min-width: 0;
}
.workflow-source-code,
.workflow-source-state,
.workflow-task-meta span,
.workflow-manager-status,
.workflow-manager-metrics span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.workflow-source-code,
.workflow-source-state,
.workflow-task-meta span {
  color: var(--text-faint);
}
.workflow-source-meta span {
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}
.workflow-manager {
  align-content: stretch;
}
.workflow-manager-core {
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 0;
  background: rgba(156, 163, 174, 0.9);
  --manager-corner-cut: 18px;
  clip-path: polygon(
    0 0,
    calc(100% - var(--manager-corner-cut)) 0,
    100% var(--manager-corner-cut),
    100% 100%,
    0 100%
  );
  box-shadow: none;
}
.workflow-manager-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(74%, 220px);
}
.workflow-manager-core .workflow-manager-status,
.workflow-manager-core .workflow-manager-metrics span {
  color: rgba(49, 61, 79, 0.8);
}
.workflow-manager-core strong {
  color: rgba(28, 39, 56, 0.92);
}
.workflow-sources,
.workflow-tasks,
.workflow-teams {
  align-content: stretch;
}
.workflow-stack {
  display: grid;
  gap: 14px;
  min-height: 0;
  height: 100%;
}
.workflow-sources .workflow-source,
.workflow-tasks .workflow-task,
.workflow-teams .workflow-team {
  min-height: 0;
  height: 100%;
}
.workflow-manager-core strong {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}
.workflow-manager-status {
  justify-content: center;
  color: var(--accent-2);
}
.workflow-manager-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.92);
  box-shadow: 0 0 12px rgba(191, 212, 255, 0.42);
}
.workflow-manager-metrics {
  justify-content: center;
  flex-wrap: wrap;
}
.workflow-manager-code-stream {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  top: 12px;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 18%, rgba(0, 0, 0, 0.96) 100%);
          mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 18%, rgba(0, 0, 0, 0.96) 100%);
}
.workflow-code-stack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 2px;
}
.workflow-code-history-line,
.workflow-code-current {
  display: block;
  color: rgba(191, 212, 255, 0.54);
  font-family: var(--font-primary);
  font-size: 0.56rem;
  line-height: 1.28;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: left;
}
.workflow-code-current {
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  border-right: 1px solid rgba(191, 212, 255, 0.7);
}
.workflow-code-current.is-static {
  border-right: 0;
}
.workflow-code-current.is-typing {
  animation: workflow-code-caret 700ms steps(1) infinite;
}
.workflow-code-history-line {
  position: relative;
  transition: opacity 180ms ease;
}
.workflow-manager-metrics span {
  padding: 0;
  border: 0;
  background: transparent;
}
.workflow-core-pulse,
.workflow-core-ring {
  position: absolute;
  border-radius: 999px;
}
.workflow-core-pulse {
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(191, 212, 255, 0.26), rgba(143, 184, 255, 0.06));
  animation: workflow-pulse 2.4s ease-in-out infinite;
}
.workflow-core-ring {
  width: 156px;
  height: 156px;
  border: 1px solid rgba(191, 212, 255, 0.24);
  animation: workflow-ring 3.6s linear infinite;
}
.workflow-core-ring-secondary {
  width: 214px;
  height: 214px;
  animation-duration: 5.2s;
  opacity: 0.42;
}
.workflow-task {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  position: relative;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0) scaleX(1);
  transform-origin: left center;
}
.workflow-tasks .workflow-task {
  background: linear-gradient(
    180deg,
    rgba(247, 250, 254, 0.98) 0%,
    rgba(237, 243, 250, 0.96) 68%,
    rgba(20, 26, 36, 0.9) 69%,
    rgba(10, 14, 22, 0.94) 100%
  );
  border-color: rgba(204, 214, 230, 0.44);
  align-items: start;
  padding-bottom: 40px;
}
.workflow-tasks .workflow-task-body {
  padding-top: 2px;
}
.workflow-tasks .workflow-task-label {
  color: rgba(25, 37, 53, 0.95);
}
.workflow-tasks .workflow-task-meta span {
  color: rgba(55, 71, 93, 0.8);
}
.workflow-tasks .workflow-task-index {
  color: rgba(76, 91, 112, 0.75);
}
.workflow-tasks .workflow-task-foot {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.workflow-tasks .workflow-task-chip {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(214, 222, 234, 0.92);
  background: rgba(255, 255, 255, 0.96);
  color: rgba(36, 49, 68, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.workflow-tasks .workflow-task-pulse {
  margin-left: auto;
  width: 3.5px;
  height: 3.5px;
  border-radius: 999px;
  background: rgba(187, 160, 255, 0.95);
  box-shadow: 0 0 6px rgba(166, 128, 255, 0.58);
  animation: workflow-node-pulse 2.8s ease-in-out infinite;
}
.workflow-tasks .workflow-task-pulse[data-priority="p0"] {
  background: rgba(255, 112, 141, 0.96);
  box-shadow: 0 0 6px rgba(255, 98, 132, 0.62);
}
.workflow-tasks .workflow-task-pulse[data-priority="p1"] {
  background: rgba(255, 182, 86, 0.96);
  box-shadow: 0 0 6px rgba(240, 163, 66, 0.58);
}
.workflow-tasks .workflow-task-pulse[data-priority="p2"] {
  background: rgba(167, 139, 250, 0.96);
  box-shadow: 0 0 6px rgba(146, 111, 241, 0.6);
}
.workflow-task.no-reveal,
.workflow-team.no-reveal {
  animation: none;
  opacity: 1;
}
.workflow-task-index {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.workflow-task-label {
  font-size: 0.84rem;
  line-height: 1.5;
}
.workflow-task-body {
  display: grid;
  gap: 8px;
  min-width: 0;
  transition: opacity 260ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-task-index {
  transition: opacity 260ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-input-link {
  position: absolute;
  top: 50%;
  left: -24px;
  width: 24px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(191, 212, 255, 0.06), rgba(191, 212, 255, 0.68), rgba(191, 212, 255, 0.14)),
    linear-gradient(90deg, rgba(191, 212, 255, 0.75) 0 20%, rgba(191, 212, 255, 0) 20% 100%);
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 1px, 14px 1px;
  animation: workflow-line-flow 2.1s linear infinite;
  transform: translateY(-50%) scaleX(1);
  transform-origin: right center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}
.workflow-team {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform-origin: left center;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0);
}
.workflow-task.is-archived,
.workflow-team.is-archived {
  opacity: 0;
  transform: translateX(118%);
  border-color: rgba(191, 212, 255, 0.02);
  pointer-events: none;
}
.workflow-task.is-archiving,
.workflow-team.is-archiving {
  transition: none;
  animation: workflow-row-exit-paired 940ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  border-color: rgba(191, 212, 255, 0.04);
}
.workflow-task.is-entering,
.workflow-team.is-entering {
  opacity: 0;
  transform: translateX(-32px);
}
.workflow-team.is-entering.is-entering-from-link {
  opacity: 1;
  transform: translateX(0) scaleX(0.02);
  border-color: rgba(191, 212, 255, 0.08);
}
.workflow-task.is-awaiting-link .workflow-task-body {
  opacity: 0;
  transform: translateX(-10px);
}
.workflow-task.is-awaiting-link .workflow-task-index {
  opacity: 0;
  transform: translateX(-10px);
}
.workflow-task.is-awaiting-link .workflow-input-link {
  opacity: 1;
  transform: translateY(-50%) scaleX(0);
}
.workflow-task.is-awaiting-link {
  border-color: rgba(191, 212, 255, 0.02);
  background: transparent;
  transform: translateX(0) scaleX(0.62);
}
.workflow-task.is-linking-in .workflow-input-link {
  transform: translateY(-50%) scaleX(1);
}
.workflow-task.is-spawning {
  border-color: rgba(191, 212, 255, 0.24);
  background: rgba(9, 15, 24, 0.76);
  transform: translateX(0) scaleX(0.82);
}
.workflow-task.is-spawning .workflow-task-index,
.workflow-task.is-spawning .workflow-task-body {
  opacity: 0;
  transform: translateX(-8px);
}
.workflow-task::after {
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
}
.workflow-task::before {
  transition: opacity 240ms ease;
}
.workflow-task.is-awaiting-link::before,
.workflow-task.is-awaiting-link::after,
.workflow-task.is-output-linking::before,
.workflow-task.is-output-linking::after,
.workflow-team.is-entering::before,
.workflow-team.is-entering::after {
  opacity: 0;
}
.workflow-task.is-output-linking::before,
.workflow-task.is-output-linking::after,
.workflow-task.has-output-link::before,
.workflow-task.has-output-link::after {
  opacity: 1;
}
.workflow-task.is-output-linking::after {
  transform: scaleX(1);
}
.workflow-task:not(.has-output-link):not(.is-output-linking)::after {
  transform: scaleX(0);
}
.workflow-task:not(.has-output-link):not(.is-output-linking)::before {
  opacity: 0;
}
.workflow-team.is-entering .workflow-team-meta,
.workflow-team.is-entering .workflow-team-progress,
.workflow-team.is-entering .workflow-team-value {
  opacity: 0;
}
.workflow-team-title {
  display: grid;
  gap: 4px;
}
.workflow-team-title span {
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.workflow-source::after,
.workflow-task::after,
.workflow-team::after,
.workflow-manager-core::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(191, 212, 255, 0.14), rgba(191, 212, 255, 0.68), rgba(191, 212, 255, 0.06)),
    linear-gradient(90deg, rgba(191, 212, 255, 0.75) 0 20%, rgba(191, 212, 255, 0) 20% 100%);
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 1px, 14px 1px;
  animation: workflow-line-flow 2.1s linear infinite;
}
.workflow-source::before,
.workflow-task::before,
.workflow-team::before,
.workflow-manager-core::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.92);
  box-shadow: 0 0 12px rgba(191, 212, 255, 0.42);
  animation: workflow-node-pulse 2.8s ease-in-out infinite;
}
.workflow-team::before,
.workflow-team::after {
  display: none;
}
.workflow-team-meta,
.workflow-team-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.workflow-team-meta strong {
  font-size: 0.86rem;
  font-weight: 700;
}
.workflow-team-meta span,
.workflow-team-value {
  color: var(--text-faint);
  font-size: 0.74rem;
}
.workflow-team-progress {
  order: 3;
  margin-top: auto;
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: -12px;
  width: calc(100% + 28px);
  height: 5px;
  overflow: hidden;
  border-radius: 0;
  background: rgba(38, 26, 66, 0.36);
}
.workflow-team-bar {
  display: block;
  position: relative;
  height: 100%;
  width: var(--workflow-progress, 0%);
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(60, 30, 132, 0.98), rgba(110, 62, 184, 0.98));
  animation: workflow-progress 1.4s ease-out forwards;
  transform-origin: left center;
  transition: width 460ms cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-team-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(190, 163, 255, 0.26) 0 8px,
      rgba(190, 163, 255, 0.05) 8px 16px
    );
  background-size: 36px 100%;
  will-change: background-position;
  animation: workflow-zebra-slide 1.2s linear infinite;
}
.practice-side {
  grid-area: side;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.practice-body {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 0;
}
.practice-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.practice-title-row h3 {
  flex: 1;
  min-width: 0;
}
.practice-actions {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 10px;
}
.practice-actions .button-download {
  min-height: auto;
  padding: 0;
  justify-content: flex-start;
}
.practice-mailbox {
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
}
.mailbox-trigger {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(191, 212, 255, 0.28);
  background: rgba(8, 13, 22, 0.82);
  color: var(--accent-2);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.mailbox-trigger:hover,
.mailbox-trigger:focus-visible {
  border-color: rgba(191, 212, 255, 0.52);
  background: rgba(16, 25, 40, 0.88);
  transform: translateY(-1px);
}
.mailbox-trigger svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.mailbox-trigger-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #0a0f16;
  background: var(--accent-2);
}
.mailbox-panel {
  position: absolute;
  left: auto;
  right: 0;
  top: calc(100% + 8px);
  width: min(420px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  max-height: 340px;
  overflow: auto;
  border: 1px solid rgba(191, 212, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(143, 184, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(11, 17, 27, 0.96), rgba(8, 13, 21, 0.98));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  padding: 14px;
  z-index: 9990;
  transform-origin: top right;
}
.mailbox-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.mailbox-panel-head strong {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mailbox-panel-count {
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 600;
}
.mailbox-empty {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}
.mailbox-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.mailbox-item-link {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  cursor: pointer;
  border: 1px solid rgba(191, 212, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, background 180ms ease;
}
.mailbox-item-link:hover,
.mailbox-item-link:focus-visible {
  border-color: rgba(191, 212, 255, 0.46);
  background: rgba(143, 184, 255, 0.08);
}
.mailbox-item-subject {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.45;
}
.mailbox-item-meta {
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}
body.mailbox-viewer-open {
  overflow: hidden;
}
.mailbox-viewer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 8, 14, 0.72);
  display: grid;
  place-items: center;
  padding: 20px;
}
.mailbox-viewer[hidden],
.mailbox-panel[hidden] {
  display: none !important;
}
.mailbox-viewer-shell {
  width: min(1040px, calc(100vw - 40px));
  height: min(80vh, 760px);
  border: 1px solid rgba(191, 212, 255, 0.28);
  background: rgba(7, 12, 20, 0.98);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.52);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
.mailbox-viewer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(191, 212, 255, 0.2);
}
.mailbox-viewer-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mailbox-viewer-close {
  border: 1px solid rgba(191, 212, 255, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  cursor: pointer;
}
.mailbox-viewer-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #06090f;
}
.practice-description {
  font-size: 0.98rem;
  line-height: 1.85;
}
.practice-description p {
  margin: 0;
}
.practice-description p + p {
  margin-top: 14px;
}
.practice-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.86);
}
.practices-page .practice-card.has-divider::before {
  content: "";
  position: absolute;
  top: calc(-1 * clamp(14px, 2vw, 24px));
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transform: scaleX(0);
  transform-origin: left center;
}
.practices-page .practice-stream.has-divider::before {
  content: "";
  position: absolute;
  top: calc(-1 * clamp(14px, 2vw, 24px));
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transform: scaleX(0);
  transform-origin: left center;
}
.practices-page .practice-card.has-divider.divider-revealed::before,
.practices-page .practice-stream.has-divider.divider-revealed::before {
  animation: practices-divider-reveal 820ms ease-out 1 forwards;
}
.practices-page .practice-card::after {
  content: none;
}
@keyframes practices-divider-reveal {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.button-download[aria-disabled="true"] {
  opacity: 0.56;
  pointer-events: none;
}
.practices-shell {
  padding-top: 18px;
}
.practices-page {
  min-height: calc(100vh - 48px);
}
.practices-header {
  gap: 22px;
  margin-top: clamp(48px, 6.5vw, 92px);
  margin-bottom: clamp(24px, 4vw, 56px);
}
.practices-page h1 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.85rem, 5vw, 4.2rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.practices-page .practice-card > h3 {
  color: var(--text);
}
.practices-page .practice-card > h3.typing {
  color: var(--text);
}
.practices-page .practice-card > h3.typing .typed-char {
  color: var(--text);
}
.practices-page .practice-card > h3.typing .typed-char-current {
  color: var(--accent-2);
}
.practices-page .practice-card > h3 .typing-content {
  display: inline;
  white-space: normal;
}
.practices-page .practice-card > h3.typing .typed-char {
  display: inline;
}
.practices-intro {
  max-width: min(44ch, 100%);
  margin: 0;
  color: var(--text-muted);
  line-height: 1.52;
  font-size: clamp(1.03rem, 2vw, 1.34rem);
}
.practice-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.practice-filter-link {
  display: grid;
  gap: 8px;
  padding: 18px 0 20px 20px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: color 180ms ease, background 180ms ease;
}
.practice-filter-link:last-child {
  border-right: 0;
}
.practice-filter-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(191, 212, 255, 0.88), rgba(191, 212, 255, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}
.practice-filter-link:hover,
.practice-filter-link:focus-visible,
.practice-filter-link.is-active {
  color: var(--accent-2);
}
.practice-filter-link.is-active {
  background: linear-gradient(180deg, rgba(143, 184, 255, 0.06), rgba(143, 184, 255, 0));
}
.practice-filter-link:hover::after,
.practice-filter-link:focus-visible::after,
.practice-filter-link.is-active::after {
  opacity: 1;
}
.practice-filter-index {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.practice-filter-name {
  font-family: var(--font-primary);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line);
}
.pipeline-card {
  padding: 22px 0;
  border-right: 1px solid var(--line);
}
.pipeline-card:last-child {
  border-right: 0;
}
.button:focus-visible,
.business-panel:focus-visible,
.practice-filter-link:focus-visible,
.topnav a:focus-visible {
  outline: 2px solid rgba(143, 184, 255, 0.42);
  outline-offset: 2px;
}
.talent-cycle-section {
  margin-top: 0;
}
.talent-cycle-board {
  grid-template-columns: minmax(210px, 0.78fr) minmax(240px, 0.9fr) minmax(280px, 1.04fr) minmax(280px, 1.08fr);
}
.talent-cycle-column-origin {
  order: 0;
}
.talent-cycle-column-left {
  order: 4;
}
.talent-cycle-column-center {
  order: 3;
}
.talent-cycle-column-right {
  order: 2;
}
.talent-cycle-column .workflow-stack {
  gap: 12px;
}
.talent-cycle-column-right .workflow-stack {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.talent-cycle-column-left .workflow-stack {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.talent-cycle-origin-stack {
  position: relative;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  padding-right: 16px;
}
.talent-cycle-origin-stack::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: rgba(191, 212, 255, 0.78);
  z-index: 0;
}
.talent-cycle-origin-card {
  position: relative;
  width: 9em;
  max-width: 100%;
  justify-self: start;
  padding: 10px 12px;
  z-index: 1;
}
.talent-cycle-origin-card strong {
  white-space: nowrap;
}
.talent-cycle-origin-card::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 12px;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(191, 212, 255, 0.78);
}
.talent-cycle-column-right .talent-cycle-node[data-step="1"] {
  position: relative;
}
.talent-cycle-column-right .talent-cycle-node[data-step="1"]::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 50%;
  width: 54px;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(191, 212, 255, 0.78);
}
.talent-cycle-column-right .talent-cycle-node[data-step="1"]::after {
  content: "";
  position: absolute;
  left: -4px;
  top: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(245, 249, 255, 0.94);
  box-shadow: 0 0 10px rgba(191, 212, 255, 0.56);
}
.talent-cycle-node {
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-color: rgba(191, 212, 255, 0.2);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
.talent-cycle-node strong {
  color: rgba(225, 235, 251, 0.95);
  font-size: 0.92rem;
}
.talent-cycle-node .workflow-source-meta span {
  color: rgba(197, 210, 233, 0.72);
}
.talent-cycle-node:hover,
.talent-cycle-node:focus-visible,
.talent-cycle-node.is-active {
  border-color: rgba(147, 207, 246, 0.72);
  box-shadow: 0 12px 24px rgba(54, 112, 168, 0.24);
  transform: translateY(-1px);
}
.talent-cycle-node.is-active strong {
  color: rgba(244, 250, 255, 0.98);
}
.talent-cycle-core {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto;
  justify-items: center;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), rgba(20, 30, 46, 0.96) 52%),
    linear-gradient(180deg, rgba(16, 23, 35, 0.96), rgba(10, 15, 24, 0.96));
}
.talent-cycle-ring {
  position: relative;
  width: min(88%, 250px);
  height: min(88%, 250px);
}
.talent-cycle-track {
  fill: none;
  stroke: rgba(230, 237, 250, 0.36);
  stroke-width: 30;
}
.talent-cycle-progress {
  fill: none;
  stroke: rgba(245, 249, 255, 0.96);
  stroke-width: 26;
  stroke-linecap: round;
  stroke-dasharray: 666;
  stroke-dashoffset: 570;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 420ms ease;
}
.talent-cycle-arrow {
  fill: rgba(245, 249, 255, 0.92);
}
.talent-cycle-core-title {
  margin: 0;
  color: rgba(245, 249, 255, 0.96);
  font-size: clamp(1.22rem, 1.6vw, 1.64rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
}
.talent-cycle-core-current {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(224, 234, 248, 0.36);
  background: rgba(10, 17, 27, 0.62);
  color: rgba(236, 244, 255, 0.94);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.talent-cycle-column-center .workflow-column-header {
  text-align: center;
  justify-items: center;
}
.talent-cycle-column-center .workflow-column-header strong {
  color: rgba(240, 248, 255, 0.96);
}
.talent-motion-board {
  border: 1px solid rgba(191, 212, 255, 0.22);
  background:
    radial-gradient(circle at 12% 14%, rgba(143, 184, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(15, 22, 33, 0.98), rgba(9, 14, 22, 0.98));
  padding: 18px;
}
.talent-motion-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.talent-motion-chip {
  border: 1px solid rgba(191, 212, 255, 0.26);
  background: rgba(15, 23, 36, 0.82);
  color: rgba(214, 231, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.talent-motion-chip.is-active,
.talent-motion-chip:hover,
.talent-motion-chip:focus-visible {
  border-color: rgba(191, 212, 255, 0.72);
  color: rgba(243, 249, 255, 0.98);
  transform: translateY(-1px);
}
.talent-motion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 14px;
}
.talent-motion-stream {
  border: 1px solid rgba(191, 212, 255, 0.16);
  background: rgba(11, 17, 27, 0.72);
  padding: 14px;
  display: grid;
  gap: 10px;
  min-height: 280px;
}
.talent-motion-lane {
  border: 1px solid rgba(191, 212, 255, 0.14);
  background: rgba(18, 26, 40, 0.68);
  padding: 9px 10px;
  display: grid;
  gap: 8px;
}
.talent-motion-lane-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  color: rgba(200, 219, 245, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.talent-motion-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.14);
  overflow: hidden;
}
.talent-motion-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(205, 224, 255, 0.82), rgba(255, 255, 255, 0.96));
  transition: width 480ms cubic-bezier(0.22, 1, 0.36, 1);
}
.talent-motion-panel {
  border: 1px solid rgba(191, 212, 255, 0.16);
  background: rgba(11, 17, 27, 0.76);
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
}
.talent-motion-label {
  margin: 0;
  color: rgba(195, 214, 241, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.talent-motion-panel h3 {
  margin: 0;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}
.talent-motion-panel p {
  margin: 0;
  color: rgba(211, 226, 248, 0.84);
  line-height: 1.65;
}
.talent-motion-metrics {
  margin-top: 6px;
  display: grid;
  gap: 8px;
}
.talent-motion-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(191, 212, 255, 0.16);
  padding-top: 8px;
}
.talent-motion-metric span {
  color: rgba(193, 213, 240, 0.8);
  font-size: 0.78rem;
}
.talent-motion-metric strong {
  font-family: var(--font-primary);
  font-size: 1.02rem;
  color: rgba(244, 250, 255, 0.98);
}
.talent-retention-section {
  margin-top: 0;
}
.talent-retention-loop-shell {
  border: 1px solid rgba(191, 212, 255, 0.2);
  background:
    radial-gradient(circle at 18% 84%, rgba(191, 212, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(191, 212, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(12, 18, 29, 0.98), rgba(8, 12, 20, 0.99));
  padding: clamp(18px, 3vw, 28px);
}
.talent-retention-loop {
  --pool-x: 16%;
  --pool-y: 52%;
  --pool-size: clamp(220px, 29vw, 320px);
  width: min(700px, 92vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  position: relative;
}
.talent-retention-orbit {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(191, 212, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(191, 212, 255, 0.08);
  z-index: 1;
}
.talent-retention-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.talent-retention-flow-tracks path {
  fill: none;
  stroke: rgba(191, 212, 255, 0.16);
  stroke-width: 0.26;
  stroke-linecap: round;
}
.talent-retention-flow-comets path {
  fill: none;
  stroke: rgba(228, 241, 255, 0.92);
  stroke-width: 0.58;
  stroke-linecap: round;
  stroke-dasharray: 0.001 120;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 3px rgba(202, 225, 255, 0.48));
  animation: talent-retention-flow-run var(--flow-duration, 6s) linear infinite;
  animation-delay: var(--flow-delay, 0s);
}
.talent-retention-node {
  position: absolute;
  width: var(--node-size);
  height: var(--node-size);
  left: var(--node-x);
  top: var(--node-y);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  color: rgba(244, 250, 255, 0.98);
  font-size: var(--node-font-size, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1px solid rgba(191, 212, 255, 0.46);
  background: radial-gradient(circle at 28% 24%, rgba(200, 223, 255, 0.38), rgba(106, 136, 176, 0.18));
  box-shadow: 0 10px 28px rgba(6, 10, 16, 0.4);
  animation: talent-retention-float var(--float-duration, 6.8s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
.talent-retention-node.is-pool {
  --node-size: var(--pool-size);
  --node-font-size: 1.08rem;
  --node-x: var(--pool-x);
  --node-y: var(--pool-y);
  --float-duration: 7.6s;
  --float-delay: -0.6s;
  z-index: 3;
  overflow: hidden;
}
.talent-retention-node-tag.is-pool-tag {
  position: absolute;
  left: var(--pool-x);
  top: var(--pool-y);
  transform: translate(-50%, calc(-50% - (var(--pool-size) / 2) - 10px));
  z-index: 6;
  white-space: nowrap;
  font-size: clamp(0.68rem, 0.92vw, 0.88rem);
  font-weight: 500;
  color: rgba(226, 239, 255, 0.96);
  text-shadow: 0 2px 10px rgba(4, 8, 14, 0.55);
}
.talent-retention-pool-cluster {
  position: absolute;
  left: 10%;
  bottom: 8%;
  width: 80%;
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 2;
}
.talent-retention-pool-bubble {
  position: absolute;
  width: var(--pool-bubble-size);
  height: var(--pool-bubble-size);
  border-radius: 50%;
  border: 1px solid rgba(191, 212, 255, 0.42);
  background: radial-gradient(circle at 30% 26%, rgba(215, 233, 255, 0.45), rgba(86, 114, 154, 0.2));
  color: rgba(239, 247, 255, 0.98);
  box-shadow: 0 8px 24px rgba(6, 10, 16, 0.36);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 10px;
  line-height: 1.12;
  overflow: hidden;
  animation: talent-retention-pool-float var(--pool-float-duration, 6.4s) ease-in-out infinite;
  animation-delay: var(--pool-float-delay, 0s);
}
.talent-retention-pool-name {
  font-size: clamp(0.52rem, 0.76vw, 0.7rem);
  font-weight: 400;
}
.talent-retention-pool-meta {
  margin-top: 2px;
  font-size: clamp(0.45rem, 0.62vw, 0.58rem);
  color: rgba(212, 228, 248, 0.92);
}
.talent-retention-pool-bubble.is-warm {
  --pool-bubble-size: 58%;
  --pool-float-duration: 7.2s;
  --pool-float-delay: -0.8s;
  left: 32%;
  bottom: 8%;
  z-index: 1;
}
.talent-retention-pool-bubble.is-passive {
  --pool-bubble-size: 42%;
  --pool-float-duration: 6.5s;
  --pool-float-delay: -1.7s;
  left: 6%;
  bottom: 24%;
  z-index: 2;
}
.talent-retention-pool-bubble.is-offer {
  --pool-bubble-size: 30%;
  --pool-float-duration: 5.9s;
  --pool-float-delay: -1.2s;
  left: 58%;
  top: 2%;
  z-index: 4;
}
.talent-retention-pool-bubble.is-boomerang {
  --pool-bubble-size: 22%;
  --pool-float-duration: 5.2s;
  --pool-float-delay: -2.1s;
  left: 16%;
  top: 0;
  z-index: 5;
}
.talent-retention-pool-bubble.is-boomerang .talent-retention-pool-name {
  font-size: clamp(0.4rem, 0.54vw, 0.5rem);
}
.talent-retention-pool-bubble.is-boomerang .talent-retention-pool-meta {
  font-size: clamp(0.34rem, 0.46vw, 0.44rem);
}
.talent-retention-node.is-demand {
  --node-size: clamp(132px, 17.6vw, 190px);
  --node-font-size: 0.96rem;
  --node-x: 50%;
  --node-y: 15%;
  --float-duration: 6.9s;
  --float-delay: -1.8s;
}
.talent-retention-node.is-interview {
  --node-size: clamp(86px, 10.8vw, 118px);
  --node-font-size: 0.82rem;
  --node-x: 75%;
  --node-y: 30%;
  --float-duration: 6.2s;
  --float-delay: -1.2s;
}
.talent-retention-node.is-onboard {
  --node-size: clamp(62px, 7.8vw, 84px);
  --node-font-size: 0.72rem;
  --node-x: 78%;
  --node-y: 58%;
  --float-duration: 5.8s;
  --float-delay: -2.1s;
}
.talent-retention-node.is-active {
  --node-size: clamp(44px, 5.6vw, 62px);
  --node-font-size: 0.64rem;
  --node-x: 50%;
  --node-y: 82%;
  --float-duration: 5.4s;
  --float-delay: -0.9s;
}
.talent-retention-node.is-exit {
  --node-size: clamp(26px, 3.4vw, 38px);
  --node-font-size: 0.52rem;
  --node-x: 33%;
  --node-y: 74%;
  --float-duration: 5s;
  --float-delay: -1.5s;
}
.talent-retention-node:not(.is-pool)::after {
  content: attr(data-node-label);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(0.62rem, 0.86vw, 0.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(226, 239, 255, 0.96);
  text-shadow: 0 2px 10px rgba(4, 8, 14, 0.55);
  pointer-events: none;
}
.talent-retention-node.is-active::after,
.talent-retention-node.is-exit::after {
  top: auto;
  bottom: calc(100% + 8px);
}
@keyframes talent-retention-pool-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(1px, -2px, 0);
  }
  50% {
    transform: translate3d(-2px, -3px, 0);
  }
  75% {
    transform: translate3d(-1px, -1px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes talent-retention-float {
  0% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-50%, -50%) translate3d(2px, -3px, 0);
  }
  50% {
    transform: translate(-50%, -50%) translate3d(-2px, -5px, 0);
  }
  75% {
    transform: translate(-50%, -50%) translate3d(-3px, -2px, 0);
  }
  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0);
  }
}
@keyframes talent-retention-flow-run {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -140;
  }
}
@media (prefers-reduced-motion: reduce) {
  .talent-retention-node {
    animation: none;
  }

  .talent-retention-pool-bubble {
    animation: none;
  }

  .talent-retention-flow-comets path {
    animation: none;
  }
}
.talent-retention-board {
  border: 1px solid rgba(191, 212, 255, 0.22);
  background:
    radial-gradient(circle at 88% 16%, rgba(191, 212, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(14, 21, 33, 0.98), rgba(8, 13, 21, 0.99));
  padding: 18px;
}
.talent-retention-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.talent-retention-tab {
  border: 1px solid rgba(191, 212, 255, 0.24);
  background: rgba(12, 19, 30, 0.82);
  color: rgba(204, 222, 247, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.talent-retention-tab.is-active,
.talent-retention-tab:hover,
.talent-retention-tab:focus-visible {
  border-color: rgba(191, 212, 255, 0.72);
  color: rgba(244, 250, 255, 0.98);
  transform: translateY(-1px);
}
.talent-retention-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 14px;
}
.talent-retention-funnel {
  border: 1px solid rgba(191, 212, 255, 0.16);
  background: rgba(11, 17, 27, 0.72);
  padding: 14px;
  display: grid;
  gap: 10px;
  min-height: 280px;
}
.talent-retention-lane {
  border: 1px solid rgba(191, 212, 255, 0.14);
  background: rgba(18, 26, 40, 0.68);
  padding: 9px 10px;
  display: grid;
  gap: 8px;
}
.talent-retention-lane-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.66rem;
  color: rgba(200, 219, 245, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.talent-retention-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(191, 212, 255, 0.14);
  overflow: hidden;
}
.talent-retention-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 222, 255, 0.82), rgba(255, 255, 255, 0.95));
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.talent-retention-panel {
  border: 1px solid rgba(191, 212, 255, 0.16);
  background: rgba(11, 17, 27, 0.76);
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
}
.talent-retention-label {
  margin: 0;
  color: rgba(195, 214, 241, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.talent-retention-panel h3 {
  margin: 0;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}
.talent-retention-panel p {
  margin: 0;
  color: rgba(211, 226, 248, 0.84);
  line-height: 1.65;
}
.talent-retention-metrics {
  margin-top: 6px;
  display: grid;
  gap: 8px;
}
.talent-retention-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(191, 212, 255, 0.16);
  padding-top: 8px;
}
.talent-retention-metric span {
  color: rgba(193, 213, 240, 0.8);
  font-size: 0.78rem;
}
.talent-retention-metric strong {
  font-family: var(--font-primary);
  font-size: 1.02rem;
  color: rgba(244, 250, 255, 0.98);
}
@media (max-width: 640px) {
  .talent-retention-loop {
    width: min(520px, 96vw);
  }

  .talent-retention-node {
    font-size: 0.72rem;
    padding: 8px;
  }

  .talent-retention-pool-cluster {
    transform: scale(0.9);
    transform-origin: center bottom;
    left: 8%;
    bottom: 7%;
  }
}
.careers-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(120, 148, 255, 0.2), transparent 22%),
    radial-gradient(circle at 82% 4%, rgba(104, 214, 255, 0.16), transparent 18%),
    linear-gradient(180deg, #090b12 0%, #05070b 100%);
}
.careers-shell {
  padding-bottom: 0;
}
.careers-page main {
  margin-top: 14px;
}
.careers-hero {
  position: relative;
  min-height: clamp(440px, 68vw, 760px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.careers-hero img {
  width: 100%;
  height: clamp(440px, 68vw, 760px);
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}
.careers-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.06), rgba(8, 10, 16, 0.84));
}
.careers-hero-overlay h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-primary);
  font-size: clamp(2.3rem, 5.4vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}
.careers-gradient-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(122deg, #3665ff 0%, #5c89ff 26%, #0e48f5 52%, #7e3bff 78%, #6328f2 100%);
}
.careers-gradient-band .section-frame {
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(52px, 8vw, 92px);
}
.careers-gradient-band p {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(1.58rem, 3vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.careers-story-section,
.careers-content-block,
.careers-cards-section,
.careers-footer {
  border-top: 1px solid var(--line);
  background: #0c111a;
}
.careers-story-grid,
.careers-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(22px, 4vw, 62px);
}
.careers-story-copy h2,
.careers-two-col h2 {
  margin: 10px 0 16px;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.careers-story-copy p,
.careers-two-col p {
  margin: 0 0 14px;
  color: rgba(223, 234, 251, 0.86);
  line-height: 1.74;
}
.careers-note-card {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(191, 212, 255, 0.2);
  background: linear-gradient(180deg, rgba(24, 33, 48, 0.86), rgba(13, 18, 29, 0.92));
}
.careers-note-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}
.careers-note-card p {
  margin: 0 0 14px;
  color: rgba(211, 226, 248, 0.84);
}
.careers-note-card a,
.careers-card a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(191, 212, 255, 0.32);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.careers-media-quote {
  position: relative;
  border-top: 1px solid var(--line);
}
.careers-media-quote img {
  width: 100%;
  min-height: clamp(320px, 50vw, 640px);
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.72);
}
.careers-media-caption {
  position: absolute;
  left: clamp(20px, 5vw, 68px);
  bottom: clamp(20px, 5vw, 68px);
  max-width: min(72ch, calc(100% - 40px));
}
.careers-media-caption blockquote {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.24;
  letter-spacing: -0.02em;
}
.careers-media-caption p {
  margin: 10px 0 0;
  color: rgba(216, 230, 248, 0.86);
  font-size: 0.9rem;
}
.careers-two-col img {
  width: 100%;
  border: 1px solid rgba(191, 212, 255, 0.16);
}
.careers-two-col blockquote {
  margin: 0 0 16px;
  font-size: clamp(1.04rem, 1.8vw, 1.44rem);
  line-height: 1.42;
  color: rgba(243, 249, 255, 0.96);
}
.careers-content-alt {
  background: #090e16;
}
.careers-side-media {
  display: grid;
  gap: 16px;
}
.careers-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.careers-card {
  border: 1px solid rgba(191, 212, 255, 0.18);
  background: linear-gradient(180deg, rgba(17, 23, 35, 0.9), rgba(10, 15, 25, 0.95));
}
.careers-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  -o-object-fit: cover;
     object-fit: cover;
}
.careers-card > div {
  padding: 14px;
  display: grid;
  gap: 8px;
}
.careers-card h3 {
  margin: 0;
  font-size: 1.22rem;
}
.careers-card p {
  margin: 0;
  color: rgba(211, 226, 248, 0.84);
}
.careers-footer .section-frame {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(34px, 5vw, 62px);
}
.careers-footer p {
  margin: 0;
  max-width: 90ch;
  color: rgba(205, 220, 244, 0.82);
}
.careers-footer-links {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 14px;
}
.careers-footer-links a {
  color: rgba(226, 237, 251, 0.82);
  font-size: 0.86rem;
}
@media (max-width: 1080px) {
  .hero-grid,
  .section-heading-wide,
  .pipeline-grid,
  .practice-filter {
    grid-template-columns: 1fr;
  }

  .architecture-layers {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .architecture-nav {
    gap: 18px;
    padding: 0;
  }

  .architecture-three-viewport {
    min-height: clamp(420px, 72vw, 640px);
    margin: 0;
  }

  .talent-cycle-board {
    grid-template-columns: 1fr;
  }

  .talent-cycle-core {
    min-height: 300px;
  }

  .talent-motion-grid {
    grid-template-columns: 1fr;
  }

  .talent-retention-grid {
    grid-template-columns: 1fr;
  }

  .careers-story-grid,
  .careers-two-col,
  .careers-footer-links {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 820px) {
  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

}
@media (max-width: 720px) {
  .site-shell {
    width: 100%;
  }

  .home-page main {
    margin-top: 0;
  }

  .topbar,
  .hero-grid,
  .section-frame {
    width: 100%;
    padding: 18px var(--gutter);
  }

  .topbar {
    position: sticky;
    top: 30px;
    margin-inline: var(--gutter);
  }

  .home-page .topbar {
    position: sticky;
    top: 30px;
    left: auto;
    right: auto;
    margin: 0 var(--gutter) 0;
  }

  .home-page .hero-grid {
    padding-top: 18px;
  }

  .architecture-nav {
    gap: 14px;
  }

  .architecture-nav-item {
    font-size: 0.9rem;
  }

  .topnav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .careers-hero-overlay h1 {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .careers-gradient-band p {
    font-size: clamp(1.34rem, 7vw, 2.2rem);
  }

  .careers-cards-grid {
    grid-template-columns: 1fr;
  }

  .business-summary {
    font-size: 1.12rem;
  }

  .business-panel-nav {
    padding: 14px 16px 16px;
    gap: 6px;
  }

  .business-panel-body {
    aspect-ratio: 3 / 1;
  }

  .business-panel-name {
    font-size: clamp(2.8rem, 12vw, 5rem);
    white-space: normal;
  }

  .business-panel-photo {
    width: 100%;
    opacity: 0.28;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
  }

  .architecture-hero h1 {
    font-size: clamp(2.2rem, 11vw, 4.2rem);
  }

  .architecture-three-viewport {
    min-height: clamp(360px, 96vw, 520px);
  }

  .practice-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "side";
  }

  .workflow-board {
    grid-template-columns: 1fr;
  }

  .workflow-source::after,
  .workflow-task::after,
  .workflow-team::after,
  .workflow-manager-core::after,
  .workflow-source::before,
  .workflow-task::before,
  .workflow-team::before,
  .workflow-manager-core::before {
    display: none;
  }

  .hero-video {
    -o-object-position: center 50%;
       object-position: center 50%;
  }

  .pipeline-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pipeline-card:last-child {
    border-bottom: 0;
  }

  .talent-cycle-board {
    padding: 16px;
  }

  .talent-cycle-core {
    min-height: 260px;
  }

  .talent-cycle-node strong {
    font-size: 0.86rem;
  }

  .talent-cycle-core-title {
    font-size: 1.08rem;
  }

  .business-panels {
    grid-template-columns: 1fr;
  }

  .business-panel {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) and (pointer: fine) {
  .topbar,
  .hero-grid,
  .section-frame {
    width: auto;
  }

  .topbar {
    padding: 8px 12px;
    flex-wrap: nowrap;
  }

  .home-page .topbar {
    margin: 0 var(--gutter);
  }

  .topnav {
    flex-wrap: nowrap;
    gap: 6px;
    font-size: 0.8rem;
  }

  .topnav a {
    flex-shrink: 0;
    padding-inline: 7px;
  }

  .business-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-panel-body {
    aspect-ratio: 16 / 9;
  }

  .business-panel-name {
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    white-space: normal;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .topnav a {
    transition: none;
  }

  .hero h1.typing::after {
    animation: none;
  }

  .business-panel-photo.reveal-photo {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    transition: none;
  }

  .workflow-team-bar::before {
    animation: none;
  }

  .architecture-three-overlay {
    transition: none;
  }

  .talent-cycle-progress,
  .talent-cycle-node {
    transition: none;
  }
}
@keyframes caret-blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}
@keyframes workflow-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes workflow-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes workflow-ring {
  from {
    transform: scale(0.96);
    opacity: 0.18;
  }

  50% {
    opacity: 0.44;
  }

  to {
    transform: scale(1.03);
    opacity: 0.18;
  }
}
@keyframes workflow-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}
@keyframes workflow-node-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}
@keyframes workflow-line-flow {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 18px 0;
  }
}
@keyframes workflow-row-exit-paired {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  70% {
    opacity: 1;
    transform: translateX(84%);
  }

  100% {
    opacity: 0;
    transform: translateX(118%);
  }
}
@keyframes workflow-zebra-slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 36px 0;
  }
}
@keyframes workflow-code-caret {
  0%,
  49% {
    border-right-color: rgba(191, 212, 255, 0.75);
  }

  50%,
  100% {
    border-right-color: transparent;
  }
}
@keyframes caret-fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes char-flash {
  0% {
    opacity: 0;
    filter: brightness(1.6);
  }

  45% {
    opacity: 1;
    filter: brightness(1.25);
  }

  100% {
    opacity: 1;
    filter: brightness(1);
  }
}
.about-page {
  --about-ink: #e7eef9;
  --about-surface: #0b111a;
  --about-line: rgba(191, 212, 255, 0.2);
  --about-accent: #ff6f2c;
  --about-muted: rgba(226, 236, 250, 0.74);
  background: var(--about-surface);
  color: var(--about-ink);
}
.about-shell {
  padding-top: 0;
  padding-bottom: 0;
}
.about-page main {
  margin-top: clamp(-86px, -7.2vw, -64px);
}
.about-page .section-frame {
  max-width: min(1760px, 100%);
  margin: 0 auto;
}
.about-page main > section + section .section-frame {
  position: relative;
}
.about-page main > section + section .section-frame::before {
  content: none;
}
.about-page main > section + section .section-frame.has-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - clamp(28px, 6vw, 96px));
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
}
.about-page main > section + section .section-frame.has-divider.divider-revealed::before {
  animation: about-divider-reveal 820ms ease-out 1 forwards;
}
@keyframes about-divider-reveal {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
.about-page .eyebrow {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(226, 236, 250, 0.62);
}
.about-page h2 {
  margin: 10px 0 18px;
  font-family: var(--font-primary);
  font-size: clamp(1.7rem, 3.8vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--about-ink);
}
.about-hero {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 16, 25, 0.78), rgba(8, 16, 25, 0.58)),
    url("../media/pic/wangzhe_new.png") center top / cover no-repeat;
}
.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 5vw, 72px);
  padding-top: clamp(136px, 16vw, 210px);
  padding-bottom: clamp(80px, 10vw, 132px);
}
.about-hero-copy {
  display: grid;
  gap: 18px;
}
.about-hero .eyebrow {
  color: rgba(246, 249, 252, 0.72);
}
.about-hero-title {
  margin: 0;
  max-width: none;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-primary);
  font-size: clamp(1.85rem, 5vw, 4.2rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #f8fbff;
}
.about-hero-title .line {
  display: block;
  white-space: nowrap;
}
/* English-only heading overflow guard */
html[lang="en"] .about-hero-copy {
  max-width: min(900px, 80%);
}
html[lang="en"] .about-hero-title {
  max-width: min(900px, 80%);
  width: auto;
  line-height: 1.12;
  text-wrap: balance;
}
html[lang="en"] .about-hero-title .line {
  white-space: normal;
}
.about-hero-summary {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1.03rem, 2vw, 1.34rem);
  line-height: 1.52;
  color: rgba(241, 247, 253, 0.86);
}
.about-hero-note {
  align-self: end;
  margin: 0;
  padding: clamp(18px, 3.8vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(7, 17, 29, 0.52);
  backdrop-filter: blur(3px);
}
.about-hero-note p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.58;
  color: rgba(241, 247, 253, 0.9);
}
.about-manifest {
  background: var(--about-surface);
}
.about-manifest .section-frame {
  padding-top: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 98px);
  text-align: left;
}
.about-manifest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, 1.4vw, 14px);
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34));
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.about-manifest-grid p {
  margin: 0;
  padding-left: 18px;
  border-left: 0;
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.about-metrics {
  background: var(--about-surface);
}
.about-metrics .section-frame {
  padding-top: clamp(50px, 7.6vw, 88px);
  padding-bottom: clamp(50px, 8vw, 92px);
}
.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--about-line);
  border-left: 1px solid var(--about-line);
}
.about-metrics-grid article {
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--about-line);
  border-bottom: 1px solid var(--about-line);
}
.about-metrics-grid strong {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--about-ink);
}
.about-metrics-grid span {
  display: block;
  margin-top: 8px;
  max-width: 18ch;
  color: rgba(220, 232, 249, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}
.about-principles {
  background: var(--about-surface);
}
.about-principles .section-frame {
  padding-top: clamp(54px, 8vw, 95px);
  padding-bottom: clamp(56px, 8vw, 98px);
}
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-principles-grid article {
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--about-line);
  background: rgba(14, 24, 38, 0.86);
}
.about-principles-grid h3 {
  margin: 0 0 8px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.3;
  color: var(--about-ink);
}
.about-principles-grid p {
  margin: 0;
  color: var(--about-muted);
  line-height: 1.7;
}
.about-principles-paragraph {
  margin: 0;
  max-width: 100%;
  color: var(--about-muted);
  line-height: 1.85;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}
.about-team-row {
  margin-top: 20px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  grid-auto-rows: 1fr;
  align-items: stretch;
  min-height: 430px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0;
  scroll-snap-type: x proximity;
}
.about-team-row::-webkit-scrollbar {
  height: 8px;
}
.about-team-row::-webkit-scrollbar-thumb {
  background: rgba(191, 212, 255, 0.3);
  border-radius: 999px;
}
.about-team-card {
  scroll-snap-align: start;
  height: 100%;
  padding: 16px;
  border: 1px solid var(--about-line);
  background: rgba(14, 24, 38, 0.92);
  box-sizing: border-box;
}
.about-team-avatar {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--about-line);
  margin: 0 0 12px;
  background: rgba(184, 204, 234, 0.18);
}
.about-team-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--about-ink);
}
.about-team-card h3 span {
  display: block;
  margin-top: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(214, 228, 248, 0.78);
}
.about-team-card p {
  margin: 0;
  color: var(--about-muted);
  font-size: 0.92rem;
  line-height: 1.72;
}
.about-team-card p + p {
  margin-top: 10px;
}
@media (min-width: 1280px) {
  .about-manifest-grid {
    --manifest-gap: clamp(28px, 5vw, 88px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: var(--manifest-gap);
         column-gap: var(--manifest-gap);
    row-gap: 16px;
    background:
      linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
      linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34));
    background-size: 1px 100%, 1px 100%;
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, calc(50% + (var(--manifest-gap) / 2)) 0;
  }

  .about-team-row {
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .about-team-card {
    height: auto;
    scroll-snap-align: none;
  }
}
.about-values-quote .typing-content {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}
.about-values-quote.typing .typing-content::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 0.05em;
  height: 0.92em;
  margin-left: 0.05em;
  background: rgba(235, 244, 255, 0.85);
  transform: translateY(-50%);
  animation: caret-blink 900ms steps(1) infinite;
}
.about-values-quote.typing.done .typing-content::after {
  animation:
    caret-blink 900ms steps(1) 2,
    caret-fade 420ms ease forwards;
  animation-delay: 0s, 500ms;
}
.about-timeline {
  background: var(--about-surface);
}
.about-timeline .section-frame {
  padding-top: clamp(56px, 8vw, 94px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.about-timeline-list {
  display: grid;
  gap: 10px;
  font-size: clamp(0.98rem, 1.25vw, 1.06rem);
  line-height: 1.8;
}
.about-timeline-list p {
  margin: 0;
  color: var(--about-muted);
}
.about-timeline-list ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}
.about-timeline-list li {
  color: var(--about-muted);
}
.about-timeline-list li strong {
  font-family: var(--font-primary);
  font-size: inherit;
  letter-spacing: normal;
  color: var(--about-ink);
}
.about-values {
  background: var(--about-surface);
}
.about-values .section-frame {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(58px, 8vw, 96px);
}
.about-values-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.about-values-intro {
  margin: 0 0 16px;
  max-width: 52ch;
  color: var(--about-muted);
  line-height: 1.7;
}
.about-values-grid article {
  padding: clamp(18px, 2.8vw, 26px);
  border: 1px solid var(--about-line);
  background: rgba(14, 24, 38, 0.92);
}
.about-values-grid h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  color: var(--about-ink);
}
.about-values-grid p {
  margin: 0;
  color: var(--about-muted);
  line-height: 1.7;
}
.about-values-quote-wrap {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: clamp(20px, 4vw, 36px);
  border-left: 2px solid rgba(191, 212, 255, 0.66);
  background: linear-gradient(180deg, rgba(18, 30, 45, 0.95), rgba(13, 21, 33, 0.9));
}
.about-values-side-title {
  margin: 2px 0 10px;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.2;
}
.about-values-quote {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: rgba(236, 244, 255, 0.95);
}
.about-cta {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 111, 44, 0.2), transparent 40%),
    linear-gradient(110deg, #09111a 0%, #0f1e2b 56%, #102334 100%);
}
.about-cta .section-frame {
  padding-top: clamp(62px, 8.4vw, 106px);
  padding-bottom: clamp(66px, 8.6vw, 112px);
  text-align: center;
}
.about-cta .eyebrow {
  color: rgba(244, 249, 255, 0.72);
}
.about-cta h2 {
  margin-top: 8px;
  color: #f6fbff;
  font-size: clamp(1.72rem, 4vw, 3.1rem);
}
.about-cta p {
  margin: 0 auto;
  max-width: 56ch;
  color: rgba(244, 249, 255, 0.84);
  line-height: 1.72;
}
.about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(246, 250, 255, 0.42);
  border-radius: 999px;
  color: #f7fbff;
  font-family: var(--font-primary);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  transition: background-color 180ms ease, transform 180ms ease;
}
.about-cta a:hover,
.about-cta a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
@media (max-width: 1040px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-values-layout {
    grid-template-columns: 1fr;
  }

  .about-hero-title {
    max-width: 12ch;
  }

  .about-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .about-manifest-grid,
  .about-principles-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-summary {
    max-width: 100%;
  }

  html[lang="en"] .about-hero-copy,
  html[lang="en"] .about-hero-title {
    max-width: 100%;
  }
}
@media (max-width: 560px) {
  .about-metrics-grid {
    grid-template-columns: 1fr;
  }

  .about-timeline-list article {
    padding: 14px 12px 14px 14px;
  }
}
@media (max-width: 480px) {
  .about-page main {
    margin-top: 0;
  }

  .about-hero {
    background-position: center top;
  }

  .about-hero-grid {
    padding-top: clamp(88px, 22vw, 120px);
    padding-bottom: clamp(44px, 12vw, 72px);
    gap: 14px;
  }

  .about-hero-copy {
    gap: 12px;
  }

  .about-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.35rem, 7.2vw, 2.1rem);
    line-height: 1.16;
    letter-spacing: 0.02em;
  }

  .about-hero-title .line {
    white-space: normal;
  }

  .about-hero-summary {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.62;
  }
}
@media (max-width: 1024px) and (orientation: landscape) and (pointer: coarse) {
  .mobile-nav-trigger {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }
  .mobile-nav-overlay {
    display: block;
    overflow-y: hidden;
  }
  .mobile-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
    gap: 4px 10px;
    padding: 48px 14px 10px;
  }
  .mobile-nav-item {
    padding: 4px 0;
    border-bottom: 0;
    font-size: clamp(0.34rem, 0.7vw, 0.46rem);
    line-height: 1;
    text-align: left;
  }
  .business-panel-name {
    font-size: clamp(1.36rem, 3.3vw, 1.68rem);
    line-height: 1.2;
  }
}
@media (max-width: 900px) and (orientation: landscape) and (pointer: coarse) {
  .mobile-nav-trigger {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }
  .mobile-nav-overlay {
    display: block;
    overflow-y: hidden;
  }
  .business-panel-name {
    font-size: clamp(1.32rem, 3.5vw, 1.6rem);
    line-height: 1.2;
  }
  .mobile-nav-item {
    font-size: clamp(0.32rem, 0.72vw, 0.42rem);
    line-height: 0.98;
  }
  .mobile-nav-list {
    padding-top: 44px;
  }
  .hero {
    min-height: 100vw;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .home-page .hero .hero-text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  .careers-hero,
  .careers-hero img,
  .careers-hero video {
    height: 52vw;
    min-height: 0;
  }
  .about-hero-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }
  .architecture-three-viewport {
    min-height: 52vw;
  }
}
.careers-page {
  --careers-ink: #141a22;
  --careers-muted: rgba(20, 26, 34, 0.66);
  --careers-line: rgba(20, 26, 34, 0.11);
  --careers-core-title-size: clamp(2rem, 4.6vw, 2.35rem);
  --careers-surface: #ffffff;
  --careers-placeholder: #e4e8ec;
  --careers-placeholder-border: rgba(20, 26, 34, 0.13);
  background: #f2f4f6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
.careers-shell {
  padding-top: 0;
  padding-bottom: 0;
}
.careers-page main {
  margin-top: clamp(-86px, -7.2vw, -64px);
}
/* Hero - video + title stack (unchanged topbar) */
.careers-hero {
  position: relative;
  min-height: clamp(440px, 68vw, 760px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.careers-hero img,
.careers-hero video {
  display: block;
  width: 100%;
  height: clamp(440px, 68vw, 760px);
  -o-object-fit: cover;
     object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}
.careers-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 22px);
  padding: clamp(24px, 4vw, 56px);
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.06), rgba(8, 10, 16, 0.84));
}
.careers-hero-overlay .eyebrow {
  margin: 0;
  position: static;
  transform: none;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.2em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.careers-band .eyebrow {
  letter-spacing: 0.19em;
  color: rgba(20, 26, 34, 0.56);
}
.careers-hero-overlay h1 {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  margin: 0;
  max-width: min(920px, 100%);
  white-space: normal;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.42rem, 3.2vw, 2.9rem);
  line-height: 1.16;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.34);
  color: #f4f7fb;
}
.careers-hero-overlay h1 span {
  display: block;
}
.careers-hero-subtitle {
  margin: 0;
  max-width: min(560px, 100%);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.68;
  color: rgba(244, 247, 251, 0.86);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
/* Content bands - OpenAI-like vertical rhythm */
.careers-band {
  border-top: 0;
  background: var(--careers-surface);
}
.careers-page main > section + section .section-frame {
  position: relative;
}
.careers-page main > section + section .section-frame::before {
  content: none;
}
.careers-page main > section + section .section-frame.has-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - clamp(28px, 6vw, 96px));
  height: 1px;
  background: var(--careers-line);
  transform: translateX(-50%) scaleX(0);
  transform-origin: left center;
}
.careers-page main > section + section .section-frame.has-divider.divider-revealed::before {
  animation: careers-divider-reveal 820ms ease-out 1 forwards;
}
@keyframes careers-divider-reveal {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}
.careers-band .section-frame {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.careers-mission-inner {
  max-width: 920px;
}
.careers-mission-title {
  margin: 0 0 22px;
  font-family: var(--font-primary);
  font-size: var(--careers-core-title-size);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.022em;
  color: var(--careers-ink);
}
.careers-mission-lede {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.74;
  color: var(--careers-muted);
}
.careers-mission-lede + .careers-mission-lede {
  margin-top: 1.05rem;
}
.careers-mission-lede strong {
  color: var(--careers-ink);
  font-weight: 600;
}
.careers-statement-heading,
.careers-split-title,
.careers-section-title {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--careers-ink);
}
/* 防止 Tailwind text-gray-100 在浅色背景的 careers 页面覆盖标题颜色 */
.careers-page .careers-statement-heading,
.careers-page .careers-split-title,
.careers-page .careers-section-title {
  color: var(--careers-ink);
}
.careers-statement-heading--spacer {
  visibility: hidden;
  pointer-events: none;
}
.careers-statement-body {
  margin: 0;
  max-width: 100%;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.76;
  color: var(--careers-muted);
}
.careers-statement-body strong {
  color: var(--careers-ink);
  font-weight: 600;
}
.careers-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 72px);
}
.careers-principles-label {
  margin: 0 0 8px;
  color: rgba(20, 26, 34, 0.52);
}
.careers-principles-intro {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--careers-muted);
}
.careers-principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.careers-principles-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--careers-line);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.68;
  color: var(--careers-muted);
}
.careers-principles-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.careers-principles-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--careers-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* Split image + text */
.careers-split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.careers-split--reverse .careers-split-row {
  direction: rtl;
}
.careers-split--reverse .careers-split-media,
.careers-split--reverse .careers-split-copy {
  direction: ltr;
}
.careers-split-media {
  min-height: clamp(220px, 36vw, 380px);
  border-radius: 12px;
  border: 1px dashed var(--careers-placeholder-border);
  background: linear-gradient(145deg, var(--careers-placeholder), #f0f2f5);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.careers-split-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.careers-placeholder-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 26, 34, 0.44);
}
.careers-split-copy .eyebrow {
  margin: 0;
  color: rgba(20, 26, 34, 0.58);
}
.careers-split-copy {
  display: block;
}
.careers-split-copy .careers-split-title {
  margin: 0 0 10px;
}
.careers-split-copy > p.eyebrow {
  margin: 0 0 10px;
}
.careers-split-copy > p:not(.eyebrow) {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.74;
  color: var(--careers-muted);
}
.careers-split-copy > p:not(.eyebrow) strong {
  color: var(--careers-ink);
  font-weight: 600;
}
.careers-split-copy > p:not(.eyebrow) + p {
  margin-top: 4px;
}
/* Benefits */
.careers-section-title {
  margin: 10px 0 14px;
}
.careers-benefits-lede {
  margin: 0 0 28px;
  max-width: 100%;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.74;
  color: var(--careers-muted);
}
.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.careers-benefits-card {
  padding: 22px 19px;
  border: 1px solid var(--careers-line);
  border-radius: 10px;
  background: #fbfcfd;
}
.careers-benefits-card h3 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(20, 26, 34, 0.68);
}
.careers-benefits-card ul {
  margin: 0;
  padding-left: 1.1em;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.62;
  color: var(--careers-muted);
}
.careers-page-closing {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.01em;
  color: var(--careers-ink);
}
/* Featured cards */
.careers-featured-lede {
  margin: 0 0 28px;
  max-width: 62ch;
  color: var(--careers-muted);
  font-weight: 400;
  line-height: 1.74;
}
.careers-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.careers-featured-card {
  border: 1px solid var(--careers-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fbfcfd;
}
.careers-featured-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--careers-placeholder), #e8ebef);
  border-bottom: 1px solid var(--careers-line);
  display: grid;
  place-items: center;
}
.careers-featured-card h3 {
  margin: 16px 18px 8px;
  font-family: var(--font-primary);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--careers-ink);
}
.careers-featured-card p {
  margin: 0 18px 18px;
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.68;
  color: var(--careers-muted);
}
/* Quote */
.careers-quote-inner {
  max-width: 800px;
}
.careers-quote-block {
  margin: 0;
  padding: 0;
  border: 0;
}
.careers-quote-block p {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  line-height: 1.62;
  font-style: italic;
  letter-spacing: -0.008em;
  color: var(--careers-ink);
}
.careers-quote-block footer {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--careers-muted);
}
@media (max-width: 980px) {
  .careers-principles-grid,
  .careers-split-row,
  .careers-benefits-grid,
  .careers-featured-grid {
    grid-template-columns: 1fr;
  }

  .careers-split--reverse .careers-split-row {
    direction: ltr;
  }
}
@media (max-width: 720px) {
  .careers-page .topbar {
    top: 30px;
  }

  .careers-hero-overlay h1 {
    font-size: clamp(1.08rem, 4.2vw, 1.72rem);
  }

  .careers-hero-subtitle {
    font-size: 0.9rem;
  }
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
input:where([type='text']),input:where(:not([type])),input:where([type='email']),input:where([type='url']),input:where([type='password']),input:where([type='number']),input:where([type='date']),input:where([type='datetime-local']),input:where([type='month']),input:where([type='search']),input:where([type='tel']),input:where([type='time']),input:where([type='week']),select:where([multiple]),textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
input:where([type='text']):focus, input:where(:not([type])):focus, input:where([type='email']):focus, input:where([type='url']):focus, input:where([type='password']):focus, input:where([type='number']):focus, input:where([type='date']):focus, input:where([type='datetime-local']):focus, input:where([type='month']):focus, input:where([type='search']):focus, input:where([type='tel']):focus, input:where([type='time']):focus, input:where([type='week']):focus, select:where([multiple]):focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
select:where([multiple]),select:where([size]:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
input:where([type='checkbox']),input:where([type='radio']){
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
input:where([type='checkbox']){
  border-radius: 0px;
}
input:where([type='radio']){
  border-radius: 100%;
}
input:where([type='checkbox']):focus,input:where([type='radio']):focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
input:where([type='checkbox']):checked,input:where([type='radio']):checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
input:where([type='checkbox']):checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  input:where([type='checkbox']):checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='radio']):checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  input:where([type='radio']):checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):checked:hover,input:where([type='checkbox']):checked:focus,input:where([type='radio']):checked:hover,input:where([type='radio']):checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='checkbox']):indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  input:where([type='checkbox']):indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
input:where([type='checkbox']):indeterminate:hover,input:where([type='checkbox']):indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
input:where([type='file']){
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
input:where([type='file']):focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 480px){
  .\!container{
    max-width: 480px !important;
  }
  .container{
    max-width: 480px;
  }
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
.pointer-events-none{
  pointer-events: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.\!relative{
  position: relative !important;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.bottom-0{
  bottom: 0px;
}
.left-0{
  left: 0px;
}
.left-4{
  left: 1rem;
}
.left-5{
  left: 1.25rem;
}
.left-6{
  left: 1.5rem;
}
.left-\[34\%\]{
  left: 34%;
}
.left-\[45\%\]{
  left: 45%;
}
.left-\[49\%\]{
  left: 49%;
}
.left-\[55\%\]{
  left: 55%;
}
.left-\[56\%\]{
  left: 56%;
}
.left-\[66\%\]{
  left: 66%;
}
.left-\[68\%\]{
  left: 68%;
}
.top-4{
  top: 1rem;
}
.top-\[28\%\]{
  top: 28%;
}
.top-\[36\%\]{
  top: 36%;
}
.top-\[38\%\]{
  top: 38%;
}
.top-\[48\%\]{
  top: 48%;
}
.top-\[52\%\]{
  top: 52%;
}
.top-\[56\%\]{
  top: 56%;
}
.top-\[58\%\]{
  top: 58%;
}
.top-\[63\%\]{
  top: 63%;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-50{
  z-index: 50;
}
.z-\[6\]{
  z-index: 6;
}
.col-span-12{
  grid-column: span 12 / span 12;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-4{
  grid-column: span 4 / span 4;
}
.col-span-8{
  grid-column: span 8 / span 8;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-auto{
  margin-top: auto;
}
.block{
  display: block;
}
.flex{
  display: flex;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-1{
  height: 0.25rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-2{
  height: 0.5rem;
}
.h-3{
  height: 0.75rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-9{
  height: 2.25rem;
}
.h-\[420px\]{
  height: 420px;
}
.h-\[500px\]{
  height: 500px;
}
.h-full{
  height: 100%;
}
.h-screen{
  height: 100vh;
}
.min-h-0{
  min-height: 0px;
}
.min-h-\[240px\]{
  min-height: 240px;
}
.min-h-\[68svh\]{
  min-height: 68svh;
}
.w-1\.5{
  width: 0.375rem;
}
.w-12{
  width: 3rem;
}
.w-2{
  width: 0.5rem;
}
.w-24{
  width: 6rem;
}
.w-3{
  width: 0.75rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-8{
  width: 2rem;
}
.w-\[15\%\]{
  width: 15%;
}
.w-\[46\%\]{
  width: 46%;
}
.w-\[64\%\]{
  width: 64%;
}
.w-\[72\.4\%\]{
  width: 72.4%;
}
.w-\[81\.2\%\]{
  width: 81.2%;
}
.w-\[91\%\]{
  width: 91%;
}
.w-full{
  width: 100%;
}
.min-w-0{
  min-width: 0px;
}
.max-w-\[220px\]{
  max-width: 220px;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink{
  flex-shrink: 1;
}
.shrink-0{
  flex-shrink: 0;
}
.translate-x-2{
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-help{
  cursor: help;
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-10{
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-7{
  gap: 1.75rem;
}
.gap-8{
  gap: 2rem;
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-outline-variant\/5 > :not([hidden]) ~ :not([hidden]){
  border-color: rgb(69 70 77 / 0.05);
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded-full{
  border-radius: 9999px;
}
.border{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-t{
  border-top-width: 1px;
}
.border-none{
  border-style: none;
}
.border-\[\#171f33\]{
  --tw-border-opacity: 1;
  border-color: rgb(23 31 51 / var(--tw-border-opacity, 1));
}
.border-\[\#45464d\]\/20{
  border-color: rgb(69 70 77 / 0.2);
}
.border-\[\#47d6ff\]{
  --tw-border-opacity: 1;
  border-color: rgb(71 214 255 / var(--tw-border-opacity, 1));
}
.border-outline-variant\/10{
  border-color: rgb(69 70 77 / 0.1);
}
.border-outline-variant\/20{
  border-color: rgb(69 70 77 / 0.2);
}
.border-outline-variant\/30{
  border-color: rgb(69 70 77 / 0.3);
}
.border-primary{
  --tw-border-opacity: 1;
  border-color: rgb(71 214 255 / var(--tw-border-opacity, 1));
}
.border-primary\/20{
  border-color: rgb(71 214 255 / 0.2);
}
.border-primary\/40{
  border-color: rgb(71 214 255 / 0.4);
}
.border-primary\/50{
  border-color: rgb(71 214 255 / 0.5);
}
.border-secondary\/20{
  border-color: rgb(78 222 163 / 0.2);
}
.border-secondary\/40{
  border-color: rgb(78 222 163 / 0.4);
}
.border-secondary\/50{
  border-color: rgb(78 222 163 / 0.5);
}
.border-tertiary{
  --tw-border-opacity: 1;
  border-color: rgb(255 185 95 / var(--tw-border-opacity, 1));
}
.border-tertiary\/20{
  border-color: rgb(255 185 95 / 0.2);
}
.border-tertiary\/40{
  border-color: rgb(255 185 95 / 0.4);
}
.border-tertiary\/50{
  border-color: rgb(255 185 95 / 0.5);
}
.bg-\[\#060e20\]{
  --tw-bg-opacity: 1;
  background-color: rgb(6 14 32 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0b1326\]{
  --tw-bg-opacity: 1;
  background-color: rgb(11 19 38 / var(--tw-bg-opacity, 1));
}
.bg-\[\#131b2e\]{
  --tw-bg-opacity: 1;
  background-color: rgb(19 27 46 / var(--tw-bg-opacity, 1));
}
.bg-\[\#171f33\]{
  --tw-bg-opacity: 1;
  background-color: rgb(23 31 51 / var(--tw-bg-opacity, 1));
}
.bg-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(71 214 255 / var(--tw-bg-opacity, 1));
}
.bg-primary\/10{
  background-color: rgb(71 214 255 / 0.1);
}
.bg-primary\/20{
  background-color: rgb(71 214 255 / 0.2);
}
.bg-primary\/40{
  background-color: rgb(71 214 255 / 0.4);
}
.bg-primary\/60{
  background-color: rgb(71 214 255 / 0.6);
}
.bg-secondary{
  --tw-bg-opacity: 1;
  background-color: rgb(78 222 163 / var(--tw-bg-opacity, 1));
}
.bg-secondary\/10{
  background-color: rgb(78 222 163 / 0.1);
}
.bg-surface{
  --tw-bg-opacity: 1;
  background-color: rgb(11 19 38 / var(--tw-bg-opacity, 1));
}
.bg-surface-container{
  --tw-bg-opacity: 1;
  background-color: rgb(23 31 51 / var(--tw-bg-opacity, 1));
}
.bg-surface-container-highest\/90{
  background-color: rgb(45 52 73 / 0.9);
}
.bg-surface-container-low{
  --tw-bg-opacity: 1;
  background-color: rgb(19 27 46 / var(--tw-bg-opacity, 1));
}
.bg-surface-container-lowest{
  --tw-bg-opacity: 1;
  background-color: rgb(6 14 32 / var(--tw-bg-opacity, 1));
}
.bg-surface-container-lowest\/80{
  background-color: rgb(6 14 32 / 0.8);
}
.bg-surface-container\/80{
  background-color: rgb(23 31 51 / 0.8);
}
.bg-surface-variant{
  --tw-bg-opacity: 1;
  background-color: rgb(45 52 73 / var(--tw-bg-opacity, 1));
}
.bg-tertiary{
  --tw-bg-opacity: 1;
  background-color: rgb(255 185 95 / var(--tw-bg-opacity, 1));
}
.bg-tertiary\/10{
  background-color: rgb(255 185 95 / 0.1);
}
.bg-tertiary\/20{
  background-color: rgb(255 185 95 / 0.2);
}
.bg-tertiary\/40{
  background-color: rgb(255 185 95 / 0.4);
}
.bg-tertiary\/60{
  background-color: rgb(255 185 95 / 0.6);
}
.bg-transparent{
  background-color: transparent;
}
.bg-\[radial-gradient\(circle_at_center\2c transparent_0\%\2c rgba\(6\2c 14\2c 32\2c 0\.22\)_100\%\)\]{
  background-image: radial-gradient(circle at center,transparent 0%,rgba(6,14,32,0.22) 100%);
}
.bg-\[radial-gradient\(circle_at_center\2c transparent_0\%\2c rgba\(6\2c 14\2c 32\2c 0\.4\)_100\%\)\]{
  background-image: radial-gradient(circle at center,transparent 0%,rgba(6,14,32,0.4) 100%);
}
.stroke-current{
  stroke: currentColor;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-1{
  padding: 0.25rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pt-4{
  padding-top: 1rem;
}
.text-right{
  text-align: right;
}
.font-\[\'Inter\'\]{
  font-family: 'Inter';
}
.font-\[\'Roboto_Mono\'\]{
  font-family: 'Roboto Mono';
}
.font-body{
  font-family: var(--font-primary);
}
.font-mono{
  font-family: var(--font-mono);
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[8px\]{
  font-size: 8px;
}
.text-\[9px\]{
  font-size: 9px;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black{
  font-weight: 900;
}
.font-bold{
  font-weight: 700;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-snug{
  line-height: 1.375;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-\[0\.05em\]{
  letter-spacing: 0.05em;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.tracking-tighter{
  letter-spacing: -0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-\[\#47d6ff\]{
  --tw-text-opacity: 1;
  color: rgb(71 214 255 / var(--tw-text-opacity, 1));
}
.text-\[\#4edea3\]{
  --tw-text-opacity: 1;
  color: rgb(78 222 163 / var(--tw-text-opacity, 1));
}
.text-\[\#c6c6cd\]{
  --tw-text-opacity: 1;
  color: rgb(198 198 205 / var(--tw-text-opacity, 1));
}
.text-\[\#dae2fd\]{
  --tw-text-opacity: 1;
  color: rgb(218 226 253 / var(--tw-text-opacity, 1));
}
.text-blue-400\/80{
  color: rgb(96 165 250 / 0.8);
}
.text-gray-100{
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-on-surface{
  --tw-text-opacity: 1;
  color: rgb(218 226 253 / var(--tw-text-opacity, 1));
}
.text-on-surface-variant{
  --tw-text-opacity: 1;
  color: rgb(198 198 205 / var(--tw-text-opacity, 1));
}
.text-outline-variant{
  --tw-text-opacity: 1;
  color: rgb(69 70 77 / var(--tw-text-opacity, 1));
}
.text-primary{
  --tw-text-opacity: 1;
  color: rgb(71 214 255 / var(--tw-text-opacity, 1));
}
.text-secondary{
  --tw-text-opacity: 1;
  color: rgb(78 222 163 / var(--tw-text-opacity, 1));
}
.text-tertiary{
  --tw-text-opacity: 1;
  color: rgb(255 185 95 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.placeholder-\[\#c6c6cd\]\/30::-moz-placeholder{
  color: rgb(198 198 205 / 0.3);
}
.placeholder-\[\#c6c6cd\]\/30::placeholder{
  color: rgb(198 198 205 / 0.3);
}
.opacity-0{
  opacity: 0;
}
.opacity-70{
  opacity: 0.7;
}
.opacity-80{
  opacity: 0.8;
}
.shadow-\[20px_0_40px_rgba\(0\2c 0\2c 0\2c 0\.4\)\]{
  --tw-shadow: 20px 0 40px rgba(0,0,0,0.4);
  --tw-shadow-colored: 20px 0 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.sepia{
  --tw-sepia: sepia(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md{
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:bg-\[\#131b2e\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(19 27 46 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#171f33\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(23 31 51 / var(--tw-bg-opacity, 1));
}
.hover\:bg-surface-container:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(23 31 51 / var(--tw-bg-opacity, 1));
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.group\/hotspot:hover .group-hover\/hotspot\:translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group\/hotspot:hover .group-hover\/hotspot\:opacity-100{
  opacity: 1;
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
@media (min-width: 480px){
  .xs\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 640px){
  .sm\:min-h-\[300px\]{
    min-height: 300px;
  }
  .sm\:min-h-\[78svh\]{
    min-height: 78svh;
  }
  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 768px){
  .md\:block{
    display: block;
  }
  .md\:text-7xl{
    font-size: 4.5rem;
    line-height: 1;
  }
}
@media (min-width: 1024px){
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:gap-12{
    gap: 3rem;
  }
  .lg\:px-12{
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1280px){
  .xl\:flex{
    display: flex;
  }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .home-page .hero-copy {
    max-width: min(90vw, 1000px);
  }
}
@media (min-width: 1920px) {
  :root {
    --gutter: clamp(60px, 6vw, 120px);
  }
  .architecture-three-viewport {
    min-height: clamp(800px, 48vw, 1100px);
  }
  .architecture-world-line {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
  }
  .topbar {
    padding: 10px 20px;
  }
  .topnav {
    gap: clamp(8px, 1.2vw, 20px);
    font-size: 1rem;
  }
  .hero h1 {
    font-size: clamp(6rem, 7vw, 9.5rem);
  }
  .section-heading h2 {
    font-size: clamp(3rem, 4vw, 5rem);
  }
}
.site-footer {
  width: 100%;
  padding: clamp(24px, 4vw, 48px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
}
.careers-page .site-footer {
  background: var(--careers-surface);
}
.careers-page .site-footer-slogan,
.careers-page .site-footer-copy {
  color: var(--careers-muted);
}
.site-footer-slogan {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.site-footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.mobile-nav-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
  border: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}
.mobile-lang-switcher {
  display: none;
}
.mobile-nav-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 260ms ease, opacity 260ms ease;
}
.mobile-nav-trigger.is-open .mobile-nav-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-nav-trigger.is-open .mobile-nav-bar:nth-child(2) {
  opacity: 0;
}
.mobile-nav-trigger.is-open .mobile-nav-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  backdrop-filter: blur(12px) saturate(108%);
  -webkit-backdrop-filter: blur(12px) saturate(108%);
  background: rgba(6, 8, 14, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
body.nav-on-dark .mobile-nav-trigger {
  background: rgba(244, 248, 255, 0.2);
  border-color: rgba(79, 101, 134, 0.14);
  backdrop-filter: blur(8px) saturate(116%);
  -webkit-backdrop-filter: blur(8px) saturate(116%);
  box-shadow: 0 6px 14px rgba(24, 35, 54, 0.08);
  color: rgba(31, 48, 72, 0.92);
}
body.nav-on-dark .mobile-lang-switcher .lang-switcher-trigger {
  background: rgba(244, 248, 255, 0.2);
  border-color: rgba(79, 101, 134, 0.14);
  backdrop-filter: blur(8px) saturate(116%);
  -webkit-backdrop-filter: blur(8px) saturate(116%);
  box-shadow: 0 6px 14px rgba(24, 35, 54, 0.08);
  color: rgba(31, 48, 72, 0.92);
}
body.nav-on-light .mobile-nav-trigger {
  background: rgba(14, 18, 28, 0.1);
  border-color: rgba(182, 201, 230, 0.12);
  backdrop-filter: blur(5px) saturate(102%);
  -webkit-backdrop-filter: blur(5px) saturate(102%);
  box-shadow: none;
  color: rgba(244, 247, 251, 0.92);
}
body.nav-on-light .mobile-lang-switcher .lang-switcher-trigger {
  background: rgba(14, 18, 28, 0.1);
  border-color: rgba(182, 201, 230, 0.12);
  backdrop-filter: blur(5px) saturate(102%);
  -webkit-backdrop-filter: blur(5px) saturate(102%);
  box-shadow: none;
  color: rgba(244, 247, 251, 0.92);
}
body.nav-on-dark .mobile-nav-overlay {
  background: rgba(234, 242, 252, 0.26);
}
body.nav-on-light .mobile-nav-overlay {
  background: rgba(6, 8, 14, 0.44);
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(80px, 14vw, 120px) clamp(24px, 6vw, 48px) 40px;
}
.mobile-nav-item {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(244, 247, 251, 0.92);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 160ms ease;
}
.mobile-nav-item:last-child {
  border-bottom: 0;
}
.mobile-nav-item[aria-current="page"] {
  color: var(--accent-2);
}
.mobile-nav-item:hover {
  color: rgba(255, 255, 255, 0.98);
}
.careers-page .mobile-nav-item {
  color: rgba(20, 26, 34, 0.92);
}
.careers-page .mobile-nav-item:hover {
  color: rgba(20, 26, 34, 0.98);
}
@media (max-width: 480px) {
  html {
    font-size: 92%;
  }
  h1,
  .text-5xl,
  .md\:text-7xl {
    font-size: clamp(1.45rem, 7vw, 2.1rem) !important;
    line-height: 1.18 !important;
  }
  h2,
  .text-3xl {
    font-size: clamp(1.18rem, 5.4vw, 1.55rem) !important;
    line-height: 1.24 !important;
  }
  h3 {
    font-size: clamp(1.02rem, 4.8vw, 1.28rem) !important;
    line-height: 1.3 !important;
  }
  .hero h1,
  .hero-text {
    font-size: clamp(0.96rem, 5vw, 1.36rem) !important;
    line-height: 1.3 !important;
    letter-spacing: 0.04em !important;
  }
  .business-panel-name {
    font-size: clamp(1.1rem, 5.2vw, 1.42rem) !important;
    line-height: 1.22;
  }
  .business-summary-inline {
    font-size: 0.8rem;
    line-height: 1.56;
  }
  .careers-page main {
    margin-top: 0;
  }
  .site-footer-slogan {
    font-size: 0.74rem;
    text-align: center;
  }
  .careers-hero {
    min-height: 0;
  }
  .careers-hero img,
  .careers-hero video {
    height: auto;
    min-height: 0;
    -o-object-position: center top;
       object-position: center top;
  }
}
/* 仅触控设备（手机/平板）才切换汉堡菜单；桌面端缩窄窗口时保持 topbar */
@media (max-width: 702px) and (pointer: coarse) {
  .topbar {
    display: none;
  }
  .mobile-nav-trigger {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }
  .mobile-lang-switcher {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }
  .mobile-lang-switcher .lang-switcher-trigger {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .mobile-lang-switcher .lang-switcher-globe {
    width: 1.45rem;
    height: 1.45rem;
  }
  .architecture-three-viewport.is-ontology-empty > .architecture-reset-btn,
  .architecture-three-viewport.is-ontology-empty .architecture-three-overlay {
    display: none;
  }
  .mobile-lang-switcher .lang-switcher-panel {
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    min-width: min(232px, calc(100vw - 40px));
  }
  html[dir="rtl"] .mobile-nav-trigger {
    left: auto;
    right: 20px;
  }
  html[dir="rtl"] .mobile-lang-switcher {
    right: auto;
    left: 20px;
  }
  .mobile-nav-overlay {
    display: block;
  }
}
