:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-tint: #eef4ff;
  --paper: #ffffff;
  --ink: #0b1020;
  --ink-soft: #1f2937;
  --muted: #5f6b7a;
  --subtle: #8a96a8;
  --line: #dfe6f0;
  --line-strong: #c7d2e2;
  --blue: #1157f5;
  --blue-deep: #0b3eb8;
  --cyan: #1aa6d9;
  --shadow: 0 24px 80px rgba(22, 39, 76, 0.12);
  --shadow-soft: 0 14px 42px rgba(22, 39, 76, 0.08);
  --shadow-lift: 0 28px 76px rgba(22, 39, 76, 0.16);
  --shadow-blue: 0 20px 58px rgba(17, 87, 245, 0.16);
  --panel-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 22px 64px rgba(24, 42, 80, 0.09);
  --field-grid: rgba(17, 87, 245, 0.032);
  --field-grid-soft: rgba(17, 87, 245, 0.018);
  --field-blue: rgba(17, 87, 245, 0.09);
  --field-cyan: rgba(26, 166, 217, 0.08);
  --field-violet: rgba(124, 92, 255, 0.055);
  --field-wash: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --max: 1180px;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-display: var(--font-cn);
  font-family: var(--font-cn);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(17, 87, 245, 0.035), transparent 28%),
    #fbfcff;
  color: var(--ink);
  letter-spacing: 0;
}

body,
button,
input {
  font: 16px/1.65 var(--font-cn);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #edf3fb;
  color: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(223, 230, 240, 0.86);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header[data-scrolled] {
  border-color: rgba(199, 210, 226, 0.94);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 46px rgba(18, 35, 73, 0.1);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  letter-spacing: 0;
}

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

.brand-mark-header {
  width: 34px;
  border-radius: 8px;
}

.brand-word {
  font-family: var(--font-cn);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.text-link,
.site-footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.text-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.brand:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(17, 87, 245, 0.2);
  outline-offset: 4px;
  border-radius: 6px;
}

.main-nav a.is-active {
  text-shadow: 0 8px 24px rgba(17, 87, 245, 0.18);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform 200ms var(--ease-out), box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
  will-change: transform;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 72%);
  content: "";
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 200ms ease, transform 520ms var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.button:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.button:focus-visible,
.audience-switch button:focus-visible,
.faq-item button:focus-visible,
.edition-option:focus-visible,
.download-variant:focus-visible,
.contact-close:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(17, 87, 245, 0.24);
  outline-offset: 3px;
}

.button-primary {
  background: var(--blue);
  color: white;
}

.button-secondary {
  border-color: #b7c8e5;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue);
}

.button-quiet {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
}

.hero {
  position: relative;
  scroll-margin-top: 72px;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 44%, rgba(17, 87, 245, 0.11), transparent 29%),
    radial-gradient(circle at 73% 68%, rgba(26, 166, 217, 0.08), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(124, 92, 255, 0.055), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translateY(var(--hero-parallax, 0px));
  will-change: transform;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-bg::before {
  background:
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.68) 100%);
  transform: translate3d(0, calc(var(--hero-parallax, 0px) * -0.32), 0);
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.58) 52%, rgba(255, 255, 255, 0.14) 100%),
    radial-gradient(ellipse at 68% 46%, rgba(17, 87, 245, 0.1), transparent 42%),
    radial-gradient(ellipse at 58% 78%, rgba(26, 166, 217, 0.07), transparent 36%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.76fr);
  gap: 54px;
  align-items: center;
  width: min(var(--max), calc(100vw - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(670px, 100%);
  animation: heroCopyIn 760ms var(--ease-out) both;
}

.hero-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 11px;
  border: 1px solid rgba(17, 87, 245, 0.16);
  border-radius: 999px;
  background: rgba(17, 87, 245, 0.07);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-copy p {
  max-width: 630px;
  margin-top: 28px;
  color: #2d3747;
  font-size: 19px;
  line-height: 1.9;
}

.hero-copy .hero-positioning {
  margin-top: 22px;
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.hero-copy .hero-description {
  max-width: 610px;
  margin-top: 10px;
  color: #3f4b5f;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(17, 87, 245, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 22px rgba(22, 39, 76, 0.05);
  backdrop-filter: blur(12px);
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  min-height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: heroMotionIn 920ms var(--ease-out) 220ms both;
  transition: transform 260ms var(--ease-out);
}

.hero-motion::before,
.hero-motion::after {
  display: none;
}

.hero-motion::before {
  inset: 28px -42px 22px 8px;
  border: 1px solid rgba(17, 87, 245, 0.08);
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(17, 87, 245, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 87, 245, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.28;
  transform: perspective(680px) rotateY(-8deg) rotateX(3deg);
  animation: heroGridDrift 8s ease-in-out infinite;
}

.hero-motion::after {
  top: 74px;
  right: 6px;
  width: 46%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 87, 245, 0.18), rgba(26, 166, 217, 0.08) 36%, transparent 68%);
  filter: blur(2px);
  opacity: 0.55;
  animation: motionHalo 6s ease-in-out infinite;
}

.hero-knowledge-flow {
  position: absolute;
  inset: 50% 0 auto;
  overflow: hidden;
  width: min(590px, 100%);
  min-height: 430px;
  border: 1px solid rgba(17, 87, 245, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 52% 46%, rgba(17, 87, 245, 0.18), transparent 30%),
    radial-gradient(circle at 28% 72%, rgba(26, 166, 217, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(233, 243, 255, 0.25));
  box-shadow: 0 34px 96px rgba(17, 87, 245, 0.16);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  animation: workbenchFloat 7s ease-in-out infinite;
}

.hero-knowledge-flow::before,
.hero-knowledge-flow::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-knowledge-flow::before {
  inset: 18px;
  border: 1px solid rgba(17, 87, 245, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(100deg, rgba(17, 87, 245, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(26, 166, 217, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
}

.hero-knowledge-flow::after {
  inset: 0;
  background: linear-gradient(116deg, transparent 0%, rgba(255, 255, 255, 0.12) 26%, rgba(17, 87, 245, 0.13) 48%, transparent 76%);
  opacity: 0;
  transform: translateX(-34%);
  animation: workbenchScan 5.4s ease-in-out infinite;
}

.flow-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.flow-trail {
  position: absolute;
  left: -16%;
  width: 132%;
  height: 76px;
  border-top: 1px solid rgba(17, 87, 245, 0.14);
  border-bottom: 1px solid rgba(26, 166, 217, 0.08);
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 5%, rgba(17, 87, 245, 0.11), rgba(26, 166, 217, 0.16), transparent 92%);
  filter: blur(0.2px);
  opacity: 0.7;
  transform-origin: center;
  animation: trailPulse 6.8s ease-in-out infinite;
}

.trail-one {
  top: 100px;
  transform: rotate(-12deg);
}

.trail-two {
  top: 176px;
  height: 92px;
  transform: rotate(-5deg);
  animation-delay: 680ms;
}

.trail-three {
  top: 244px;
  transform: rotate(8deg);
  animation-delay: 1360ms;
}

.flow-node {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(17, 87, 245, 0.12), 0 0 28px rgba(17, 87, 245, 0.64);
  animation: nodeGlide 5.8s ease-in-out infinite;
}

.node-one {
  top: 126px;
  left: 12%;
}

.node-two {
  top: 220px;
  left: 58%;
  animation-delay: 920ms;
}

.node-three {
  top: 304px;
  left: 36%;
  animation-delay: 1840ms;
}

.flow-sheet {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 86px;
  min-height: 108px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(237, 246, 255, 0.22));
  box-shadow: 0 18px 44px rgba(17, 87, 245, 0.11);
  opacity: 0.64;
  transform: rotate(var(--sheet-rotate, -8deg));
  animation: sheetDrift 8.2s ease-in-out infinite;
}

.flow-sheet i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(17, 87, 245, 0.16);
}

.flow-sheet i:nth-child(2) {
  width: 72%;
}

.flow-sheet i:nth-child(3) {
  width: 54%;
}

.sheet-one {
  top: 34px;
  left: 206px;
  --sheet-rotate: -9deg;
}

.sheet-two {
  top: 68px;
  right: 36px;
  --sheet-rotate: 12deg;
  animation-delay: 1.1s;
}

.sheet-three {
  right: 118px;
  bottom: 42px;
  --sheet-rotate: -5deg;
  animation-delay: 2.2s;
}

.flow-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 214px;
  min-height: 214px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px;
  border: 1px solid rgba(17, 87, 245, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96) 0%, rgba(210, 235, 255, 0.88) 100%);
  box-shadow: 0 28px 76px rgba(17, 87, 245, 0.18), 0 0 0 16px rgba(17, 87, 245, 0.055);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: coreBreath 4.6s ease-in-out infinite;
}

.flow-core small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.flow-core b {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.24;
}

.flow-core span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.flow-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  border: 1px solid rgba(17, 87, 245, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: knowledgeRing 5.6s ease-in-out infinite;
}

.flow-rings span:nth-child(1) {
  width: 280px;
  height: 280px;
}

.flow-rings span:nth-child(2) {
  width: 360px;
  height: 360px;
  animation-delay: 420ms;
}

.flow-rings span:nth-child(3) {
  width: 450px;
  height: 450px;
  animation-delay: 840ms;
}

.flow-source {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(17, 87, 245, 0.15);
  border-radius: 999px;
  background: rgba(246, 251, 255, 0.88);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(22, 39, 76, 0.08), 0 0 0 7px rgba(17, 87, 245, 0.035);
  animation: sourceToCore 5.2s ease-in-out infinite;
}

.source-article {
  top: 68px;
  left: 66px;
  --source-x: 34px;
  --source-y: 30px;
}

.source-file {
  top: 72px;
  right: 76px;
  --source-x: -30px;
  --source-y: 28px;
  animation-delay: 520ms;
}

.source-web {
  top: 196px;
  left: 38px;
  --source-x: 44px;
  --source-y: 2px;
  animation-delay: 1040ms;
}

.source-meeting {
  right: 34px;
  bottom: 146px;
  --source-x: -40px;
  --source-y: -8px;
  animation-delay: 1560ms;
}

.source-ai {
  bottom: 58px;
  left: 126px;
  --source-x: 26px;
  --source-y: -28px;
  animation-delay: 2080ms;
}

.flow-beam {
  position: absolute;
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), rgba(17, 87, 245, 0.36), transparent);
  opacity: 0;
  transform-origin: left center;
  animation: beamTrace 4.6s ease-in-out infinite;
}

