:root {
  --ink: #101612;
  --ink-soft: #172019;
  --paper: #f2f0e9;
  --paper-deep: #e7e4da;
  --white: #ffffff;
  --muted: #657069;
  --muted-dark: #96a29a;
  --line: rgba(16, 22, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #c8ff3d;
  --accent-dark: #93c800;
  --blue: #84a8ff;
  --orange: #ff8a5c;
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 80px rgba(5, 12, 7, 0.18);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.2, 1);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #f1ffb3 58%, var(--blue));
  box-shadow: 0 0 14px rgba(200, 255, 61, 0.45);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: scrollProgress linear both;
    animation-timeline: scroll(root block);
  }
}

@keyframes scrollProgress {
  to { transform: scaleX(1); }
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 17, 13, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

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

.brand-logo {
  width: 134px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 13px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.language-switch button,
.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  padding: 0;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-switch button.is-active,
.language-switch a.is-active {
  color: var(--accent);
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--white);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: var(--white);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 17px;
  color: var(--ink);
  font-weight: 700;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  top: 0;
  right: -12%;
  left: -12%;
  z-index: -1;
  height: 18%;
  content: "";
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(200, 255, 61, 0.055), rgba(132, 168, 255, 0.035), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateY(-130%);
  animation: heroScan 8.5s var(--ease-smooth) infinite;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-grid {
  animation: gridDrift 26s linear infinite alternate;
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: -270px;
  right: -200px;
  width: 690px;
  height: 690px;
  opacity: 0.15;
  background: radial-gradient(circle at 40% 40%, var(--accent), transparent 68%);
  animation: orbDriftOne 13s var(--ease-smooth) infinite alternate;
}

.hero-orb-two {
  bottom: -480px;
  left: -320px;
  width: 820px;
  height: 820px;
  opacity: 0.08;
  background: radial-gradient(circle, var(--blue), transparent 66%);
  animation: orbDriftTwo 17s var(--ease-smooth) infinite alternate;
}

@keyframes heroScan {
  0%, 12% { opacity: 0; transform: translateY(-130%); }
  20% { opacity: 1; }
  58% { opacity: 0.72; }
  74%, 100% { opacity: 0; transform: translateY(690%); }
}

@keyframes gridDrift {
  to { background-position: 36px 24px, 36px 24px; }
}

@keyframes orbDriftOne {
  to { opacity: 0.2; transform: translate3d(-54px, 42px, 0) scale(1.08); }
}

@keyframes orbDriftTwo {
  to { opacity: 0.12; transform: translate3d(68px, -34px, 0) scale(0.94); }
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  gap: 70px;
  align-items: center;
  min-height: 100vh;
  padding-top: 132px;
  padding-bottom: 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow {
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.64);
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 255, 61, 0.09);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(200, 255, 61, 0.3);
  border-radius: inherit;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.7); }
  75%, 100% { opacity: 0; transform: scale(1.8); }
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(200,255,61,.45), var(--accent) 42%, #f1ffb3 50%, var(--accent) 58%, rgba(200,255,61,.45));
  background-size: 220% 100%;
  box-shadow: 0 0 12px rgba(200, 255, 61, 0.16);
  transform: rotate(-1.5deg);
  animation: underlineSignal 4.8s ease-in-out infinite;
}

@keyframes underlineSignal {
  0%, 18% { background-position: 110% 0; opacity: 0.72; }
  52% { opacity: 1; }
  82%, 100% { background-position: -110% 0; opacity: 0.72; }
}

.hero-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 56px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.button-primary::before {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -38%;
  width: 24%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  pointer-events: none;
  transform: skewX(-20deg) translateX(0);
  transition: opacity .2s ease, transform .72s var(--ease-out-expo);
}

