:root {
  --page: #020304;
  --ink: #f4f6f8;
  --muted: rgba(244, 246, 248, 0.68);
  --dim: rgba(244, 246, 248, 0.46);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --blue: #7aa7ff;
  --green: #9ed957;
  --silver: #c6cbd3;
  --warm: #d2b98c;
  --radius: 8px;
  --section-x: clamp(18px, 5vw, 88px);
  --section-y: clamp(90px, 13vw, 168px);
  --font: Inter, "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="color"]):not([type="file"]):not([type="range"]),
  select,
  textarea {
    font-size: 16px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
canvas {
  display: block;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
p,
strong,
span,
dt,
dd {
  word-break: keep-all;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.scene-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #020304;
}

.scene-shade,
.scene-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.scene-shade {
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.92), rgba(2, 3, 4, 0.28) 52%, rgba(2, 3, 4, 0.78)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.44), rgba(2, 3, 4, 0.06) 32%, rgba(2, 3, 4, 0.36) 74%, #020304);
}

.scene-shade::before,
.scene-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-shade::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76));
  opacity: calc(var(--scene-dim, 0) * 0.54);
}

.scene-shade::after {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22) 16%, rgba(255, 255, 255, 0.06) 36%, transparent 66%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  mix-blend-mode: screen;
  opacity: calc(var(--scene-white, 0) * 0.56);
}

.scene-noise {
  z-index: 2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 100% 7px, 96px 100%;
  mix-blend-mode: screen;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: 2px;
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--silver), var(--blue), var(--green));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 10px var(--section-x);
  color: rgba(255, 255, 255, 0.82);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 3, 4, 0.68);
  backdrop-filter: blur(26px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  min-width: 0;
}

.brand-mark img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 18px 34px rgba(122, 167, 255, 0.24));
}

.brand-mark span {
  color: #fff;
  font-size: 13px;
  font-weight: 860;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.header-action,
.primary-action,
.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.site-nav a {
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.54);
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.header-action {
  justify-self: end;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.052);
  color: rgba(255, 255, 255, 0.86);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-action:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.header-action svg,
.primary-action svg,
.scroll-cue svg {
  width: 16px;
  height: 16px;
}

main,
.site-footer {
  position: relative;
  z-index: 10;
}

main > section {
  scroll-margin-top: 86px;
}

.intro-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 96px var(--section-x) 72px;
  overflow: hidden;
}

.intro-copy {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 15px;
  width: min(560px, 100%);
  text-align: center;
  transform: translateY(22px);
}

.intro-kicker {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 420;
  line-height: 1.82;
  animation: introSignal 4.8s ease-in-out infinite;
}

.intro-copy h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 780;
  line-height: 1.04;
  text-shadow: 0 24px 74px rgba(122, 167, 255, 0.2);
  opacity: 0;
  animation: titleRise 2.3s ease 0.7s forwards;
}

.intro-sub {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 540;
  opacity: 0;
  animation: titleRise 2.6s ease 1.25s forwards;
}

.intro-links,
.closing-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}

.intro-links {
  opacity: 0;
  animation: titleRise 2.4s ease 1.7s forwards;
}

.intro-links a,
.text-link,
.closing-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 680;
  transition: color 180ms ease, transform 180ms ease;
}

.intro-links a::after,
.text-link::after,
.closing-links a::after {
  content: none;
}

.intro-links a:hover,
.text-link:hover,
.closing-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.intro-meta {
  position: absolute;
  left: var(--section-x);
  right: var(--section-x);
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 720;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  min-height: 34px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.54);
  transform: translateX(-50%);
}

.scroll-cue svg {
  animation: cueMove 1.7s ease-in-out infinite;
}

@keyframes cueMove {
  0%,
  100% {
    transform: translateY(-2px);
    opacity: 0.44;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

@keyframes introSignal {
  0%,
  100% {
    opacity: 0.52;
  }
  18% {
    opacity: 0.84;
  }
  21% {
    opacity: 0.48;
  }
  24% {
    opacity: 0.78;
  }
  62% {
    opacity: 0.64;
  }
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.platform-section,
.intelligence-section,
.workflow-section,
.trust-section,
.closing-section,
.ops-system-section,
.role-section,
.layer-section,
.decision-section,
.motion-section,
.execution-section,
.start-section {
  min-height: 108svh;
  padding: var(--section-y) var(--section-x);
}

.section-head,
.decision-copy,
.trust-copy,
.closing-copy {
  display: grid;
  gap: 18px;
  width: min(900px, 100%);
}

.section-head--narrow {
  width: min(680px, 100%);
}

.section-head--center {
  justify-items: center;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 780;
}

.section-head h2,
.decision-copy h2,
.trust-copy h2,
.closing-copy h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 790;
  line-height: 1.12;
}

.section-head p:not(.section-kicker),
.decision-copy p:not(.section-kicker),
.trust-copy p:not(.section-kicker),
.closing-copy p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 460;
  line-height: 1.82;
}

.ops-system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 108px);
  overflow: hidden;
}

.role-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(320px, 0.4fr);
  align-items: center;
  gap: clamp(36px, 7vw, 112px);
  overflow: hidden;
}

.role-section--cmo {
  grid-template-columns: minmax(0, 0.46fr) minmax(400px, 0.54fr);
}

.role-section .section-head {
  max-width: 780px;
}

.ops-orbit {
  position: relative;
  width: min(720px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.ops-orbit::before,
.ops-orbit::after {
  content: "";
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle, rgba(122, 167, 255, 0.14), rgba(122, 167, 255, 0.028) 58%, transparent 72%);
  filter: blur(1px);
  animation: orbitBreath 6.8s ease-in-out infinite;
}

.ops-orbit::after {
  inset: 31%;
  background: radial-gradient(circle, rgba(158, 217, 87, 0.12), transparent 70%);
  animation-delay: -2s;
}

.ops-orbit__ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-18deg);
  animation: orbitSpin 18s linear infinite;
}

.ops-orbit__ring--inner {
  inset: 22%;
  border-color: rgba(122, 167, 255, 0.22);
  transform: rotateX(70deg) rotateZ(28deg);
  animation-duration: 14s;
  animation-direction: reverse;
}

.ops-orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(circle, rgba(122, 167, 255, 0.18), rgba(2, 3, 4, 0.36) 72%);
  box-shadow: 0 0 80px rgba(122, 167, 255, 0.2);
  transform: translate(-50%, -50%) translateZ(60px);
  animation: coreFloat 7s ease-in-out infinite;
}

.ops-orbit__core span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  font-weight: 760;
}

.ops-orbit__core strong {
  font-size: 18px;
  font-weight: 780;
}

.ops-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 740;
  background: rgba(8, 11, 16, 0.64);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%) translate3d(var(--tx), var(--ty), var(--tz, 0)) rotateX(calc(var(--my, 0) * -4deg)) rotateY(calc(var(--mx, 0) * 5deg));
  animation: nodeFloat 5.8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.ops-node--market { --tx: -255px; --ty: -178px; --tz: 28px; --delay: -0.3s; }
.ops-node--sourcing { --tx: -84px; --ty: -224px; --tz: 44px; --delay: -1.2s; }
.ops-node--product { --tx: 114px; --ty: -206px; --tz: 36px; --delay: -2.4s; }
.ops-node--usp { --tx: 256px; --ty: -102px; --tz: 20px; --delay: -3.1s; }
.ops-node--position { --tx: 282px; --ty: 52px; --tz: 54px; --delay: -0.8s; }
.ops-node--swot { --tx: 178px; --ty: 198px; --tz: 16px; --delay: -2.9s; }
.ops-node--ads { --tx: -20px; --ty: 246px; --tz: 46px; --delay: -1.7s; }
.ops-node--order { --tx: -220px; --ty: 176px; --tz: 26px; --delay: -2.1s; }
.ops-node--stock { --tx: -304px; --ty: 28px; --tz: 38px; --delay: -3.5s; }
.ops-node--rank { --tx: -264px; --ty: -78px; --tz: 18px; --delay: -2.6s; }
.ops-node--action { --tx: 18px; --ty: -24px; --tz: 90px; --delay: -4s; }

.layer-section {
  display: grid;
  align-content: center;
  overflow: hidden;
}

.layer-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(9, minmax(108px, 1fr));
  gap: 0;
  width: min(1260px, 100%);
  margin: 70px auto 0;
  padding: 24px 0;
  transform-style: preserve-3d;
}

.layer-rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateY(-50%);
}

.layer-rail::after {
  content: "";
  position: absolute;
  left: -24%;
  top: 0;
  width: 22%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(158, 217, 87, 0.28), transparent);
  filter: blur(18px);
  animation: railScan 6.5s ease-in-out infinite;
}

.layer-node {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  min-height: 310px;
  padding: 22px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(calc((var(--i) % 2) * 34px)) rotateX(calc(var(--my, 0) * -5deg)) rotateY(calc(var(--mx, 0) * 7deg));
  transition: transform 220ms ease, color 180ms ease;
}

.layer-node:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.layer-node::before {
  content: "";
  position: absolute;
  inset: 12px 8px;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.42);
  transform: skewY(-7deg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.layer-node span,
.layer-node em {
  color: rgba(158, 217, 87, 0.78);
  font-size: 11px;
  font-style: normal;
  font-weight: 780;
}

.layer-node strong {
  color: #fff;
  font-size: 19px;
  font-weight: 780;
  line-height: 1.32;
}

.layer-node p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.64;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 8vw, 126px);
  overflow: hidden;
}

.signal-field {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  transform-style: preserve-3d;
  perspective: 900px;
}

.signal-field::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 167, 255, 0.12), rgba(122, 167, 255, 0.02) 60%, transparent 72%);
  animation: orbitBreath 7.5s ease-in-out infinite;
}

.signal-line {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform-origin: center;
}

.signal-line--a { transform: rotate(18deg); }
.signal-line--b { transform: rotate(-34deg); }
.signal-line--c { transform: rotate(76deg); opacity: 0.52; }

.signal-core,
.signal-point {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  backdrop-filter: blur(16px);
}

.signal-core {
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.16), transparent 28%),
    rgba(7, 10, 14, 0.62);
  box-shadow: 0 0 86px rgba(122, 167, 255, 0.18);
  transform: translate(-50%, -50%);
  animation: coreFloat 6s ease-in-out infinite;
}

.signal-core span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 760;
}

.signal-core strong {
  color: #fff;
  font-size: 24px;
  font-weight: 780;
}

.signal-point {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 780;
  background: rgba(255, 255, 255, 0.055);
  transform: translate(-50%, -50%) rotateX(calc(var(--my, 0) * -7deg)) rotateY(calc(var(--mx, 0) * 8deg));
  animation: nodeFloat 6.5s ease-in-out infinite;
}

.signal-point--ads { left: 30%; top: 19%; animation-delay: -1s; }
.signal-point--order { left: 79%; top: 38%; animation-delay: -2s; }
.signal-point--stock { left: 62%; top: 82%; animation-delay: -3s; }
.signal-point--rank { left: 16%; top: 66%; animation-delay: -4s; }

