:root {
  --ink: #0d0d0b;
  --ink-soft: #26241f;
  --muted: #6d675f;
  --paper: #fcf9f4;
  --paper-2: #f5efe4;
  --panel: #fffdf8;
  --line: #ded5c4;
  --gold: #ffd26d;
  --gold-deep: #bd7d11;
  --sage: #667f65;
  --oxide: #b45d3c;
  --shadow: 0 28px 70px rgba(13, 13, 11, 0.12);
  --radius: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --hero-scroll: 0;
  --process-progress: 0;
  --process-progress-width: 0%;
  --mx: 50vw;
  --my: 30vh;
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  --hero-stage-y: 0px;
  --hero-stage-scale: 1;
  --hero-console-y: 0px;
  --hero-console-rotate: 0deg;
  --hero-shine-x: 0px;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-image-rotate: -3deg;
  --signal-shift: 0px;
  --map-x: 0px;
  --map-y: 0px;
  --use-case-image-y: 0px;
  --use-case-image-scale: 1.02;
  color-scheme: light;
  font-family:
    Inter, "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 210, 109, 0.18), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, #f3f1eb 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 210, 109, 0.22), rgba(115, 91, 255, 0.08) 38%, transparent 68%);
  filter: blur(24px);
  opacity: 0.72;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) - 210px), calc(var(--my) - 210px), 0);
  transition:
    opacity 220ms ease,
    transform 90ms linear;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(222, 213, 196, 0.78);
  border-radius: 999px;
  background: rgba(252, 249, 244, 0.86);
  box-shadow: 0 18px 50px rgba(13, 13, 11, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(252, 249, 244, 0.96);
  border-color: rgba(13, 13, 11, 0.16);
  box-shadow: 0 18px 60px rgba(13, 13, 11, 0.14);
}

.brand img,
.footer-logo img {
  width: 158px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(13, 13, 11, 0.64);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  padding: 0 20px;
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 14px 32px rgba(13, 13, 11, 0.18);
}

.language-toggle {
  display: inline-flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

.language-toggle button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(13, 13, 11, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.language-toggle button:hover,
.language-toggle button.is-active {
  background: var(--ink);
  color: var(--gold);
}

.language-toggle button:hover {
  transform: translateY(-1px);
}

.button {
  padding: 0 24px;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 20px 44px rgba(13, 13, 11, 0.2);
}

.button.secondary {
  border-color: rgba(13, 13, 11, 0.14);
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
}

.button.light {
  background: var(--gold);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-content: start;
  gap: 18px;
  padding: 122px 28px 40px;
  background: rgba(252, 249, 244, 0.98);
}

.mobile-panel.is-open {
  display: grid;
}

.mobile-panel a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.45rem;
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 35;
  display: none;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  align-items: center;
  box-shadow: 0 20px 50px rgba(13, 13, 11, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: auto;
  padding: 116px 0 78px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 210, 109, 0.18), transparent 22rem),
    radial-gradient(circle at 78% 18%, rgba(115, 91, 255, 0.11), transparent 30rem),
    radial-gradient(circle at 18% 80%, rgba(102, 127, 101, 0.12), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, #f2f0ea 100%);
}

.hero::before {
  display: none;
}

.hero::after {
  position: absolute;
  right: 6vw;
  bottom: -112px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 210, 109, 0.13);
  filter: blur(42px);
  content: "";
}

.ambient-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.52), transparent 36%),
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.42), transparent 18rem);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1140px;
  margin: 0 auto 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3.05rem, 4.55vw, 4.55rem);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.55rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lede,
.section-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-lede {
  max-width: 790px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.capability-icon svg,
.orbit-node svg,
.ai-core svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.operations-console {
  position: relative;
  width: min(1120px, 100%);
  min-height: 490px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 56px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 210, 109, 0.28), transparent 20%),
    radial-gradient(circle at 80% 62%, rgba(115, 91, 255, 0.14), transparent 26%),
    linear-gradient(145deg, rgba(24, 24, 20, 0.86), rgba(5, 5, 5, 0.96));
  color: #fff;
  box-shadow:
    0 48px 120px rgba(13, 13, 11, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform:
    perspective(1200px)
    rotateX(var(--tilt-rx))
    rotateY(var(--tilt-ry))
    translate3d(0, var(--hero-console-y), 0)
    rotate(var(--hero-console-rotate));
  transition: transform 120ms linear;
  backdrop-filter: blur(24px);
}