.button-primary > * {
  position: relative;
  z-index: 1;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-primary:hover::before,
.button-primary:focus-visible::before {
  opacity: .9;
  transform: skewX(-20deg) translateX(620%);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.hero-proofs span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-proofs i {
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.hero-proofs b,
.console-status b,
.console-footer b,
.adapter-chip b,
.field b,
.faq-list summary b,
.site-footer b {
  font: inherit;
}

.agent-console {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  overflow: hidden;
  color: var(--ink);
  background: #f8f8f3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.agent-console::before {
  position: absolute;
  top: 0;
  left: -18%;
  z-index: 5;
  width: 136%;
  height: 86px;
  content: "";
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(200,255,61,.12) 46%, rgba(200,255,61,.34) 50%, rgba(132,168,255,.08) 54%, transparent);
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translateY(-110px);
  animation: consoleScan 7.2s var(--ease-smooth) infinite;
}

.agent-console::after {
  position: absolute;
  inset: 0;
  z-index: 6;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

@keyframes consoleScan {
  0%, 16% { opacity: 0; transform: translateY(-110px); }
  22% { opacity: 0.7; }
  64% { opacity: 0.46; }
  76%, 100% { opacity: 0; transform: translateY(690px); }
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  color: var(--white);
  background: #151c17;
}

.console-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.console-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  background: var(--accent);
  border-radius: 9px;
  animation: consoleLogoBreath 4.4s ease-in-out infinite;
}

@keyframes consoleLogoBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,61,0); }
  50% { box-shadow: 0 0 0 5px rgba(200,255,61,.08), 0 0 18px rgba(200,255,61,.16); }
}

.console-title > div {
  display: flex;
  flex-direction: column;
}

.console-title strong {
  font-size: 12px;
}

.console-title small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(200, 255, 61, 0.08);
  border: 1px solid rgba(200, 255, 61, 0.2);
  border-radius: 999px;
}

.console-status i,
.console-footer i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: statusBreath 2.2s ease-in-out infinite;
}

@keyframes statusBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,61,.08); transform: scale(.86); }
  50% { box-shadow: 0 0 0 5px rgba(200,255,61,0); transform: scale(1); }
}

.ticket-message {
  display: flex;
  gap: 13px;
  margin: 20px 20px 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(16, 22, 18, 0.1);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(16, 22, 18, 0.05);
}

.ticket-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: #325152;
  font-size: 11px;
  font-weight: 700;
  background: #d9eded;
  border-radius: 50%;
}

.ticket-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.ticket-meta strong {
  font-size: 10px;
}

.ticket-meta span {
  color: #89918c;
  font-size: 9px;
}

.ticket-message p {
  margin: 0;
  color: #354039;
  font-size: 12px;
  line-height: 1.65;
}

.trace-list {
  position: relative;
  margin: 18px 22px 16px;
}

.trace-list::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 15px;
  width: 1px;
  content: "";
  background: #d4d9d4;
}

.trace-list::after {
  position: absolute;
  top: 14px;
  left: 12px;
  z-index: 3;
  width: 7px;
  height: 7px;
  content: "";
  opacity: 0;
  background: var(--accent);
  border: 1px solid rgba(16, 22, 18, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,255,61,.12), 0 0 14px rgba(147,200,0,.36);
  pointer-events: none;
  transform: translateY(0) scale(.72);
  animation: tracePacket 4.8s var(--ease-smooth) infinite;
}

@keyframes tracePacket {
  0%, 8% { opacity: 0; transform: translateY(0) scale(.72); }
  16%, 68% { opacity: 1; }
  82%, 100% { opacity: 0; transform: translateY(192px) scale(.9); }
}

.trace-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  padding: 9px 0;
  opacity: 0.48;
}

.trace-row.is-complete,
.trace-row.is-active {
  opacity: 1;
}

.trace-node {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #7b847e;
  font-size: 9px;
  font-weight: 700;
  background: #eef0eb;
  border: 1px solid #d4d9d4;
  border-radius: 50%;
}

.trace-row.is-complete .trace-node {
  color: #345600;
  background: #e8ffc0;
  border-color: #b7e565;
}

.trace-row.is-active .trace-node {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 0 0 5px rgba(16, 22, 18, 0.08);
}

.trace-row.is-active .trace-node span {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: activeNode 1.4s ease-in-out infinite;
}

@keyframes activeNode {
  50% { box-shadow: 0 0 0 5px rgba(200,255,61,.16); transform: scale(.82); }
}

.trace-copy > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 20px;
}

.trace-copy strong {
  font-size: 11px;
}

.trace-copy small {
  color: #8b948e;
  font-size: 8px;
}

.trace-row.is-active .trace-copy small {
  color: #648900;
  font-weight: 700;
}

.trace-copy p {
  margin: 2px 0 0;
  color: #7a847d;
  font-size: 9px;
}