.motion-section {
  display: grid;
  align-content: center;
  overflow: hidden;
}

.motion-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin-top: 74px;
}

.motion-path::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 56px;
  height: 2px;
  background: linear-gradient(90deg, rgba(122, 167, 255, 0.08), rgba(158, 217, 87, 0.58), rgba(210, 185, 140, 0.1));
  box-shadow: 0 0 32px rgba(158, 217, 87, 0.2);
}

.motion-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 220px;
  padding-top: 24px;
  text-align: center;
  transform: translateY(calc((var(--i) % 2) * 28px)) rotateX(calc(var(--my, 0) * -5deg)) rotateY(calc(var(--mx, 0) * 5deg));
}

.motion-step::before {
  content: "";
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle, rgba(122, 167, 255, 0.13), rgba(2, 3, 4, 0.28) 70%);
  box-shadow: 0 26px 78px rgba(0, 0, 0, 0.26);
  animation: coreFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.6s);
}

.motion-step span {
  position: absolute;
  top: 62px;
  color: rgba(158, 217, 87, 0.86);
  font-size: 12px;
  font-weight: 780;
}

.motion-step strong {
  margin-top: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 780;
}

.motion-step p {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.64;
}

.execution-section {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.execution-visual {
  position: absolute;
  inset: 10% var(--section-x) 10% auto;
  width: min(48vw, 620px);
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.execution-visual span {
  position: absolute;
  right: 0;
  width: 72%;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(122, 167, 255, 0.08), rgba(158, 217, 87, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(4, 6, 9, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  transform: rotateX(62deg) rotateZ(-20deg) translateY(var(--y));
  animation: prismFloat 7s ease-in-out infinite;
}

.execution-visual span:nth-child(1) { --y: 60px; top: 10%; animation-delay: -0.5s; }
.execution-visual span:nth-child(2) { --y: 220px; top: 28%; width: 92%; animation-delay: -2s; }
.execution-visual span:nth-child(3) { --y: 390px; top: 47%; width: 62%; animation-delay: -3.8s; }

.start-section {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.start-orb {
  position: absolute;
  inset: auto auto 12% 50%;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.start-orb span {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotateX(66deg);
  animation: orbitSpin 20s linear infinite;
}

.start-orb span:nth-child(2) {
  inset: 24%;
  border-color: rgba(158, 217, 87, 0.18);
  animation-duration: 13s;
  animation-direction: reverse;
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes orbitBreath {
  0%,
  100% {
    opacity: 0.58;
    scale: 0.98;
  }
  50% {
    opacity: 1;
    scale: 1.04;
  }
}

@keyframes coreFloat {
  0%,
  100% {
    translate: 0 -4px;
  }
  50% {
    translate: 0 8px;
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    margin-top: -6px;
  }
  50% {
    margin-top: 8px;
  }
}

@keyframes railScan {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  82% {
    transform: translateX(560%);
    opacity: 0;
  }
}

@keyframes prismFloat {
  0%,
  100% {
    translate: 0 -8px;
  }
  50% {
    translate: 0 12px;
  }
}

.commerce-constellation,
.decision-engine,
.execution-field,
.security-vault {
  transform-style: preserve-3d;
}

.commerce-constellation {
  position: relative;
  width: min(760px, 100%);
  min-height: 620px;
  margin: 0 auto;
  isolation: isolate;
  perspective: 1400px;
}

.commerce-constellation::before,
.commerce-constellation::after {
  content: "";
  position: absolute;
  inset: 6%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.11), transparent 18%),
    radial-gradient(circle, rgba(122, 167, 255, 0.16), rgba(122, 167, 255, 0.032) 56%, transparent 72%);
  filter: blur(0.4px);
  transform: rotateX(64deg) rotateZ(-18deg);
  animation: constellationGlow 7.4s ease-in-out infinite;
}

.commerce-constellation::after {
  inset: 22%;
  background: radial-gradient(circle, rgba(158, 217, 87, 0.13), transparent 68%);
  animation-delay: -2.2s;
}

.constellation-shell {
  position: absolute;
  inset: 8% 5%;
  transform: rotateX(64deg) rotateZ(-16deg);
}

.constellation-shell span {
  position: absolute;
  inset: var(--ring-inset, 0);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    inset 0 0 40px rgba(122, 167, 255, 0.06),
    0 0 80px rgba(122, 167, 255, 0.04);
  animation: constellationSpin 22s linear infinite;
}

.constellation-shell span:nth-child(2) {
  --ring-inset: 12%;
  border-color: rgba(122, 167, 255, 0.2);
  animation-duration: 16s;
  animation-direction: reverse;
}

.constellation-shell span:nth-child(3) {
  --ring-inset: 27%;
  border-color: rgba(210, 185, 140, 0.16);
  animation-duration: 28s;
}

.constellation-axis {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  opacity: 0.66;
  transform-origin: center;
}

.constellation-axis--a { transform: rotate(-24deg); }
.constellation-axis--b { transform: rotate(18deg); opacity: 0.42; }
.constellation-axis--c { transform: rotate(72deg); opacity: 0.28; }

.constellation-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 10px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 60% 72%, rgba(158, 217, 87, 0.12), transparent 32%),
    rgba(5, 8, 12, 0.72);
  box-shadow:
    0 0 90px rgba(122, 167, 255, 0.22),
    inset 0 0 44px rgba(255, 255, 255, 0.035);
  transform: translate(-50%, -50%) translateZ(90px);
  animation: constellationFloat 7s ease-in-out infinite;
}

.constellation-core span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 760;
}

.constellation-core strong {
  color: #fff;
  font-size: 18px;
  font-weight: 760;
}

.constellation-list {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.constellation-list li {
  position: absolute;
  min-width: 122px;
  padding: 8px 0 8px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.28;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.72);
  transform: translate3d(0, 0, 0) rotateX(calc(var(--my, 0) * -4deg)) rotateY(calc(var(--mx, 0) * 5deg));
  transition: color 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.constellation-list li::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent);
  transform: translate(-100%, -50%);
}

.constellation-list li:hover {
  color: #fff;
  border-color: rgba(158, 217, 87, 0.68);
}

.constellation-list li:nth-child(1) { left: 10%; top: 13%; }
.constellation-list li:nth-child(2) { left: 44%; top: 4%; }
.constellation-list li:nth-child(3) { right: 6%; top: 20%; }
.constellation-list li:nth-child(4) { right: 1%; top: 47%; }
.constellation-list li:nth-child(5) { right: 16%; bottom: 14%; }
.constellation-list li:nth-child(6) { left: 43%; bottom: 4%; }
.constellation-list li:nth-child(7) { left: 10%; bottom: 17%; }
.constellation-list li:nth-child(8) { left: 0; top: 48%; }
.constellation-list li:nth-child(9) { left: 44%; top: 45%; color: #fff; border-color: rgba(158, 217, 87, 0.62); }

.layer-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(116px, 1fr));
  width: min(1280px, 100%);
  margin: 70px auto 0;
  padding: 30px 0 44px;
  overflow: hidden;
}

.layer-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  box-shadow: 0 0 34px rgba(122, 167, 255, 0.18);
}

.layer-strip::after {
  content: "";
  position: absolute;
  inset: 12px auto 12px -18%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  filter: blur(18px);
  animation: modelSweep 7s ease-in-out infinite;
}

.layer-strip .layer-node {
  min-height: 330px;
  padding: 24px 18px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  box-shadow: none;
  transform: translateY(calc((var(--i) % 2) * 30px)) rotateX(calc(var(--my, 0) * -4deg)) rotateY(calc(var(--mx, 0) * 6deg));
}

.layer-strip .layer-node:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.layer-strip .layer-node::before {
  inset: 0 10px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, transparent, rgba(122, 167, 255, 0.065), transparent);
  transform: skewY(-9deg);
  opacity: 0.72;
}

.layer-strip .layer-node strong {
  align-self: end;
  font-size: 22px;
}

.layer-strip .layer-node p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.decision-engine {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  perspective: 1200px;
  isolation: isolate;
}

.decision-engine::before {
  content: "";
  position: absolute;
  inset: 13%;
  z-index: -1;
  border-radius: 50%;
  background:
    conic-gradient(from 180deg, rgba(122, 167, 255, 0), rgba(122, 167, 255, 0.22), rgba(158, 217, 87, 0.18), rgba(210, 185, 140, 0.08), rgba(122, 167, 255, 0)),
    radial-gradient(circle, rgba(122, 167, 255, 0.12), transparent 68%);
  filter: blur(0.3px);
  transform: rotateX(66deg) rotateZ(-24deg);
  animation: engineTurn 14s linear infinite;
}

.engine-orbit {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-24deg);
  box-shadow:
    inset 0 0 54px rgba(122, 167, 255, 0.08),
    0 0 88px rgba(122, 167, 255, 0.07);
}

.engine-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 178px;
  height: 178px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.18), transparent 30%),
    rgba(5, 8, 12, 0.78);
  box-shadow:
    0 0 90px rgba(158, 217, 87, 0.14),
    inset 0 0 36px rgba(255, 255, 255, 0.04);
  transform: translate(-50%, -50%);
  animation: enginePulse 5.8s ease-in-out infinite;
}

.engine-core span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 760;
}

.engine-core strong {
  color: #fff;
  font-size: 34px;
  font-weight: 740;
  letter-spacing: 0;
}

.engine-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.14), transparent 28%),
    rgba(6, 9, 13, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%) rotateX(calc(var(--my, 0) * -6deg)) rotateY(calc(var(--mx, 0) * 7deg));
  animation: constellationFloat 6.4s ease-in-out infinite;
}

.engine-node--ads { left: 28%; top: 20%; animation-delay: -0.8s; }
.engine-node--order { left: 81%; top: 42%; animation-delay: -1.7s; }
.engine-node--stock { left: 57%; top: 82%; animation-delay: -2.8s; }
.engine-node--rank { left: 16%; top: 63%; animation-delay: -3.8s; }

.action-river {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1180px, 100%);
  margin-top: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.action-river::before {
  content: "";
  position: absolute;
  left: -16%;
  top: 0;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(158, 217, 87, 0.2), transparent);
  filter: blur(16px);
  animation: riverScan 6.8s ease-in-out infinite;
}

.action-river .motion-step {
  position: relative;
  display: grid;
  justify-items: start;
  align-content: space-between;
  min-height: 270px;
  padding: 28px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transform: translateY(calc((var(--i) % 2) * 24px)) rotateX(calc(var(--my, 0) * -4deg)) rotateY(calc(var(--mx, 0) * 5deg));
}

.action-river .motion-step:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.action-river .motion-step::before {
  position: absolute;
  right: 18px;
  bottom: 22px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  opacity: 0.72;
}

.action-river .motion-step span {
  position: static;
  color: rgba(158, 217, 87, 0.76);
}