.operations-console::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 210, 109, 0.13), transparent 22%),
    rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.operations-console::after {
  position: absolute;
  inset: -40% auto auto -22%;
  width: 320px;
  height: 860px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  pointer-events: none;
  transform:
    translateX(var(--hero-shine-x))
    rotate(22deg);
}

.console-glow {
  position: absolute;
  inset: auto -90px -110px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 210, 109, 0.16);
  filter: blur(38px);
  pointer-events: none;
}

.integration-orbit {
  position: absolute;
  left: 50%;
  top: 112px;
  z-index: 3;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  transform:
    translate3d(calc(-50% + var(--depth-x, 0px)), var(--depth-y, 0px), 0)
    scale(var(--orbit-scale, 1));
}

.orbit-ring,
.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 210, 109, 0.18);
  border-radius: 50%;
  content: "";
}

.orbit-ring {
  animation: slowSpin 22s linear infinite;
}

.orbit-ring::before {
  inset: 38px;
  border-color: rgba(255, 255, 255, 0.09);
}

.orbit-ring::after {
  inset: 84px;
  border-color: rgba(255, 210, 109, 0.22);
  box-shadow: 0 0 44px rgba(255, 210, 109, 0.08);
}

.ai-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  padding: 18px;
  border: 1px solid rgba(255, 210, 109, 0.48);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(145deg, var(--gold), #e7a92e);
  color: var(--ink);
  text-align: center;
  box-shadow:
    0 0 70px rgba(255, 210, 109, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transform: translate(-50%, -50%);
  animation: coreBreath 4.8s ease-in-out infinite;
}

.ai-core svg {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}

.ai-core strong,
.ai-core small {
  display: block;
}

.ai-core strong {
  font-size: 0.86rem;
}

.ai-core small {
  color: rgba(13, 13, 11, 0.62);
  font-size: 0.66rem;
  font-weight: 850;
}

.orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.orbit-node:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(255, 210, 109, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.orbit-node svg {
  width: 16px;
  height: 16px;
}

.node-crm {
  left: -8px;
  top: 92px;
}

.node-mail {
  right: 8px;
  top: 58px;
}

.node-docs {
  left: 26px;
  bottom: 66px;
}

.node-review {
  right: -8px;
  bottom: 88px;
}

.automation-feed {
  position: absolute;
  right: 44px;
  top: 108px;
  z-index: 4;
  width: 245px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(8, 8, 7, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  transform: translate3d(var(--depth-x, 0px), var(--depth-y, 0px), 0);
}

.automation-feed > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.automation-feed p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
}

.automation-feed i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 210, 109, 0.1);
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes coreBreath {
  0%,
  100% {
    box-shadow:
      0 0 58px rgba(255, 210, 109, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow:
      0 0 92px rgba(255, 210, 109, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.56);
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes engineBreath {
  0%,
  100% {
    box-shadow:
      0 0 58px rgba(255, 210, 109, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
    transform: scale(1);
  }

  50% {
    box-shadow:
      0 0 92px rgba(255, 210, 109, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.56);
    transform: scale(1.035);
  }
}

.console-path {
  position: absolute;
  top: 92px;
  right: 42px;
  bottom: 152px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(255, 255, 255, 0.08));
  opacity: 0.6;
}

.console-path span {
  position: absolute;
  right: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 210, 109, 0.12);
}

.console-path span:nth-child(1) {
  top: 12%;
}

.console-path span:nth-child(2) {
  top: 48%;
}

.console-path span:nth-child(3) {
  top: 84%;
}

.console-head,
.signal-board,
.system-tile,
.case-preview,
.audit-panel,
.contact-form {
  border: 1px solid rgba(13, 13, 11, 0.14);
  border-radius: var(--radius);
  background: var(--panel);
}

.console-head {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
  padding: 14px 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  backdrop-filter: blur(18px);
}

.console-head strong {
  color: var(--gold);
}

.signal-board {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 10px;
  left: 46px;
  top: 104px;
  width: 305px;
  margin-top: 0;
  padding: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
}

.signal-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(var(--signal-shift));
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 240ms ease;
}

.signal-row.is-active {
  border-color: rgba(255, 210, 109, 0.5);
  background: rgba(255, 210, 109, 0.1);
  transform: translateX(calc(var(--signal-shift) + 6px));
}

.signal-row:hover {
  border-color: rgba(255, 210, 109, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.signal-row span {
  color: var(--gold);
  font-weight: 900;
}

.signal-row strong {
  display: block;
  margin-bottom: 4px;
}

.signal-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.42;
}

.console-grid {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  left: 46px;
  bottom: 42px;
  width: 220px;
  margin-top: 0;
}

.system-tile {
  min-height: 98px;
  padding: 16px;
  border-radius: 22px;
  background: #fffdf8;
  color: var(--ink);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.system-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.system-tile.dark {
  border-color: rgba(255, 210, 109, 0.28);
  background: #1d1d19;
  color: #fff;
}

.system-tile small,
.case-preview small {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.system-tile.dark small {
  color: var(--gold);
}

.system-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.system-tile span {
  color: var(--muted);
  font-size: 0.88rem;
}

.system-tile.dark span {
  color: rgba(255, 255, 255, 0.62);
}

.visual-stack {
  display: none;
}

.visual-stack img {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 32px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    0 0 0 12px rgba(255, 255, 255, 0.04);
}

.visual-stack figcaption {
  position: absolute;
  right: -12px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  min-width: 118px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 8, 7, 0.68);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.visual-stack figcaption span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-stack figcaption strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.output-rail {
  position: absolute;
  right: 44px;
  bottom: 42px;
  z-index: 5;
  display: grid;
  gap: 12px;
  width: 285px;
}

.output-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.output-card:nth-child(2) {
  transform: translateX(-22px);
}

.output-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 109, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.output-card:nth-child(2):hover {
  transform: translate(-22px, -5px);
}

.output-card span {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  background: rgba(255, 210, 109, 0.16);
  color: var(--gold);
}

.output-card svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.output-card strong {
  color: #fff;
  font-size: 0.9rem;
}

.output-card small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
}

.workflow-theatre {
  min-height: auto;
  padding: 22px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 210, 109, 0.2), transparent 26%),
    radial-gradient(circle at 78% 64%, rgba(115, 91, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(24, 24, 20, 0.9), rgba(6, 6, 6, 0.96));
  transform: translate3d(0, var(--hero-console-y), 0);
}

.workflow-theatre::before {
  inset: 18px;
  border-radius: 30px;
}

.workflow-theatre::after,
.theatre-glow {
  display: none;
}

.theatre-head {
  position: relative;
  z-index: 4;
  margin-bottom: 18px;
}

.stage-lines {
  position: absolute;
  inset: 100px 36px 99px;
  z-index: 1;
  width: calc(100% - 72px);
  height: calc(100% - 199px);
  overflow: visible;
  pointer-events: none;
}

.stage-lines path {
  fill: none;
  stroke: rgba(255, 210, 109, 0.34);
  stroke-dasharray: 9 14;
  stroke-linecap: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  animation: dashFlow 9s linear infinite;
}

.stage-lines path:nth-child(2) {
  stroke: rgba(255, 255, 255, 0.18);
  animation-duration: 11s;
}

.stage-lines path:nth-child(3) {
  animation-duration: 13s;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -220;
  }
}

.workflow-stage-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(210px, 0.86fr) minmax(300px, 1.08fr) minmax(210px, 0.86fr);
  gap: 24px;
  align-items: center;
  min-height: 320px;
  padding: 16px 12px 22px;
}

.workflow-column {
  position: relative;
  display: grid;
  gap: 12px;
}

.stage-label {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.flow-card {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.source-column .flow-card::after,
.output-column .flow-card::before {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(5, 5, 5, 0.78);
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 7px rgba(255, 210, 109, 0.12),
    0 0 28px rgba(255, 210, 109, 0.34);
  content: "";
  transform: translateY(-50%);
}

.source-column .flow-card::after {
  right: 0;
}

.output-column .flow-card::before {
  left: 0;
}

.flow-card:hover,
.flow-card.is-active {
  border-color: rgba(255, 210, 109, 0.42);
  background: rgba(255, 210, 109, 0.12);
}

.flow-card:hover {
  transform: translateY(-5px);
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255, 210, 109, 0.14);
  color: var(--gold);
}

.flow-icon svg,
.engine-core svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-card strong,
.flow-card small {
  display: block;
}

.flow-card strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.flow-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 750;
}

.workflow-engine {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  border-radius: 36px;
}

.engine-ring {
  position: absolute;
  border: 1px solid rgba(255, 210, 109, 0.2);
  border-radius: 50%;
  animation: slowSpin 24s linear infinite;
}

.ring-one {
  inset: 14px;
}

.ring-two {
  inset: 64px;
  border-color: rgba(255, 255, 255, 0.12);
  animation-direction: reverse;
  animation-duration: 30s;
}

.engine-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  padding: 20px;
  border: 1px solid rgba(255, 210, 109, 0.55);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(145deg, var(--gold), #e4a52d);
  color: var(--ink);
  text-align: center;
  box-shadow:
    0 0 82px rgba(255, 210, 109, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform-origin: center;
  animation: engineBreath 4.8s ease-in-out infinite;
}

.engine-core svg {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
}

.engine-core strong,
.engine-core small {
  display: block;
}

.engine-core strong {
  font-size: 1rem;
}

.engine-core small {
  color: rgba(13, 13, 11, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
}

.engine-pills {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.engine-pills span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
}

.workflow-metrics-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-metrics-strip div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

.workflow-metrics-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.workflow-metrics-strip strong,
.workflow-metrics-strip small {
  display: block;
}

.workflow-metrics-strip strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.workflow-metrics-strip small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 750;
}

.workflow-map {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 4;
  width: 280px;
  height: 132px;
  opacity: 0.82;
  transform:
    translate3d(calc(-50% + var(--map-x)), var(--map-y), 0)
    rotate(-4deg);
}

.map-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 42px;
  border: 1px solid rgba(255, 210, 109, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.input-node {
  left: 0;
  top: 54px;
}

.ai-node {
  left: 88px;
  top: 10px;
  width: 68px;
  height: 68px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 44px rgba(255, 210, 109, 0.38);
}

.action-node {
  right: 0;
  bottom: 10px;
}

.map-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 210, 109, 0.08), rgba(255, 210, 109, 0.82), rgba(255, 210, 109, 0.08));
  transform-origin: left center;
}