.tool-strip {
  display: flex !important;
  justify-content: flex-start !important;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.tool-strip span {
  padding: 4px 6px;
  color: #49534c;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  background: #e9ece7;
  border-radius: 4px;
  animation: toolCadence 4.8s ease-in-out infinite;
}

.tool-strip span:nth-child(2) { animation-delay: .38s; }
.tool-strip span:nth-child(3) { animation-delay: .76s; }

@keyframes toolCadence {
  0%, 18%, 70%, 100% { color: #49534c; background: #e9ece7; box-shadow: none; transform: translateY(0); }
  28%, 42% { color: #26330f; background: #e8ffc0; box-shadow: 0 4px 12px rgba(147,200,0,.12); transform: translateY(-1px); }
}

.console-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 22px;
  color: #7b847e;
  font-size: 8px;
  background: #eceee9;
  border-top: 1px solid #dfe3dd;
}

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

.console-footer i {
  width: 5px;
  height: 5px;
  background: #80b300;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 68px;
}

.section-intro-compact {
  grid-template-columns: 1fr;
}

.section-kicker {
  margin-bottom: 18px;
  color: #667069;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.46);
}

.section-kicker-accent {
  color: var(--accent);
}

.section-intro h2,
.integration-copy h2,
.delivery-copy h2,
.faq-title h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 740;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.lifecycle {
  background: var(--paper);
}

.lifecycle-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rail-line {
  position: absolute;
  top: 70px;
  right: 7%;
  left: 7%;
  height: 1px;
  overflow: hidden;
  background: rgba(16, 22, 18, 0.1);
}

.rail-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  height: 100%;
  background: var(--accent-dark);
  box-shadow: 0 0 10px rgba(147, 200, 0, 0.3);
  transform: translateX(-120%);
  animation: travel 5s ease-in-out infinite;
}

.rail-line span::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--accent-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(147,200,0,.08), 0 0 12px rgba(147,200,0,.45);
  transform: translateY(-50%);
}

@keyframes travel {
  0% { opacity: 0; transform: translateX(-120%); }
  10%, 62% { opacity: 1; }
  72%, 100% { opacity: 0; transform: translateX(660%); }
}

.stage-card {
  position: relative;
  min-height: 270px;
  padding: 24px 22px 26px;
  border-left: 1px solid var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}

.stage-card:last-child {
  border-right: 1px solid var(--line);
}

.stage-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.56);
  transform: translateY(-8px);
}

.stage-card-accent {
  background: var(--ink);
  color: var(--white);
}

.stage-card-accent:hover {
  background: #1a231c;
}

.stage-index {
  color: #8b938e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.stage-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 18px 0 26px;
  background: #e4e2da;
  border-radius: 50%;
}

.lifecycle-rail.is-visible .stage-card:nth-child(2) .stage-icon { animation: iconWake .9s var(--ease-out-expo) .08s both; }
.lifecycle-rail.is-visible .stage-card:nth-child(3) .stage-icon { animation: iconWake .9s var(--ease-out-expo) .17s both; }
.lifecycle-rail.is-visible .stage-card:nth-child(4) .stage-icon { animation: iconWake .9s var(--ease-out-expo) .26s both; }
.lifecycle-rail.is-visible .stage-card:nth-child(5) .stage-icon { animation: iconWake .9s var(--ease-out-expo) .35s both; }
.lifecycle-rail.is-visible .stage-card:nth-child(6) .stage-icon { animation: iconWake .9s var(--ease-out-expo) .44s both; }
.lifecycle-rail.is-visible .stage-card:nth-child(7) .stage-icon { animation: iconWake .9s var(--ease-out-expo) .53s both; }