.action-river .motion-step strong {
  margin-top: 46px;
  font-size: 24px;
}

.action-river .motion-step p {
  max-width: 220px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.execution-field {
  position: absolute;
  inset: 10% var(--section-x) 8% auto;
  width: min(54vw, 720px);
  pointer-events: none;
  perspective: 1400px;
}

.execution-field::before {
  content: "";
  position: absolute;
  inset: 4% -8%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 100% 46px, 74px 100%;
  opacity: 0.44;
  transform: rotateX(62deg) rotateZ(-18deg);
}

.execution-plane {
  position: absolute;
  right: 0;
  width: 88%;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(100deg, rgba(122, 167, 255, 0.08), rgba(158, 217, 87, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(4, 6, 9, 0.42);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.26);
  transform: rotateX(62deg) rotateZ(-18deg) translateY(var(--plane-y));
  animation: planeDrift 7.2s ease-in-out infinite;
}

.execution-plane--top { --plane-y: 56px; top: 8%; width: 68%; animation-delay: -0.4s; }
.execution-plane--mid { --plane-y: 214px; top: 28%; width: 96%; animation-delay: -1.9s; }
.execution-plane--bottom { --plane-y: 386px; top: 49%; width: 76%; animation-delay: -3.4s; }

.execution-section .section-head {
  position: relative;
  z-index: 2;
}

.security-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}

.security-vault {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  isolation: isolate;
  perspective: 1100px;
}

.security-vault::before,
.security-vault::after {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 167, 255, 0.14), transparent 68%);
  animation: constellationGlow 7s ease-in-out infinite;
}

.security-vault::after {
  inset: 23%;
  background: radial-gradient(circle, rgba(158, 217, 87, 0.13), transparent 70%);
  animation-delay: -2s;
}

.security-vault span {
  position: absolute;
  inset: var(--vault-inset, 8%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(var(--vault-rotate, -18deg));
  box-shadow: inset 0 0 38px rgba(255, 255, 255, 0.025);
  animation: constellationSpin 19s linear infinite;
}

.security-vault span:nth-child(2) {
  --vault-inset: 22%;
  --vault-rotate: 28deg;
  border-color: rgba(122, 167, 255, 0.2);
  animation-duration: 13s;
  animation-direction: reverse;
}

.security-vault span:nth-child(3) {
  --vault-inset: 34%;
  --vault-rotate: 72deg;
  border-color: rgba(158, 217, 87, 0.22);
  animation-duration: 22s;
}

.security-vault strong {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.32;
  text-align: center;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.18), transparent 28%),
    rgba(5, 8, 12, 0.76);
  box-shadow: 0 0 76px rgba(122, 167, 255, 0.18);
  transform: translate(-50%, -50%);
}

.security-stage .trust-grid {
  gap: 0;
}

.security-stage .trust-card {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
}

.security-stage .trust-card strong {
  font-size: 15px;
}

.security-stage .trust-card p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.68;
}

.start-orb {
  width: min(86vw, 880px);
  aspect-ratio: 3.2 / 1;
  bottom: 18%;
  opacity: 0.72;
}

.start-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(122, 167, 255, 0.16), rgba(158, 217, 87, 0.07) 34%, transparent 72%);
  filter: blur(10px);
}

.start-orb span {
  inset: auto 4% 42% 4%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: none;
  animation: startHorizon 6s ease-in-out infinite;
}

.start-orb span:nth-child(2) {
  inset: auto 18% 32% 18%;
  border: 0;
  animation-duration: 8s;
}

@keyframes constellationSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes constellationGlow {
  0%,
  100% {
    opacity: 0.52;
    scale: 0.98;
  }
  50% {
    opacity: 1;
    scale: 1.04;
  }
}

@keyframes constellationFloat {
  0%,
  100% {
    translate: 0 -6px;
  }
  50% {
    translate: 0 9px;
  }
}

@keyframes modelSweep {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  82% {
    transform: translateX(720%);
    opacity: 0;
  }
}

@keyframes engineTurn {
  to {
    rotate: 360deg;
  }
}

@keyframes enginePulse {
  0%,
  100% {
    scale: 0.98;
    box-shadow:
      0 0 76px rgba(158, 217, 87, 0.12),
      inset 0 0 36px rgba(255, 255, 255, 0.04);
  }
  50% {
    scale: 1.035;
    box-shadow:
      0 0 118px rgba(122, 167, 255, 0.22),
      inset 0 0 48px rgba(255, 255, 255, 0.06);
  }
}

@keyframes riverScan {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 1;
  }
  82% {
    transform: translateX(760%);
    opacity: 0;
  }
}

@keyframes planeDrift {
  0%,
  100% {
    translate: 0 -10px;
  }
  50% {
    translate: 0 12px;
  }
}

@keyframes startHorizon {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleX(0.86);
  }
  50% {
    opacity: 0.78;
    transform: scaleX(1);
  }
}

.pain-grid,
.offer-panel {
  display: grid;
  gap: var(--ninja-space, 18px);
  margin-top: 54px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-grid article,
.offer-panel article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(4, 6, 9, 0.54);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.pain-grid article::before,
.offer-panel article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0.34;
}

.pain-grid span,
.offer-panel span {
  color: rgba(158, 217, 87, 0.7);
  font-size: 12px;
  font-weight: 760;
}

.pain-grid strong,
.offer-panel strong {
  color: #fff;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.34;
}

.pain-grid p,
.offer-panel p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.76;
}

.offer-section {
  display: grid;
  align-content: center;
}

.offer-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.offer-panel article {
  min-height: 210px;
}

.offer-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card,
.decision-stack article,
.flow-step,
.trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.028)),
    rgba(4, 6, 9, 0.64);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.service-card::before,
.decision-stack article::before,
.flow-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  opacity: 0.48;
}

.service-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 28px 22px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card span,
.decision-stack span,
.flow-step span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 780;
}

.service-card strong {
  align-self: end;
  color: #fff;
  font-size: 24px;
  font-weight: 780;
}

.service-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.72;
}

.service-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  margin-top: 20px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.intelligence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(34px, 7vw, 112px);
}

.decision-stack {
  display: grid;
  gap: 14px;
}

.decision-stack article {
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 22px;
}

.decision-stack article:nth-child(2) {
  transform: translateX(26px);
}

.decision-stack article:nth-child(3) {
  transform: translateX(52px);
}

.decision-stack strong {
  color: #fff;
  font-size: 20px;
  font-weight: 780;
}

.decision-stack p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--ninja-space, 18px);
  margin-top: 66px;
}

.flow-step {
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: 22px;
}

.flow-step span {
  color: rgba(158, 217, 87, 0.72);
}

.flow-step strong {
  color: #fff;
  font-size: 23px;
  font-weight: 780;
}

.flow-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.64fr);
  align-items: center;
  gap: clamp(34px, 7vw, 112px);
}

.trust-grid {
  display: grid;
  gap: 0;
}

.trust-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.trust-card:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.88);
  background: rgba(158, 217, 87, 0.08);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.laptop-motion {
  position: relative;
  z-index: 3;
  width: min(580px, 100%);
  min-height: 420px;
  align-self: center;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.laptop-motion::before {
  content: "";
  position: absolute;
  inset: 4% 8% 24%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(122, 167, 255, 0.22), rgba(122, 167, 255, 0.05) 42%, transparent 72%),
    radial-gradient(circle at 68% 54%, rgba(158, 217, 87, 0.16), transparent 54%);
  filter: blur(22px);
  opacity: 0.78;
  animation: laptopAura 7s ease-in-out infinite;
}

.laptop-motion__screen {
  position: relative;
  width: min(520px, 94%);
  aspect-ratio: 1.56;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px 10px 5px 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 38%, rgba(122, 167, 255, 0.06)),
    rgba(3, 6, 10, 0.72);
  box-shadow:
    0 52px 110px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 -80px 120px rgba(122, 167, 255, 0.08);
  transform: rotateX(8deg) rotateY(-16deg) rotateZ(1deg) translateZ(22px);
  transform-origin: 50% 100%;
  animation: laptopFloat 8s ease-in-out infinite;
}

.laptop-motion__screen::before,
.laptop-motion__screen::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.laptop-motion__screen::before {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.06)),
    radial-gradient(circle at 76% 18%, rgba(158, 217, 87, 0.18), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.laptop-motion__screen::after {
  left: -14%;
  right: -14%;
  top: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  box-shadow:
    0 48px 32px rgba(122, 167, 255, 0.12),
    0 -38px 40px rgba(158, 217, 87, 0.09);
  opacity: 0.72;
  animation: laptopScan 4.4s ease-in-out infinite;
}

.laptop-motion__topbar {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  z-index: 4;
  height: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.laptop-motion__topbar::before,
.laptop-motion__topbar::after {
  content: "";
  position: absolute;
  top: 8px;
  height: 7px;
  border-radius: 999px;
}

.laptop-motion__topbar::before {
  left: 0;
  width: 46px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 62px 0 0 rgba(255, 255, 255, 0.1);
}

.laptop-motion__topbar::after {
  right: 0;
  width: 86px;
  background: rgba(158, 217, 87, 0.28);
}

.laptop-motion__feed {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 58px;
  display: grid;
  gap: 12px;
  animation: laptopScroll 9s linear infinite;
}

.laptop-motion__feed span {
  display: grid;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 720;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
}

.laptop-motion__feed span:nth-child(2n) {
  margin-left: 36px;
}

.laptop-motion__feed span:nth-child(3n) {
  color: rgba(158, 217, 87, 0.84);
}

.laptop-motion__hinge {
  position: relative;
  z-index: 2;
  width: min(428px, 78%);
  height: 12px;
  margin-top: -9px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  filter: blur(0.2px);
  transform: rotateX(68deg) rotateY(-16deg) translateZ(6px);
}

.laptop-motion__base {
  position: relative;
  z-index: 1;
  width: min(560px, 98%);
  height: 92px;
  margin-top: -22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px 6px 24px 24px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025) 38%, rgba(122, 167, 255, 0.08)),
    rgba(5, 7, 10, 0.62);
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.36);
  transform: rotateX(70deg) rotateY(-13deg) rotateZ(1deg);
}

.laptop-motion__base::before {
  content: "";
  position: absolute;
  left: 38%;
  right: 38%;
  top: 18px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.layer-node em.ready-badge {
  justify-self: start;
  min-height: 20px;
  margin: 0;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.09);
}

@keyframes laptopFloat {
  0%,
  100% {
    transform: rotateX(8deg) rotateY(-16deg) rotateZ(1deg) translate3d(0, 0, 22px);
  }
  50% {
    transform: rotateX(9deg) rotateY(-12deg) rotateZ(-0.5deg) translate3d(0, -14px, 34px);
  }
}

@keyframes laptopAura {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.64;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.9;
  }
}

@keyframes laptopScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-258px);
  }
}

