:root {
  --blue-900: #07173f;
  --blue-800: #0b2d7e;
  --blue-700: #1556f0;
  --blue-600: #2167ff;
  --blue-500: #2e7dff;
  --cyan-400: #20d7f6;
  --mint-400: #31d6ad;
  --amber-400: #ffb552;
  --ink: #071021;
  --muted: #667085;
  --line: #dbe4f3;
  --soft: #f4f8ff;
  --white: #ffffff;
  --footer: #030819;
  --shadow: 0 24px 80px rgba(13, 59, 157, 0.22);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

[hidden] {
  display: none !important;
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready [data-animate="fade-left"] {
  transform: translate3d(-28px, 0, 0);
}

.motion-ready [data-animate="fade-right"] {
  transform: translate3d(28px, 0, 0);
}

.motion-ready [data-animate="fade-left"].is-visible,
.motion-ready [data-animate="fade-right"].is-visible {
  transform: translate3d(0, 0, 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  min-height: 78px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(21, 86, 240, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    min-height 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(7, 23, 63, 0.92);
  box-shadow: 0 18px 50px rgba(2, 9, 29, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}

.brand-mark {
  width: 190px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  justify-content: center;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a,
.header-action {
  position: relative;
  outline: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  content: "";
  background: var(--mint-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: rgba(255, 255, 255, 0.92);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--blue-700);
  font-weight: 750;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  box-shadow: 0 12px 36px rgba(4, 30, 95, 0.18);
  transition:
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--blue-900);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(4, 30, 95, 0.25);
}

.nav-toggle {
  display: none;
}

.nav-toggle span:not(.sr-only) {
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-scroll: 0px;
  --hero-cube-x: 0px;
  --hero-cube-y: 0px;
  min-height: 810px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 30%, rgba(32, 215, 246, 0.28), transparent 28%),
    linear-gradient(180deg, #1556f0 0%, #1f69ff 38%, #eaf2ff 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 92px;
  right: 0;
  z-index: 1;
  width: min(900px, 74vw);
  height: 560px;
  content: "";
  background:
    linear-gradient(90deg, rgba(178, 227, 255, 0.14) 1px, transparent 1px) 0 0 / 86px 100%,
    linear-gradient(0deg, rgba(178, 227, 255, 0.12) 1px, transparent 1px) 0 0 / 100% 74px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: skewY(-7deg);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  width: min(75vw, 1280px);
  height: min(720px, 72vw);
  object-fit: cover;
  object-position: right top;
  opacity: 0.95;
  mix-blend-mode: screen;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0) scale(1.04);
  transform-origin: right top;
  transition: transform 120ms ease-out;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 75, 224, 0.98) 0%, rgba(18, 88, 240, 0.84) 34%, rgba(16, 82, 226, 0.18) 72%),
    linear-gradient(180deg, rgba(0, 14, 58, 0.08), rgba(244, 248, 255, 0.98) 86%);
}

.hero-current {
  position: absolute;
  top: 72px;
  right: -24px;
  z-index: 1;
  width: min(1000px, 78vw);
  height: min(620px, 66vw);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.88;
  transform: translate3d(var(--hero-x), calc(var(--hero-y) + var(--hero-scroll)), 0);
  transition: transform 120ms ease-out;
  will-change: transform;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 80%, transparent 100%);
  mask-composite: intersect;
}

.hero-current svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.current-tracks use,
.current-flows use {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.current-tracks use {
  stroke: rgba(200, 241, 255, 0.24);
  stroke-width: 1.7;
}

.current-flows use {
  stroke: rgba(165, 255, 238, 0.95);
  stroke-width: 2.8;
  stroke-dasharray: 34 966;
  stroke-dashoffset: 1000;
  animation: currentFlow 4.6s linear infinite;
}

.current-flows .flow-b {
  animation-duration: 5.4s;
  animation-delay: -1.4s;
}

.current-flows .flow-c {
  animation-duration: 4.2s;
  animation-delay: -2.2s;
}

.current-flows .flow-d {
  animation-duration: 5.8s;
  animation-delay: -3s;
}

.current-flows .flow-e {
  animation-duration: 3.8s;
  animation-delay: -0.8s;
}

.current-flows .flow-f {
  animation-duration: 4.9s;
  animation-delay: -2.8s;
}

.current-nodes circle {
  fill: rgba(184, 255, 246, 0.96);
  opacity: 0.74;
  transform-box: fill-box;
  transform-origin: center;
  animation: currentNode 2.8s ease-in-out infinite;
}

.current-nodes circle:nth-child(2),
.current-nodes circle:nth-child(5) {
  animation-delay: -0.9s;
}

.current-nodes circle:nth-child(3),
.current-nodes circle:nth-child(7) {
  animation-delay: -1.7s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 185px 0 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--blue-600);
}

.hero h1 {
  width: min(710px, 100%);
  margin: 0;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.08;
  font-weight: 850;
  animation: heroTextIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both;
}

.hero-lead {
  width: min(650px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
  animation: heroTextIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  animation: heroTextIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 280ms both;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  outline: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #1648e2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 42px rgba(6, 48, 156, 0.28);
}

.primary-btn.light {
  color: var(--blue-900);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
}

.primary-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.primary-btn:hover,
.primary-btn:focus-visible,
.ghost-btn:hover,
.ghost-btn:focus-visible {
  transform: translateY(-2px);
}

.primary-btn:hover svg,
.primary-btn:focus-visible svg {
  transform: translateX(3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 72px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  animation: heroTextIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 380ms both;
}

.hero-stats div {
  position: relative;
  min-height: 116px;
  padding: 24px;
  background: rgba(3, 16, 58, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hero-stats dt {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 850;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-cubes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(var(--hero-cube-x), var(--hero-cube-y), 0);
  transition: transform 140ms ease-out;
  will-change: transform;
}

.cube {
  position: absolute;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.04)),
    linear-gradient(225deg, rgba(49, 214, 173, 0.58), rgba(46, 125, 255, 0.24));
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  opacity: 0.78;
  animation: floatCube 7s ease-in-out infinite;
}

.cube-a {
  top: 150px;
  left: 8%;
}

.cube-b {
  top: 56px;
  right: 9%;
  width: 118px;
  animation-delay: -2s;
}

.cube-c {
  right: 20%;
  bottom: 265px;
  width: 54px;
  animation-delay: -4s;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 44px;
}

.section-head.compact {
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 850;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.capabilities {
  margin-top: -46px;
  padding-top: 92px;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: visible;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  position: relative;
  min-height: 44px;
  padding: 0 10px;
  color: var(--ink);
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  text-align: center;
  white-space: nowrap;
  transition: color 180ms ease;
}

.tab::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 3px;
  content: "";
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.tab.is-active {
  color: var(--blue-600);
}

.tab.is-active::after,
.tab:focus-visible::after {
  transform: scaleX(1);
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.8fr);
  gap: 36px;
  align-items: start;
  padding-top: 42px;
}

.tab-panel.is-active {
  animation: panelIn 360ms ease both;
}

.panel-copy {
  position: sticky;
  top: 98px;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(10, 46, 135, 0.96), rgba(35, 104, 255, 0.9)),
    var(--blue-700);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 270px;
}

.panel-copy::after {
  position: absolute;
  right: -42px;
  bottom: -62px;
  width: 180px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(49, 214, 173, 0.24), rgba(255, 255, 255, 0.06));
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.panel-number {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 54px;
  font-weight: 850;
  line-height: 1;
}

.panel-copy h3 {
  margin: 28px 0 12px;
  font-size: 30px;
  line-height: 1.18;
}

.panel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

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

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(32, 215, 246, 0.2), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  border-color: rgba(33, 103, 255, 0.38);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
}

.feature-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--blue-600);
  background:
    linear-gradient(135deg, rgba(32, 215, 246, 0.16), rgba(49, 214, 173, 0.18)),
    var(--soft);
  border: 1px solid rgba(33, 103, 255, 0.16);
  border-radius: 8px;
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.icon-box::before {
  inset: 14px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.icon-box::after {
  left: 26px;
  top: 8px;
  width: 6px;
  height: 42px;
  background: var(--mint-400);
  transform: rotate(45deg);
}

.icon-flow::before,
.icon-nodes::before {
  left: 12px;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--mint-400);
  box-shadow: 24px 0 0 var(--blue-600), 12px 20px 0 var(--amber-400);
  border-radius: 50%;
}

.icon-flow::after,
.icon-nodes::after {
  left: 18px;
  top: 22px;
  width: 28px;
  height: 22px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.icon-loop::before {
  inset: 13px;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.icon-loop::after {
  right: 12px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--mint-400);
  border-right: 3px solid var(--mint-400);
  transform: rotate(38deg);
}

.icon-pen::before {
  left: 14px;
  top: 30px;
  width: 32px;
  height: 5px;
  background: currentColor;
  border-radius: 4px;
  transform: rotate(-36deg);
}

.icon-pen::after {
  left: 35px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: var(--amber-400);
  transform: rotate(-36deg);
}

.icon-stack::before {
  left: 13px;
  top: 14px;
  width: 32px;
  height: 20px;
  border: 3px solid currentColor;
  box-shadow: -6px 10px 0 -3px var(--mint-400), 6px 20px 0 -3px var(--blue-600);
}

.icon-check::before {
  left: 15px;
  top: 15px;
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
}

.icon-check::after {
  left: 21px;
  top: 28px;
  width: 20px;
  height: 9px;
  border-left: 4px solid var(--mint-400);
  border-bottom: 4px solid var(--mint-400);
  transform: rotate(-45deg);
}

.icon-chart::before {
  left: 14px;
  bottom: 14px;
  width: 7px;
  height: 18px;
  background: var(--mint-400);
  box-shadow: 12px -8px 0 var(--blue-600), 24px -18px 0 var(--amber-400);
}

.icon-chart::after {
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 3px;
  background: currentColor;
}

.icon-search::before {
  left: 13px;
  top: 12px;
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  right: 13px;
  bottom: 14px;
  width: 18px;
  height: 4px;
  background: var(--mint-400);
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-target::before {
  inset: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-target::after {
  inset: 24px;
  background: var(--amber-400);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(49, 214, 173, 0.5);
}

.icon-map::before {
  left: 12px;
  top: 14px;
  width: 34px;
  height: 30px;
  border: 3px solid currentColor;
  clip-path: polygon(0 0, 32% 9%, 68% 0, 100% 9%, 100% 100%, 68% 90%, 32% 100%, 0 90%);
}

.icon-map::after {
  left: 27px;
  top: 12px;
  width: 4px;
  height: 34px;
  background: var(--mint-400);
}

.icon-gear::before {
  inset: 15px;
  border: 4px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -12px 0 -8px var(--amber-400), 0 12px 0 -8px var(--amber-400), 12px 0 0 -8px var(--mint-400), -12px 0 0 -8px var(--mint-400);
}

.icon-gear::after {
  inset: 25px;
  background: currentColor;
  border-radius: 50%;
}

.icon-report::before {
  left: 16px;
  top: 12px;
  width: 26px;
  height: 34px;
  border: 3px solid currentColor;
}

.icon-report::after {
  left: 22px;
  top: 22px;
  width: 14px;
  height: 3px;
  background: var(--mint-400);
  box-shadow: 0 8px 0 var(--mint-400);
}

.icon-bridge::before {
  left: 10px;
  top: 27px;
  width: 38px;
  height: 3px;
  background: currentColor;
}

.icon-bridge::after {
  left: 11px;
  top: 17px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--mint-400);
  box-shadow: 25px 0 0 -3px var(--amber-400);
  border-radius: 50%;
}

.icon-shield::before {
  left: 15px;
  top: 10px;
  width: 28px;
  height: 36px;
  background: currentColor;
  clip-path: polygon(50% 0, 90% 14%, 84% 70%, 50% 100%, 16% 70%, 10% 14%);
}

.icon-shield::after {
  left: 25px;
  top: 23px;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg);
}

.feature-card h4 {
  margin: 0 0 13px;
  font-size: 20px;
}

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

.advantages {
  width: 100%;
  max-width: none;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2)) 124px;
  background:
    radial-gradient(circle at 84% 20%, rgba(32, 215, 246, 0.15), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 56%, #ffffff 100%);
}

.advantage-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-top: 60px;
}

.advantage-card {
  position: relative;
  min-height: 360px;
  padding: 38px 30px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #4a8dff, #1556f0 70%);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.advantage-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.advantage-card::after {
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 170px;
  aspect-ratio: 1;
  content: "";
  background: rgba(49, 214, 173, 0.22);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  z-index: 0;
}