@keyframes iconWake {
  from { opacity: .42; transform: translateY(8px) scale(.88); }
  60% { opacity: 1; transform: translateY(-2px) scale(1.04); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stage-card-accent .stage-icon {
  background: var(--accent);
}

.stage-card h3 {
  margin: 0 0 9px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.stage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.stage-card-accent p {
  color: rgba(255, 255, 255, 0.62);
}

.stage-icon span {
  position: absolute;
  display: block;
  border: 1.5px solid var(--ink);
}

.icon-inbox span:first-child {
  top: 20px;
  left: 17px;
  width: 30px;
  height: 24px;
  border-radius: 4px;
}

.icon-inbox span:last-child {
  top: 31px;
  left: 22px;
  width: 20px;
  height: 1px;
  border-width: 1px 0 0;
}

.icon-context span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.icon-context span:nth-child(1) { top: 16px; left: 27px; }
.icon-context span:nth-child(2) { top: 37px; left: 15px; }
.icon-context span:nth-child(3) { top: 37px; right: 15px; }

.icon-action span:first-child {
  top: 17px;
  left: 17px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.icon-action span:last-child {
  top: 25px;
  left: 30px;
  width: 8px;
  height: 14px;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.icon-collab span {
  width: 20px;
  height: 16px;
  border-radius: 7px;
}

.icon-collab span:nth-child(1) { top: 17px; left: 12px; }
.icon-collab span:nth-child(2) { right: 12px; bottom: 17px; }
.icon-collab span:nth-child(3) {
  top: 31px;
  left: 30px;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.icon-track span:first-child {
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.icon-track span:nth-child(2) {
  top: 31px;
  left: 20px;
  width: 24px;
  border-width: 1.5px 0 0;
}

.icon-track span:nth-child(3) {
  top: 20px;
  left: 31px;
  height: 24px;
  border-width: 0 0 0 1.5px;
}

.icon-memory span {
  left: 18px;
  width: 28px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.icon-memory span:nth-child(1) { top: 15px; }
.icon-memory span:nth-child(2) { top: 26px; }
.icon-memory span:nth-child(3) { top: 37px; }

.integration {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0d130f;
  isolation: isolate;
}

.integration-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,.6) .7px, transparent .7px);
  background-size: 7px 7px;
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 60px;
  align-items: center;
  min-height: 580px;
}

.integration-copy h2 {
  font-size: clamp(40px, 3.8vw, 52px);
}

.integration-copy h2 span {
  color: var(--accent);
}

.integration-copy > p {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(200, 255, 61, 0.4);
}

.integration-copy .text-link {
  margin-top: 30px;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.adapter-map {
  position: relative;
  min-height: 560px;
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring-outer {
  width: 500px;
  height: 500px;
  border-style: dashed;
  animation: rotate 50s linear infinite;
}

.map-ring-inner {
  width: 310px;
  height: 310px;
  border-color: rgba(200, 255, 61, 0.16);
  animation: rotateReverse 34s linear infinite;
}

.map-ring-outer::before,
.map-ring-inner::before {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200,255,61,.06), 0 0 16px rgba(200,255,61,.48);
  transform: translateX(-50%);
}

.map-ring-inner::before {
  top: auto;
  bottom: -3px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(132,168,255,.06), 0 0 14px rgba(132,168,255,.44);
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.map-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 126px;
  height: 82px;
  padding: 13px;
  background: #1a221c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.map-node > span {
  position: absolute;
  top: 8px;
  right: 9px;
  color: rgba(255, 255, 255, 0.27);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.map-node strong {
  font-size: 12px;
}

.map-node small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.map-node-center {
  top: 50%;
  left: 50%;
  align-items: center;
  width: 194px;
  height: 194px;
  text-align: center;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(200,255,61,.06), 0 30px 80px rgba(0,0,0,.4);
  transform: translate(-50%, -50%);
  animation: coreBreathe 4.6s ease-in-out infinite;
}

@keyframes coreBreathe {
  0%, 100% { box-shadow: 0 0 0 18px rgba(200,255,61,.06), 0 30px 80px rgba(0,0,0,.4); }
  50% { box-shadow: 0 0 0 24px rgba(200,255,61,.035), 0 34px 92px rgba(0,0,0,.46), 0 0 42px rgba(200,255,61,.08); }
}

.map-node-center .map-pulse {
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(200, 255, 61, 0.35);
  border-radius: 50%;
  animation: corePulse 2.8s ease-out infinite;
}

@keyframes corePulse {
  0% { opacity: .8; transform: scale(.9); }
  80%, 100% { opacity: 0; transform: scale(1.16); }
}

.map-node-center small {
  color: rgba(16, 22, 18, 0.55);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.map-node-center strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.map-node-center em {
  margin-top: 4px;
  color: rgba(16, 22, 18, 0.58);
  font-size: 9px;
  font-style: normal;
}

.map-node-a { top: 24px; left: 50%; transform: translateX(-50%); }
.map-node-b { top: 50%; right: 4px; transform: translateY(-50%); }
.map-node-c { bottom: 24px; left: 50%; transform: translateX(-50%); }
.map-node-d { top: 50%; left: 4px; transform: translateY(-50%); }

.map-connector {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 125px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: top center;
}

.map-connector::after {
  position: absolute;
  top: -30px;
  left: 0;
  width: 1px;
  height: 34px;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transform: translateY(0);
  animation: dataFlow 2.8s linear infinite;
}

.map-connector-one { transform: rotate(180deg); }
.map-connector-two { transform: rotate(-90deg); }
.map-connector-three { transform: rotate(0deg); }
.map-connector-four { transform: rotate(90deg); }
.map-connector-two::after { animation-delay: .7s; }
.map-connector-three::after { animation-delay: 1.4s; }
.map-connector-four::after { animation-delay: 2.1s; }

@keyframes dataFlow {
  to { transform: translateY(160px); }
}

.adapter-chip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: auto;
  padding: 9px 12px;
  color: rgba(255,255,255,.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}

.adapter-chip i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: statusBreath 2.2s ease-in-out infinite;
}

.adapter-chip span {
  color: rgba(255,255,255,.33);
  letter-spacing: 0;
}

.industries {
  background: var(--paper);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-card {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, color .25s ease;
}

.industry-card:hover {
  color: var(--white);
  background: var(--ink);
}

.industry-number {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
}

.industry-card h3 {
  margin: 62px 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .05em;
}

.industry-card:hover p {
  color: rgba(255,255,255,.58);
}

.industry-principle {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin: 24px 0 0;
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
}

.industry-principle a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.delivery {
  color: var(--white);
  background: var(--ink);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  gap: 80px;
  align-items: start;
}

.delivery-copy h2 {
  font-size: clamp(40px, 3.7vw, 50px);
}

.delivery-copy {
  position: sticky;
  top: 120px;
}

.delivery-copy > p {
  max-width: 540px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
}

.delivery-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.14);
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: padding-left .25s ease, background .25s ease;
}

.delivery-steps li:hover {
  padding-left: 16px;
  background: rgba(255,255,255,.025);
}

.delivery-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  background: var(--accent);
  border-radius: 50%;
}

.delivery-steps strong {
  font-size: 19px;
}

.delivery-steps p {
  max-width: 430px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.54);
  font-size: 13px;
}

.faq-section {
  background: #e7e4da;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.faq-title {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  font-size: 16px;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -6px 60px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  color: var(--white);
  background: #0b110d;
  isolation: isolate;
}

.contact-grid {
  opacity: .08;
  mask-image: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 8px;
}

.contact-copy > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.85;
}

.form-shell {
  padding: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 25px;
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
}

.lead-form {
  padding: 34px;
  color: var(--ink);
  background: #f7f6f0;
  border-radius: 17px;
}

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

.form-head > div {
  display: flex;
  flex-direction: column;
}

.form-head span {
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.form-head h3 {
  margin: 4px 0 0;
  font-size: 25px;
  letter-spacing: -.035em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field > span {
  color: #5f6862;
  font-size: 10px;
  font-weight: 650;
}

.field em {
  color: #d84b27;
  font-style: normal;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #eeede7;
  border: 1px solid transparent;
  border-radius: 9px;
  outline: 0;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.field input {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 108px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #989f9a;
}

.field input:focus,
.field textarea:focus {
  background: var(--white);
  border-color: #91bf1f;
  box-shadow: 0 0 0 3px rgba(145,191,31,.12);
}

.field-full {
  margin-top: 4px;
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 18px;
  color: #737c76;
  font-size: 9px;
  cursor: pointer;
}

.consent input {
  width: 14px;
  height: 14px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 57px;
  margin-top: 22px;
  padding: 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.submit-button i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  font-style: normal;
  background: var(--accent);
  border-radius: 50%;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #273029;
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-note {
  margin: 10px 0 0;
  color: #888f8a;
  font-size: 9px;
  text-align: center;
}

.form-note.is-success {
  color: #477000;
  font-weight: 700;
}

.form-note.is-error {
  color: #a43c2d;
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.site-footer {
  color: var(--white);
  background: #070b08;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 50px;
  align-items: center;
  min-height: 140px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-main > p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.footer-back {
  display: inline-flex;
  gap: 13px;
  color: rgba(255,255,255,.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-back span {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  padding-top: 22px;
  padding-bottom: 22px;
  color: rgba(255,255,255,.28);
  font-size: 8px;
  letter-spacing: .08em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

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

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 4px;
}

html[lang="en"] .site-nav {
  gap: 21px;
  font-size: 12px;
}

html[lang="en"] .hero h1 {
  font-size: clamp(48px, 4.45vw, 64px);
  letter-spacing: -0.05em;
}

html[lang="en"] .stage-card p {
  font-size: 12px;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero-lead {
    max-width: 760px;
  }

  .agent-console {
    max-width: 720px;
    margin: 0;
    transform: none;
  }

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

  .rail-line {
    display: none;
  }

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

  .integration-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .integration-copy {
    max-width: 760px;
  }

  .adapter-map {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .delivery-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .delivery-copy,
  .faq-title {
    position: static;
  }

  .faq-layout {
    gap: 70px;
  }

  .contact-copy {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section,
  .contact-section {
    padding: 92px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 24px;
    visibility: hidden;
    background: rgba(11,17,13,.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 20px 0;
    color: rgba(255,255,255,.8);
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .site-nav .language-switch {
    align-self: flex-start;
    margin-top: 22px;
    padding: 9px 11px;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 26px;
    padding: 17px 20px;
    border-radius: 12px;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero-layout {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 48px;
  }

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

  .stage-card {
    min-height: 270px;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-shell {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
  }

  .brand-logo {
    width: 124px;
  }

  .hero-layout {
    gap: 56px;
    padding-top: 112px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -.06em;
  }

  html[lang="en"] .hero h1 {
    font-size: 40px;
  }

  .hero h1 br:first-child {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proofs {
    gap: 12px;
  }

  .agent-console {
    margin-inline: -2px;
    border-radius: 18px;
  }

  .console-topbar {
    padding: 14px;
  }

  .console-status {
    display: none;
  }

  .ticket-message {
    margin: 13px;
    padding: 13px;
  }

  .trace-list {
    margin: 12px 15px;
  }

  .tool-strip span:last-child {
    display: none;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .section-intro h2,
  .integration-copy h2,
  .delivery-copy h2,
  .faq-title h2,
  .contact-copy h2 {
    font-size: 36px;
  }

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

  .stage-card {
    min-height: 260px;
    padding-inline: 16px;
    border-right: 1px solid var(--line);
  }

  .stage-icon {
    margin-bottom: 20px;
  }

  .stage-card h3 {
    font-size: 19px;
  }

  .stage-card p {
    font-size: 11px;
  }

  .integration-layout {
    gap: 50px;
    min-height: auto;
  }

  .adapter-map {
    min-height: 440px;
    transform: scale(.86);
    transform-origin: center;
  }

  .map-ring-outer {
    width: 410px;
    height: 410px;
  }

  .map-ring-inner {
    width: 260px;
    height: 260px;
  }

  .map-node-center {
    width: 160px;
    height: 160px;
  }

  .map-node-center strong {
    font-size: 19px;
  }

  .map-node-a { top: 4px; }
  .map-node-b { right: -25px; }
  .map-node-c { bottom: 4px; }
  .map-node-d { left: -25px; }

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

  .industry-card {
    min-height: 175px;
    padding: 20px 16px;
  }

  .industry-card h3 {
    margin-top: 38px;
    font-size: 18px;
  }

  .industry-card p {
    font-size: 9px;
    letter-spacing: .02em;
  }

  .industry-principle {
    align-items: flex-start;
    flex-direction: column;
  }

  .delivery-layout {
    gap: 50px;
  }

  .delivery-steps li {
    grid-template-columns: 42px 1fr;
    gap: 15px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .contact-layout {
    gap: 55px;
  }

  .form-shell {
    margin-inline: -5px;
    padding: 5px;
    border-radius: 20px;
  }

  .lead-form {
    padding: 24px 18px;
    border-radius: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 36px;
  }

  .footer-back {
    grid-row: 2;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

  .scroll-progress,
  .hero::after,
  .agent-console::before,
  .trace-list::after {
    display: none;
  }
}