.beam-one {
  top: 142px;
  left: 126px;
  width: 198px;
  transform: rotate(28deg);
}

.beam-two {
  top: 256px;
  right: 118px;
  width: 210px;
  transform: rotate(154deg);
  animation-delay: 720ms;
}

.beam-three {
  bottom: 116px;
  left: 178px;
  width: 176px;
  transform: rotate(-32deg);
  animation-delay: 1440ms;
}

.flow-output {
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.flow-output span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(17, 87, 245, 0.16);
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 87, 245, 0.1);
  animation: outputPop 4.2s ease-in-out infinite;
}

.flow-output span:nth-child(2) {
  animation-delay: 260ms;
}

.flow-output span:nth-child(3) {
  animation-delay: 520ms;
}

.hero-knowledge-flow.knowledge-world {
  top: 50%;
  right: max(-170px, calc((100vw - var(--max)) / 2 - 210px));
  left: auto;
  bottom: auto;
  overflow: visible;
  width: clamp(760px, 64vw, 1040px);
  min-height: clamp(560px, 58vw, 760px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  transform: translateY(-50%);
  animation: knowledgeWorldFloat 8s ease-in-out infinite;
}

.hero-knowledge-flow.knowledge-world:active {
  cursor: grabbing;
}

.hero-knowledge-flow.knowledge-world::before {
  display: none;
}

.hero-knowledge-flow.knowledge-world::after {
  display: none;
}

.knowledge-world-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.knowledge-world-label {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: none;
  pointer-events: none;
}

.knowledge-world-label.is-visible {
  display: block;
}

.knowledge-world-label svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.knowledge-world-label line {
  stroke: rgba(17, 87, 245, 0.54);
  stroke-width: 1.2;
  stroke-dasharray: 4 5;
}

.knowledge-world-label span {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(17, 87, 245, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(22, 39, 76, 0.11);
  color: #143366;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  backdrop-filter: blur(14px) saturate(1.1);
  opacity: 0;
  transform: translate3d(0, -50%, 0) scaleY(0.45);
  transform-origin: left center;
}

.knowledge-world-label.is-visible span {
  animation: worldLabelIn 220ms var(--ease-out) forwards;
}

.knowledge-world-label.is-left span {
  transform: translate3d(-100%, -50%, 0) scaleY(0.45);
  transform-origin: right center;
}

.knowledge-world-label.is-left.is-visible span {
  animation: worldLabelInLeft 220ms var(--ease-out) forwards;
}

.knowledge-world-label span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--label-dot, var(--blue));
  box-shadow: 0 0 0 5px var(--label-halo, rgba(17, 87, 245, 0.08));
  content: "";
  flex: 0 0 auto;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  animation: cueFloat 1.8s ease-in-out infinite;
}

.scroll-cue span {
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-2px) rotate(45deg);
}

.section {
  position: relative;
  scroll-margin-top: 86px;
  overflow: hidden;
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
}

.value-section,
.faq-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(17, 87, 245, 0.045), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin-bottom: 48px;
}