@keyframes laptopScan {
  0% {
    transform: translateY(-80px);
    opacity: 0;
  }
  38%,
  62% {
    opacity: 0.74;
  }
  100% {
    transform: translateY(170px);
  }
}

.trust-card strong {
  color: #fff;
  font-size: 17px;
  font-weight: 780;
}

.trust-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

.ceo-bridge {
  display: grid;
  align-content: center;
}

.closing-section {
  display: grid;
  place-items: center;
  text-align: center;
}

.closing-copy {
  justify-items: center;
  width: min(760px, 100%);
}

.closing-copy img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 24px 48px rgba(122, 167, 255, 0.24));
}

.primary-action {
  min-height: 42px;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.092);
  color: #fff;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.primary-action:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px var(--section-x) 34px;
  border-top: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 680;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.detail-page .scene-canvas {
  opacity: 0.54;
}

.detail-page .scene-shade {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.94), rgba(2, 3, 4, 0.58) 54%, rgba(2, 3, 4, 0.86)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.5), rgba(2, 3, 4, 0.9));
}

.detail-hero,
.detail-section,
.story-section {
  position: relative;
  z-index: 10;
  padding: var(--section-y) var(--section-x);
}

.detail-hero {
  display: grid;
  align-content: end;
  min-height: 88svh;
  padding-top: 132px;
}

.detail-copy,
.story-copy {
  display: grid;
  gap: 18px;
  width: min(880px, 100%);
}

.detail-copy h1,
.story-copy h1,
.detail-section h2,
.story-section h2 {
  color: #fff;
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 780;
  line-height: 1.08;
}

.detail-section h2,
.story-section h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.detail-copy p,
.detail-section p,
.story-copy p,
.story-section p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.86;
}

.word-cloud,
.story-stack,
.proof-grid {
  display: grid;
  gap: var(--ninja-space, 18px);
  margin-top: 44px;
}

.word-cloud {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.word-cloud span {
  min-height: 88px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 760;
}

.word-cloud span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ninja-space, 18px);
  margin-top: 46px;
}

.feature-matrix article {
  display: grid;
  gap: 18px;
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(4, 6, 9, 0.46);
}

.feature-kicker {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 760;
}

.feature-matrix h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 760;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 680;
  line-height: 1;
  background: rgba(255, 255, 255, 0.035);
}

.ready-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  margin-right: 7px;
  padding: 0 6px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-style: normal;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.09);
}

.story-stack {
  width: min(920px, 100%);
}