.line-one {
  top: 58px;
  left: 62px;
  width: 86px;
  transform: rotate(-24deg);
}

.line-two {
  top: 76px;
  left: 142px;
  width: 90px;
  transform: rotate(30deg);
}

.client-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 210, 109, 0.16), transparent 34%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}

.client-band-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 188px;
  padding: 28px 0 32px;
}

.client-band-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-band-copy span {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.25;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: clientRiver 34s linear infinite;
}

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

.client-card {
  display: grid;
  grid-template-rows: 54px auto 1fr;
  align-items: start;
  justify-items: start;
  width: 248px;
  min-height: 138px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.09)),
    rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.client-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 109, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.client-card img {
  align-self: center;
  width: auto;
  max-width: 174px;
  max-height: 46px;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.04);
}

.client-card strong {
  width: 100%;
  margin-top: 7px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.client-card small {
  align-self: start;
  display: block;
  width: 100%;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

@keyframes clientRiver {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section::before {
  position: absolute;
  inset: 10% auto auto 5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 210, 109, 0.1);
  filter: blur(44px);
  content: "";
  pointer-events: none;
}

.section::after {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(13, 13, 11, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: slowSpin 36s linear infinite;
}

section[id] {
  scroll-margin-top: 118px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}

.section-copy {
  max-width: 710px;
}

.section-copy.wide {
  max-width: 850px;
}

.audit-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 210, 109, 0.16), transparent 32%),
    radial-gradient(circle at 84% 90%, rgba(115, 91, 255, 0.08), transparent 34%),
    var(--paper-2);
}