.advantage-card > * {
  position: relative;
  z-index: 1;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card-featured {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(4, 15, 45, 0.12), rgba(4, 15, 45, 0.58)),
    url("assets/hero-ai-enterprise.png") center / cover;
  box-shadow: var(--shadow);
}

.advantage-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 48px;
  font-weight: 850;
}

.advantage-card h3 {
  margin: 90px 0 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.22;
}

.advantage-card p {
  width: min(360px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.value-strip div {
  position: relative;
  min-height: 132px;
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.value-strip div::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(33, 103, 255, 0.08), rgba(49, 214, 173, 0));
  opacity: 0;
  transition: opacity 180ms ease;
}

.value-strip div:hover::after {
  opacity: 1;
}

.value-strip div > * {
  position: relative;
  z-index: 1;
}

.value-strip strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.value-strip span {
  color: var(--muted);
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 270px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.process-list li::before {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 58px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), transparent);
}

.process-list li::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(33, 103, 255, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.process-list li:hover {
  border-color: rgba(33, 103, 255, 0.34);
  transform: translateY(-4px);
  box-shadow: 0 18px 54px rgba(13, 59, 157, 0.13);
}

.process-list li:hover::after {
  opacity: 1;
}

.process-list li > * {
  position: relative;
  z-index: 1;
}

.process-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  font-size: 22px;
  font-weight: 850;
  background: var(--blue-600);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(33, 103, 255, 0.25);
}

.process-list h3 {
  margin: 70px 0 14px;
  font-size: 24px;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  margin: 12px auto 110px;
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 20%, rgba(49, 214, 173, 0.3), transparent 25%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.22;
}

.contact-band p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.cases-hero {
  position: relative;
  min-height: 560px;
  padding-top: 78px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 214, 173, 0.24), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(32, 215, 246, 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 58%, #3c8bff 100%);
  isolation: isolate;
}

.cases-hero::before {
  position: absolute;
  inset: 78px 0 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 92px 92px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  opacity: 0.6;
}

.cases-hero-grid {
  position: absolute;
  inset: 110px max(24px, calc((100vw - var(--max)) / 2)) auto auto;
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 18px;
  opacity: 0.55;
}

.cases-hero-grid span {
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(184, 255, 246, 0.38), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 52px rgba(4, 23, 74, 0.2);
}

.cases-hero-grid span:nth-child(2) {
  transform: translateY(30px);
}

.cases-hero-grid span:nth-child(3) {
  transform: translateY(-12px);
}

.cases-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 92px;
}

.cases-hero h1 {
  width: min(800px, 100%);
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 900;
}

.cases-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

.cases-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(660px, 100%);
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.cases-summary div {
  min-height: 104px;
  padding: 22px 24px;
  background: rgba(3, 16, 58, 0.2);
  backdrop-filter: blur(10px);
}

.cases-summary strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.cases-summary span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.case-index {
  padding-bottom: 36px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--blue-700);
  font-weight: 800;
  background: rgba(33, 103, 255, 0.08);
  border: 1px solid rgba(33, 103, 255, 0.16);
  border-radius: 4px;
}

.case-experience {
  padding-top: 34px;
}

.case-workspace {
  display: block;
  min-height: 0;
  overflow: hidden;
  background: var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 82px rgba(7, 23, 63, 0.14);
}

.case-browser {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 22px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(9, 35, 92, 0.98), rgba(5, 16, 46, 0.98)),
    var(--blue-900);
}