.story-stack article,
.proof-grid article {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-stack article:last-child,
.proof-grid article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.story-stack strong,
.proof-grid strong {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 760;
}

.story-stack p,
.proof-grid p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid--quiet article {
  padding-right: 18px;
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: none;
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.intro-copy[data-reveal] {
  transition-delay: 280ms;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .intro-copy h1 {
    font-size: 38px;
  }

  .word-cloud,
  .feature-matrix,
  .proof-grid,
  .pain-grid,
  .offer-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head h2,
  .decision-copy h2,
  .trust-copy h2,
  .closing-copy h2 {
    font-size: 38px;
  }

  .service-grid,
  .flow-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intelligence-section,
  .ops-system-section,
  .role-section,
  .decision-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .commerce-constellation {
    width: min(680px, 100%);
    min-height: 560px;
  }

  .layer-strip {
    grid-template-columns: repeat(8, minmax(142px, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .layer-strip::-webkit-scrollbar {
    display: none;
  }

  .security-stage {
    grid-template-columns: 1fr;
  }

  .security-vault {
    width: min(320px, 72vw);
  }

  .layer-rail {
    grid-template-columns: repeat(9, minmax(132px, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .layer-rail::-webkit-scrollbar {
    display: none;
  }

  .execution-visual {
    opacity: 0.42;
    width: min(72vw, 560px);
  }

  .decision-stack article:nth-child(2),
  .decision-stack article:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-mark span {
    font-size: 12px;
  }

  .header-action {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .intro-section {
    min-height: 100svh;
    padding: 86px 18px calc(62px + env(safe-area-inset-bottom));
  }

  .intro-copy {
    gap: 13px;
    padding: 18px 0;
    transform: translateY(28px);
  }

  .intro-kicker {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.78;
    text-shadow: 0 0 22px rgba(122, 167, 255, 0.22);
  }

  .intro-copy h1 {
    font-size: 31px;
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.14),
      0 18px 54px rgba(122, 167, 255, 0.38);
  }

  .intro-sub {
    max-width: 310px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.62);
  }

  .intro-links {
    gap: 12px;
  }

  .intro-meta {
    display: none;
  }

  .scroll-cue {
    bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .platform-section,
  .intelligence-section,
  .workflow-section,
  .trust-section,
  .closing-section,
  .ops-system-section,
  .role-section,
  .layer-section,
  .decision-section,
  .motion-section,
  .execution-section,
  .start-section {
    min-height: auto;
    padding: 86px 18px;
  }

  .section-head h2,
  .decision-copy h2,
  .trust-copy h2,
  .closing-copy h2 {
    font-size: 30px;
  }

  .section-head p:not(.section-kicker),
  .decision-copy p:not(.section-kicker),
  .trust-copy p:not(.section-kicker),
  .closing-copy p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.76;
  }

  .service-grid,
  .flow-line,
  .pain-grid,
  .offer-panel {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .service-card {
    min-height: 210px;
  }

  .flow-step {
    min-height: 176px;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .ops-orbit {
    width: min(360px, 100%);
    margin-top: 34px;
  }

  .commerce-constellation {
    width: min(390px, 100%);
    min-height: 430px;
    margin-top: 34px;
  }

  .constellation-shell {
    inset: 12% 2%;
  }

  .constellation-core {
    width: 126px;
    height: 126px;
  }

  .constellation-core strong {
    font-size: 14px;
  }

  .constellation-list li {
    min-width: 88px;
    padding: 6px 0 6px 10px;
    font-size: 11px;
  }

  .constellation-list li::before {
    width: 22px;
  }

  .constellation-list li:nth-child(1) { left: 6%; top: 12%; }
  .constellation-list li:nth-child(2) { left: 42%; top: 3%; }
  .constellation-list li:nth-child(3) { right: 4%; top: 19%; }
  .constellation-list li:nth-child(4) { right: 4%; top: 47%; }
  .constellation-list li:nth-child(5) { right: 7%; bottom: 13%; }
  .constellation-list li:nth-child(6) { left: 40%; bottom: 2%; }
  .constellation-list li:nth-child(7) { left: 3%; bottom: 15%; }
  .constellation-list li:nth-child(8) { left: 5%; top: 47%; }
  .constellation-list li:nth-child(9) { left: 40%; top: 45%; }

  .ops-orbit__core {
    width: 118px;
    height: 118px;
  }

  .ops-orbit__core strong {
    font-size: 15px;
  }

  .ops-node {
    min-width: 62px;
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .ops-node--market { --tx: -126px; --ty: -104px; --tz: 18px; }
  .ops-node--sourcing { --tx: -36px; --ty: -132px; --tz: 24px; }
  .ops-node--product { --tx: 74px; --ty: -126px; --tz: 22px; }
  .ops-node--usp { --tx: 132px; --ty: -52px; --tz: 20px; }
  .ops-node--position { --tx: 132px; --ty: 42px; --tz: 28px; }
  .ops-node--swot { --tx: 72px; --ty: 120px; --tz: 14px; }
  .ops-node--ads { --tx: -34px; --ty: 134px; --tz: 22px; }
  .ops-node--order { --tx: -118px; --ty: 88px; --tz: 18px; }
  .ops-node--stock { --tx: -142px; --ty: 4px; --tz: 20px; }
  .ops-node--rank { --tx: -128px; --ty: -52px; --tz: 14px; }
  .ops-node--action { --tx: 8px; --ty: -10px; --tz: 48px; }

  .layer-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(154px, 68vw);
    grid-template-columns: none;
    width: calc(100vw - 36px);
    margin-top: 42px;
    padding: 16px 0 28px;
  }

  .layer-node {
    min-height: 238px;
    padding: 20px 14px;
    transform: translateY(calc((var(--i) % 2) * 18px));
  }

  .layer-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(168px, 70vw);
    grid-template-columns: none;
    width: calc(100vw - 36px);
    margin-top: 42px;
    padding: 18px 0 34px;
  }

  .layer-strip .layer-node {
    min-height: 244px;
    padding: 20px 14px;
    transform: translateY(calc((var(--i) % 2) * 14px));
  }

  .layer-strip .layer-node strong {
    font-size: 20px;
  }

  .signal-field {
    width: min(354px, 100%);
    margin-top: 34px;
  }

  .decision-engine {
    width: min(354px, 100%);
    margin-top: 34px;
  }

  .engine-core {
    width: 126px;
    height: 126px;
  }

  .engine-core strong {
    font-size: 26px;
  }

  .engine-node {
    min-width: 62px;
    min-height: 62px;
    font-size: 11px;
  }

  .signal-core {
    width: 132px;
    height: 132px;
  }

  .signal-core strong {
    font-size: 19px;
  }

  .signal-point {
    width: 68px;
    height: 68px;
    font-size: 12px;
  }

  .motion-path {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 44px;
  }

  .action-river {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .motion-path::before {
    left: 48px;
    right: auto;
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(122, 167, 255, 0.08), rgba(158, 217, 87, 0.58), rgba(210, 185, 140, 0.1));
  }

  .motion-step {
    grid-template-columns: 96px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    min-height: 118px;
    padding-top: 0;
    text-align: left;
    transform: none;
  }

  .motion-step::before {
    grid-row: 1 / span 3;
    width: 82px;
    height: 82px;
  }

  .motion-step span {
    position: static;
    grid-column: 2;
  }

  .motion-step strong,
  .motion-step p {
    grid-column: 2;
    margin-top: 0;
  }

  .action-river .motion-step {
    grid-template-columns: minmax(0, 1fr);
    min-height: 172px;
    padding: 22px 18px;
    transform: none;
  }

  .action-river .motion-step::before {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .action-river .motion-step strong {
    margin-top: 22px;
    font-size: 21px;
  }

  .action-river .motion-step p {
    max-width: calc(100% - 48px);
  }

  .execution-visual {
    inset: auto -12% 8% auto;
    width: 92vw;
    opacity: 0.34;
  }

  .execution-field {
    inset: auto -10% 4% auto;
    width: 106vw;
    height: 320px;
    opacity: 0.34;
  }

  .execution-plane {
    height: 72px;
  }

  .security-stage {
    gap: 30px;
  }

  .security-vault {
    width: min(260px, 82vw);
  }

  .security-stage .trust-card {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .start-orb {
    width: 120vw;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    padding: 24px 18px 30px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .detail-hero,
  .detail-section,
  .story-section {
    padding: 88px 18px;
  }

  .detail-hero {
    min-height: 82svh;
    padding-top: 116px;
  }

  .detail-copy p,
  .detail-section p,
  .story-copy p,
  .story-section p {
    font-size: 15px;
    line-height: 1.78;
  }

  .word-cloud,
  .feature-matrix,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .word-cloud span {
    min-height: 70px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-matrix article {
    min-height: auto;
    padding: 22px;
  }

  .pain-grid article,
  .offer-panel article {
    min-height: auto;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Cinematic WebGL pass: DOM content stays quiet; all heavy motion is in the Three.js canvas. */
.scene-shade {
  background:
    radial-gradient(circle at 62% 45%, rgba(2, 3, 4, 0.04), rgba(2, 3, 4, 0.32) 36%, rgba(2, 3, 4, 0.82) 84%),
    linear-gradient(90deg, rgba(2, 3, 4, 0.9), rgba(2, 3, 4, 0.3) 48%, rgba(2, 3, 4, 0.78)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.42), rgba(2, 3, 4, 0.06) 34%, rgba(2, 3, 4, 0.5) 86%, #020304);
}

.ops-system-section,
.role-section,
.decision-section,
.trust-section {
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(34px, 7vw, 112px);
}

.role-section--cmo {
  grid-template-columns: minmax(0, 0.52fr) minmax(360px, 0.48fr);
}

.layer-section,
.motion-section,
.execution-section,
.start-section {
  position: relative;
  align-content: center;
}

.section-head,
.decision-copy,
.trust-copy {
  max-width: 720px;
}

.section-head--center {
  justify-items: start;
  margin: 0;
  text-align: left;
}

.cinema-keywords,
.layer-strip,
.action-river {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0;
  width: min(620px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  overflow: visible;
}

.cinema-keywords {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
}

.cinema-keywords--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cinema-keywords li {
  min-height: 58px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.cinema-keywords li:nth-last-child(-n + 3),
.cinema-keywords:not(.cinema-keywords--wide) li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.layer-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(980px, 100%);
  margin-top: 56px;
  padding: 0;
}

.layer-strip::before,
.layer-strip::after,
.action-river::before,
.action-river::after,
.layer-node::before,
.motion-step::before,
.motion-path::before {
  content: none !important;
}

.layer-strip .layer-node,
.action-river .motion-step,
.layer-node,
.motion-step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: 22px 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
  transform: none !important;
}

.layer-strip .layer-node:last-child,
.action-river .motion-step:last-child {
  border-right: 0;
}

.layer-node span,
.layer-node em,
.motion-step span {
  position: static;
  color: rgba(158, 217, 87, 0.68);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.layer-strip .layer-node strong,
.layer-node strong,
.action-river .motion-step strong,
.motion-step strong {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.34;
}

.layer-strip .layer-node p,
.layer-node p,
.action-river .motion-step p,
.motion-step p {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.66;
}

.action-river {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, 100%);
  margin-top: 56px;
}

.trust-grid {
  width: min(520px, 100%);
  background: transparent;
}

.trust-card {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  background: transparent;
}

.trust-icon {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(158, 217, 87, 0.78);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.commerce-constellation,
.decision-engine,
.execution-field,
.security-stage,
.security-vault,
.start-orb,
.ops-orbit,
.signal-field,
.motion-path {
  display: none !important;
}

@media (max-width: 980px) {
  .ops-system-section,
  .role-section,
  .decision-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .section-head--center {
    justify-items: center;
    margin: 0 auto;
    text-align: center;
  }

  .cinema-keywords,
  .layer-strip,
  .action-river,
  .trust-grid {
    width: 100%;
  }

  .laptop-motion {
    width: min(620px, 100%);
    min-height: 380px;
    margin-top: 34px;
  }

}

@media (max-width: 640px) {
  [data-reveal] {
    filter: none;
  }

  .scene-shade {
    background:
      radial-gradient(circle at 50% 42%, rgba(2, 3, 4, 0.08), rgba(2, 3, 4, 0.36) 42%, rgba(2, 3, 4, 0.84) 88%),
      linear-gradient(180deg, rgba(2, 3, 4, 0.48), rgba(2, 3, 4, 0.16) 38%, rgba(2, 3, 4, 0.76));
  }

  .cinema-keywords,
  .cinema-keywords--wide,
  .layer-strip,
  .action-river {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    width: 100%;
    margin-top: 34px;
    overflow: visible;
  }

  .cinema-keywords li {
    min-height: 44px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 13px;
  }

  .cinema-keywords li:last-child {
    border-bottom: 0 !important;
  }

  .layer-strip .layer-node,
  .action-river .motion-step,
  .layer-node,
  .motion-step {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .layer-strip .layer-node:last-child,
  .action-river .motion-step:last-child {
    border-bottom: 0;
  }

  .layer-strip .layer-node strong,
  .action-river .motion-step strong {
    font-size: 20px;
  }

  .trust-card {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .laptop-motion {
    min-height: 300px;
  }

  .laptop-motion__screen {
    width: 96%;
    transform: rotateX(7deg) rotateY(-8deg) rotateZ(0.5deg) translateZ(14px);
  }

  .laptop-motion__feed {
    left: 18px;
    right: 18px;
    top: 52px;
    gap: 10px;
  }

  .laptop-motion__feed span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .laptop-motion__feed span:nth-child(2n) {
    margin-left: 18px;
  }

  .laptop-motion__base {
    width: 100%;
    height: 72px;
  }

}

.header-action {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 760;
}

.header-action:hover {
  border-color: transparent;
  background: transparent;
  color: #fff;
  transform: none;
}

.closing-cta {
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
}

.closing-or,
.closing-story-link {
  opacity: 0;
  transform: translateY(10px);
}

.closing-or {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
  font-weight: 640;
}

.closing-story-link {
  color: rgba(255, 255, 255, 0.58);
}

.closing-copy.is-visible .closing-or {
  animation: titleRise 1.4s ease 0.95s forwards;
}

.closing-copy.is-visible .closing-story-link {
  animation: titleRise 1.5s ease 1.2s forwards;
}

.closing-cta svg {
  width: 16px;
  height: 16px;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 28px var(--section-x) 34px;
  text-align: center;
}

.site-footer > span {
  color: rgba(255, 255, 255, 0.42);
}

.site-footer nav {
  position: absolute;
  right: var(--section-x);
  bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.52);
  transition: color 180ms ease;
}

.site-footer nav a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .header-action {
    min-height: auto;
    padding: 0;
    font-size: 12px;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 26px 18px 30px;
  }

  .site-footer nav {
    position: static;
    justify-content: center;
  }
}

/* Photoreal laptop scene with an animated commerce-ops screen overlay. */
.laptop-motion {
  position: relative;
  z-index: 3;
  display: block;
  width: min(760px, 100%);
  min-height: auto;
  aspect-ratio: 1.58;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 55% 46%, rgba(122, 167, 255, 0.13), transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(158, 217, 87, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    #020304;
  box-shadow:
    0 56px 160px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 -90px 150px rgba(0, 0, 0, 0.52);
  perspective: none;
  transform-style: flat;
}

.laptop-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.085), transparent 22%, transparent 72%, rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.052), transparent 34%);
  filter: none;
  opacity: 0.74;
  animation: none;
  pointer-events: none;
}

.laptop-motion::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 16%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 167, 255, 0.34), rgba(255, 255, 255, 0.44), rgba(158, 217, 87, 0.22), transparent);
  filter: blur(0.3px);
  opacity: 0.64;
  pointer-events: none;
}

.laptop-motion__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.laptop-motion__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
}

.laptop-motion__screen-intro {
  position: absolute;
  left: 43.6%;
  top: 14.2%;
  z-index: 2;
  width: 39.4%;
  height: 46.2%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  opacity: 0.94;
  clip-path: polygon(4.2% 2.2%, 98.4% 7.2%, 94.2% 98%, 0 91.5%);
  filter: brightness(0.92) contrast(1.08) saturate(0.94);
  transform: perspective(940px) rotateZ(1.45deg) skewX(-3.5deg);
  transform-origin: center;
  box-shadow:
    0 0 38px rgba(122, 167, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.laptop-motion__vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background:
    radial-gradient(circle at 52% 44%, transparent 28%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 30%, rgba(0, 0, 0, 0.44));
  pointer-events: none;
}

.laptop-motion__screen,
.laptop-motion__topbar,
.laptop-motion__feed,
.laptop-motion__hinge,
.laptop-motion__base {
  display: none;
}

@media (max-width: 980px) {
  .laptop-motion {
    width: min(620px, 100%);
    margin-top: 34px;
  }
}

@media (max-width: 640px) {
  .laptop-motion {
    min-height: auto;
    aspect-ratio: 1.42;
    border-radius: 18px;
  }
}

/* Readability pass: make the brand pages read like a guided story, not a data table. */
.section-head,
.trust-copy,
.closing-copy {
  gap: 16px;
}

.section-head h2,
.trust-copy h2,
.closing-copy h2 {
  max-width: 780px;
  letter-spacing: 0;
}

.section-head p:not(.section-kicker),
.trust-copy p:not(.section-kicker),
.closing-copy p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.78;
}

.ops-system-section {
  grid-template-columns: minmax(0, 0.54fr) minmax(520px, 0.46fr);
}

.cinema-keywords,
.cinema-keywords--wide {
  counter-reset: keyword;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(640px, 100%);
  border: 0;
}

.cinema-keywords li,
.cinema-keywords--wide li {
  counter-increment: keyword;
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  min-height: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.3);
}

.cinema-keywords li::before {
  content: counter(keyword, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  color: rgba(158, 217, 87, 0.68);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.cinema-keywords li strong {
  grid-column: 2;
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.32;
}

.cinema-keywords li span {
  grid-column: 2;
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.46;
}

.layer-strip,
.action-river {
  gap: 14px;
  border: 0;
}

.layer-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-river {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.layer-strip .layer-node,
.action-river .motion-step,
.layer-node,
.motion-step {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.014)),
    rgba(4, 6, 9, 0.34);
}

.layer-strip .layer-node strong,
.action-river .motion-step strong,
.layer-node strong,
.motion-step strong {
  font-size: 19px;
}

.layer-strip .layer-node p,
.action-river .motion-step p,
.layer-node p,
.motion-step p {
  max-width: none;
  font-size: 13px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(4, 6, 9, 0.32);
}

.laptop-motion__screen-frame {
  position: absolute;
  left: 42.6%;
  top: 12.4%;
  z-index: 2;
  width: 41.6%;
  height: 49.8%;
  overflow: hidden;
  border-radius: 8px;
  clip-path: polygon(5% 2%, 98.8% 7.5%, 94.4% 98.2%, 0 91.2%);
  transform: perspective(940px) rotateZ(1.45deg) skewX(-3.5deg);
  transform-origin: center;
  box-shadow:
    0 0 42px rgba(122, 167, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.laptop-motion__screen-frame .laptop-motion__screen-intro {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.98;
  clip-path: none;
  filter: brightness(0.96) contrast(1.1) saturate(0.95);
  transform: scale(1.72);
  transform-origin: center;
  box-shadow: none;
}

.page-ceo .detail-hero {
  align-content: center;
  min-height: 86svh;
}

.page-ceo .detail-hero .story-copy,
.page-ceo .story-section .story-copy {
  width: min(760px, 100%);
}

.page-ceo .story-section {
  display: grid;
  grid-template-columns: minmax(110px, 0.26fr) minmax(0, 760px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 60px);
  min-height: auto;
  padding-top: clamp(78px, 9vw, 118px);
  padding-bottom: clamp(78px, 9vw, 118px);
}

.page-ceo .story-section .story-copy {
  grid-column: 2;
  position: relative;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.page-ceo .story-section .story-copy::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(158, 217, 87, 0.82);
  box-shadow: 0 0 24px rgba(158, 217, 87, 0.22);
}

.page-ceo .story-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
}

.page-ceo .story-section h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.16;
}

.page-ceo .story-copy p,
.page-ceo .story-section p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.84;
}

.page-ceo .story-copy p + p {
  margin-top: 2px;
}

.page-ceo .proof-grid {
  grid-column: 2 / 4;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(980px, 100%);
  margin-top: 34px;
}

.page-ceo .proof-grid article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.014)),
    rgba(4, 6, 9, 0.34);
}

.page-ceo .proof-grid article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-ceo .proof-grid strong {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.page-ceo .proof-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.72;
}

/* Final visual polish: keep the copy readable while breaking the flat table rhythm. */
.laptop-motion__photo {
  transform: none;
}

.laptop-motion__screen-frame,
.laptop-motion__screen-intro {
  display: none;
}

.cinema-keywords,
.cinema-keywords--wide {
  gap: 14px;
}

.cinema-keywords--wide {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(720px, 100%);
}

.cinema-keywords--wide li {
  grid-column: span 3;
  min-height: 124px;
}

.cinema-keywords--wide li:first-child,
.cinema-keywords--wide li:last-child {
  grid-column: span 6;
  min-height: 136px;
}

.cinema-keywords li {
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(122, 167, 255, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.014)),
    rgba(3, 5, 8, 0.56);
  box-shadow:
    0 26px 76px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cinema-keywords li:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 88% 12%, rgba(158, 217, 87, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.014)),
    rgba(3, 5, 8, 0.54);
}

.cinema-keywords li:nth-child(3n) {
  background:
    radial-gradient(circle at 88% 12%, rgba(210, 185, 140, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.014)),
    rgba(3, 5, 8, 0.54);
}

.role-section--ceo .cinema-keywords {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(720px, 100%);
}

.role-section--ceo .cinema-keywords li {
  grid-column: span 2;
}

.role-section--ceo .cinema-keywords li:first-child {
  grid-column: span 4;
  min-height: 126px;
}

.layer-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(1120px, 100%);
  gap: 14px;
}

.layer-strip .layer-node {
  grid-column: span 2;
  position: relative;
  min-height: 178px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0%, rgba(122, 167, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.012)),
    rgba(3, 5, 8, 0.58);
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.layer-strip .layer-node:nth-child(1),
.layer-strip .layer-node:nth-child(2),
.layer-strip .layer-node:nth-child(11),
.layer-strip .layer-node:nth-child(12) {
  grid-column: span 3;
}

.layer-strip .layer-node:nth-child(6) {
  grid-column: span 4;
}

.layer-strip .layer-node:nth-child(7) {
  grid-column: span 2;
}

.layer-strip .layer-node::after,
.action-river .motion-step::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(158, 217, 87, 0.58));
}