.section-head.centered {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(17, 87, 245, 0.12);
  border-radius: 999px;
  background: rgba(17, 87, 245, 0.06);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(27px, 2.75vw, 38px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
}

.section-head p,
.trust-copy p,
.team-panel p,
.download-inner p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reason-item,
.trust-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(199, 210, 226, 0.86);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.reason-item::before,
.trust-grid article::before,
.difference-outcomes article::before,
.scenario-usecases article::before,
.team-offerings article::before,
.team-capability-grid article::before,
.companion-grid article::before {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, rgba(17, 87, 245, 0.06), transparent 34%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.reason-item:hover,
.difference-outcomes article:hover,
.scenario-usecases article:hover,
.team-offerings article:hover,
.team-capability-grid article:hover,
.companion-grid article:hover {
  border-color: rgba(17, 87, 245, 0.24);
  box-shadow: 0 12px 32px rgba(22, 39, 76, 0.06);
  transform: translateY(-2px);
}

.reason-item {
  min-height: 180px;
  box-shadow: 0 8px 24px rgba(22, 39, 76, 0.035);
}

.reason-item:hover::before,
.difference-outcomes article:hover::before,
.scenario-usecases article:hover::before,
.team-offerings article:hover::before,
.team-capability-grid article:hover::before,
.companion-grid article:hover::before {
  opacity: 1;
}

.reason-item span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.28;
}

.reason-item p,
.trust-grid span,
.scenario-usecases p,
.companion-grid span,
.assistant-actions span {
  color: var(--muted);
  line-height: 1.8;
}

.evidence-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(199, 210, 226, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94)),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
  box-shadow: var(--panel-shadow);
}

.evidence-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 12px 8px;
}

.demo-label {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(17, 87, 245, 0.14);
  border-radius: 999px;
  background: rgba(17, 87, 245, 0.07);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.evidence-copy b {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.24;
}

.evidence-copy p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 460px;
}

.evidence-metrics span {
  display: grid;
  gap: 2px;
  min-height: 72px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(17, 87, 245, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(22, 39, 76, 0.05);
}

.evidence-metrics strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.evidence-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 210, 226, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 68px rgba(17, 87, 245, 0.1);
}

.evidence-screen::after {
  position: absolute;
  inset: auto -12% -24% 36%;
  height: 62%;
  background: radial-gradient(circle, rgba(17, 87, 245, 0.14), transparent 64%);
  content: "";
  pointer-events: none;
}

.screen-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 255, 0.9);
}

.screen-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8c5d8;
}

.screen-toolbar span:first-child {
  background: #60a5fa;
}

.screen-toolbar span:nth-child(2) {
  background: #22c7d8;
}

.screen-toolbar span:nth-child(3) {
  background: var(--cyan);
}

.screen-toolbar b {
  margin-left: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.screen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
}

.source-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.source-stack span,
.trace-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.source-stack span:first-child {
  border-color: rgba(17, 87, 245, 0.22);
  background: #f2f7ff;
  color: var(--blue-deep);
}

.evidence-board.is-running .source-stack span {
  animation: sourceFloat 4s ease-in-out infinite;
}

.evidence-board.is-running .source-stack span:nth-child(2) {
  animation-delay: 180ms;
}

.evidence-board.is-running .source-stack span:nth-child(3) {
  animation-delay: 360ms;
}

.knowledge-card,
.ai-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(22, 39, 76, 0.045);
}

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

.ai-card {
  border-color: rgba(17, 87, 245, 0.2);
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
  box-shadow: 0 16px 42px rgba(17, 87, 245, 0.085);
}

.knowledge-card small,
.ai-card small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.knowledge-card strong,
.ai-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.knowledge-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.signal-line {
  overflow: hidden;
  width: 82%;
  height: 7px;
  border-radius: 999px;
  background: rgba(17, 87, 245, 0.08);
}

.signal-line::after {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(17, 87, 245, 0.1), rgba(17, 87, 245, 0.48), rgba(26, 166, 217, 0.24));
  content: "";
  animation: outputWrite 3s ease-in-out infinite;
}

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

.ai-card {
  grid-column: 2;
  margin-left: 30px;
  background: linear-gradient(135deg, rgba(245, 249, 255, 0.98), rgba(255, 255, 255, 0.94));
}

.trace-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.companion-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 18%, var(--field-cyan), transparent 28%),
    radial-gradient(circle at 86% 12%, var(--field-blue), transparent 30%),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px),
    var(--field-wash);
  background-size: auto, auto, 62px 62px, 62px 62px, auto;
}

.companion-loop {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 26px;
}

.companion-loop span {
  position: relative;
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 36px rgba(22, 39, 76, 0.06);
}

.companion-loop span:nth-of-type(3) {
  border-color: rgba(17, 87, 245, 0.24);
  background: #f3f7ff;
  color: var(--blue-deep);
}

.companion-loop i {
  position: relative;
  height: 1px;
  background: var(--line-strong);
}

.companion-loop i::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  content: "";
  transform: translateX(-100%);
  animation: flowLine 3s ease-in-out infinite;
}

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

.companion-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 178px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 52px rgba(22, 39, 76, 0.065);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.companion-grid b {
  font-size: 20px;
}

.assistant-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.assistant-demo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 210, 226, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.94)),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: 0 28px 84px rgba(17, 87, 245, 0.12);
}

.assistant-demo::after {
  position: absolute;
  top: 18%;
  right: -10%;
  width: 42%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 87, 245, 0.12), transparent 64%);
  content: "";
  pointer-events: none;
  animation: motionHalo 5s ease-in-out infinite;
}

.demo-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.demo-topbar b {
  font-size: 18px;
}

.demo-topbar span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.demo-topbar .demo-label {
  min-height: 26px;
  padding: 0 9px;
  font-size: 12px;
}

.demo-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
}

.demo-sidebar,
.demo-answer {
  border: 1px solid rgba(199, 210, 226, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(22, 39, 76, 0.06);
}

.demo-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 360px;
  padding: 16px;
}

.demo-sidebar b {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.source-card {
  display: grid;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.source-card.is-active {
  border-color: rgba(17, 87, 245, 0.24);
  background: #f2f7ff;
  color: var(--blue-deep);
  box-shadow: 0 10px 24px rgba(17, 87, 245, 0.08);
}

.assistant-showcase.is-running .source-card.is-active {
  animation: cardFocus 3.4s ease-in-out infinite;
}

.demo-answer {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 360px;
  padding: 22px;
}

.demo-answer small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.demo-answer p {
  padding: 14px 16px;
  border: 1px solid rgba(17, 87, 245, 0.14);
  border-radius: 8px;
  background: #f5f8ff;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.75;
}

.answer-block {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(199, 210, 226, 0.82);
  border-radius: 8px;
  background: #fff;
}

.answer-block b {
  font-size: 18px;
}

.answer-block span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.citation-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.citation-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(26, 166, 217, 0.26);
  border-radius: 999px;
  background: rgba(223, 246, 255, 0.72);
  color: #075b83;
  font-size: 13px;
  font-weight: 900;
}

.assistant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.assistant-actions article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 126px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.assistant-actions article::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(17, 87, 245, 0.08);
  content: "";
}

.assistant-actions article:hover {
  border-color: rgba(17, 87, 245, 0.24);
  box-shadow: 0 12px 32px rgba(22, 39, 76, 0.06);
  transform: translateY(-2px);
}

.assistant-actions b {
  padding-right: 20px;
  font-size: 19px;
}

.system-section,
.team-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 24%, rgba(26, 166, 217, 0.055), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(17, 87, 245, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 100%),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px);
  background-size: auto, auto, auto, 64px 64px, 64px 64px;
}