.audit-panel {
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.audit-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding: 14px 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.audit-header strong {
  color: var(--ink);
}

.audit-table {
  display: grid;
  gap: 8px;
}

.audit-scanner {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 170px;
  margin: 2px 0 12px;
  padding: 16px;
  border: 1px solid rgba(13, 13, 11, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 210, 109, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.56);
}

.scanner-orbit {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
}

.scanner-orbit span,
.scanner-orbit::before,
.scanner-orbit::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(189, 125, 17, 0.2);
  border-radius: 50%;
  content: "";
}

.scanner-orbit span:nth-child(1) {
  inset: 24px;
  border-color: rgba(13, 13, 11, 0.12);
}

.scanner-orbit span:nth-child(2) {
  inset: 48px;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 0 36px rgba(255, 210, 109, 0.3);
}

.scanner-orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform-origin: left center;
  animation: scannerSweep 3.6s linear infinite;
}

.scanner-readout small,
.scanner-readout strong,
.scanner-readout p {
  display: block;
}

.scanner-readout small {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scanner-readout strong {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.scanner-readout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.scanner-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scanner-tags span {
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(13, 13, 11, 0.06);
}

@keyframes scannerSweep {
  to {
    transform: rotate(360deg);
  }
}

.audit-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0 14px;
  border-radius: 18px;
  background: #f7f1e6;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.audit-row:hover {
  background: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(189, 125, 17, 0.12);
}

.audit-row span {
  color: var(--gold-deep);
  font-weight: 900;
}

.audit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.problem-section {
  background:
    linear-gradient(180deg, var(--paper-2), var(--paper) 18%),
    var(--paper);
}

.problem-section::before {
  background: rgba(102, 127, 101, 0.1);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 52px;
}

.problem-lead {
  position: relative;
}

.problem-map {
  position: relative;
  width: min(360px, 100%);
  height: 260px;
  margin-top: 34px;
  border: 1px solid rgba(13, 13, 11, 0.09);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 210, 109, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 22px 60px rgba(13, 13, 11, 0.07);
  overflow: hidden;
}

.problem-map::before {
  position: absolute;
  inset: 28px;
  z-index: 1;
  border: 1px solid rgba(13, 13, 11, 0.07);
  border-radius: 50%;
  content: "";
}

.problem-connectors {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.problem-connectors path {
  fill: none;
  stroke: rgba(189, 125, 17, 0.38);
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  animation: dashFlow 12s linear infinite;
}

.problem-connectors path:nth-child(2) {
  animation-duration: 14s;
}

.problem-connectors path:nth-child(3) {
  stroke: rgba(13, 13, 11, 0.18);
  animation-duration: 16s;
}

.problem-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 86px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(13, 13, 11, 0.1);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(13, 13, 11, 0.08);
}

.node-system {
  left: 26px;
  top: 46px;
}

.node-data {
  right: 34px;
  top: 64px;
}

.node-team {
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.node-quality {
  left: 50%;
  top: 50%;
  background: var(--ink);
  color: var(--gold);
  transform: translate(-50%, -50%);
}

.problem-list {
  display: grid;
  gap: 18px;
}

.problem-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  padding: 28px;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(13, 13, 11, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.problem-item:hover {
  transform: translateY(-5px);
  border-color: rgba(189, 125, 17, 0.28);
}

.problem-icon {
  position: relative;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(13, 13, 11, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.72), transparent 38%),
    var(--ink);
  color: var(--gold);
  box-shadow:
    0 18px 40px rgba(13, 13, 11, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.problem-icon svg,
.use-case-icon svg,
.timeline-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.problem-icon small {
  position: absolute;
  right: -8px;
  bottom: -8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 950;
}

.problem-item h3,
.problem-item p {
  grid-column: 2;
}

.problem-item p,
.timeline-item p,
.faq-item p,
.proof-item span,
.trust-list p {
  color: var(--muted);
  line-height: 1.62;
}

.use-case-section {
  margin-top: -26px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 210, 109, 0.16), transparent 28%),
    radial-gradient(circle at 8% 80%, rgba(102, 127, 101, 0.14), transparent 30%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}

.use-case-section::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.use-case-section .section-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.workflow-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.workflow-asset {
  min-height: 286px;
  padding: 12px 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 210, 109, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.workflow-asset:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 109, 0.34);
  background: rgba(255, 255, 255, 0.095);
}

.workflow-asset h3 {
  margin: 18px 8px 8px;
  color: #fff;
}

.workflow-asset p {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.workflow-asset img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.use-case-list {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.use-case-row {
  display: grid;
  grid-template-columns: 54px minmax(170px, 0.34fr) 1fr 210px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.use-case-row:hover,
.use-case-row.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: none;
}

.use-case-row:hover {
  transform: translateY(-2px);
}

.use-case-row > span:not(.use-case-icon) {
  font-weight: 900;
}

.use-case-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 210, 109, 0.18);
  border-radius: 18px;
  background: rgba(255, 210, 109, 0.12);
  color: var(--gold);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.use-case-row:hover .use-case-icon,
.use-case-row.is-active .use-case-icon {
  background: var(--ink);
  color: var(--gold);
  transform: scale(1.04);
}

.use-case-row strong {
  font-size: 1.05rem;
  line-height: 1.45;
}

.use-case-row em {
  color: rgba(255, 255, 255, 0.56);
  font-style: normal;
  font-size: 0.9rem;
  text-align: right;
}

.use-case-row:hover em,
.use-case-row.is-active em {
  color: rgba(13, 13, 11, 0.58);
}

.case-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.6fr);
  gap: 30px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.case-preview p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.case-preview figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  background: #f4efe4;
}

.case-preview img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  opacity: 0.48;
  transform:
    translate3d(0, var(--use-case-image-y), 0)
    scale(var(--use-case-image-scale));
}