.layer-strip .layer-node em {
  width: fit-content;
  margin-top: auto;
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.055);
}

.layer-strip .layer-node .ready-badge {
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.action-river {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(1060px, 100%);
  gap: 14px;
}

.action-river .motion-step {
  grid-column: span 3;
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(158, 217, 87, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.012)),
    rgba(3, 5, 8, 0.56);
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.action-river .motion-step:nth-child(1) {
  grid-column: span 5;
}

.action-river .motion-step:nth-child(2) {
  grid-column: span 3;
  transform: translateY(28px) !important;
}

.action-river .motion-step:nth-child(3) {
  grid-column: span 4;
}

.action-river .motion-step:nth-child(4) {
  grid-column: 4 / span 6;
}

.closing-cta {
  opacity: 0;
  transform: translateY(10px);
}

.closing-copy.is-visible .closing-cta {
  animation: titleRise 1s ease 0.15s forwards;
}

.closing-copy.is-visible .closing-or {
  animation: titleRise 0.9s ease 1.75s forwards;
}

.closing-copy.is-visible .closing-story-link {
  animation: titleRise 0.95s ease 2.25s forwards;
}

@media (max-width: 980px) {
  .ops-system-section {
    grid-template-columns: 1fr;
  }

  .cinema-keywords--wide,
  .role-section--ceo .cinema-keywords,
  .layer-strip,
  .action-river {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cinema-keywords--wide li,
  .cinema-keywords--wide li:first-child,
  .cinema-keywords--wide li:last-child,
  .role-section--ceo .cinema-keywords li,
  .role-section--ceo .cinema-keywords li:first-child,
  .layer-strip .layer-node,
  .layer-strip .layer-node:nth-child(1),
  .layer-strip .layer-node:nth-child(2),
  .layer-strip .layer-node:nth-child(6),
  .layer-strip .layer-node:nth-child(7),
  .layer-strip .layer-node:nth-child(11),
  .layer-strip .layer-node:nth-child(12),
  .action-river .motion-step,
  .action-river .motion-step:nth-child(1),
  .action-river .motion-step:nth-child(2),
  .action-river .motion-step:nth-child(3),
  .action-river .motion-step:nth-child(4) {
    grid-column: auto;
    transform: none !important;
  }

  .page-ceo .story-section {
    grid-template-columns: 1fr;
  }

  .page-ceo .story-section .story-copy,
  .page-ceo .proof-grid {
    grid-column: 1;
  }

  .page-ceo .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-head h2,
  .trust-copy h2,
  .closing-copy h2 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.14;
  }

  .cinema-keywords li,
  .cinema-keywords--wide li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .cinema-keywords,
  .cinema-keywords--wide {
    grid-template-columns: 1fr;
  }

  .layer-strip,
  .action-river {
    grid-template-columns: 1fr;
  }

  .layer-strip .layer-node,
  .action-river .motion-step,
  .layer-node,
  .motion-step,
  .trust-card {
    min-height: auto;
    padding: 18px;
  }

  .page-ceo .story-section .story-copy {
    padding-left: 22px;
  }

  .page-ceo .story-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }
}

/* Workflow clarity pass: readable order first, decoration second. */
.closing-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.closing-links a {
  justify-content: center;
}

.closing-cta {
  min-height: 42px;
  gap: 8px;
  font-size: 15px;
}

.closing-or {
  line-height: 1;
}

.closing-story-link {
  font-size: 14px;
}

.cinema-keywords,
.cinema-keywords--wide,
.role-section--ceo .cinema-keywords {
  counter-reset: keyword;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(640px, 100%);
  border: 0;
}

.cinema-keywords--wide {
  position: relative;
  grid-template-columns: minmax(0, 1fr) !important;
  width: min(700px, 100%);
  padding-left: 26px;
}

.cinema-keywords--wide::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(158, 217, 87, 0.62), rgba(122, 167, 255, 0.26), rgba(255, 255, 255, 0.08));
}

.cinema-keywords li,
.cinema-keywords--wide li,
.cinema-keywords--wide li:first-child,
.cinema-keywords--wide li:last-child,
.role-section--ceo .cinema-keywords li,
.role-section--ceo .cinema-keywords li:first-child {
  grid-column: 1 / -1 !important;
  counter-increment: keyword;
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  min-height: 68px;
  padding: 14px 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cinema-keywords--wide li:first-child,
.cinema-keywords--wide li:last-child {
  min-height: 68px;
}

.cinema-keywords li:last-child,
.cinema-keywords--wide li:last-child {
  border-bottom: 0 !important;
}

.cinema-keywords li::before {
  content: counter(keyword, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.86);
  background:
    radial-gradient(circle at 36% 24%, rgba(158, 217, 87, 0.24), transparent 34%),
    rgba(6, 9, 12, 0.8);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.cinema-keywords li strong {
  grid-column: 2;
  align-self: end;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}

.cinema-keywords li span {
  grid-column: 2;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 580;
  line-height: 1.52;
}

.cinema-keywords li,
.cinema-keywords li:nth-child(3n + 2),
.cinema-keywords li:nth-child(3n) {
  background: transparent !important;
  box-shadow: none !important;
}

.cinema-keywords--wide li:nth-child(4) strong,
.cinema-keywords--wide li:nth-child(5) strong {
  color: #fff;
}

.layer-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 46px);
  width: min(1040px, 100%);
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.layer-strip::before,
.layer-strip::after {
  content: none !important;
}

.layer-strip .layer-node,
.layer-strip .layer-node:nth-child(1),
.layer-strip .layer-node:nth-child(2),
.layer-strip .layer-node:nth-child(6),
.layer-strip .layer-node:nth-child(7),
.layer-strip .layer-node:nth-child(11),
.layer-strip .layer-node:nth-child(12) {
  grid-column: auto;
}

.layer-strip .layer-node {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  grid-template-areas:
    "label title status"
    "label body status";
  column-gap: 18px;
  row-gap: 4px;
  min-height: 84px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.layer-strip .layer-node::after {
  content: none;
}

.layer-strip .layer-node span {
  grid-area: label;
  align-self: start;
  color: rgba(158, 217, 87, 0.74);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.layer-strip .layer-node strong {
  grid-area: title;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.layer-strip .layer-node p {
  grid-area: body;
  max-width: none;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.52;
}

.layer-strip .layer-node em {
  grid-area: status;
  align-self: start;
  justify-self: end;
  margin-top: 0;
}

.action-river {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(1060px, 100%);
  margin-top: 58px;
}

.action-river::before {
  content: "" !important;
  position: absolute;
  left: 28px;
  right: 28px;
  top: 27px;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 217, 87, 0.56), rgba(122, 167, 255, 0.3), rgba(255, 255, 255, 0.08));
  filter: none;
}

.action-river::after {
  content: none !important;
}

.action-river .motion-step,
.action-river .motion-step:nth-child(1),
.action-river .motion-step:nth-child(2),
.action-river .motion-step:nth-child(3),
.action-river .motion-step:nth-child(4) {
  grid-column: auto;
  display: block;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none !important;
}

.action-river .motion-step::after {
  content: none;
}

.action-river .motion-step span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.86);
  background:
    radial-gradient(circle at 35% 24%, rgba(158, 217, 87, 0.22), transparent 34%),
    rgba(6, 9, 12, 0.86);
  font-size: 12px;
  font-weight: 820;
}

.action-river .motion-step strong {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.28;
}

.action-river .motion-step p {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.58;
}