.difference-section {
  border-top: 1px solid rgba(223, 230, 240, 0.78);
  border-bottom: 1px solid rgba(223, 230, 240, 0.78);
  background:
    radial-gradient(circle at 90% 18%, rgba(17, 87, 245, 0.035), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.process-rail article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 9px;
  min-height: 178px;
  align-content: start;
  padding: 20px;
  border: 1px solid rgba(199, 210, 226, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease;
}

.process-rail article::after {
  position: absolute;
  top: 28px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  content: "";
}

.process-rail article:last-child::after {
  display: none;
}

.process-rail article:hover {
  border-color: rgba(17, 87, 245, 0.28);
  box-shadow: 0 10px 26px rgba(22, 39, 76, 0.055);
  transform: translateY(-2px);
}

.process-rail span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.process-rail b {
  color: var(--ink);
  font-size: 18px;
}

.process-rail p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.format-hub {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 38px;
  padding: 24px;
  border: 1px solid rgba(199, 210, 226, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.94)),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  box-shadow: 0 14px 42px rgba(22, 39, 76, 0.055);
}

.format-hub::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(17, 87, 245, 0.055) 54%, transparent 82%);
  content: "";
  opacity: 0;
  transform: translateX(-26%);
  pointer-events: none;
}

.format-hub.is-running::after {
  animation: workbenchSweep 5.2s ease-in-out infinite;
}

.format-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 4px 8px 4px 0;
}

.format-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.25;
}

.format-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.format-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.format-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  min-height: 142px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(199, 210, 226, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(22, 39, 76, 0.055);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.format-grid article::before {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 87, 245, 0.1);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(17, 87, 245, 0.055), transparent);
  content: "";
  transform: rotate(8deg);
}

.format-grid article:hover {
  border-color: rgba(17, 87, 245, 0.24);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.format-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(17, 87, 245, 0.15);
  border-radius: 6px;
  background: #f3f7ff;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.format-grid b {
  position: relative;
  z-index: 1;
  font-size: 18px;
}

.format-grid small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.browser-format {
  border-color: rgba(17, 87, 245, 0.22) !important;
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%) !important;
}

.asset-system {
  position: relative;
  display: block;
}

.asset-map {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(360px, 1.2fr) minmax(220px, 0.74fr);
  gap: 22px;
  align-items: stretch;
  min-height: 470px;
  padding: 24px;
  border: 1px solid rgba(199, 210, 226, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.94)),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  box-shadow: var(--panel-shadow);
}

.map-column,
.asset-core {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 22px;
  border: 1px solid rgba(199, 210, 226, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 52px rgba(22, 39, 76, 0.06);
}

.map-column .column-head {
  min-height: auto;
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.map-column .source-list,
.map-column .output-list {
  display: grid;
  grid-auto-rows: auto;
  gap: 10px;
  height: auto;
  align-content: start;
}

.map-column .output-list span {
  justify-content: center;
}

.asset-core {
  overflow: hidden;
  align-content: center;
  justify-items: center;
  gap: 16px;
  min-height: 420px;
  padding: 34px;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, rgba(17, 87, 245, 0.1), rgba(255, 255, 255, 0.94) 58%);
}

.asset-core::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(17, 87, 245, 0.12);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.asset-core small {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.asset-core b {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.18;
}

.asset-core p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.85;
}

.asset-orbit {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(420px, 100%);
  margin-top: 4px;
}

.asset-orbit span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(17, 87, 245, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 850;
}

.asset-system.is-running .asset-orbit span {
  animation: coreBreath 3.8s ease-in-out infinite;
}

.asset-system.is-running .asset-orbit span:nth-child(2) {
  animation-delay: 140ms;
}

.asset-system.is-running .asset-orbit span:nth-child(3) {
  animation-delay: 280ms;
}

.asset-system.is-running .asset-orbit span:nth-child(4) {
  animation-delay: 420ms;
}

.asset-system.is-running .asset-orbit span:nth-child(5) {
  animation-delay: 560ms;
}

.asset-system.is-running .asset-orbit span:nth-child(6) {
  animation-delay: 700ms;
}

.source-column {
  overflow: visible;
}

.column-head {
  display: grid;
  gap: 4px;
  min-height: 88px;
  align-content: start;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.column-head b {
  font-size: 20px;
}

.column-head small {
  color: var(--muted);
  font-size: 13px;
}

.source-list {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 10px;
  height: 100%;
  min-height: 0;
  align-content: stretch;
}

.output-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-list span,
.output-list span {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.source-list span:hover,
.output-list span:hover {
  border-color: rgba(17, 87, 245, 0.28);
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(22, 39, 76, 0.06);
  transform: translateY(-2px);
}

.source-list span {
  width: 100%;
  justify-content: flex-start;
  padding-left: 34px;
}

.source-list span::before {
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: white;
  content: "";
  transition: background 180ms ease, box-shadow 180ms ease;
}

.source-list span:hover::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(17, 87, 245, 0.1);
}

.source-list span::after {
  position: absolute;
  left: calc(100% + 1px);
  top: 50%;
  width: 42px;
  border-top: 1px dashed #aebddd;
  content: "";
}

.output-list span {
  padding: 0 12px;
}

.result-column {
  background: linear-gradient(180deg, #fff 0%, #f3f7ff 100%);
}

.result-column .output-list {
  display: grid;
  grid-auto-rows: minmax(34px, 1fr);
  gap: 8px;
  height: 100%;
  min-height: 0;
  align-content: stretch;
}

.result-column .output-list span {
  justify-content: center;
  padding: 0 10px;
}

.difference-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94)),
    linear-gradient(90deg, rgba(17, 87, 245, 0.024) 1px, transparent 1px),
    linear-gradient(rgba(17, 87, 245, 0.022) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: 0 24px 76px rgba(22, 39, 76, 0.1);
}

.difference-column {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 210, 226, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(22, 39, 76, 0.045);
}

.difference-column {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px;
}

.difference-column-head {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.difference-column-head small,
.document-title small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.difference-column-head b {
  font-size: 24px;
  line-height: 1.25;
}

.difference-column-head span {
  color: var(--muted);
  font-size: 14px;
}

.tool-pile,
.knowledge-pile {
  display: grid;
  gap: 10px;
}

.tool-pile article,
.knowledge-pile article {
  display: grid;
  min-height: 72px;
  align-content: center;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(223, 230, 240, 0.95);
  border-radius: 8px;
  background: #fff;
}

.tool-pile article {
  grid-template-columns: 18px 1fr;
  column-gap: 10px;
}

.tool-pile i {
  position: relative;
  grid-row: 1 / span 2;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 1px solid rgba(95, 107, 122, 0.36);
  border-radius: 4px;
  background: #f5f7fb;
}

.tool-pile i::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(95, 107, 122, 0.28);
  border-radius: 3px;
  background: #fff;
  content: "";
}

.tool-pile b,
.knowledge-pile b {
  font-size: 16px;
  line-height: 1.35;
}

.tool-pile span,
.knowledge-pile span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.common-column {
  border-color: rgba(199, 210, 226, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 252, 0.76));
  box-shadow: none;
}

.zhiji-column {
  border-color: rgba(17, 87, 245, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.96));
  box-shadow: 0 18px 52px rgba(17, 87, 245, 0.08);
}

.zhiji-column .knowledge-pile article {
  border-color: rgba(17, 87, 245, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f6f9ff 100%);
}