.case-lab {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 210, 109, 0.42), transparent 28%),
    rgba(255, 253, 248, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.lab-connectors {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lab-connectors path {
  fill: none;
  stroke: rgba(189, 125, 17, 0.5);
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.lab-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 86px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(13, 13, 11, 0.1);
  border-radius: 999px;
  background: #fffdf8;
  font-size: 0.72rem;
  font-weight: 900;
}

.lab-input {
  left: 22px;
  top: 36px;
}

.lab-ai {
  left: 50%;
  top: 48%;
  background: var(--ink);
  color: var(--gold);
  transform: translate(-50%, -50%);
}

.lab-action {
  right: 22px;
  bottom: 38px;
}

.lab-panel {
  position: absolute;
  z-index: 3;
  left: 22px;
  bottom: 22px;
  min-width: 112px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(13, 13, 11, 0.88);
  color: #fff;
}

.lab-panel small,
.lab-panel strong {
  display: block;
}

.lab-panel small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-panel strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.case-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.case-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: 999px;
  background: #f6efdf;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.process-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 210, 109, 0.16), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(115, 91, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #f6efe4 0%, var(--paper-2) 100%);
}

.process-section::after {
  width: 320px;
  height: 320px;
}

.process-story {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.process-story .section-copy {
  position: sticky;
  top: 138px;
}

.process-meter {
  width: min(360px, 100%);
  height: 10px;
  margin-top: 32px;
  border-radius: 999px;
  background: rgba(13, 13, 11, 0.09);
  overflow: hidden;
}

.process-meter span {
  display: block;
  width: var(--process-progress-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.process-console {
  display: grid;
  gap: 9px;
  width: min(360px, 100%);
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(13, 13, 11, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 48px rgba(13, 13, 11, 0.06);
  backdrop-filter: blur(16px);
}

.process-console > span {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-console p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.process-console i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 6px rgba(255, 210, 109, 0.16);
}

.method-visual {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(13, 13, 11, 0.12);
}

.method-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  margin-top: 0;
  padding-left: 34px;
}

.timeline::before,
.timeline-progress {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 8px;
  width: 3px;
  border-radius: 999px;
  content: "";
}

.timeline::before {
  background: rgba(13, 13, 11, 0.12);
}

.timeline-progress {
  height: var(--process-progress-width);
  max-height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 26px rgba(255, 210, 109, 0.45);
}

.timeline-item {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(13, 13, 11, 0.06);
  transform: translateX(0) scale(0.985);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    background 280ms ease;
}

.timeline-item::after {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 210, 109, 0.34), rgba(255, 255, 255, 0.2));
  content: "";
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.timeline-icon {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.timeline-item::before {
  position: absolute;
  top: 32px;
  left: -33px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--paper-2);
  border-radius: 50%;
  background: rgba(13, 13, 11, 0.2);
  content: "";
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.timeline-item.is-active {
  border-color: rgba(189, 125, 17, 0.42);
  background: #fffdf8;
  box-shadow: 0 26px 70px rgba(13, 13, 11, 0.1);
  transform: scale(1);
}

.timeline-item.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(255, 210, 109, 0.22);
  transform: scale(1.08);
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold-deep);
  font-weight: 900;
}

.proof-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 210, 109, 0.14), transparent 30%),
    linear-gradient(180deg, var(--paper-2), var(--paper) 22%),
    var(--paper);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.proof-system {
  display: grid;
  gap: 18px;
}