@media (max-width: 980px) {
  .cinema-keywords--wide {
    padding-left: 0;
  }

  .cinema-keywords--wide::before {
    left: 22px;
  }

  .layer-strip {
    grid-template-columns: 1fr;
  }

  .action-river {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .action-river::before {
    left: 27px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .action-river .motion-step {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
  }

  .action-river .motion-step span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .action-river .motion-step p {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .closing-links {
    gap: 8px;
  }

  .cinema-keywords li,
  .cinema-keywords--wide li {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 64px;
    padding: 13px 0;
  }

  .cinema-keywords li strong {
    font-size: 17px;
  }

  .layer-strip .layer-node {
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-areas:
      "label title"
      "label body"
      "label status";
  }

  .layer-strip .layer-node em {
    justify-self: start;
    margin-top: 8px;
  }
}

/* Card flow correction: keep cards, but make the operating order obvious. */
.cinema-keywords,
.cinema-keywords--wide,
.role-section--ceo .cinema-keywords {
  counter-reset: keyword;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px;
  width: min(720px, 100%);
  padding-left: 0;
  border: 0;
}

.cinema-keywords--wide::before {
  content: none !important;
}

.cinema-keywords li,
.cinema-keywords li:nth-child(3n + 2),
.cinema-keywords li:nth-child(3n),
.cinema-keywords--wide li,
.cinema-keywords--wide li:first-child,
.cinema-keywords--wide li:last-child,
.role-section--ceo .cinema-keywords li,
.role-section--ceo .cinema-keywords li:first-child {
  grid-column: auto !important;
  counter-increment: keyword;
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  min-height: 118px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(158, 217, 87, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.014)),
    rgba(4, 6, 9, 0.48) !important;
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
}

.cinema-keywords li::before {
  content: counter(keyword, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.9);
  background:
    radial-gradient(circle at 34% 24%, rgba(158, 217, 87, 0.26), transparent 34%),
    rgba(6, 9, 12, 0.86);
  font-size: 12px;
  font-weight: 840;
  line-height: 1;
}

.cinema-keywords--wide li:nth-child(2n + 1):not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  z-index: 2;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 217, 87, 0.58), rgba(255, 255, 255, 0));
}

.cinema-keywords li strong {
  grid-column: 2;
  align-self: end;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.28;
}

.cinema-keywords li span {
  grid-column: 2;
  align-self: start;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 580;
  line-height: 1.52;
}

.layer-strip {
  counter-reset: service;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, 100%);
  margin-top: 54px;
  border-top: 0;
}

.layer-strip .layer-node,
.layer-strip .layer-node:nth-child(1),
.layer-strip .layer-node:nth-child(2),
.layer-strip .layer-node:nth-child(6),
.layer-strip .layer-node:nth-child(7),
.layer-strip .layer-node:nth-child(11),
.layer-strip .layer-node:nth-child(12) {
  grid-column: auto;
}

.layer-strip .layer-node {
  counter-increment: service;
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  grid-template-areas:
    "num label status"
    "num title status"
    "num body status";
  gap: 6px 14px;
  min-height: 154px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(122, 167, 255, 0.1), transparent 33%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.48);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.layer-strip .layer-node::before {
  content: counter(service, decimal-leading-zero);
  grid-area: num;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(158, 217, 87, 0.24);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.86);
  background:
    radial-gradient(circle at 34% 24%, rgba(158, 217, 87, 0.22), transparent 34%),
    rgba(6, 9, 12, 0.84);
  font-size: 11px;
  font-weight: 840;
}

.layer-strip .layer-node:nth-child(3n + 1)::after,
.layer-strip .layer-node:nth-child(3n + 2)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 217, 87, 0.46), rgba(255, 255, 255, 0));
}

.layer-strip .layer-node span {
  grid-area: label;
  color: rgba(158, 217, 87, 0.76);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.layer-strip .layer-node strong {
  grid-area: title;
  color: rgba(255, 255, 255, 0.95);
  font-size: 19px;
  font-weight: 820;
  line-height: 1.3;
}

.layer-strip .layer-node p {
  grid-area: body;
  max-width: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.layer-strip .layer-node em {
  grid-area: status;
  align-self: start;
  justify-self: end;
  width: fit-content;
  margin-top: 0;
  padding: 4px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.055);
}

.action-river {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1060px, 100%);
  margin-top: 58px;
}

.action-river::before,
.action-river::after {
  content: none !important;
}

.action-river .motion-step,
.action-river .motion-step:nth-child(1),
.action-river .motion-step:nth-child(2),
.action-river .motion-step:nth-child(3),
.action-river .motion-step:nth-child(4) {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(158, 217, 87, 0.11), transparent 33%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.46);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transform: none !important;
}

.action-river .motion-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 52px;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 217, 87, 0.46), rgba(255, 255, 255, 0));
}

.action-river .motion-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.9);
  background:
    radial-gradient(circle at 34% 24%, rgba(158, 217, 87, 0.24), transparent 34%),
    rgba(6, 9, 12, 0.86);
  font-size: 12px;
  font-weight: 840;
}

.action-river .motion-step strong {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-weight: 820;
  line-height: 1.28;
}

.action-river .motion-step p {
  max-width: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.56;
}

@media (max-width: 980px) {
  .cinema-keywords,
  .cinema-keywords--wide,
  .role-section--ceo .cinema-keywords,
  .layer-strip,
  .action-river {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .action-river .motion-step {
    display: grid;
    grid-template-columns: auto;
  }
}

@media (max-width: 640px) {
  .cinema-keywords,
  .cinema-keywords--wide,
  .role-section--ceo .cinema-keywords,
  .layer-strip,
  .action-river {
    grid-template-columns: 1fr !important;
  }

  .cinema-keywords--wide li:nth-child(2n + 1):not(:last-child)::after,
  .layer-strip .layer-node:nth-child(3n + 1)::after,
  .layer-strip .layer-node:nth-child(3n + 2)::after,
  .action-river .motion-step:not(:last-child)::after {
    content: none;
  }

  .cinema-keywords li,
  .cinema-keywords--wide li,
  .layer-strip .layer-node,
  .action-river .motion-step {
    min-height: auto;
  }
}

/* Commerce pricing flow */
.agency-section,
.integration-section,
.pricing-section {
  min-height: 108svh;
  padding: var(--section-y) var(--section-x);
  overflow: hidden;
}

.agency-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 7vw, 112px);
}

.comparison-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
}

.comparison-column {
  display: grid;
  gap: 10px;
  min-height: 460px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(122, 167, 255, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.5);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.comparison-column--agency {
  opacity: 0.68;
}

.comparison-column--ninja {
  border-color: rgba(158, 217, 87, 0.24);
  background:
    radial-gradient(circle at 92% 10%, rgba(158, 217, 87, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.014)),
    rgba(4, 6, 9, 0.58);
}

.comparison-column span {
  color: rgba(158, 217, 87, 0.78);
  font-size: 12px;
  font-weight: 820;
}

.comparison-column strong {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 780;
  line-height: 1.42;
}

.comparison-column strong:last-child {
  border-bottom: 0;
}

.comparison-switch {
  display: grid;
  place-items: center;
  align-self: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.9);
  background: rgba(6, 9, 12, 0.76);
  box-shadow: 0 0 54px rgba(158, 217, 87, 0.14);
}

.comparison-switch svg {
  width: 20px;
  height: 20px;
}

.integration-section,
.pricing-section {
  display: grid;
  align-content: center;
}

.pricing-page {
  display: none;
  min-height: 100svh;
  padding-top: 128px;
}

body[data-site-view="pricing"] main > section:not(.pricing-page) {
  display: none !important;
}

body[data-site-view="pricing"] .pricing-page {
  display: grid;
}

.pricing-back-link {
  position: absolute;
  left: var(--section-x);
  top: 92px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 760;
}

.pricing-back-link svg {
  width: 15px;
  height: 15px;
}

.connect-steps {
  counter-reset: connect;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: min(1220px, 100%);
  margin: 58px auto 0;
}

.connect-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 20px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 10%, rgba(158, 217, 87, 0.1), transparent 33%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.48);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.connect-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 42px;
  z-index: 2;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 217, 87, 0.46), rgba(255, 255, 255, 0));
}

.connect-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.9);
  background:
    radial-gradient(circle at 34% 24%, rgba(158, 217, 87, 0.24), transparent 34%),
    rgba(6, 9, 12, 0.86);
  font-size: 12px;
  font-weight: 840;
}

.connect-step strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 19px;
  font-weight: 820;
  line-height: 1.32;
}

.connect-step p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.58;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 56px auto 0;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(122, 167, 255, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.5);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.pricing-card.is-featured {
  border-color: rgba(158, 217, 87, 0.26);
  background:
    radial-gradient(circle at 92% 10%, rgba(158, 217, 87, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.016)),
    rgba(4, 6, 9, 0.58);
}

.pricing-card__head {
  display: grid;
  gap: 8px;
}

.pricing-card__head span {
  color: rgba(158, 217, 87, 0.78);
  font-size: 12px;
  font-weight: 820;
}

.pricing-card__head strong {
  color: #fff;
  font-size: 30px;
  font-weight: 820;
  line-height: 1.08;
}

.pricing-card__head b {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 760;
}

.pricing-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.62;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.48;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(158, 217, 87, 0.82);
  box-shadow: 0 0 18px rgba(158, 217, 87, 0.28);
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 780;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.pricing-card__cta:hover {
  border-color: rgba(158, 217, 87, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.pricing-card__cta svg {
  width: 15px;
  height: 15px;
}

.pricing-checkout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: 22px;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 22px;
  border: 1px solid rgba(158, 217, 87, 0.2);
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% 12%, rgba(158, 217, 87, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(4, 6, 9, 0.64);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-checkout[hidden] {
  display: none;
}

.pricing-checkout__copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.pricing-checkout__copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 820;
  line-height: 1.12;
}

.pricing-checkout__copy p:not(.section-kicker),
.pricing-checkout__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.62;
}

.pricing-checkout__form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.pricing-checkout__form label {
  display: grid;
  gap: 8px;
}

.pricing-checkout__form label span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 720;
}

.pricing-checkout__form input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.pricing-checkout__form input:focus {
  border-color: rgba(158, 217, 87, 0.36);
}

.pricing-checkout__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(158, 217, 87, 0.32);
  border-radius: 12px;
  color: #081006;
  background: rgba(158, 217, 87, 0.9);
  font-weight: 820;
  cursor: pointer;
}

.pricing-checkout__form button:disabled {
  cursor: wait;
  opacity: 0.56;
}

.service-menu-panel {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.01)),
    rgba(4, 6, 9, 0.48);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.052);
}

.service-menu-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-menu-panel__head strong {
  color: #fff;
  font-size: 18px;
  font-weight: 820;
}

.service-menu-panel__head p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.55;
}

.service-menu-panel__head span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 680;
}

.service-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.service-limit-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 94% 10%, rgba(158, 217, 87, 0.08), transparent 35%),
    rgba(4, 6, 9, 0.72);
}