.difference-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.difference-outcomes article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  min-height: 92px;
  align-content: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.difference-outcomes span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.difference-outcomes b {
  font-size: 18px;
  line-height: 1.35;
}

.audience-switch {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f9fd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 34px rgba(22, 39, 76, 0.06);
}

.audience-switch button {
  min-width: 128px;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 850;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.audience-switch button.is-active {
  background: var(--blue);
  color: white;
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(17, 87, 245, 0.18);
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: stretch;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(18px) scale(0.985);
  transition: opacity 320ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 320ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audience-panel.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.audience-panel.is-leaving {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(22px) scale(0.975);
}

.scenarios-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(26, 166, 217, 0.06), transparent 27%),
    radial-gradient(circle at 18% 84%, rgba(17, 87, 245, 0.045), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.scenario-browser {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 430px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--panel-shadow);
}

.scenario-browser::after {
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 87, 245, 0.42), transparent);
  content: "";
  opacity: 0;
}

.audience-panel.is-active .scenario-browser::after {
  animation: scenarioScan 3.4s ease-in-out infinite;
}

.scenario-browser-head {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f7faff;
}

.scenario-browser-head span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d7e0ee;
}

.scenario-browser-head span:nth-child(1) {
  background: #60a5fa;
}

.scenario-browser-head span:nth-child(2) {
  background: #22c7d8;
}

.scenario-browser-head span:nth-child(3) {
  background: #7eb1ff;
}

.scenario-browser-head b {
  margin-left: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.scenario-browser-body {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  min-height: 382px;
}

.scenario-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  background: #fbfdff;
}

.scenario-sidebar span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.scenario-sidebar span.is-current {
  background: #eaf2ff;
  color: var(--blue-deep);
}