.proof-orbit {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(13, 13, 11, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 210, 109, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 48px rgba(13, 13, 11, 0.06);
  overflow: hidden;
}

.proof-ring {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(189, 125, 17, 0.18);
  border-radius: 50%;
  animation: slowSpin 30s linear infinite;
}

.proof-ring::before,
.proof-ring::after {
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(13, 13, 11, 0.08);
  border-radius: 50%;
  content: "";
}

.proof-ring::after {
  inset: 72px;
}

.proof-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border-radius: 30px;
  background: var(--ink);
  color: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(255, 210, 109, 0.2);
}

.proof-core strong,
.proof-core small {
  display: block;
}

.proof-core strong {
  font-size: 2.2rem;
  line-height: 1;
}

.proof-core small {
  color: rgba(255, 210, 109, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-dot {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 58px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(13, 13, 11, 0.1);
}

.dot-one {
  left: 18%;
  top: 28%;
}

.dot-two {
  right: 18%;
  top: 34%;
}

.dot-three {
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
}

.proof-board {
  display: grid;
  gap: 14px;
}

.proof-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 108px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(13, 13, 11, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.proof-item:hover {
  transform: translateY(-5px);
  border-color: rgba(189, 125, 17, 0.3);
  background: #fffdf8;
}

.proof-item strong {
  font-size: 1.05rem;
}

.proof-logo {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 92px;
  height: 70px;
  border: 1px solid rgba(13, 13, 11, 0.08);
  border-radius: 22px;
  background: #fffdf8;
}

.proof-logo img {
  max-width: 72px;
  max-height: 44px;
  object-fit: contain;
}

.proof-logo.compact img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.trust-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 210, 109, 0.12), transparent 28%),
    #fffdf8;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.product-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 13, 11, 0.12);
  border-radius: var(--radius-xl);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.trust-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.trust-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 12px 0;
}