.case-browser-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.case-browser-head span {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.case-browser-head strong {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 28px;
  color: #bff9eb;
  font-size: 13px;
  background: rgba(49, 214, 173, 0.12);
  border: 1px solid rgba(49, 214, 173, 0.26);
  border-radius: 4px;
}

.case-search {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.case-search span {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
}

.case-search span::after {
  display: block;
  width: 6px;
  height: 2px;
  margin: 10px 0 0 10px;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  transform: rotate(45deg);
  transform-origin: left center;
}

.case-search em {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-menu {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding-right: 0;
  overflow-y: auto;
}

.case-menu::-webkit-scrollbar {
  width: 4px;
}

.case-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.case-select {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  cursor: pointer;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.case-select:hover,
.case-select:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  outline: none;
}

.case-select.is-active {
  color: var(--white);
  background: rgba(33, 103, 255, 0.26);
  border-color: rgba(49, 214, 173, 0.42);
  box-shadow:
    inset 0 0 0 2px rgba(49, 214, 173, 0.45),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.case-select-index {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 24px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  background: rgba(2, 11, 34, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.case-select-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background:
    radial-gradient(circle at 72% 24%, rgba(49, 214, 173, 0.44), transparent 24%),
    linear-gradient(135deg, rgba(33, 103, 255, 0.94), rgba(7, 23, 63, 0.96));
}

.case-select-thumb::before {
  position: absolute;
  inset: 12px 10px auto;
  height: 18px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 22%, transparent 22% 30%, rgba(255, 255, 255, 0.42) 30% 60%, transparent 60%),
    rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.case-select-thumb::after {
  position: absolute;
  inset: 42px 10px 42px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 18px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 100% 18px,
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
}

.case-select-thumb i {
  position: absolute;
  z-index: 1;
  display: block;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.case-select-thumb i:nth-child(1) {
  left: 18px;
  top: 54px;
  width: 34%;
  height: 5px;
}

.case-select-thumb i:nth-child(2) {
  right: 16px;
  top: 54px;
  width: 22%;
  height: 5px;
  background: rgba(49, 214, 173, 0.9);
}

.case-select-thumb i:nth-child(3) {
  left: 18px;
  top: 72px;
  width: 54%;
  height: 5px;
  opacity: 0.62;
}

.case-select-thumb i:nth-child(4) {
  left: 18px;
  top: 92px;
  width: 28%;
  height: 24px;
  border-radius: 5px;
  opacity: 0.48;
}

.case-select-thumb i:nth-child(5) {
  right: 18px;
  top: 92px;
  width: 34%;
  height: 24px;
  border-radius: 5px;
  background: rgba(32, 215, 246, 0.58);
}

.case-select-thumb i:nth-child(6) {
  left: 18px;
  bottom: 38px;
  width: 62%;
  height: 5px;
  opacity: 0.46;
}

.case-select-thumb i:nth-child(7) {
  right: 18px;
  bottom: 38px;
  width: 18%;
  height: 5px;
  background: rgba(255, 181, 82, 0.88);
}

.case-select-meta {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 9px;
  z-index: 2;
  display: block;
  padding: 8px;
  background: linear-gradient(180deg, rgba(3, 8, 25, 0.22), rgba(3, 8, 25, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  backdrop-filter: blur(8px);
}

.case-select-thumb.has-preview {
  background: #eef5ff;
}

.case-select-thumb.has-preview::before,
.case-select-thumb.has-preview::after {
  display: none;
}

.case-thumb-preview {
  position: absolute;
  inset: 0;
  display: block;
  width: 400%;
  height: 400%;
  overflow: hidden;
  pointer-events: none;
  transform: scale(0.25);
  transform-origin: left top;
}

.case-thumb-preview .module-shell {
  width: 100%;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.case-thumb-preview .module-depth {
  display: none;
}

.case-select strong,
.case-select em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-select strong {
  color: var(--white);
  font-size: 12px;
  line-height: 1.3;
}

.case-select em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-style: normal;
}

.case-select[data-case-thumb="editor"] .case-select-thumb,
.case-select[data-case-thumb="knowledge"] .case-select-thumb {
  background:
    radial-gradient(circle at 22% 80%, rgba(255, 181, 82, 0.36), transparent 28%),
    linear-gradient(135deg, #f8fbff, #dceaff);
}

.case-select[data-case-thumb="editor"] .case-select-thumb::after,
.case-select[data-case-thumb="knowledge"] .case-select-thumb::after {
  background:
    linear-gradient(90deg, rgba(21, 86, 240, 0.18) 1px, transparent 1px) 0 0 / 18px 100%,
    rgba(255, 255, 255, 0.74);
  border-color: rgba(21, 86, 240, 0.22);
}

.case-select[data-case-thumb="editor"] .case-select-thumb i,
.case-select[data-case-thumb="knowledge"] .case-select-thumb i {
  background: rgba(21, 86, 240, 0.64);
}

.case-select[data-case-thumb="analytics"] .case-select-thumb,
.case-select[data-case-thumb="compare"] .case-select-thumb {
  background:
    conic-gradient(from 240deg at 72% 34%, rgba(49, 214, 173, 0.8), rgba(21, 86, 240, 0.8), transparent 62%),
    linear-gradient(135deg, #eaf2ff, #f7fbff);
}

.case-select[data-case-thumb="finance"] .case-select-thumb,
.case-select[data-case-thumb="quality"] .case-select-thumb {
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 181, 82, 0.56), transparent 25%),
    linear-gradient(135deg, #fff8e9, #fef3d6);
}

.case-select[data-case-thumb="finance"] .case-select-thumb i,
.case-select[data-case-thumb="quality"] .case-select-thumb i {
  background: rgba(146, 87, 0, 0.48);
}

.case-select[data-case-thumb="contract"] .case-select-thumb,
.case-select[data-case-thumb="radar"] .case-select-thumb {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 90, 134, 0.4), transparent 24%),
    linear-gradient(135deg, #fff5f8, #ffe5ee);
}

.case-select[data-case-thumb="contract"] .case-select-thumb i,
.case-select[data-case-thumb="radar"] .case-select-thumb i {
  background: rgba(222, 56, 104, 0.54);
}

.case-select[data-case-thumb="pipeline"] .case-select-thumb,
.case-select[data-case-thumb="project"] .case-select-thumb,
.case-select[data-case-thumb="cockpit"] .case-select-thumb {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 22px 100%,
    linear-gradient(135deg, #09235c, #071021);
}

.case-select[data-case-thumb="inbox"] .case-select-thumb,
.case-select[data-case-thumb="meeting"] .case-select-thumb,
.case-select[data-case-thumb="it"] .case-select-thumb {
  background:
    radial-gradient(circle at 24% 28%, rgba(32, 215, 246, 0.42), transparent 26%),
    linear-gradient(135deg, #1556f0, #07173f);
}

.case-select[data-case-thumb="resume"] .case-select-thumb,
.case-select[data-case-thumb="training"] .case-select-thumb,
.case-select[data-case-thumb="asset"] .case-select-thumb,
.case-select[data-case-thumb="campaign"] .case-select-thumb,
.case-select[data-case-thumb="approval"] .case-select-thumb {
  background:
    radial-gradient(circle at 76% 24%, rgba(124, 92, 255, 0.48), transparent 26%),
    linear-gradient(135deg, #182a77, #361857);
}

.case-select .case-select-thumb.has-preview {
  background: #eef5ff;
}

.case-select .case-select-thumb.has-preview::before,
.case-select .case-select-thumb.has-preview::after {
  display: none;
}

@media (min-width: 821px) {
  .case-workspace {
    display: grid;
    grid-template-columns: 274px minmax(0, 1fr);
    min-height: 820px;
    background: #eef5ff;
    border: 1px solid #cfdbef;
  }

  .case-menu {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-right: 4px;
    overflow-y: auto;
  }

  .case-select {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    aspect-ratio: auto;
    min-height: 66px;
    padding: 10px;
    overflow: visible;
    background: transparent;
    border: 1px solid transparent;
    box-shadow: none;
  }

  .case-select:hover,
  .case-select:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .case-select.is-active {
    background: rgba(33, 103, 255, 0.32);
    border-color: rgba(49, 214, 173, 0.42);
    box-shadow: inset 3px 0 0 var(--mint-400);
  }

  .case-select-thumb {
    display: none;
  }

  .case-select-index {
    position: static;
    width: 32px;
    height: 32px;
    color: #bff9eb;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    backdrop-filter: none;
  }

  .case-select-meta {
    position: static;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .case-select strong {
    color: currentColor;
    font-size: 14px;
  }

  .case-select em {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
  }

  .case-experience .agent-console {
    display: grid;
  }
}

@media (max-width: 820px) {
  .case-experience .agent-console {
    display: none;
  }
}

.agent-console {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(33, 103, 255, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(0deg, rgba(33, 103, 255, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    #f7fbff;
}

.console-sidebar {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding: 18px 0;
  background: #ffffff;
  border-right: 1px solid #d9e4f4;
}

.console-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-700), var(--mint-400));
  border-radius: 6px;
}

.console-sidebar span {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(90deg, #c9d7eb 0 60%, transparent 60%),
    linear-gradient(#e7eef9, #e7eef9);
  background-size:
    16px 3px,
    100% 100%;
  background-position:
    center,
    center;
  background-repeat: no-repeat;
  border: 1px solid #d9e4f4;
  border-radius: 5px;
}

.console-sidebar span.is-on {
  background:
    linear-gradient(90deg, var(--white) 0 60%, transparent 60%),
    var(--blue-700);
  border-color: var(--blue-700);
}

.console-main {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: 22px;
}

.console-topbar,
.console-panel,
.console-metrics article {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe5f3;
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(13, 59, 157, 0.07);
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
}

.console-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  background: rgba(33, 103, 255, 0.08);
  border: 1px solid rgba(33, 103, 255, 0.12);
  border-radius: 4px;
}

.console-topbar h3 {
  margin: 10px 0 8px;
  font-size: 25px;
  line-height: 1.25;
}

.console-topbar p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.console-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.console-actions button,
.panel-head button {
  min-height: 36px;
  padding: 0 12px;
  color: #24415f;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  background: #f5f8fc;
  border: 1px solid #d8e2ef;
  border-radius: 5px;
}

.console-actions button:nth-child(2),
.panel-head button:hover,
.panel-head button:focus-visible {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

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

.console-metrics article {
  min-height: 118px;
  padding: 16px;
}

.console-metrics span,
.panel-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.console-metrics strong {
  display: block;
  margin-top: 12px;
  color: var(--blue-900);
  font-size: 32px;
  line-height: 1;
}

.console-metrics em {
  display: block;
  margin-top: 10px;
  color: #667085;
  font-size: 12px;
  font-style: normal;
}

.agent-console[data-theme="mint"] {
  --case-accent: #31d6ad;
  --case-accent-2: #2167ff;
  --case-soft: #effdf8;
}

.agent-console[data-theme="blue"] {
  --case-accent: #2167ff;
  --case-accent-2: #20d7f6;
  --case-soft: #edf5ff;
}

.agent-console[data-theme="amber"] {
  --case-accent: #ffb552;
  --case-accent-2: #2167ff;
  --case-soft: #fff7ea;
}

.agent-console[data-theme="violet"] {
  --case-accent: #7c5cff;
  --case-accent-2: #20d7f6;
  --case-soft: #f3f1ff;
}

.agent-console[data-theme="rose"] {
  --case-accent: #f05a7a;
  --case-accent-2: #2167ff;
  --case-soft: #fff0f4;
}

.case-live-module {
  min-width: 0;
}

.module-shell {
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dbe5f3;
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(13, 59, 157, 0.08);
}

.module-head,
.module-toolbar,
.module-row,
.module-split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.module-head {
  margin-bottom: 16px;
}

.module-head h4,
.module-split-head strong {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.module-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.module-tabs,
.module-actions,
.module-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-tabs span,
.module-actions button,
.module-filters span,
.module-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  color: #344054;
  font-size: 12px;
  font-weight: 850;
  background: #f5f8fc;
  border: 1px solid #dbe5f3;
  border-radius: 5px;
}

.module-tabs span:first-child,
.module-actions button.primary,
.module-chip.hot {
  color: var(--white);
  background: var(--case-accent, var(--blue-700));
  border-color: var(--case-accent, var(--blue-700));
}

.module-actions button {
  cursor: pointer;
}

.module-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 14px;
}

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

.module-pane,
.module-card-lite,
.module-list,
.module-doc,
.module-board,
.module-chat-window,
.module-side-panel {
  min-width: 0;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.module-pane,
.module-doc,
.module-board,
.module-chat-window,
.module-side-panel {
  padding: 14px;
}

.module-card-lite {
  padding: 14px;
}

.module-card-lite strong,
.module-pane strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.module-card-lite span,
.module-pane span,
.module-muted {
  display: block;
  margin-top: 7px;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

.module-progress {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  background: #e5edf7;
  border-radius: 999px;
}

.module-progress i {
  display: block;
  height: 100%;
  width: var(--w, 70%);
  background: linear-gradient(90deg, var(--case-accent, var(--blue-700)), var(--case-accent-2, var(--mint-400)));
  border-radius: inherit;
}

.module-bars {
  display: grid;
  gap: 10px;
}

.module-bar {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  color: #344054;
  font-size: 12px;
  font-weight: 850;
}

.module-bar i {
  display: block;
  height: 9px;
  width: var(--w, 70%);
  background: linear-gradient(90deg, var(--case-accent, var(--blue-700)), var(--case-accent-2, var(--mint-400)));
  border-radius: 999px;
}

.module-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.module-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: #344054;
  font-size: 13px;
  border-bottom: 1px solid #e6edf6;
}

.module-list div:last-child {
  border-bottom: 0;
}

.module-list em,
.module-badge {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  padding: 0 8px;
  color: var(--case-accent, var(--blue-700));
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  background: var(--case-soft, #edf5ff);
  border-radius: 999px;
}

.module-editor {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  gap: 14px;
}

.module-outline,
.module-inspector {
  display: grid;
  align-content: start;
  gap: 9px;
}

.module-outline span,
.module-inspector span,
.module-field {
  display: block;
  min-height: 34px;
  padding: 9px 10px;
  color: #344054;
  font-size: 12px;
  line-height: 1.45;
  background: #ffffff;
  border: 1px solid #e0e8f3;
  border-radius: 5px;
}

.module-outline span:first-child,
.module-inspector span:first-child {
  color: var(--white);
  background: var(--case-accent, var(--blue-700));
  border-color: var(--case-accent, var(--blue-700));
}

.module-doc {
  display: grid;
  align-content: start;
  min-height: 270px;
  background: #ffffff;
}

.module-doc h5 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
}

.module-doc p {
  margin: 0 0 10px;
  color: #344054;
  font-size: 13px;
  line-height: 1.75;
}

.module-doc mark {
  padding: 1px 4px;
  color: #7a4b00;
  background: #fff0cb;
  border-radius: 3px;
}

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

.kanban-col {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  padding: 12px;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.kanban-col h5 {
  margin: 0;
  color: #24415f;
  font-size: 13px;
}

.kanban-card {
  padding: 11px;
  background: #ffffff;
  border: 1px solid #dfe8f4;
  border-left: 3px solid var(--case-accent, var(--blue-700));
  border-radius: 6px;
}

.kanban-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.kanban-card span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
}

.module-chat-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 230px;
  gap: 14px;
}

.module-chat-window {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 300px;
  background: #ffffff;
}

.module-bubble {
  max-width: 84%;
  padding: 10px 12px;
  color: #344054;
  font-size: 13px;
  line-height: 1.55;
  background: #eef5ff;
  border-radius: 8px;
}

.module-bubble.ai {
  justify-self: end;
  color: var(--white);
  background: var(--case-accent, var(--blue-700));
}

.module-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 8px;
}

.module-input span {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: #98a2b3;
  font-size: 13px;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-radius: 6px;
}

.module-input button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  background: var(--case-accent, var(--blue-700));
  border: 0;
  border-radius: 6px;
}

.module-pipeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pipeline-step {
  min-height: 150px;
  padding: 12px;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-top: 4px solid var(--case-accent, var(--blue-700));
  border-radius: 7px;
}

.pipeline-step strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.pipeline-step b {
  display: block;
  margin-top: 18px;
  color: var(--case-accent, var(--blue-700));
  font-size: 24px;
}

.pipeline-step span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
}

.module-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 14px;
}

.review-doc {
  display: grid;
  gap: 10px;
  min-height: 310px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.review-line {
  height: 13px;
  background: #e7edf6;
  border-radius: 999px;
}

.review-line.short {
  width: 62%;
}

.review-line.warn {
  height: auto;
  padding: 10px 12px;
  color: #7a4b00;
  font-size: 13px;
  line-height: 1.55;
  background: #fff4dd;
  border: 1px solid #ffdf9a;
  border-radius: 6px;
}

.review-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.review-meta span,
.review-clause {
  padding: 10px 12px;
  color: #344054;
  font-size: 12px;
  line-height: 1.5;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-radius: 6px;
}

.review-clause {
  margin-bottom: 10px;
}

.review-clause strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.review-clause p {
  margin: 7px 0 0;
  color: #475467;
}

.module-compare {
  overflow-x: auto;
}

.compare-table {
  min-width: 680px;
  overflow: hidden;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.compare-table div {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(110px, 1fr));
  gap: 0;
  border-bottom: 1px solid #e6edf6;
}

.compare-table div:last-child {
  border-bottom: 0;
}

.compare-table span,
.compare-table strong {
  min-height: 44px;
  padding: 12px;
  color: #344054;
  font-size: 13px;
  border-right: 1px solid #e6edf6;
}

.compare-table strong {
  color: var(--ink);
  background: #f2f6fc;
}

.compare-table span.best {
  color: var(--case-accent, var(--blue-700));
  font-weight: 900;
  background: var(--case-soft, #edf5ff);
}

.module-gantt {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.gantt-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #344054;
  font-size: 13px;
}

.gantt-track {
  height: 28px;
  padding: 4px;
  background: #eef4fb;
  border-radius: 999px;
}

.gantt-bar {
  display: block;
  height: 100%;
  width: var(--w, 70%);
  margin-left: var(--x, 0);
  background: linear-gradient(90deg, var(--case-accent, var(--blue-700)), var(--case-accent-2, var(--mint-400)));
  border-radius: 999px;
}

.module-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.calendar-day {
  min-height: 112px;
  padding: 10px;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.calendar-day strong {
  display: block;
  color: #24415f;
  font-size: 13px;
}

.calendar-day span {
  display: block;
  margin-top: 10px;
  padding: 7px;
  color: #344054;
  font-size: 12px;
  line-height: 1.4;
  background: #ffffff;
  border-left: 3px solid var(--case-accent, var(--blue-700));
  border-radius: 4px;
}

.module-radar {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.radar-visual {
  position: relative;
  height: 260px;
  background:
    radial-gradient(circle, transparent 0 21%, #d7e3f4 22% 23%, transparent 24% 43%, #d7e3f4 44% 45%, transparent 46% 66%, #d7e3f4 67% 68%, transparent 69%),
    conic-gradient(from 35deg, rgba(33, 103, 255, 0.1), rgba(49, 214, 173, 0.18), rgba(255, 181, 82, 0.22), rgba(240, 90, 122, 0.16), rgba(33, 103, 255, 0.1));
  border: 1px solid #dce6f4;
  border-radius: 7px;
}

.radar-visual span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 12px;
  height: 12px;
  background: var(--case-accent, var(--blue-700));
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(7, 23, 63, 0.24);
}

.module-flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.flow-node {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100px;
  padding: 12px;
  text-align: center;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.flow-node strong {
  color: var(--ink);
  font-size: 13px;
}

.flow-node span {
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
}

.flow-node.hot {
  background: var(--case-soft, #edf5ff);
  border-color: rgba(33, 103, 255, 0.28);
}

.module-cockpit {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.cockpit-main {
  grid-column: span 2;
  min-height: 220px;
  padding: 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #07173f, #1556f0);
  border-radius: 7px;
}

.cockpit-main strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.cockpit-main span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.cockpit-side {
  display: grid;
  gap: 10px;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.82fr);
  gap: 14px;
  align-items: start;
}

.console-panel {
  min-width: 0;
  padding: 18px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-head strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.real-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  height: 236px;
  padding: 20px 18px 32px;
  background:
    linear-gradient(0deg, #e8eef7 1px, transparent 1px) 0 0 / 100% 46px,
    #f8fbff;
  border: 1px solid #e1e9f4;
  border-radius: 7px;
}

.real-chart span {
  position: relative;
  min-height: 28px;
  background: linear-gradient(180deg, #31d6ad, #2167ff);
  border-radius: 5px 5px 2px 2px;
  box-shadow: 0 12px 24px rgba(33, 103, 255, 0.18);
}

.real-chart span::before {
  position: absolute;
  left: 50%;
  top: -24px;
  color: #24415f;
  font-size: 11px;
  font-weight: 900;
  content: attr(data-value);
  transform: translateX(-50%);
}

.real-chart span::after {
  position: absolute;
  left: 50%;
  bottom: -24px;
  color: #667085;
  font-size: 11px;
  content: attr(data-label);
  transform: translateX(-50%);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  color: #667085;
  font-size: 12px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend span::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue-600);
  border-radius: 50%;
}

.chart-legend span:nth-child(2)::before {
  background: var(--mint-400);
}

.chart-legend span:nth-child(3)::before {
  background: var(--amber-400);
}

.ai-message {
  padding: 16px;
  color: #24415f;
  line-height: 1.72;
  background:
    linear-gradient(135deg, rgba(33, 103, 255, 0.08), rgba(49, 214, 173, 0.1)),
    #f8fbff;
  border: 1px solid #dce7f5;
  border-radius: 7px;
}

.ai-steps {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ai-step;
}

.ai-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #344054;
  font-size: 14px;
  line-height: 1.5;
}

.ai-steps li::before {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  content: counter(ai-step);
  counter-increment: ai-step;
  background: #edf5ff;
  border: 1px solid #d7e6fb;
  border-radius: 50%;
}

.table-panel {
  grid-column: 1 / 2;
}

.real-table {
  overflow-x: auto;
  border: 1px solid #e0e8f3;
  border-radius: 7px;
}

.real-table > div {
  display: grid;
  grid-template-columns: minmax(210px, 1.5fr) minmax(100px, 0.72fr) minmax(100px, 0.72fr) minmax(72px, 0.42fr);
  gap: 12px;
  align-items: center;
  min-width: 560px;
  min-height: 46px;
  padding: 10px 14px;
  color: #344054;
  font-size: 13px;
  border-bottom: 1px solid #e6edf6;
}

.real-table > div:last-child {
  border-bottom: 0;
}

.real-table .table-head {
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  background: #f2f6fc;
}

.task-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  padding: 0 8px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  background: #edf5ff;
  border-radius: 999px;
}

.real-table b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  padding: 0 8px;
  color: #9a5a00;
  font-size: 12px;
  background: #fff6e8;
  border-radius: 999px;
}

.agent-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.agent-flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 8px;
  color: #24415f;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  background: #f8fbff;
  border: 1px solid #dde7f4;
  border-radius: 6px;
}

.agent-flow span:not(:last-child)::after {
  position: absolute;
  right: -9px;
  top: 50%;
  z-index: 1;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--white);
  border: solid #cfdced;
  border-width: 1px 1px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.audit-card {
  margin-top: 14px;
  padding: 14px;
  color: #344054;
  font-size: 13px;
  line-height: 1.65;
  background: #f8fbff;
  border: 1px dashed #cfdced;
  border-radius: 7px;
}

.legacy-cases {
  display: none;
}

.case-experience .console-topbar,
.case-experience .console-sidebar,
.case-experience .console-metrics,
.case-experience .console-grid {
  display: none;
}

.case-experience .agent-console {
  grid-template-columns: 1fr;
}

.case-experience .console-main {
  gap: 14px;
  padding: 18px;
}

.case-experience .console-topbar {
  min-height: 116px;
  box-shadow: none;
}

.case-experience .case-live-module {
  display: grid;
}

.case-experience .module-shell {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(7, 23, 63, 0.1);
}

.case-experience .module-head {
  margin: 0;
  padding: 18px 20px;
}

.case-experience .module-head h4 {
  font-size: 20px;
}

.case-experience .module-head p {
  max-width: 560px;
}

.case-skin-ops {
  color: #d7f8ff;
  background:
    radial-gradient(circle at 22% 18%, rgba(49, 214, 173, 0.24), transparent 28%),
    linear-gradient(135deg, #06152f, #0a2f72 58%, #062033);
  border-color: rgba(49, 214, 173, 0.26);
}

.case-skin-ops .module-head h4,
.case-skin-ops .module-card-lite strong,
.case-skin-ops .module-bar,
.case-skin-ops .module-list div {
  color: #ffffff;
}

.case-skin-ops .module-head p,
.case-skin-ops .module-card-lite span,
.case-skin-ops .module-list span {
  color: rgba(255, 255, 255, 0.66);
}

.case-skin-ops .module-pane,
.case-skin-ops .module-card-lite,
.case-skin-ops .module-list {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.case-skin-ops .module-grid-2 {
  padding: 20px;
}

.case-skin-editor {
  background: #f7f3eb;
  border-color: #e2d6c2;
}

.case-skin-editor .module-head {
  background: #fffaf0;
  border-bottom: 1px solid #eadfce;
}

.case-skin-editor .module-doc {
  min-height: 360px;
  padding: 28px;
  background:
    linear-gradient(#ffffff 0 0) padding-box,
    linear-gradient(135deg, #f1c873, #2167ff) border-box;
  border: 1px solid transparent;
  box-shadow: 0 16px 38px rgba(108, 82, 38, 0.12);
}

.case-skin-editor .module-outline,
.case-skin-editor .module-inspector {
  padding: 14px;
  background: #efe7d8;
  border-radius: 8px;
}

.case-skin-editor .module-outline span,
.case-skin-editor .module-inspector span {
  border-color: #dfd0bb;
}

.case-skin-analytics {
  background: #f6f8ff;
}

.case-skin-analytics .module-head {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #3b2d83, #2167ff);
}

.case-skin-analytics .module-head h4,
.case-skin-analytics .module-head p {
  color: #ffffff;
}

.case-skin-analytics .module-grid-2 {
  padding: 20px;
}

.case-skin-analytics .module-pane {
  background: #ffffff;
}

.case-skin-analytics .module-card-lite {
  min-height: 136px;
  background: #f1f4ff;
  border-color: #d8ddff;
}

.case-skin-inbox {
  background: #f4f8fb;
}

.case-skin-inbox .module-head {
  background: #ffffff;
  border-bottom: 1px solid #dbe5f3;
}

.case-skin-inbox .module-chat-layout {
  padding: 18px;
  background: #eaf1f8;
}

.case-skin-inbox .module-list {
  background: #ffffff;
}

.case-skin-inbox .module-chat-window {
  min-height: 390px;
  background:
    linear-gradient(90deg, rgba(33, 103, 255, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
    #ffffff;
  border-radius: 8px;
}

.case-skin-pipeline {
  background: #06142e;
  border-color: #102e63;
}

.case-skin-pipeline .module-head {
  background: #091b3d;
  border-bottom: 1px solid #163a78;
}

.case-skin-pipeline .module-head h4,
.case-skin-pipeline .module-head p {
  color: #ffffff;
}

.case-skin-pipeline .module-tabs span {
  color: #d5e7ff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.case-skin-pipeline .module-pipeline {
  padding: 22px;
}

.case-skin-pipeline .pipeline-step {
  min-height: 240px;
  color: #d9e8ff;
  background:
    linear-gradient(180deg, rgba(33, 103, 255, 0.24), rgba(49, 214, 173, 0.08)),
    #0c2148;
  border-color: rgba(49, 214, 173, 0.2);
}

.case-skin-pipeline .pipeline-step strong,
.case-skin-pipeline .pipeline-step span {
  color: rgba(255, 255, 255, 0.76);
}

.case-skin-pipeline .pipeline-step b {
  color: #31d6ad;
  font-size: 34px;
}

.case-skin-resume {
  background: #fbf7ff;
}

.case-skin-resume .module-head {
  background: #ffffff;
  border-bottom: 1px solid #eadcff;
}

.case-skin-resume .module-grid-2 {
  padding: 18px;
}

.case-skin-resume .kanban-col {
  min-height: 360px;
  background: #ffffff;
  border-color: #eadcff;
}

.case-skin-resume .kanban-card {
  border-left-width: 5px;
  box-shadow: 0 12px 24px rgba(124, 92, 255, 0.08);
}

.case-skin-finance {
  background: #fff8eb;
}

.case-skin-finance .module-head {
  background: #332111;
}

.case-skin-finance .module-head h4,
.case-skin-finance .module-head p {
  color: #fff5e3;
}

.case-skin-finance .module-review {
  padding: 20px;
}

.case-skin-finance .review-doc {
  background: #fffdfa;
  border-color: #f2c576;
}

.case-skin-finance .module-side-panel {
  background: #fff4dc;
  border-color: #f2c576;
}

.case-skin-contract {
  background: #fff5f6;
}

.case-skin-contract .module-head {
  background: #ffffff;
  border-bottom: 1px solid #f2c6cf;
}

.case-skin-contract .module-review {
  padding: 20px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.case-skin-contract .review-doc {
  min-height: 420px;
  background:
    linear-gradient(90deg, #f05a7a 4px, transparent 4px),
    #ffffff;
  border-color: #f0b8c4;
  box-shadow: 0 18px 42px rgba(143, 23, 52, 0.12);
}

.case-skin-compare {
  background: #eef6ff;
}

.case-skin-compare .module-head {
  background: linear-gradient(135deg, #f8fbff, #e7f1ff);
  border-bottom: 1px solid #cddff4;
}

.case-skin-compare .module-compare {
  padding: 22px;
}

.case-skin-compare .compare-table {
  min-width: 780px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(33, 103, 255, 0.08);
}

.case-skin-project {
  background: #f4fbf9;
}

.case-skin-project .module-head {
  border-bottom: 1px solid #d8efe7;
}

.case-skin-project .module-grid-2 {
  padding: 22px;
  grid-template-columns: minmax(0, 1.4fr) 240px;
}

.case-skin-project .gantt-track {
  height: 34px;
  background: repeating-linear-gradient(90deg, #e2eee9 0 1px, #f8fbff 1px 50px);
  border-radius: 4px;
}

.case-skin-project .gantt-bar {
  border-radius: 4px;
}

.case-skin-meeting {
  background: #f8fafc;
}

.case-skin-meeting .module-head {
  background: #162032;
}

.case-skin-meeting .module-head h4,
.case-skin-meeting .module-head p {
  color: #ffffff;
}

.case-skin-meeting .module-grid-2 {
  padding: 20px;
}

.case-skin-meeting .module-doc {
  background: #fffdf7;
  border-color: #e5d8bd;
}

.case-skin-meeting .kanban-col {
  min-height: 320px;
}

.case-skin-knowledge {
  background: #f3f1ff;
}

.case-skin-knowledge .module-head {
  background: #ffffff;
  border-bottom: 1px solid #ddd6ff;
}

.case-skin-knowledge .module-chat-layout {
  padding: 18px;
  grid-template-columns: 260px minmax(0, 1fr) 260px;
}

.case-skin-knowledge .module-chat-window {
  background: #fbfaff;
  border-color: #ddd6ff;
}

.case-skin-quality {
  background: #fff7eb;
}

.case-skin-quality .module-head {
  background: linear-gradient(135deg, #fff7eb, #fffdf8);
  border-bottom: 1px solid #eed3a2;
}

.case-skin-quality .module-grid-2 {
  padding: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.case-skin-quality .module-card-lite {
  background: #fffdf8;
  border-color: #eed3a2;
}

.case-skin-radar {
  color: #dceaff;
  background: #040b1c;
  border-color: #162848;
}

.case-skin-radar .module-head {
  background: #071328;
  border-bottom: 1px solid #18365e;
}

.case-skin-radar .module-head h4,
.case-skin-radar .module-head p {
  color: #ffffff;
}

.case-skin-radar .module-radar {
  padding: 24px;
}

.case-skin-radar .radar-visual {
  height: 360px;
  background:
    radial-gradient(circle, transparent 0 22%, rgba(32, 215, 246, 0.28) 23% 24%, transparent 25% 45%, rgba(49, 214, 173, 0.22) 46% 47%, transparent 48% 67%, rgba(240, 90, 122, 0.3) 68% 69%, transparent 70%),
    conic-gradient(from 35deg, rgba(33, 103, 255, 0.18), rgba(49, 214, 173, 0.26), rgba(255, 181, 82, 0.26), rgba(240, 90, 122, 0.22), rgba(33, 103, 255, 0.18));
  border-color: rgba(32, 215, 246, 0.28);
}

.case-skin-radar .module-list {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.case-skin-radar .module-list div,
.case-skin-radar .module-list span {
  color: rgba(255, 255, 255, 0.78);
}

.case-skin-it {
  background: #eef5ff;
}

.case-skin-it .module-head {
  background: #ffffff;
  border-bottom: 1px solid #d2e0f2;
}

.case-skin-it .module-chat-layout {
  padding: 18px;
}

.case-skin-it .module-side-panel {
  background: #0b2d7e;
  border-color: #0b2d7e;
}

.case-skin-it .module-field {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.case-skin-training {
  background: #effdf8;
}

.case-skin-training .module-head {
  background: #ffffff;
  border-bottom: 1px solid #c7eee2;
}

.case-skin-training .module-calendar {
  padding: 20px;
}

.case-skin-training .calendar-day {
  min-height: 180px;
  background: #ffffff;
  border-color: #c7eee2;
}

.case-skin-asset {
  background: #f6f1e8;
}

.case-skin-asset .module-head {
  background: #51402b;
}

.case-skin-asset .module-head h4,
.case-skin-asset .module-head p {
  color: #fff8ee;
}

.case-skin-asset .module-grid-2 {
  padding: 20px;
}

.case-skin-asset .module-card-lite,
.case-skin-asset .module-list {
  background: #fffaf0;
  border-color: #dac7a6;
}

.case-skin-campaign {
  background: #f8f3ff;
}

.case-skin-campaign .module-head {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 181, 82, 0.28), transparent 28%),
    linear-gradient(135deg, #7c5cff, #2167ff);
}

.case-skin-campaign .module-head h4,
.case-skin-campaign .module-head p {
  color: #ffffff;
}

.case-skin-campaign .module-calendar {
  padding: 20px;
}

.case-skin-campaign .calendar-day {
  min-height: 172px;
  background: #ffffff;
  border-color: #ddd6ff;
}

.case-skin-approval {
  background: #f5f8fc;
}

.case-skin-approval .module-head {
  background: #ffffff;
  border-bottom: 1px solid #d8e2ef;
}

.case-skin-approval .module-flow-map {
  padding: 28px;
  min-height: 360px;
  align-items: center;
}

.case-skin-approval .flow-node {
  min-height: 150px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(33, 103, 255, 0.08);
}

.case-skin-approval .flow-node.hot {
  background: #edf5ff;
  border-color: #2167ff;
  box-shadow: 0 18px 42px rgba(33, 103, 255, 0.18);
}

.case-skin-cockpit {
  color: #ffffff;
  background: #020816;
  border-color: #14223e;
}

.case-skin-cockpit .module-head {
  background: #020816;
  border-bottom: 1px solid #14223e;
}

.case-skin-cockpit .module-head h4,
.case-skin-cockpit .module-head p {
  color: #ffffff;
}

.case-skin-cockpit .module-cockpit {
  padding: 24px;
}

.case-skin-cockpit .cockpit-main {
  min-height: 330px;
  background:
    radial-gradient(circle at 72% 24%, rgba(49, 214, 173, 0.26), transparent 26%),
    linear-gradient(135deg, #08215a, #1556f0 62%, #06152f);
}

.case-skin-cockpit .module-card-lite {
  min-height: 100px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.case-skin-cockpit .module-card-lite strong,
.case-skin-cockpit .module-card-lite span {
  color: rgba(255, 255, 255, 0.9);
}

.case-experience .module-shell.case-skin-ops {
  color: #d7f8ff;
  background:
    radial-gradient(circle at 22% 18%, rgba(49, 214, 173, 0.24), transparent 28%),
    linear-gradient(135deg, #06152f, #0a2f72 58%, #062033);
  border-color: rgba(49, 214, 173, 0.26);
}

.case-experience .module-shell.case-skin-editor {
  background: #f7f3eb;
  border-color: #e2d6c2;
}

.case-experience .module-shell.case-skin-analytics {
  background: #f6f8ff;
  border-color: #d8ddff;
}

.case-experience .module-shell.case-skin-inbox {
  background: #f4f8fb;
  border-color: #dbe5f3;
}

.case-experience .module-shell.case-skin-pipeline {
  background: #06142e;
  border-color: #102e63;
}

.case-experience .module-shell.case-skin-resume {
  background: #fbf7ff;
  border-color: #eadcff;
}

.case-experience .module-shell.case-skin-finance {
  background: #fff8eb;
  border-color: #f2c576;
}

.case-experience .module-shell.case-skin-contract {
  background: #fff5f6;
  border-color: #f0b8c4;
}

.case-experience .module-shell.case-skin-compare {
  background: #eef6ff;
  border-color: #cddff4;
}

.case-experience .module-shell.case-skin-project {
  background: #f4fbf9;
  border-color: #d8efe7;
}

.case-experience .module-shell.case-skin-meeting {
  background: #f8fafc;
  border-color: #d8e2ef;
}

.case-experience .module-shell.case-skin-knowledge {
  background: #f3f1ff;
  border-color: #ddd6ff;
}

.case-experience .module-shell.case-skin-quality {
  background: #fff7eb;
  border-color: #eed3a2;
}

.case-experience .module-shell.case-skin-radar {
  color: #dceaff;
  background: #040b1c;
  border-color: #162848;
}

.case-experience .module-shell.case-skin-it {
  background: #eef5ff;
  border-color: #d2e0f2;
}

.case-experience .module-shell.case-skin-training {
  background: #effdf8;
  border-color: #c7eee2;
}

.case-experience .module-shell.case-skin-asset {
  background: #f6f1e8;
  border-color: #dac7a6;
}

.case-experience .module-shell.case-skin-campaign {
  background: #f8f3ff;
  border-color: #ddd6ff;
}

.case-experience .module-shell.case-skin-approval {
  background: #f5f8fc;
  border-color: #d8e2ef;
}

.case-experience .module-shell.case-skin-cockpit {
  color: #ffffff;
  background: #020816;
  border-color: #14223e;
}

.module-depth {
  display: grid;
  gap: 12px;
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(152, 162, 179, 0.16);
}

.module-depth h5 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.module-depth p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.62;
}

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

.module-depth-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 12px;
}

.module-depth-panel,
.module-mini-panel,
.module-activity,
.module-route,
.module-decision-card,
.module-source-card,
.module-step-card {
  min-width: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(209, 220, 235, 0.82);
  border-left: 3px solid var(--case-accent, var(--blue-700));
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(13, 59, 157, 0.04);
}

.module-depth-panel strong,
.module-mini-panel strong,
.module-activity strong,
.module-route strong,
.module-decision-card strong,
.module-source-card strong,
.module-step-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.module-depth-panel span,
.module-mini-panel span,
.module-activity span,
.module-route span,
.module-decision-card span,
.module-source-card span,
.module-step-card span {
  display: block;
  margin-top: 7px;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

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

.module-kpi-strip div {
  min-height: 76px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(209, 220, 235, 0.82);
  border-top: 3px solid var(--case-accent, var(--blue-700));
  border-radius: 7px;
}

.module-kpi-strip strong {
  display: block;
  color: var(--case-accent, var(--blue-700));
  font-size: 24px;
  line-height: 1;
}

.module-kpi-strip span {
  display: block;
  margin-top: 10px;
  color: #667085;
  font-size: 12px;
}

.module-mini-table {
  overflow: hidden;
  border: 1px solid rgba(201, 215, 235, 0.92);
  border-radius: 7px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.module-mini-table div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(80px, 0.72fr) minmax(80px, 0.66fr);
  gap: 10px;
  min-height: 38px;
  padding: 9px 12px;
  color: #344054;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(201, 215, 235, 0.72);
}

.module-mini-table div:first-child {
  color: #667085;
  font-weight: 900;
  background: #eef4fb;
}

.module-mini-table div:last-child {
  border-bottom: 0;
}

.module-timeline {
  display: grid;
  gap: 10px;
}

.module-timeline div {
  position: relative;
  padding: 0 0 0 22px;
}

.module-timeline div::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--case-accent, var(--blue-700));
  border-radius: 50%;
}

.module-timeline div::after {
  position: absolute;
  left: 4px;
  top: 18px;
  bottom: -8px;
  width: 2px;
  content: "";
  background: rgba(152, 162, 179, 0.34);
}

.module-timeline div:last-child::after {
  display: none;
}

.module-timeline strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.module-timeline span {
  display: block;
  margin-top: 5px;
  color: #667085;
  font-size: 12px;
  line-height: 1.55;
}

.module-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-action-row button,
.module-action-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  color: #24415f;
  font-size: 12px;
  font-weight: 850;
  background: #ffffff;
  border: 1px solid rgba(216, 226, 239, 0.94);
  border-radius: 5px;
}

.module-action-row button:first-child,
.module-action-row span:first-child {
  color: #ffffff;
  background: var(--case-accent, var(--blue-700));
  border-color: var(--case-accent, var(--blue-700));
}

.module-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.module-map span {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 8px;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 215, 235, 0.82);
  border-bottom: 3px solid rgba(33, 103, 255, 0.22);
  border-radius: 6px;
}

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

.module-score-ring {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin: 0 auto 12px;
  color: var(--case-accent, var(--blue-700));
  font-size: 26px;
  font-weight: 900;
  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 60%),
    conic-gradient(var(--case-accent, var(--blue-700)) 0 var(--score, 74%), #dbe5f3 var(--score, 74%) 100%);
  border-radius: 50%;
}

.module-wireframe {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(216, 226, 239, 0.94);
  border-radius: 7px;
}

.module-wireframe span {
  display: block;
  height: 12px;
  background: #dfe7f2;
  border-radius: 999px;
}

.module-wireframe span:nth-child(2) {
  width: 72%;
}

.module-wireframe span:nth-child(3) {
  width: 86%;
}

.module-wireframe span:nth-child(4) {
  width: 58%;
}

.case-skin-ops .module-depth-panel,
.case-skin-ops .module-mini-panel,
.case-skin-ops .module-kpi-strip div,
.case-skin-pipeline .module-depth-panel,
.case-skin-pipeline .module-mini-panel,
.case-skin-pipeline .module-kpi-strip div,
.case-skin-radar .module-depth-panel,
.case-skin-radar .module-mini-panel,
.case-skin-radar .module-kpi-strip div,
.case-skin-cockpit .module-depth-panel,
.case-skin-cockpit .module-mini-panel,
.case-skin-cockpit .module-kpi-strip div {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: rgba(49, 214, 173, 0.78);
}

.case-skin-ops .module-depth,
.case-skin-pipeline .module-depth,
.case-skin-radar .module-depth,
.case-skin-cockpit .module-depth {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.case-skin-ops .module-kpi-strip div,
.case-skin-pipeline .module-kpi-strip div,
.case-skin-radar .module-kpi-strip div,
.case-skin-cockpit .module-kpi-strip div {
  border-top-color: rgba(49, 214, 173, 0.8);
}

.case-skin-ops .module-depth h5,
.case-skin-ops .module-depth-panel strong,
.case-skin-ops .module-mini-panel strong,
.case-skin-ops .module-kpi-strip strong,
.case-skin-pipeline .module-depth h5,
.case-skin-pipeline .module-depth-panel strong,
.case-skin-pipeline .module-mini-panel strong,
.case-skin-pipeline .module-kpi-strip strong,
.case-skin-radar .module-depth h5,
.case-skin-radar .module-depth-panel strong,
.case-skin-radar .module-mini-panel strong,
.case-skin-radar .module-kpi-strip strong,
.case-skin-cockpit .module-depth h5,
.case-skin-cockpit .module-depth-panel strong,
.case-skin-cockpit .module-mini-panel strong,
.case-skin-cockpit .module-kpi-strip strong {
  color: #ffffff;
}

.case-skin-ops .module-depth p,
.case-skin-ops .module-depth-panel span,
.case-skin-ops .module-mini-panel span,
.case-skin-ops .module-kpi-strip span,
.case-skin-pipeline .module-depth p,
.case-skin-pipeline .module-depth-panel span,
.case-skin-pipeline .module-mini-panel span,
.case-skin-pipeline .module-kpi-strip span,
.case-skin-radar .module-depth p,
.case-skin-radar .module-depth-panel span,
.case-skin-radar .module-mini-panel span,
.case-skin-radar .module-kpi-strip span,
.case-skin-cockpit .module-depth p,
.case-skin-cockpit .module-depth-panel span,
.case-skin-cockpit .module-mini-panel span,
.case-skin-cockpit .module-kpi-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.case-skin-radar .module-map span,
.case-skin-cockpit .module-map span,
.case-skin-pipeline .module-map span {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.case-skin-inbox .module-chat-window {
  min-height: 300px;
}

.case-skin-pipeline .module-pipeline {
  grid-template-columns: repeat(6, minmax(118px, 1fr));
  padding: 16px;
}

.case-skin-pipeline .pipeline-step {
  min-height: 150px;
}

.case-skin-resume .kanban-col {
  min-height: 260px;
}

.case-skin-contract .review-doc,
.case-skin-finance .review-doc {
  min-height: 0;
}

.case-skin-radar .radar-visual {
  height: 260px;
}

.case-skin-training .calendar-day,
.case-skin-campaign .calendar-day {
  min-height: 128px;
}

.case-skin-approval .module-flow-map {
  min-height: 0;
  padding: 20px;
  align-items: stretch;
}

.case-skin-approval .flow-node {
  min-height: 104px;
}

.case-skin-cockpit .cockpit-main {
  min-height: 240px;
}

.case-skin-ops .module-mini-table,
.case-skin-pipeline .module-mini-table,
.case-skin-radar .module-mini-table,
.case-skin-cockpit .module-mini-table {
  border-color: rgba(255, 255, 255, 0.18);
}

.case-skin-ops .module-mini-table div,
.case-skin-pipeline .module-mini-table div,
.case-skin-radar .module-mini-table div,
.case-skin-cockpit .module-mini-table div {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.case-skin-ops .module-mini-table div:first-child,
.case-skin-pipeline .module-mini-table div:first-child,
.case-skin-radar .module-mini-table div:first-child,
.case-skin-cockpit .module-mini-table div:first-child {
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.case-skin-ops .module-mini-table span,
.case-skin-pipeline .module-mini-table span,
.case-skin-radar .module-mini-table span,
.case-skin-cockpit .module-mini-table span {
  color: inherit;
}

.case-skin-ops .module-timeline strong,
.case-skin-pipeline .module-timeline strong,
.case-skin-radar .module-timeline strong,
.case-skin-cockpit .module-timeline strong {
  color: #ffffff;
}

.case-skin-ops .module-timeline span,
.case-skin-pipeline .module-timeline span,
.case-skin-radar .module-timeline span,
.case-skin-cockpit .module-timeline span {
  color: rgba(255, 255, 255, 0.72);
}

.module-list em,
.module-badge,
.task-status,
.real-table b {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 26px;
  padding: 0 10px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.module-tabs span,
.module-action-row span,
.module-action-row button,
.module-actions button,
.module-chip,
.module-field {
  line-height: 1;
  text-align: center;
}

.module-field {
  display: flex;
  align-items: center;
}

.case-skin-ops .module-list,
.case-skin-radar .module-list,
.case-skin-pipeline .module-list,
.case-skin-cockpit .module-list {
  border-color: rgba(255, 255, 255, 0.08);
}

.case-skin-ops .module-list div,
.case-skin-radar .module-list div,
.case-skin-pipeline .module-list div,
.case-skin-cockpit .module-list div {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.case-skin-ops .module-mini-table,
.case-skin-pipeline .module-mini-table,
.case-skin-radar .module-mini-table,
.case-skin-cockpit .module-mini-table {
  border-color: rgba(255, 255, 255, 0.1);
}

.case-skin-ops .module-mini-table div,
.case-skin-pipeline .module-mini-table div,
.case-skin-radar .module-mini-table div,
.case-skin-cockpit .module-mini-table div {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.case-skin-ops .module-map span,
.case-skin-pipeline .module-map span,
.case-skin-radar .module-map span,
.case-skin-cockpit .module-map span {
  border-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(49, 214, 173, 0.34);
}

.cases-board {
  padding-top: 34px;
}

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

.case-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 640px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(13, 59, 157, 0.08);
}

.case-visual {
  position: relative;
  min-height: 300px;
  padding: 24px;
  background:
    radial-gradient(circle at 38% 32%, rgba(49, 214, 173, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(7, 23, 63, 0.98), rgba(21, 86, 240, 0.92));
  overflow: hidden;
}

.case-visual::before {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 40px 40px;
  pointer-events: none;
}

.case-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5ebf5;
  font-size: 13px;
  font-weight: 900;
}

.screen-top em {
  color: var(--blue-600);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.screen-kpis,
.kanban-mini,
.channel-grid,
.alert-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.screen-kpis b,
.kanban-mini b,
.channel-grid b,
.alert-list b {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px;
  color: var(--blue-700);
  font-size: 12px;
  line-height: 1.35;
  background: #eef5ff;
  border: 1px solid #dbe8ff;
  border-radius: 6px;
}

.screen-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 86px;
  padding: 12px;
  background: #f7faff;
  border: 1px solid #e2eaf7;
  border-radius: 6px;
}

.screen-chart span {
  flex: 1;
  min-height: 24px;
  background: linear-gradient(180deg, var(--mint-400), var(--blue-600));
  border-radius: 4px 4px 0 0;
}

.line-chart {
  position: relative;
  min-height: 96px;
  background:
    linear-gradient(90deg, #e6edf8 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, #e6edf8 1px, transparent 1px) 0 0 / 42px 42px,
    #f8fbff;
  border: 1px solid #e2eaf7;
  border-radius: 6px;
  overflow: hidden;
}

.line-chart span {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 38px;
  height: 48px;
  border: solid var(--blue-600);
  border-width: 4px 0 0;
  border-radius: 50%;
  transform: skewX(-18deg);
}

.screen-list,
.check-list,
.diagnose,
.agenda {
  display: grid;
  gap: 8px;
}

.screen-list span,
.check-list span,
.diagnose span,
.agenda span,
.todo-line,
.doc-line,
.table-row,
.candidate,
.ticket-row,
.invoice-card,
.note-block,
.practice-card,
.reply-box,
.risk-panel,
.insight-card,
.recommend,
.citation,
.question-box {
  padding: 9px 10px;
  color: #344054;
  font-size: 12px;
  line-height: 1.45;
  background: #f8fbff;
  border: 1px solid #e3ebf7;
  border-radius: 6px;
}

.editor-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
}

.editor-layout div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 126px;
  padding: 10px;
  background: #f8fbff;
  border: 1px solid #e3ebf7;
  border-radius: 6px;
}

.editor-layout i {
  color: var(--blue-700);
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
}

.editor-layout span,
.editor-layout p {
  margin: 0;
  padding: 7px 8px;
  color: #344054;
  font-size: 12px;
  line-height: 1.45;
  background: var(--white);
  border-radius: 4px;
}

.ticket-row.high,
.doc-line.risk,
.table-row.best,
.candidate.selected,
.check-list .warn,
.timeline .risk,
.flow-line .risk {
  border-color: rgba(255, 181, 82, 0.58);
  background: #fff8ed;
}

.check-list .ok {
  border-color: rgba(49, 214, 173, 0.34);
  background: #effdf8;
}

.score-ring,
.quality-score {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto;
  color: var(--blue-700);
  font-size: 34px;
  font-weight: 900;
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 60%),
    conic-gradient(var(--mint-400) 0 78%, #dbe8ff 78% 100%);
  border-radius: 50%;
}

.quality-score span {
  margin-left: 2px;
  font-size: 13px;
}

.pipeline,
.timeline,
.learning-path,
.calendar-row,
.flow-line {
  display: grid;
  gap: 8px;
}

.pipeline {
  grid-template-columns: repeat(4, 1fr);
}

.pipeline span,
.timeline span {
  min-height: 12px;
  background: #dbe8ff;
  border-radius: 999px;
}

.pipeline span:nth-child(-n + 3),
.timeline .done {
  background: linear-gradient(90deg, var(--blue-600), var(--mint-400));
}

.timeline {
  grid-template-columns: repeat(4, 1fr);
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 8px;
}

.table-row.head {
  color: var(--muted);
  font-weight: 900;
  background: #eef5ff;
}

.risk-radar {
  position: relative;
  height: 132px;
  background:
    radial-gradient(circle, transparent 0 28%, #dbe8ff 29% 30%, transparent 31% 48%, #dbe8ff 49% 50%, transparent 51%),
    conic-gradient(from 20deg, rgba(33, 103, 255, 0.12), rgba(49, 214, 173, 0.18), rgba(255, 181, 82, 0.2), rgba(33, 103, 255, 0.12));
  border: 1px solid #e3ebf7;
  border-radius: 6px;
}

.risk-radar span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--amber-400);
  border-radius: 50%;
  box-shadow: 42px -20px 0 var(--blue-600), -38px 26px 0 var(--mint-400);
  transform: translate(-50%, -50%);
}

.learning-path,
.calendar-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calendar-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.learning-path span,
.calendar-row span,
.flow-line span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #344054;
  font-size: 12px;
  font-weight: 900;
  background: #f8fbff;
  border: 1px solid #e3ebf7;
  border-radius: 6px;
}

.learning-path .done,
.calendar-row .active {
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

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

.flow-line {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chat {
  max-width: 86%;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
  border-radius: 8px;
}

.chat.user {
  justify-self: end;
  color: var(--white);
  background: var(--blue-600);
}

.chat.bot {
  justify-self: start;
  color: #344054;
  background: #f1f6ff;
}

.case-body {
  padding: 28px;
}

.case-number {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  background: rgba(33, 103, 255, 0.08);
  border-radius: 4px;
}

.case-body h3 {
  margin: 18px 0 12px;
  font-size: 26px;
  line-height: 1.22;
}

.case-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.case-body dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.case-body dl div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
}

.case-body dt {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
}

.case-body dd {
  margin: 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.72;
}

.cases-contact {
  margin-top: 34px;
}

.subpage-hero {
  position: relative;
  min-height: 560px;
  padding-top: 78px;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(49, 214, 173, 0.28), transparent 25%),
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 58%, #3c8bff 100%);
  isolation: isolate;
}

.subpage-hero::before {
  position: absolute;
  inset: 78px 0 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 92px 92px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  opacity: 0.6;
}

.industry-hero::before,
.tools-hero::before {
  display: none;
}

.industry-hero {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 34, 0.42) 0%, rgba(4, 12, 34, 0.28) 44%, rgba(4, 20, 60, 0.08) 100%),
    url("assets/industry-banner.png");
  background-repeat: no-repeat;
  background-position:
    center,
    center;
  background-size:
    cover,
    cover;
}

.tools-hero {
  background-image:
    linear-gradient(90deg, rgba(4, 12, 34, 0.44) 0%, rgba(4, 12, 34, 0.3) 44%, rgba(4, 20, 60, 0.08) 100%),
    url("assets/tools-banner.png");
  background-repeat: no-repeat;
  background-position:
    center,
    center;
  background-size:
    cover,
    cover;
}

.tool-detail-hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(32, 215, 246, 0.28), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(255, 181, 82, 0.16), transparent 28%),
    linear-gradient(135deg, #071021 0%, #123c9c 58%, #2167ff 100%);
}

.subpage-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 88px;
}

.subpage-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.industry-hero .subpage-hero-copy h1,
.tools-hero .subpage-hero-copy h1 {
  width: 100%;
  font-size: clamp(42px, 5.6vw, 72px);
}

.industry-hero .subpage-hero-copy h1 {
  max-width: 660px;
}

.tools-hero .subpage-hero-copy h1 {
  max-width: 780px;
}

.industry-hero .subpage-hero-copy p:not(.eyebrow),
.tools-hero .subpage-hero-copy p:not(.eyebrow) {
  width: 100%;
  max-width: 680px;
}

.subpage-hero h1 {
  width: min(850px, 100%);
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 900;
}

.subpage-hero p:not(.eyebrow) {
  width: min(790px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

.subpage-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.subpage-stat-grid div {
  min-height: 116px;
  padding: 24px;
  background: rgba(3, 16, 58, 0.22);
  backdrop-filter: blur(10px);
}

.subpage-stat-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.subpage-stat-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.tabs-compact {
  position: relative;
  width: min(560px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom-color: transparent;
}

.tabs-compact::before {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -1px;
  width: 100vw;
  height: 1px;
  pointer-events: none;
  content: "";
  background: rgba(216, 226, 242, 0.55);
  transform: translateX(-50%);
}

.industry-panels {
  margin-top: 46px;
}

.industry-panel {
  display: block;
  padding-top: 0;
}

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

.news-card {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  min-height: 360px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(13, 59, 157, 0.07);
}

.news-card span,
.tool-card em,
.tool-back-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blue-700);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  background: rgba(33, 103, 255, 0.08);
  border: 1px solid rgba(33, 103, 255, 0.12);
  border-radius: 4px;
}

.news-card time {
  margin-top: 18px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 800;
}

.news-card h3 {
  margin: 14px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

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

.news-card a {
  align-self: end;
  width: max-content;
  margin-top: 22px;
  color: var(--blue-700);
  font-weight: 900;
}

.news-card.is-hidden-by-page {
  display: none;
}

.news-more-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  border: 1px solid rgba(33, 103, 255, 0.28);
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(33, 103, 255, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.more-link:hover,
.more-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(33, 103, 255, 0.25);
  outline: none;
}

.more-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tabs-news {
  width: min(880px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.news-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(900px, 100%);
  margin: 0 auto 34px;
  padding: 10px;
  background: #f6f9ff;
  border: 1px solid #dbe5f3;
  border-radius: 8px;
}

.news-filter-tabs button {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 18px;
  color: #344054;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  background: var(--white);
  border: 1px solid #dbe5f3;
  border-radius: 999px;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.news-filter-tabs button:hover,
.news-filter-tabs button:focus-visible {
  color: var(--blue-700);
  border-color: rgba(33, 103, 255, 0.38);
  outline: none;
}

.news-filter-tabs button.is-active {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 10px 24px rgba(33, 103, 255, 0.18);
}

.news-list-panels {
  margin-top: 46px;
}

.news-list-panel {
  display: block;
  padding-top: 0;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.news-pagination button {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  color: #344054;
  font-weight: 850;
  cursor: pointer;
  background: #f8fbff;
  border: 1px solid #dbe5f3;
  border-radius: 5px;
}

.news-pagination button:hover,
.news-pagination button:focus-visible {
  color: var(--blue-700);
  border-color: rgba(33, 103, 255, 0.38);
  outline: none;
}

.news-pagination button.is-active {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.news-pagination button:disabled {
  color: #98a2b3;
  cursor: not-allowed;
  background: #f3f6fb;
  border-color: #e1e8f2;
}

.region-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.region-block {
  min-width: 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(33, 103, 255, 0.05), rgba(49, 214, 173, 0.03)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.region-head {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.region-head > span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-700), var(--mint-400));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(33, 103, 255, 0.2);
}

.region-head h3 {
  margin: 0;
  font-size: 30px;
}

.region-head p {
  width: min(820px, 100%);
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.platform-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0 54px;
}

.platform-carousel .platform-grid {
  display: flex;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 0 0 8px;
}

.platform-carousel .platform-grid::-webkit-scrollbar {
  display: none;
}

.platform-carousel .platform-card {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.platform-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 92px;
  color: var(--blue-700);
  cursor: pointer;
  background: var(--white);
  border: 1px solid #dbe5f3;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(13, 59, 157, 0.12);
  transform: translateY(-50%);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.platform-arrow:hover,
.platform-arrow:focus-visible {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 20px 44px rgba(33, 103, 255, 0.22);
  outline: none;
}

.platform-arrow:disabled {
  color: #98a2b3;
  cursor: not-allowed;
  background: #f6f9ff;
  border-color: #e1e8f2;
  box-shadow: none;
}

.platform-arrow:disabled:hover {
  color: #98a2b3;
  background: #f6f9ff;
  border-color: #e1e8f2;
}

.platform-arrow-left {
  left: 0;
}

.platform-arrow-right {
  right: 0;
}

.platform-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .platform-carousel {
    padding: 0 42px;
  }

  .platform-carousel .platform-card {
    flex-basis: 100%;
  }

  .platform-arrow {
    width: 34px;
    height: 76px;
  }

  .platform-arrow svg {
    width: 19px;
    height: 19px;
  }
}

.platform-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 20px;
  background: #f8fbff;
  border: 1px solid #dfe8f4;
  border-radius: 7px;
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 54px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid #dbe5f3;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(13, 59, 157, 0.06);
}

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

.platform-logo img[src$=".png"] {
  max-width: 44px;
  max-height: 44px;
}

.platform-logo.amazon {
  color: #101828;
  background: linear-gradient(135deg, #ffffff, #ffcf5a);
}

.platform-logo.ebay {
  background: linear-gradient(135deg, #e53238, #f5af02 45%, #86b817 72%, #0064d2);
}

.platform-logo.zalando {
  background: linear-gradient(135deg, #ff6900, #ff9b2f);
}

.platform-logo.allegro {
  background: linear-gradient(135deg, #ff5a00, #f7b733);
}

.platform-logo.walmart {
  background: linear-gradient(135deg, #0071ce, #ffc220);
}

.platform-logo.tiktok {
  background: linear-gradient(135deg, #071021, #25f4ee 52%, #fe2c55);
}

.platform-logo.etsy {
  background: linear-gradient(135deg, #f1641e, #ffb552);
}

.platform-logo.shopee {
  background: linear-gradient(135deg, #ee4d2d, #ff8a3d);
}

.platform-logo.lazada {
  background: linear-gradient(135deg, #1a2f8f, #ff6a00);
}

.platform-logo.rakuten {
  background: linear-gradient(135deg, #bf0000, #e94b4b);
}

.platform-logo.coupang {
  background: linear-gradient(135deg, #4b70f5, #e94659 58%, #f6c33d);
}

.platform-logo.cdiscount {
  background: linear-gradient(135deg, #263f91, #49b4ff);
}

.platform-logo.kaufland {
  background: linear-gradient(135deg, #e30613, #ff8a00);
}

.platform-logo.otto {
  background: linear-gradient(135deg, #e2001a, #ff6a88);
}

.platform-logo.manomano {
  background: linear-gradient(135deg, #00a887, #20d7f6);
}

.platform-logo.newegg {
  background: linear-gradient(135deg, #f28c28, #246bfe);
}

.platform-logo.target {
  background: linear-gradient(135deg, #cc0000, #ff6961);
}

.platform-logo.shopify {
  background: linear-gradient(135deg, #95bf47, #0f5132);
}

.platform-logo.temu {
  background: linear-gradient(135deg, #ff6900, #ffb000);
}

.platform-logo.qoo10 {
  background: linear-gradient(135deg, #4d5cff, #31d6ad);
}

.platform-logo.tokopedia {
  background: linear-gradient(135deg, #03ac0e, #73d13d);
}

.platform-logo.tmall {
  background: linear-gradient(135deg, #dd2727, #ff6b6b);
}

.platform-logo.pchome {
  background: linear-gradient(135deg, #0066cc, #00a2ff);
}

.platform-card h4 {
  margin: 18px 0 10px;
  font-size: 19px;
}

.platform-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.platform-official-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  margin: 18px auto 0;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #dbe5f3;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(13, 59, 157, 0.08);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.platform-official-link:hover,
.platform-official-link:focus-visible {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 14px 28px rgba(33, 103, 255, 0.22);
  transform: translateY(-2px);
  outline: none;
}

.platform-official-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.tool-library {
  padding-top: 70px;
}

.tool-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  height: 330px;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, var(--tool-glow, rgba(32, 215, 246, 0.16)), transparent 30%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(13, 59, 157, 0.07);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tool-card:hover,
.tool-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(33, 103, 255, 0.34);
  box-shadow: var(--shadow);
  outline: none;
}

.tool-card-featured {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(49, 214, 173, 0.36), transparent 28%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.tool-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  background: var(--tool-icon-bg, linear-gradient(135deg, var(--blue-700), var(--mint-400)));
  border-radius: 8px;
  box-shadow: 0 16px 34px var(--tool-icon-shadow, rgba(33, 103, 255, 0.18));
}

.tool-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 243, 0.95);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(13, 59, 157, 0.08);
}

.tool-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tool-logo-custom {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tool-logo-custom img {
  width: 58px;
  height: 58px;
}

.tool-logo-wide {
  width: 58px;
}

.tool-logo-wide img {
  object-fit: contain;
}

.tool-logo-dark {
  background: #071021;
}

.tool-card-external {
  background:
    radial-gradient(circle at 84% 16%, rgba(49, 214, 173, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.tool-card-featured .tool-icon {
  color: var(--blue-900);
  background: var(--white);
}

.tool-card:nth-of-type(2) {
  --tool-icon-bg: linear-gradient(135deg, #2266ff, #20c8d7);
  --tool-glow: rgba(32, 200, 215, 0.14);
}

.tool-card:nth-of-type(3) {
  --tool-icon-bg: linear-gradient(135deg, #7c3aed, #2e7dff);
  --tool-glow: rgba(124, 58, 237, 0.11);
  --tool-icon-shadow: rgba(124, 58, 237, 0.18);
}

.tool-card:nth-of-type(4) {
  --tool-icon-bg: linear-gradient(135deg, #0f766e, #31d6ad);
  --tool-glow: rgba(49, 214, 173, 0.14);
  --tool-icon-shadow: rgba(15, 118, 110, 0.18);
}

.tool-card:nth-of-type(5) {
  --tool-icon-bg: linear-gradient(135deg, #f59e0b, #ef4444);
  --tool-glow: rgba(245, 158, 11, 0.13);
  --tool-icon-shadow: rgba(239, 68, 68, 0.16);
}

.tool-card:nth-of-type(6) {
  --tool-icon-bg: linear-gradient(135deg, #0ea5e9, #2563eb);
  --tool-glow: rgba(14, 165, 233, 0.13);
}

.tool-card:nth-of-type(7) {
  --tool-icon-bg: linear-gradient(135deg, #16a34a, #22c55e);
  --tool-glow: rgba(34, 197, 94, 0.12);
  --tool-icon-shadow: rgba(22, 163, 74, 0.16);
}

.tool-card:nth-of-type(8) {
  --tool-icon-bg: linear-gradient(135deg, #111827, #64748b);
  --tool-glow: rgba(100, 116, 139, 0.11);
  --tool-icon-shadow: rgba(17, 24, 39, 0.16);
}

.tool-card em,
.tool-back-row span {
  justify-self: start;
  margin-top: 12px;
}

.tool-card h3 {
  margin: 24px 0 12px;
  font-size: 23px;
  line-height: 1.32;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tool-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  height: 3.5em;
  max-height: 3.5em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tool-card-featured p {
  color: rgba(255, 255, 255, 0.76);
}

.tool-card strong {
  align-self: end;
  margin-top: 26px;
  color: var(--blue-700);
  font-size: 14px;
}

.tool-card-featured strong {
  color: var(--white);
}

.tool-detail-section {
  padding-top: 70px;
}

.article-detail {
  width: min(860px, calc(100% - 48px));
}

.article-body-title {
  max-width: 820px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.16;
  letter-spacing: 0;
}

.article-meta {
  margin-bottom: 24px;
  color: #667085;
  font-size: 14px;
  font-weight: 800;
}

.article-cover {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eaf2ff;
  box-shadow: 0 20px 58px rgba(13, 59, 157, 0.14);
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.article-content {
  color: #26344d;
  font-size: 18px;
  line-height: 1.9;
}

.article-content h2,
.article-content h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  line-height: 1.35;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content strong {
  color: var(--ink);
  font-weight: 900;
}

.article-bullet {
  padding-left: 16px;
  border-left: 3px solid var(--blue-700);
}

.article-sources {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.article-sources a {
  display: block;
  margin-top: 10px;
  color: var(--blue-700);
  font-weight: 800;
  line-height: 1.55;
}

.tool-back-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.tool-back-row a {
  color: var(--blue-700);
  font-weight: 900;
}

.tool-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.tool-panel {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(13, 59, 157, 0.07);
}

.dynamic-tool-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.tool-field {
  display: grid;
  gap: 7px;
}

.tool-field label {
  color: #344054;
  font-size: 13px;
  font-weight: 850;
}

.tool-field input,
.tool-field textarea,
.tool-field select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid #dfe8f4;
  border-radius: 6px;
  outline: none;
}

.tool-field textarea {
  min-height: 112px;
  resize: vertical;
}

.tool-field input:focus,
.tool-field textarea:focus,
.tool-field select:focus {
  border-color: rgba(33, 103, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(33, 103, 255, 0.1);
}

.tool-result {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  color: #344054;
  line-height: 1.75;
}

.tool-result strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.tool-result p {
  margin: 0;
}

.tool-result ul,
.tool-result ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.result-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.result-kpis div {
  padding: 14px;
  background: #f8fbff;
  border: 1px solid #dfe8f4;
  border-radius: 7px;
}

.result-kpis b {
  display: block;
  color: var(--blue-700);
  font-size: 26px;
  line-height: 1;
}

.result-kpis span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.related-tools {
  padding-top: 0;
}

.related-tool-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.related-tool-grid a {
  display: grid;
  place-items: center;
  min-height: 54px;
  color: var(--blue-700);
  font-weight: 900;
  text-align: center;
  background: rgba(33, 103, 255, 0.08);
  border: 1px solid rgba(33, 103, 255, 0.14);
  border-radius: 6px;
}

.dialog-open body {
  overflow: hidden;
}

.phone-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.phone-dialog[hidden] {
  display: none;
}

.phone-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 25, 0.56);
  backdrop-filter: blur(8px);
}

.phone-dialog-card {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 40px));
  padding: 46px 48px 34px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(69, 219, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #14b9ff 0%, #2372ff 48%, #0962f2 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(3, 8, 25, 0.36);
}

.phone-dialog-card::before,
.phone-dialog-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border: 16px solid rgba(181, 240, 255, 0.72);
  border-radius: 999px;
}

.phone-dialog-card::before {
  right: -150px;
  top: -150px;
  width: 360px;
  height: 360px;
  opacity: 0.28;
}

.phone-dialog-card::after {
  right: -100px;
  bottom: -150px;
  width: 520px;
  height: 220px;
  border-width: 14px;
  opacity: 0.75;
}

.phone-dialog-shell {
  position: relative;
  z-index: 1;
}

.phone-dialog-kicker {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.phone-dialog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 294px;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(180deg, #eef6ff 0%, #e7f2ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(2, 45, 139, 0.22);
}

.phone-dialog-benefits {
  min-width: 0;
  padding: 30px 38px;
}

.phone-dialog-benefit {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  padding: 0 0 22px;
  color: var(--ink);
}

.phone-dialog-benefit + .phone-dialog-benefit {
  padding-top: 22px;
  border-top: 1px solid rgba(33, 103, 255, 0.14);
}

.phone-dialog-benefit:last-child {
  padding-bottom: 0;
}

.phone-dialog-benefit > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: linear-gradient(135deg, #2e8cff, #0957dc);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(33, 103, 255, 0.28);
}

.phone-dialog-benefit strong {
  display: block;
  color: #10428f;
  font-size: 20px;
  line-height: 1.35;
}

.phone-dialog-benefit p {
  margin: 8px 0 0;
  color: #687890;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.phone-dialog-advisor {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border-left: 1px solid rgba(33, 103, 255, 0.12);
}

.phone-dialog-person {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
  text-align: left;
}

.phone-dialog-person img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(7, 23, 63, 0.16);
}

.phone-dialog-person h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.phone-dialog-person p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.phone-dialog-wecom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: 100%;
  margin-bottom: 18px;
  color: #0b4cc8;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(90deg, #a7cbff, #7daeff);
  border: 1px solid rgba(33, 103, 255, 0.18);
  border-radius: 999px;
}

.phone-dialog-qr {
  width: 214px;
  height: 214px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(33, 103, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(13, 59, 157, 0.12);
}

.phone-dialog-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-dialog-phone {
  display: block;
  margin-top: 12px;
  color: #6c7890;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.phone-dialog-bottom {
  margin: 30px 0 0;
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.phone-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.phone-dialog-close::before,
.phone-dialog-close::after {
  grid-area: 1 / 1;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--white);
}

.phone-dialog-close::before {
  transform: rotate(45deg);
}

.phone-dialog-close::after {
  transform: rotate(-45deg);
}

.ghost-btn.dark {
  color: var(--blue-900);
  background: #f7fbff;
  border-color: #dce7f8;
  cursor: pointer;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 0.6fr));
  gap: 44px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 48px;
}

.footer-brand p {
  width: min(320px, 100%);
  margin: 22px 0 0;
  line-height: 1.75;
}

.footer-logo {
  gap: 0;
}

.footer-logo .brand-mark {
  width: 210px;
  height: auto;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0 30px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

@keyframes floatCube {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes currentFlow {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes currentNode {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.82);
  }
  46%,
  62% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

  .motion-ready [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-visual,
  .hero-current,
  .hero-cubes {
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .site-header {
    gap: 18px;
    padding-inline: 24px;
  }

  .site-nav {
    gap: 26px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-visual {
    width: 94vw;
    opacity: 0.72;
  }

  .hero-current {
    right: -12vw;
    width: 108vw;
    opacity: 0.64;
  }

  .tab-panel,
  .advantage-layout {
    grid-template-columns: 1fr;
  }

  .panel-copy {
    position: relative;
    top: auto;
    min-height: 220px;
  }

  .feature-grid,
  .value-strip,
  .process-list,
  .case-grid,
  .news-grid,
  .platform-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card-featured {
    grid-column: span 2;
  }

  .tool-workbench {
    grid-template-columns: 1fr;
  }

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

  .case-workspace {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-browser {
    grid-template-rows: auto auto auto;
  }

  .case-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 360px;
  }

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

  .table-panel {
    grid-column: auto;
  }

  .module-editor,
  .module-chat-layout {
    grid-template-columns: 1fr;
  }

  .module-review,
  .module-radar,
  .module-grid-2 {
    grid-template-columns: 1fr;
  }

  .module-flow-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-visual {
    min-height: 220px;
  }

  .advantage-card,
  .advantage-card-featured {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .industry-hero,
  .tools-hero {
    background-position:
      center,
      center;
    background-size:
      cover,
      cover;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }

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

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

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(4, 14, 45, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .site-nav.is-open {
    display: flex;
    animation: navDrop 180ms ease both;
  }

  .site-nav a {
    padding: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-action {
    display: none;
  }

  .hero-inner {
    padding-top: 150px;
  }

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

  .contact-band,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .contact-band {
    display: grid;
    padding: 32px 24px;
  }

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

  .cases-hero-grid {
    opacity: 0.22;
  }

  .agent-console {
    grid-template-columns: 1fr;
  }

  .console-sidebar {
    display: none;
  }

  .console-topbar {
    display: grid;
  }

  .console-actions {
    justify-content: start;
  }

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

  .module-head,
  .module-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .module-grid-3,
  .module-kanban,
  .module-cockpit {
    grid-template-columns: 1fr;
  }

  .cockpit-main {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0;
  }

  .brand-mark {
    width: 150px;
    height: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero-current {
    top: 116px;
    right: -46vw;
    width: 142vw;
    height: 560px;
    opacity: 0.36;
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .section {
    width: min(calc(100% - 32px), var(--max));
    padding: 78px 0;
  }

  .capabilities {
    padding-top: 70px;
  }

  .tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
  }

  .tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0 2px;
  }

  .feature-grid,
  .value-strip,
  .process-list,
  .case-grid,
  .news-grid,
  .platform-grid,
  .tool-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 66px;
  }

  .subpage-hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 72px 0 56px;
  }

  .subpage-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .subpage-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .section-head {
    width: 100%;
    max-width: 100%;
  }

  .subpage-stat-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .tabs-compact {
    width: 100%;
  }

  .region-block,
  .tool-panel {
    padding: 18px;
  }

  .region-head {
    grid-template-columns: 1fr;
  }

  .region-head > span {
    width: 54px;
    height: 54px;
  }

  .region-head h3 {
    font-size: 26px;
  }

  .news-card,
  .tool-card {
    min-height: auto;
  }

  .tool-card-featured {
    grid-column: auto;
  }

  .result-kpis,
  .related-tool-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-grid h2 {
    flex: 0 0 100%;
    margin: 0;
  }

  .footer-grid a:not(.brand) {
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    white-space: nowrap;
  }

  .case-experience {
    padding-top: 24px;
  }

  .case-workspace {
    width: 100%;
    border-radius: 8px;
  }

  .case-browser,
  .console-main {
    padding: 16px;
  }

  .case-menu,
  .console-metrics,
  .agent-flow {
    grid-template-columns: 1fr;
  }

  .case-menu {
    max-height: 420px;
  }

  .console-topbar {
    padding: 18px;
  }

  .console-topbar h3 {
    font-size: 22px;
  }

  .console-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .console-actions button {
    width: 100%;
  }

  .console-panel {
    padding: 16px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .real-chart {
    height: 190px;
    gap: 8px;
    padding-inline: 12px;
  }

  .agent-flow span:not(:last-child)::after {
    display: none;
  }

  .module-shell {
    padding: 14px;
  }

  .module-calendar,
  .module-flow-map {
    grid-template-columns: 1fr;
  }

  .module-radar {
    gap: 12px;
  }

  .radar-visual {
    height: 220px;
  }

  .module-bar {
    grid-template-columns: 74px minmax(0, 1fr) 38px;
  }

  .gantt-row {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .cases-hero {
    min-height: auto;
  }

  .cases-hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 90px 0 70px;
  }

  .cases-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .cases-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .cases-summary {
    grid-template-columns: 1fr;
  }

  .cases-hero-grid {
    display: none;
  }

  .case-card {
    min-height: auto;
  }

  .case-body {
    padding: 24px;
  }

  .feature-card {
    min-height: 235px;
  }

  .advantages {
    padding: 82px 16px 88px;
  }

  .contact-band {
    width: calc(100% - 32px);
    margin-bottom: 78px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .module-depth-grid,
  .module-kpi-strip,
  .module-source-grid,
  .module-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-depth-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .case-experience .module-shell {
    min-height: auto;
  }

  .module-depth {
    padding: 0 14px 16px;
  }

  .module-depth-grid,
  .module-kpi-strip,
  .module-source-grid,
  .module-score-grid,
  .module-map {
    grid-template-columns: 1fr;
  }

  .module-mini-table {
    overflow-x: auto;
  }

  .module-mini-table div {
    min-width: 430px;
  }

  .module-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .module-action-row span,
  .module-action-row button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .site-nav {
    top: 72px;
    left: 12px;
    right: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 128px 0 72px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn,
  .contact-band .primary-btn {
    width: 100%;
  }

  .section-head h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.18;
  }

  .section-head p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .cases-hero {
    padding-top: 66px;
  }

  .cases-hero-inner {
    width: min(calc(100% - 32px), var(--max));
    padding: 72px 0 56px;
  }

  .cases-hero h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.14;
  }

  .cases-hero p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .cases-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
  }

  .cases-summary div {
    min-height: 84px;
    padding: 16px 10px;
  }

  .cases-summary strong {
    font-size: 28px;
  }

  .cases-summary span {
    font-size: 12px;
    line-height: 1.35;
  }

  .case-index {
    padding-top: 54px;
    padding-bottom: 24px;
  }

  .case-tags {
    gap: 8px;
  }

  .case-tags span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
    text-align: center;
  }

  .case-workspace {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(7, 23, 63, 0.1);
  }

  .case-browser {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 10px;
    padding: 14px;
  }

  .case-browser-head strong {
    min-width: 32px;
    height: 26px;
  }

  .case-search {
    min-height: 38px;
  }

  .case-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .case-select {
    min-height: 0;
    padding: 0;
  }

  .case-select strong,
  .case-select em {
    white-space: normal;
  }

  .case-select-index {
    width: 28px;
    height: 28px;
  }

  .agent-console {
    display: block;
  }

  .console-main {
    padding: 12px;
  }

  .case-experience .module-shell {
    padding: 12px;
    border-radius: 8px;
  }

  .case-experience .module-head {
    gap: 12px;
  }

  .case-experience .module-head h4 {
    font-size: 20px;
    line-height: 1.25;
  }

  .case-experience .module-head p {
    font-size: 12px;
    line-height: 1.6;
  }

  .module-tabs,
  .module-actions,
  .module-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .module-tabs span,
  .module-actions button,
  .module-filters span,
  .module-chip {
    flex: 0 0 auto;
    min-height: 30px;
  }

  .module-grid-2,
  .module-grid-3,
  .module-editor,
  .module-chat-layout,
  .module-review,
  .module-radar,
  .module-kanban,
  .editor-layout,
  .review-meta {
    grid-template-columns: 1fr;
  }

  .module-card-lite,
  .module-pane,
  .module-doc,
  .module-board,
  .module-chat-window,
  .module-side-panel,
  .module-list {
    border-radius: 6px;
  }

  .module-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .module-list em,
  .module-badge,
  .task-status,
  .real-table b {
    justify-self: start;
  }

  .module-input {
    grid-template-columns: 1fr;
  }

  .module-input button {
    width: 100%;
  }

  .module-pipeline {
    grid-template-columns: repeat(6, 132px);
  }

  .review-doc,
  .kanban-col,
  .module-chat-window {
    min-height: auto;
  }

  .phone-dialog {
    place-items: center;
    padding: 12px;
  }

  .phone-dialog-card {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    padding: 18px 14px 16px;
    overflow-y: auto;
  }

  .phone-dialog-kicker {
    margin-bottom: 12px;
    padding-right: 44px;
    font-size: clamp(22px, 6.2vw, 28px);
  }

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

  .phone-dialog-benefits {
    padding: 16px 14px;
  }

  .phone-dialog-benefit {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
  }

  .phone-dialog-benefit + .phone-dialog-benefit {
    padding-top: 14px;
  }

  .phone-dialog-benefit strong {
    font-size: 16px;
  }

  .phone-dialog-benefit p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.55;
  }

  .phone-dialog-advisor {
    padding: 16px 14px 18px;
    border-top: 1px solid rgba(33, 103, 255, 0.12);
    border-left: 0;
  }

  .phone-dialog-person {
    max-width: 230px;
    margin-bottom: 10px;
  }

  .phone-dialog-person img {
    width: 40px;
    height: 40px;
  }

  .phone-dialog-person h2 {
    font-size: 16px;
  }

  .phone-dialog-person p {
    font-size: 12px;
  }

  .phone-dialog-wecom {
    min-height: 30px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .phone-dialog-qr {
    width: 150px;
    height: 150px;
  }

  .phone-dialog-phone {
    margin-top: 8px;
    font-size: 11px;
  }

  .phone-dialog-bottom {
    margin-top: 14px;
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 132px;
    height: auto;
  }

  .hero h1,
  .cases-hero h1 {
    font-size: clamp(32px, 10.6vw, 40px);
  }

  .hero-stats,
  .cases-summary {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .cases-summary div {
    min-height: 76px;
    padding: 16px;
  }

  .case-select {
    flex-basis: 198px;
  }

  .case-tags span {
    flex-basis: 100%;
  }

  .contact-band {
    padding: 28px 18px;
  }

  .contact-band h2 {
    font-size: 28px;
  }
}

.case-experience .agent-console {
  display: none;
}

@media (min-width: 821px) {
  .case-experience .agent-console {
    display: grid;
  }
}