.service-limit-card__copy {
  display: grid;
  gap: 8px;
}

.service-limit-card__copy span {
  color: rgba(158, 217, 87, 0.76);
  font-size: 12px;
  font-weight: 820;
}

.service-limit-card__copy strong {
  color: #fff;
  font-size: 20px;
  font-weight: 820;
}

.service-limit-card__copy p,
.service-limit-card__copy em {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.58;
}

.service-limit-card__copy em {
  color: rgba(255, 255, 255, 0.42);
}

.service-limit-card__plans {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.service-limit-card__plans span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.service-limit-card__plans b {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-limit-card__plans strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-matrix {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.01)),
    rgba(4, 6, 9, 0.48);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.052);
}

.plan-matrix__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-matrix__head strong {
  color: #fff;
  font-size: 17px;
  font-weight: 820;
}

.plan-matrix__head span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 680;
}

.plan-matrix__table {
  overflow-x: auto;
}

.plan-matrix table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.plan-matrix th,
.plan-matrix td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.plan-matrix th:first-child,
.plan-matrix td:first-child {
  text-align: left;
}

.plan-matrix thead th {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 820;
}

.plan-matrix tbody th {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 760;
}

.plan-matrix tbody th span,
.plan-matrix tbody th small {
  display: block;
}

.plan-matrix tbody th small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.45;
  white-space: normal;
}

.plan-matrix tbody tr:last-child th,
.plan-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.data-empty {
  padding: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .agency-section {
    grid-template-columns: 1fr;
  }

  .connect-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .comparison-board {
    grid-template-columns: 1fr;
  }

  .comparison-switch {
    justify-self: center;
    transform: rotate(90deg);
  }

  .comparison-column {
    min-height: auto;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-checkout {
    grid-template-columns: 1fr;
  }

  .service-menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .connect-steps {
    grid-template-columns: 1fr;
  }

  .connect-step:not(:last-child)::after {
    left: 39px;
    right: auto;
    top: auto;
    bottom: -13px;
    width: 1px;
    height: 26px;
    background: linear-gradient(180deg, rgba(158, 217, 87, 0.46), rgba(255, 255, 255, 0));
  }

  .plan-matrix__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-back-link {
    top: 76px;
  }

  .service-menu-panel__head {
    flex-direction: column;
  }

  .service-limit-card__plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Checkout page */
.checkout-page {
  background:
    radial-gradient(circle at 62% 20%, rgba(122, 167, 255, 0.11), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(158, 217, 87, 0.09), transparent 32%),
    #020304;
}

.checkout-page .scene-shade {
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.84), rgba(2, 3, 4, 0.42), rgba(2, 3, 4, 0.84)),
    linear-gradient(180deg, rgba(2, 3, 4, 0.1), rgba(2, 3, 4, 0.84));
}

.checkout-shell {
  display: grid;
  gap: 28px;
  width: min(1180px, calc(100% - var(--section-x) * 2));
  margin: 0 auto;
  padding: 136px 0 80px;
}

.checkout-hero {
  min-height: auto;
  padding: 0;
}

.checkout-copy {
  display: grid;
  gap: 18px;
  width: min(760px, 100%);
}

.checkout-copy h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
}

.checkout-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.76;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: 14px;
}

.checkout-plan-card,
.checkout-action-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(122, 167, 255, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.56);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.checkout-plan-card h2,
.checkout-action-card h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 820;
  line-height: 1.12;
}

.checkout-plan-card > strong {
  color: rgba(158, 217, 87, 0.92);
  font-size: 22px;
  font-weight: 820;
}

.checkout-plan-card p,
.checkout-action-card p:not(.section-kicker),
.checkout-status {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.66;
}

.checkout-plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-plan-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.checkout-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(158, 217, 87, 0.82);
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 7px;
}

.checkout-form label span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 720;
}

.checkout-form input {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.checkout-form input:focus {
  border-color: rgba(158, 217, 87, 0.34);
  box-shadow: 0 0 0 3px rgba(158, 217, 87, 0.08);
}

.checkout-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(158, 217, 87, 0.28);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(158, 217, 87, 0.11);
  font-weight: 820;
  cursor: pointer;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.56;
}

.checkout-limits {
  min-height: auto;
  padding: 0;
}

@media (max-width: 860px) {
  .checkout-shell {
    width: min(100% - 36px, 1180px);
    padding-top: 118px;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage UI refresh: stronger hierarchy, less table-like repetition. */
.ops-system-section .section-head h2,
.role-section--ceo .section-head h2,
.agency-section .section-head h2,
.integration-section .section-head h2,
.trust-section .trust-copy h2,
.start-section .closing-copy h2 {
  letter-spacing: 0;
}

.ops-system-section .cinema-keywords--wide,
.role-section--ceo .cinema-keywords {
  width: min(760px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 8%, rgba(158, 217, 87, 0.12), transparent 28%),
    radial-gradient(circle at 14% 88%, rgba(122, 167, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.012)),
    rgba(3, 5, 8, 0.58);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ops-system-section .cinema-keywords--wide::before,
.role-section--ceo .cinema-keywords::before {
  left: 43px;
  top: 38px;
  bottom: 38px;
  background: linear-gradient(180deg, rgba(158, 217, 87, 0.82), rgba(122, 167, 255, 0.28), rgba(255, 255, 255, 0.04));
}

.ops-system-section .cinema-keywords li,
.role-section--ceo .cinema-keywords li {
  min-height: 82px;
  padding: 16px 0;
}

.ops-system-section .cinema-keywords li::before,
.role-section--ceo .cinema-keywords li::before {
  box-shadow:
    0 0 0 6px rgba(158, 217, 87, 0.035),
    0 0 32px rgba(158, 217, 87, 0.12);
}

.ops-system-section .cinema-keywords li:hover,
.role-section--ceo .cinema-keywords li:hover {
  border-bottom-color: rgba(158, 217, 87, 0.22) !important;
}

.agency-section {
  grid-template-columns: minmax(0, 0.56fr) minmax(580px, 0.86fr);
}

.comparison-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.35fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 12%, rgba(158, 217, 87, 0.11), transparent 30%),
    radial-gradient(circle at 6% 90%, rgba(122, 167, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.012)),
    rgba(3, 5, 8, 0.62);
  box-shadow:
    0 36px 130px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.comparison-board::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 33%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(158, 217, 87, 0.32), rgba(122, 167, 255, 0.16), transparent);
}

.comparison-board__summary {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 36% 16%, rgba(158, 217, 87, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.comparison-board__summary span,
.comparison-row small,
.connect-step small,
.pricing-card__price small,
.service-limit-card__copy span {
  color: rgba(158, 217, 87, 0.78);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-board__summary strong {
  color: #fff;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 820;
  line-height: 1.18;
}

.comparison-board__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.64;
}

.comparison-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.86fr) 34px minmax(0, 1fr);
  grid-template-areas:
    "num before arrow after"
    "num note note note";
  gap: 9px 12px;
  align-items: center;
  min-height: 104px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.18);
  animation: rowGlow 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.7s);
}

.comparison-row__index {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 840;
}

.comparison-row__before {
  grid-area: before;
  opacity: 0.62;
}

.comparison-row__after {
  grid-area: after;
}

.comparison-row__before,
.comparison-row__after {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.comparison-row strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.32;
}

.comparison-row > i {
  grid-area: arrow;
  width: 18px;
  height: 18px;
  color: rgba(158, 217, 87, 0.8);
}

.comparison-row p {
  grid-area: note;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.48;
}

.connect-steps {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(158, 217, 87, 0.11), transparent 18%, transparent 82%, rgba(122, 167, 255, 0.08)),
    rgba(3, 5, 8, 0.46);
}

.connect-steps::before {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(158, 217, 87, 0.54), rgba(122, 167, 255, 0.3), rgba(255, 255, 255, 0.08));
}

.connect-step,
.connect-step:nth-child(1),
.connect-step:nth-child(2),
.connect-step:nth-child(3),
.connect-step:nth-child(4),
.connect-step:nth-child(5),
.connect-step:nth-child(6) {
  min-height: 228px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 16%, rgba(158, 217, 87, 0.11), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.66);
}

.connect-step:not(:last-child)::after {
  content: none;
}

.connect-step__num {
  position: relative;
  z-index: 1;
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 10px;
}

.connect-step > i {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.44);
}

.connect-step small {
  display: block;
  margin-bottom: 10px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 50%, transparent 58%),
    radial-gradient(circle at 86% 10%, rgba(158, 217, 87, 0.13), transparent 28%);
  opacity: 0.56;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card__price {
  display: grid;
  gap: 5px;
  padding: 16px 0 4px;
}

.pricing-card__price b {
  color: #fff;
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 840;
  line-height: 1.08;
}

.pricing-card.is-featured .pricing-card__price b {
  color: rgba(158, 217, 87, 0.95);
}

.pricing-card__cta {
  border-radius: 999px;
}

.service-menu-panel {
  border-radius: 30px;
}

.service-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.service-limit-card {
  position: relative;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  min-height: 242px;
  padding: 22px;
}

.service-limit-card__marker {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(158, 217, 87, 0.24);
  border-radius: 50%;
  color: rgba(158, 217, 87, 0.8);
  background:
    radial-gradient(circle at 35% 24%, rgba(158, 217, 87, 0.2), transparent 34%),
    rgba(4, 6, 9, 0.74);
  font-size: 11px;
  font-weight: 840;
}

.service-limit-card__copy,
.service-limit-card__plans {
  grid-column: 2;
}

.service-limit-card__plans {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-self: end;
}

.service-limit-card__plans span {
  min-height: 58px;
}

.trust-grid {
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(122, 167, 255, 0.11), transparent 32%),
    rgba(3, 5, 8, 0.42);
}

.trust-card {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.18);
}

@keyframes rowGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.085);
    transform: translateY(0);
  }
  50% {
    border-color: rgba(158, 217, 87, 0.2);
    transform: translateY(-1px);
  }
}

@media (max-width: 1100px) {
  .agency-section {
    grid-template-columns: 1fr;
  }

  .comparison-board {
    grid-template-columns: 1fr;
  }

  .comparison-board::before {
    content: none;
  }

  .connect-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .connect-steps::before {
    content: none;
  }
}

@media (max-width: 820px) {
  .ops-system-section .cinema-keywords--wide,
  .role-section--ceo .cinema-keywords {
    padding: 18px;
    border-radius: 22px;
  }

  .comparison-row {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas:
      "num before"
      "num after"
      "num note";
  }

  .comparison-row > i {
    display: none;
  }

  .service-menu {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .connect-steps {
    grid-template-columns: 1fr;
    padding: 14px;
    border-radius: 22px;
  }

  .connect-step {
    min-height: auto !important;
  }

  .service-limit-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .service-limit-card__marker {
    width: 34px;
    height: 34px;
  }

  .service-limit-card__plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