.scenario-document {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(26, 166, 217, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.document-title {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.document-title b {
  font-size: 24px;
  line-height: 1.28;
}

.document-block {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(223, 230, 240, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.document-block span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.document-block p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.document-output {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
  padding-top: 2px;
}

.document-output b {
  flex-basis: 100%;
  font-size: 15px;
}

.document-output span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(17, 87, 245, 0.16);
  border-radius: 999px;
  background: #f3f7ff;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 850;
}

.team-browser .scenario-document {
  background:
    radial-gradient(circle at 88% 16%, rgba(26, 166, 217, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.scenario-usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scenario-usecases article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  min-height: 158px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.scenario-usecases article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.scenario-usecases b {
  font-size: 18px;
  line-height: 1.35;
}

.scenario-usecases p {
  margin: 0;
}

.growth-section {
  border-top: 1px solid rgba(223, 230, 240, 0.78);
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 166, 217, 0.07), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(17, 87, 245, 0.065), transparent 30%),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: center;
}

.growth-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.growth-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.growth-points {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.growth-points span {
  position: relative;
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px 0 34px;
  border: 1px solid rgba(199, 210, 226, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(22, 39, 76, 0.04);
}

.growth-points span::before {
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(17, 87, 245, 0.1);
  content: "";
}

.growth-workflow {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(26, 166, 217, 0.1), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(17, 87, 245, 0.075), transparent 30%),
    linear-gradient(90deg, rgba(17, 87, 245, 0.024) 1px, transparent 1px),
    linear-gradient(rgba(17, 87, 245, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92));
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  box-shadow: 0 26px 76px rgba(17, 87, 245, 0.11);
}

.growth-workflow::before {
  position: absolute;
  top: 122px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(17, 87, 245, 0.2), rgba(26, 166, 217, 0.22), transparent);
  content: "";
  pointer-events: none;
}

.growth-workflow::after {
  position: absolute;
  top: 121px;
  left: 12%;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue));
  content: "";
  pointer-events: none;
  animation: growthTrace 4.8s ease-in-out infinite;
}

.workflow-top {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(199, 210, 226, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(22, 39, 76, 0.06);
}

.workflow-top span,
.workflow-return small,
.workflow-lanes small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.workflow-top b {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.4;
}

.workflow-lanes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.workflow-lanes article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 220px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(199, 210, 226, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(22, 39, 76, 0.07);
  backdrop-filter: blur(14px);
}

.workflow-lanes article::before {
  position: absolute;
  top: -28px;
  left: 22px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(17, 87, 245, 0.1);
  content: "";
}

.workflow-lanes b,
.workflow-return b {
  font-size: 18px;
  line-height: 1.35;
}

.workflow-lanes article span,
.workflow-return > span {
  display: inline-flex;
  width: fit-content;
  min-height: 31px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
}

.workflow-return {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(17, 87, 245, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(242, 247, 255, 0.9), rgba(247, 251, 255, 0.92)),
    #fff;
  box-shadow: 0 16px 38px rgba(17, 87, 245, 0.08);
}

.workflow-return div {
  display: grid;
  min-width: 220px;
  gap: 4px;
  margin-right: auto;
}

.workflow-return > span {
  background: rgba(255, 255, 255, 0.74);
}

.trust-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 56px;
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(17, 87, 245, 0.24), transparent 30%),
    radial-gradient(circle at 86% 72%, rgba(26, 166, 217, 0.16), transparent 28%),
    linear-gradient(135deg, #080d19 0%, #0d1425 54%, #11192d 100%),
    linear-gradient(90deg, rgba(159, 216, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(159, 216, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 72px 72px, 72px 72px;
  color: white;
}

.trust-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid article {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.trust-grid article:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(159, 216, 255, 0.28);
  transform: translateY(-3px);
}

.trust-grid b {
  display: block;
  margin-bottom: 12px;
  color: #9fd8ff;
  font-size: 20px;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.local-trust-band {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(159, 216, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--ease-out);
}

.local-trust-band:hover {
  border-color: rgba(159, 216, 255, 0.36);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.local-trust-band b {
  color: #fff;
  font-size: 20px;
}

.local-trust-band p {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

.team-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.86fr 1.08fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 58%, rgba(241, 246, 255, 0.92) 100%);
  box-shadow: var(--panel-shadow);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, border-color 240ms ease;
}

.team-panel::after {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(110deg, transparent 0%, rgba(17, 87, 245, 0.055) 58%, transparent 100%);
  content: "";
  pointer-events: none;
}

.team-panel:hover {
  border-color: rgba(17, 87, 245, 0.24);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}

.team-offerings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.team-offerings article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 168px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(22, 39, 76, 0.08);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.team-offerings b {
  font-size: 20px;
}

.team-offerings span {
  color: var(--muted);
  line-height: 1.8;
}

.team-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.team-capability-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 184px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(223, 230, 240, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.team-capability-grid b {
  font-size: 19px;
}

.team-capability-grid span {
  color: var(--muted);
  line-height: 1.8;
}

.team-panel h2 {
  margin-top: 12px;
  font-size: clamp(27px, 2.8vw, 38px);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 18px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms var(--ease-out);
}

.faq-item button:hover {
  color: var(--blue-deep);
  padding-left: 8px;
}

.faq-item button span {
  font-size: 20px;
  font-weight: 850;
}

.faq-item i {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.faq-item i::before,
.faq-item i::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.faq-item i::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 780px;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.9;
  animation: answerIn 220ms var(--ease-out);
}

.download {
  scroll-margin-top: 86px;
  display: grid;
  min-height: 680px;
  align-items: start;
  padding: 96px max(20px, calc((100vw - var(--max)) / 2)) 76px;
  background:
    radial-gradient(circle at 16% 24%, rgba(26, 166, 217, 0.075), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(17, 87, 245, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 255, 0.94)),
    linear-gradient(90deg, var(--field-grid-soft) 1px, transparent 1px),
    linear-gradient(var(--field-grid-soft) 1px, transparent 1px),
    #f7faff;
  background-size: auto, auto, auto, 64px 64px, 64px 64px, auto;
}

.download-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  gap: 34px 50px;
  width: 100%;
  max-width: var(--max);
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 255, 0.9));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset, 0 32px 92px rgba(24, 42, 80, 0.12);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, border-color 240ms ease;
}

.download-inner::after {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(115deg, transparent 0%, rgba(17, 87, 245, 0.055) 62%, transparent 100%);
  content: "";
  pointer-events: none;
}

.download-inner:hover {
  border-color: rgba(17, 87, 245, 0.22);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.download-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: 660px;
}

.download-copy h2 {
  max-width: 620px;
}

.download-copy p {
  max-width: 620px;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.download-steps article {
  display: grid;
  gap: 5px;
  min-height: 92px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(17, 87, 245, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(22, 39, 76, 0.05);
}

.download-steps span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.download-steps b {
  font-size: 15px;
  line-height: 1.45;
}

.start-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(199, 210, 226, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(22, 39, 76, 0.08);
  backdrop-filter: blur(14px);
}

.start-card::before {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(140deg, rgba(17, 87, 245, 0.055), transparent 38%);
  content: "";
  pointer-events: none;
}

.start-head,
.edition-switch,
.download-config {
  position: relative;
  z-index: 1;
}

.start-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.start-head div {
  display: grid;
  gap: 2px;
}

.start-head small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.start-head b {
  font-size: 22px;
  line-height: 1.25;
}

.edition-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(199, 210, 226, 0.88);
  border-radius: 8px;
  background: rgba(238, 244, 255, 0.72);
}

.edition-option {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.edition-option.is-active {
  background: #fff;
  box-shadow: 0 7px 18px rgba(22, 39, 76, 0.08);
  color: var(--blue);
}

.edition-option:hover {
  color: var(--blue);
}

.download-config {
  display: grid;
  gap: 14px;
  animation: downloadConfigIn 260ms var(--ease-out) both;
}

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

.download-variant {
  display: grid;
  gap: 4px;
  min-height: 76px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(199, 210, 226, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out);
}

.download-variant:hover {
  border-color: rgba(17, 87, 245, 0.24);
  background: #fff;
  transform: translateY(-1px);
}

.download-variant:active {
  border-color: rgba(17, 87, 245, 0.28);
  background: #f4f8ff;
  box-shadow: none;
  transform: translateY(0);
}

.download-variant b {
  font-size: 15px;
  line-height: 1.35;
}

.download-variant span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.download-inner .download-note {
  padding-top: 4px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}

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

body.contact-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none;
}

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

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 41, 0.42);
  backdrop-filter: blur(12px);
}

.contact-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  width: min(820px, calc(100vw - 40px));
  padding: 30px;
  border: 1px solid rgba(210, 220, 236, 0.98);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 14%, rgba(26, 166, 217, 0.1), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(17, 87, 245, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow: 0 36px 110px rgba(13, 28, 56, 0.28);
}

.contact-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  min-height: 34px;
  padding: 0;
  border: 1px solid rgba(199, 210, 226, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease, transform 200ms var(--ease-out);
}

.contact-close::before,
.contact-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.contact-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-close:hover {
  border-color: rgba(17, 87, 245, 0.24);
  background: #fff;
  color: var(--blue);
  transform: translateY(-1px);
}

.contact-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  padding-right: 8px;
}

.contact-copy h2 {
  max-width: 420px;
  font-size: clamp(26px, 3vw, 36px);
}

.contact-copy p {
  max-width: 440px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.contact-qr {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(199, 210, 226, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(22, 39, 76, 0.1);
}

.contact-qr img {
  display: block;
  width: min(252px, 56vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(223, 230, 240, 0.96);
  border-radius: 8px;
  background: #fff;
}

.contact-qr b {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 36px max(20px, calc((100vw - var(--max)) / 2)) 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.footer-brand > p {
  color: var(--muted);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(223, 230, 240, 0.76);
  color: var(--subtle);
  font-size: 13px;
  text-align: center;
}

.footer-legal a {
  text-decoration: underline;
  text-decoration-color: rgba(138, 150, 168, 0.5);
  text-underline-offset: 3px;
}

.legal-body {
  background: #fff;
}

.legal-header {
  grid-template-columns: auto 1fr;
}

.legal-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.legal-main {
  width: min(1040px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 88px 0 120px;
}

.legal-hero {
  max-width: 820px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.legal-eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.legal-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12;
}

.legal-summary {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 24px;
  color: var(--subtle);
  font-size: 13px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding-top: 56px;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding-left: 18px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.legal-toc a:hover {
  color: var(--blue);
}

.legal-content {
  min-width: 0;
  max-width: 760px;
}

.legal-content section + section {
  margin-top: 52px;
}

.legal-content h2 {
  scroll-margin-top: 112px;
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.3;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 18px;
  line-height: 1.5;
}

.legal-content p,
.legal-content li {
  color: #3f4b5f;
  font-size: 16px;
  line-height: 1.9;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 20px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--blue);
}

.legal-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(28px) scale(0.985);
  transition: opacity 760ms var(--ease-out), filter 760ms ease, transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.asset-system.is-visible .source-list span::before {
  animation: nodePulse 2.8s ease-in-out infinite;
}

.asset-system.is-visible .source-list span:nth-child(2)::before {
  animation-delay: 120ms;
}

.asset-system.is-visible .source-list span:nth-child(3)::before {
  animation-delay: 240ms;
}

.asset-system.is-visible .source-list span:nth-child(4)::before {
  animation-delay: 360ms;
}

.asset-system.is-visible .source-list span:nth-child(5)::before {
  animation-delay: 480ms;
}

.asset-system.is-visible .source-list span:nth-child(6)::before {
  animation-delay: 600ms;
}

.asset-system.is-visible .source-list span:nth-child(7)::before {
  animation-delay: 720ms;
}

.asset-system.is-visible .source-list span:nth-child(8)::before {
  animation-delay: 840ms;
}

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

@keyframes heroMotionIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes workbenchSweep {
  0%,
  52% {
    opacity: 0;
    transform: translateX(-34%);
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(34%);
  }
}

@keyframes workbenchScan {
  0%,
  46% {
    opacity: 0;
    transform: translate3d(-34%, -14%, 0);
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(34%, 14%, 0);
  }
}

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

@keyframes trailPulse {
  0%,
  100% {
    opacity: 0.38;
    clip-path: inset(0 78% 0 0);
  }
  42% {
    opacity: 0.82;
    clip-path: inset(0 8% 0 0);
  }
  72% {
    opacity: 0.34;
    clip-path: inset(0 0 0 68%);
  }
}

@keyframes nodeGlide {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(-18px, 8px, 0) scale(0.8);
  }
  18% {
    opacity: 1;
  }
  62% {
    opacity: 1;
    transform: translate3d(120px, -24px, 0) scale(1.04);
  }
  86% {
    opacity: 0;
    transform: translate3d(190px, -42px, 0) scale(0.72);
  }
}

@keyframes sheetDrift {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotate(var(--sheet-rotate, -8deg));
  }
  50% {
    opacity: 0.76;
    transform: translate3d(12px, -14px, 0) rotate(calc(var(--sheet-rotate, -8deg) + 3deg));
  }
}

@keyframes heroGridDrift {
  0%,
  100% {
    transform: perspective(680px) rotateY(-8deg) rotateX(3deg) translate3d(0, 0, 0);
    opacity: 0.28;
  }
  50% {
    transform: perspective(680px) rotateY(-5deg) rotateX(4deg) translate3d(12px, -8px, 0);
    opacity: 0.42;
  }
}

@keyframes sourceToCore {
  0%,
  100% {
    opacity: 0.76;
    transform: translate3d(0, 0, 0) scale(1);
  }
  48% {
    opacity: 1;
    transform: translate3d(var(--source-x, 8px), var(--source-y, -6px), 0) scale(1.04);
  }
}

@keyframes knowledgeRing {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.94);
  }
  50% {
    opacity: 0.78;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes beamTrace {
  0%,
  38% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  52% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
}

@keyframes outputPop {
  0%,
  100% {
    opacity: 0.82;
    transform: translateY(0);
  }
  44% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

@keyframes sourceFloat {
  0%,
  100% {
    transform: translateX(0);
  }
  48% {
    transform: translateX(8px);
  }
}

@keyframes coreBreath {
  0%,
  100% {
    box-shadow: 0 18px 48px rgba(22, 39, 76, 0.08), 0 0 0 0 rgba(17, 87, 245, 0.04);
  }
  48% {
    box-shadow: 0 24px 64px rgba(17, 87, 245, 0.13), 0 0 0 8px rgba(17, 87, 245, 0.055);
  }
}

@keyframes outputWrite {
  0%,
  100% {
    transform: translateX(-24%);
    opacity: 0.45;
  }
  50% {
    transform: translateX(42%);
    opacity: 1;
  }
}

@keyframes motionHalo {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes growthTrace {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(360px);
  }
}

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

@keyframes flowLine {
  0% {
    transform: translateX(-110%);
  }
  58%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 87, 245, 0);
  }
  45% {
    box-shadow: 0 0 0 5px rgba(17, 87, 245, 0.12);
  }
}

@keyframes scenarioScan {
  0% {
    opacity: 0;
    transform: translateX(-18%);
  }
  40%,
  64% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(18%);
  }
}

@keyframes answerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFocus {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(17, 87, 245, 0.08);
  }
  46% {
    box-shadow: 0 14px 34px rgba(17, 87, 245, 0.17), 0 0 0 5px rgba(17, 87, 245, 0.06);
  }
}

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

@keyframes worldGlowBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.05);
  }
}