.trust-list span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 210, 109, 0.24);
}

.trust-list p {
  margin: 0;
}

.faq-section {
  background:
    linear-gradient(180deg, #fffdf8, var(--paper-2)),
    var(--paper-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(13, 13, 11, 0.14);
  border-radius: 24px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(13, 13, 11, 0.05);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  font-weight: 850;
  cursor: pointer;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold-deep);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  position: relative;
  padding: 96px 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 210, 109, 0.18), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(115, 91, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #11110e, #050505),
    var(--ink);
  color: #fff;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.25);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: 0;
}

.contact-form input {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.footer {
  padding: 34px 0;
  background: var(--paper);
  border-top: 1px solid rgba(13, 13, 11, 0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer div:last-child {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
}

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

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

  .hero {
    padding: 112px 0 72px;
  }

  h1 {
    max-width: 960px;
    font-size: clamp(2.85rem, 6.2vw, 4.05rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.35rem, 5.6vw, 3.05rem);
  }

  .hero-lede,
  .section-copy p,
  .contact-copy p {
    font-size: 1.02rem;
    line-height: 1.66;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .language-toggle {
    justify-self: end;
  }

  .menu-button {
    display: block;
  }

  .hero::before {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .problem-grid,
  .process-story,
  .proof-layout,
  .trust-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .operations-console {
    background-color: var(--ink);
  }

  .integration-orbit {
    width: 340px;
    height: 340px;
  }

  .output-rail,
  .automation-feed {
    width: 230px;
  }

  .workflow-stage-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 0;
  }

  .stage-lines {
    display: none;
  }

  .source-column .flow-card::after,
  .output-column .flow-card::before {
    display: none;
  }

  .workflow-engine {
    min-height: 280px;
    order: 0;
  }

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

  .process-story .section-copy {
    position: static;
  }

  .method-visual {
    max-width: 720px;
  }

  .use-case-row {
    grid-template-columns: 48px 1fr;
    gap: 8px 14px;
  }

  .workflow-asset-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .use-case-row > span:not(.use-case-icon),
  .use-case-row strong,
  .use-case-row em {
    grid-column: 2;
  }

  .use-case-icon {
    grid-row: 1 / 4;
  }

  .use-case-row em {
    text-align: left;
  }

  .case-preview {
    grid-template-columns: 1fr;
  }

  .proof-system {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 10px;
  }

  .brand img {
    width: 122px;
  }

  .language-toggle {
    min-height: 38px;
  }

  .language-toggle button {
    min-width: 36px;
    font-size: 0.72rem;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 56px;
  }

  h1 {
    font-size: clamp(2.65rem, 11.5vw, 3.25rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2.05rem, 9vw, 2.45rem);
    line-height: 1.05;
  }

  .hero-lede,
  .section-copy p,
  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .console-grid,
  .client-band-inner,
  .proof-item,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .operations-console {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 12px;
    border-radius: 34px;
  }

  .console-head,
  .signal-board,
  .console-grid,
  .automation-feed,
  .output-rail,
  .workflow-map,
  .integration-orbit {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    transform: none;
  }

  .integration-orbit {
    width: min(100%, 330px);
    height: 330px;
    margin: 6px auto;
  }

  .workflow-map {
    display: none;
  }

  .automation-feed,
  .output-rail {
    width: 100%;
  }

  .output-card:nth-child(2),
  .output-card:nth-child(2):hover {
    transform: none;
  }

  .signal-board,
  .console-grid {
    width: 100%;
  }

  .workflow-theatre {
    padding: 14px;
    border-radius: 34px;
  }

  .workflow-stage-grid {
    gap: 16px;
    min-height: auto;
    padding: 8px 0 12px;
  }

  .workflow-engine {
    min-height: 238px;
  }

  .engine-core {
    width: 136px;
    height: 136px;
  }

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

  .workflow-asset-grid {
    gap: 12px;
    margin-top: 26px;
  }

  .workflow-asset {
    min-height: auto;
    padding: 14px;
    border-radius: 28px;
  }

  .console-path,
  .visual-stack {
    display: none;
  }

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

  .client-band {
    margin-top: -24px;
    border-radius: 34px 34px 0 0;
  }

  .client-band-inner {
    gap: 18px;
    min-height: auto;
    padding: 26px 0;
  }

  .client-band-copy span {
    max-width: none;
  }

  .client-marquee {
    width: calc(100vw - 28px);
    margin-left: 0;
  }

  .client-card {
    width: 214px;
    border-radius: 24px;
  }

  .audit-row {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .audit-scanner {
    grid-template-columns: 1fr;
  }

  .scanner-orbit {
    margin: 0 auto;
  }

  .audit-row p {
    grid-column: 2;
  }

  .problem-item {
    grid-template-columns: 1fr;
  }

  .problem-icon {
    grid-row: auto;
    margin-bottom: 18px;
  }

  .problem-item h3,
  .problem-item p {
    grid-column: 1;
  }

  .problem-map {
    height: 220px;
  }

  .case-lab {
    inset: 12px;
  }

  .lab-node {
    min-width: 72px;
    font-size: 0.68rem;
  }

  .lab-panel {
    left: 12px;
    bottom: 12px;
  }

  .proof-orbit {
    min-height: 210px;
  }

  .timeline-item {
    min-height: auto;
    padding: 22px;
  }

  .method-visual {
    margin-top: 22px;
    border-radius: 28px;
  }

  .timeline-item span {
    margin-bottom: 32px;
  }

  .product-visual img {
    height: 320px;
  }

  .footer div:last-child {
    flex-direction: column;
    gap: 8px;
  }
}

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

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