@keyframes worldCorePulse {
  0%,
  100% {
    box-shadow:
      0 24px 70px rgba(17, 87, 245, 0.19),
      0 0 0 12px rgba(17, 87, 245, 0.045),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow:
      0 30px 86px rgba(17, 87, 245, 0.25),
      0 0 0 18px rgba(26, 166, 217, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes worldLabelIn {
  to {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scaleY(1);
  }
}

@keyframes worldLabelInLeft {
  to {
    opacity: 1;
    transform: translate3d(-100%, -50%, 0) scaleY(1);
  }
}

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-motion,
  .hero-knowledge-flow,
  .hero-knowledge-flow::after,
  .hero-motion::before,
  .hero-motion::after,
  .knowledge-world-label.is-visible span,
  .flow-trail,
  .flow-node,
  .flow-sheet,
  .flow-core,
  .flow-rings span,
  .flow-source,
  .flow-beam,
  .flow-output span,
  .signal-line::after,
  .evidence-board.is-running .source-stack span,
  .assistant-showcase.is-running .source-card.is-active,
  .asset-system.is-running .asset-orbit span,
  .scroll-cue,
  .companion-loop i::after,
  .assistant-demo::after,
  .audience-panel.is-active .scenario-browser::after,
  .asset-system.is-visible .source-list span::before {
    animation: none !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    display: none;
    min-width: 220px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .header-actions {
    display: none;
  }

  .asset-system,
  .audience-panel,
  .trust-section,
  .team-panel,
  .evidence-board,
  .assistant-showcase,
  .format-hub,
  .growth-layout,
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .evidence-copy {
    padding: 0;
  }

  .hero-motion {
    inset: 0;
    width: auto;
    min-height: 100%;
    margin-top: 0;
  }

  .hero-knowledge-flow {
    top: 55%;
    right: -220px;
    bottom: auto;
    left: auto;
    width: min(860px, 86vw);
    min-height: 590px;
    transform: translateY(-50%);
  }

  .hero-knowledge-flow.knowledge-world {
    top: 54%;
    right: -220px;
    bottom: auto;
    left: auto;
    width: min(880px, 92vw);
    min-height: 600px;
    transform: translateY(-50%);
  }

  .difference-board,
  .difference-outcomes,
  .format-grid,
  .team-offerings,
  .team-capability-grid,
  .companion-grid,
  .assistant-actions {
    grid-template-columns: 1fr 1fr;
  }

  .column-head {
    min-height: 0;
  }

  .source-list,
  .result-column .output-list {
    grid-auto-rows: auto;
    height: auto;
    align-content: start;
  }

  .source-list {
    gap: 14px;
    padding-top: 4px;
  }

  .source-list span,
  .output-list span {
    min-height: 36px;
  }

  .process-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-rail article::after {
    display: none;
  }

  .asset-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .asset-core {
    min-height: 340px;
  }

  .assistant-demo,
  .demo-sidebar,
  .demo-answer {
    min-height: auto;
  }

  .growth-copy p {
    max-width: 780px;
  }

  .growth-workflow {
    min-height: auto;
  }

  .workflow-lanes article {
    min-height: 200px;
  }
}

@media (max-width: 760px) {
  body,
  button,
  input {
    font-size: 15px;
  }

  .site-header {
    min-height: 66px;
  }

  .main-nav {
    top: 66px;
    right: 16px;
    left: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg::before {
    background-size: 44px 44px;
    opacity: 0.58;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.58) 100%);
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.38) 100%),
      radial-gradient(circle at 46% 74%, rgba(17, 87, 245, 0.1), transparent 36%),
      radial-gradient(circle at 74% 84%, rgba(26, 166, 217, 0.075), transparent 30%);
  }

  .hero-inner {
    min-height: auto;
    padding: 36px 0 62px;
  }

  .hero-motion {
    inset: 0;
    overflow: hidden;
    min-height: 100%;
    margin-top: 0;
  }

  .hero-knowledge-flow {
    position: absolute;
    top: 66%;
    right: -300px;
    left: auto;
    min-height: 500px;
    width: 660px;
    opacity: 0.68;
    transform: translateY(-50%);
  }

  .hero-knowledge-flow.knowledge-world {
    top: 66%;
    right: -305px;
    left: auto;
    width: 680px;
    min-height: 510px;
    margin-bottom: 0;
    transform: translateY(-50%);
  }

  .knowledge-world-label span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }

  .knowledge-world-label {
    display: none;
  }

  .hero-knowledge-flow::after,
  .flow-beam {
    display: none;
  }

  .flow-trail,
  .flow-node,
  .flow-sheet {
    display: none;
  }

  .hero-motion::before,
  .hero-motion::after {
    display: none;
  }

  .flow-core {
    width: 176px;
    min-height: 176px;
    padding: 20px;
  }

  .flow-core b {
    font-size: 20px;
  }

  .flow-rings span:nth-child(1) {
    width: 220px;
    height: 220px;
  }

  .flow-rings span:nth-child(2) {
    width: 288px;
    height: 288px;
  }

  .flow-rings span:nth-child(3) {
    width: 348px;
    height: 348px;
  }

  .flow-source {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .source-article {
    top: 34px;
    left: 30px;
  }

  .source-file {
    top: 36px;
    right: 28px;
  }

  .source-web {
    top: 148px;
    left: 18px;
  }

  .source-meeting {
    right: 18px;
    bottom: 112px;
  }

  .source-ai {
    bottom: 32px;
    left: 72px;
  }

  .flow-output {
    right: 22px;
    bottom: 20px;
    gap: 7px;
  }

  .flow-output span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.22;
  }

  h2 {
    font-size: clamp(25px, 7.1vw, 32px);
  }

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

  .hero-kicker {
    min-height: 28px;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .hero-copy .hero-positioning {
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-copy .hero-description {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-proof {
    gap: 9px;
    margin-top: 20px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 78px 16px;
  }

  .download {
    min-height: 780px;
    padding: 72px 16px 220px;
  }

  .reason-grid,
  .trust-grid,
  .process-rail,
  .difference-board,
  .difference-outcomes,
  .scenario-usecases,
  .format-hub,
  .format-grid,
  .team-offerings,
  .team-capability-grid,
  .companion-grid,
  .assistant-actions {
    grid-template-columns: 1fr;
  }

  .evidence-board {
    padding: 18px;
  }

  .evidence-metrics {
    grid-template-columns: 1fr;
  }

  .screen-grid {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .source-stack {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .source-stack span {
    justify-content: center;
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }

  .knowledge-card,
  .ai-card {
    padding: 14px;
  }

  .knowledge-card strong,
  .ai-card strong {
    font-size: 17px;
  }

  .ai-card {
    grid-column: auto;
    margin-left: 0;
  }

  .demo-body {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .demo-topbar {
    display: grid;
    min-height: auto;
    gap: 4px;
    padding: 14px;
  }

  .demo-sidebar {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8px;
    padding: 12px;
  }

  .demo-answer {
    min-height: auto;
    gap: 10px;
    padding: 14px;
  }

  .demo-answer p,
  .answer-block {
    padding: 12px;
  }

  .answer-block span {
    font-size: 13px;
  }

  .assistant-actions {
    gap: 10px;
  }

  .assistant-actions article {
    min-height: auto;
    padding: 16px;
  }

  .assistant-actions b {
    font-size: 18px;
  }

  .companion-loop {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .companion-loop i {
    width: 1px;
    height: 18px;
    justify-self: center;
  }

  .source-list span {
    width: 100%;
  }

  .asset-map {
    gap: 14px;
    padding: 18px;
  }

  .map-column {
    padding: 16px;
  }

  .map-column .column-head {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .map-column .source-list,
  .map-column .output-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .map-column .source-list span,
  .map-column .output-list span {
    min-height: 34px;
    padding-right: 8px;
    font-size: 13px;
  }

  .asset-core {
    min-height: auto;
    padding: 24px 18px;
  }

  .asset-core::before {
    inset: 14px;
  }

  .asset-orbit {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .process-rail article {
    min-height: auto;
    gap: 7px;
    padding: 16px;
  }

  .process-rail p {
    line-height: 1.65;
  }

  .format-hub {
    gap: 16px;
    padding: 16px;
  }

  .format-hub::after {
    display: none;
  }

  .format-copy {
    padding: 0;
  }

  .format-grid article {
    min-height: auto;
    padding: 16px;
  }

  .difference-board {
    gap: 12px;
    padding: 14px;
  }

  .difference-column {
    padding: 16px;
  }

  .difference-column-head b,
  .document-title b {
    font-size: 21px;
  }

  .difference-outcomes article {
    min-height: auto;
    padding: 16px;
  }

  .audience-switch {
    width: 100%;
  }

  .audience-switch button {
    flex: 1;
    min-width: 0;
  }

  .download-inner,
  .team-panel {
    padding: 24px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 32px);
    overflow: auto;
    padding: 22px;
  }

  .contact-close {
    position: static;
    justify-self: end;
    order: -1;
    margin: -6px -6px 0 0;
  }

  .contact-copy {
    padding-right: 0;
  }

  .contact-copy h2,
  .contact-copy p {
    max-width: none;
  }

  .contact-qr {
    padding: 14px;
  }

  .contact-qr img {
    width: min(260px, 100%);
  }

  .download-copy,
  .start-card {
    grid-column: 1;
  }

  .download-steps,
  .download-variants {
    grid-template-columns: 1fr;
  }

  .start-card {
    padding: 16px;
  }

  .scenario-browser {
    min-height: auto;
  }

  .scenario-browser-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .scenario-sidebar {
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scenario-document {
    padding: 16px;
  }

  .scenario-usecases article {
    min-height: auto;
    padding: 16px;
  }

  .growth-layout {
    gap: 24px;
  }

  .growth-points span {
    min-height: 36px;
    padding-right: 12px;
    font-size: 13px;
  }

  .growth-workflow {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 14px;
  }

  .growth-workflow::before,
  .growth-workflow::after {
    display: none;
  }

  .workflow-top {
    padding: 16px;
  }

  .workflow-top b {
    font-size: 18px;
  }

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

  .workflow-lanes article {
    min-height: auto;
    padding: 16px;
  }

  .workflow-lanes article::before {
    display: none;
  }

  .workflow-return {
    display: grid;
    padding: 16px;
  }

  .workflow-return div {
    min-width: 0;
    margin-right: 0;
  }

  .site-footer {
    gap: 22px;
    padding-top: 30px;
  }

  .footer-main,
  .footer-brand {
    display: grid;
    justify-items: start;
    gap: 16px;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 10px 20px;
  }

  .footer-legal {
    display: grid;
    justify-items: center;
  }

  .legal-header {
    grid-template-columns: auto auto;
  }

  .legal-nav {
    gap: 16px;
    font-size: 13px;
  }

  .legal-main {
    width: min(100% - 32px, 1040px);
    padding: 56px 0 88px;
  }

  .legal-hero {
    padding-bottom: 40px;
  }

  .legal-hero h1 {
    font-size: 38px;
  }

  .legal-summary {
    font-size: 16px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 40px;
  }

  .legal-toc {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
    white-space: nowrap;
  }

  .legal-content section + section {
    margin-top: 44px;
  }

  .legal-content h2 {
    font-size: 24px;
  }
}
