:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0b0d11;
  --ink: #ffffff;
  --paper: #f5f7fb;
  --paper-ink: #111318;
  --muted: #a8adba;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(12, 17, 26, 0.12);
  --glass: rgba(7, 9, 14, 0.54);
  --violet: #8d5cff;
  --cyan: #67d9ff;
  --emerald: #35d6a3;
  --amber: #f0b55f;
  --rose: #ff6b88;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.045), transparent 34rem),
    linear-gradient(180deg, #050506 0%, #090a0d 42%, #050506 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(240, 181, 95, 0.42);
  color: #fff;
}

.webgl-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.58);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.topbar.scrolled {
  border-color: rgba(103, 217, 255, 0.25);
  background: rgba(5, 5, 6, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.22rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo-mark {
  width: 28px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(113, 50, 168, 0.42));
}

.brand strong {
  color: var(--violet);
}

.brand i {
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(240, 181, 95, 0.9);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(6, 7, 10, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-nav .nav-dropdown a {
  justify-content: flex-start;
  min-height: 44px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.76);
}

.desktop-nav .nav-dropdown a:hover,
.desktop-nav .nav-dropdown a.active {
  background: rgba(141, 92, 255, 0.14);
  color: #fff;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.desktop-nav .nav-cta {
  color: #f5f2e8;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #55534e, #111314);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.desktop-nav .nav-cta:hover {
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(145deg, #69675f, #17191a);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
  transition: transform 180ms ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 100px 24px 36px;
  background: rgba(2, 3, 6, 0.9);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-open .menu-drawer {
  opacity: 1;
  pointer-events: auto;
}

.menu-drawer nav {
  display: grid;
  width: min(460px, 100%);
  gap: 10px;
}

.menu-drawer a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.4rem;
  font-weight: 850;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #030305;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.loader-panel {
  position: relative;
  width: min(420px, calc(100% - 36px));
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 9, 14, 0.66);
  backdrop-filter: blur(18px);
}

.loader-mark {
  font-size: 2.4rem;
  font-weight: 900;
}

.loader-mark span {
  color: var(--violet);
}

.loader-line {
  min-height: 1.5rem;
  margin: 12px 0 18px;
  color: var(--muted);
  font-weight: 650;
}

.loader-track {
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.loader-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5d5d58, #d6d1c2, #f0b55f);
  transition: width 260ms ease;
}

#app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  outline: none;
}

.page {
  min-height: 100vh;
  background: transparent;
}

.section {
  position: relative;
  padding: 104px 0;
}

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

.narrow {
  width: min(860px, calc(100% - 36px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.home-scroll {
  position: relative;
  min-height: 760vh;
  background: #020306;
  isolation: isolate;
}

.scroll-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.frame-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #020306;
  filter: none;
}

.scroll-reference-plate {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: clamp(0.08, calc(0.28 - var(--scroll-depth, 0) * 0.42), 0.28);
  filter: none;
  pointer-events: none;
  transform: translate3d(calc(var(--scroll-x, 0px) * -0.1), calc(var(--scroll-y, 0px) * 0.08), 0) scale(1.01);
}

.scroll-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.58), rgba(2, 3, 6, 0.04) 52%, rgba(2, 3, 6, 0.38)),
    linear-gradient(180deg, rgba(2, 3, 6, 0), rgba(2, 3, 6, 0.03) 52%, rgba(2, 3, 6, 0.64));
  pointer-events: none;
}

.crystal-flow {
  display: none;
}

.crystal-flow span {
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 237, 255, 0.24), rgba(141, 92, 255, 0.08), transparent);
  filter: drop-shadow(0 0 10px rgba(103, 217, 255, 0.18));
  transform: rotate(-28deg);
  animation: crystalDrift 8s ease-in-out infinite;
}

.crystal-flow span:nth-child(1) { left: 5%; top: 28%; animation-delay: -1s; }
.crystal-flow span:nth-child(2) { left: 42%; top: 18%; width: 34vw; animation-delay: -3s; }
.crystal-flow span:nth-child(3) { left: 18%; top: 66%; width: 48vw; animation-delay: -5s; }
.crystal-flow span:nth-child(4) { left: 62%; top: 62%; width: 28vw; animation-delay: -7s; }

.ancient-beam {
  display: none;
}

.scroll-content {
  position: relative;
  z-index: 3;
  height: 100%;
  pointer-events: none;
}

.dust-text-canvas {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
}

.home-panel {
  position: absolute;
  left: 0;
  bottom: clamp(42px, 8vh, 92px);
  display: block;
  width: 100%;
  padding: 0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-10px, 24px, 0) scale(0.985);
  transition: opacity 220ms ease, visibility 0s linear 240ms, transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.service-stop {
  top: 50%;
  bottom: auto;
  transform: translate3d(-8px, calc(-50% + 22px), 0) scale(0.99);
}

.service-stop.active {
  transform: translate3d(0, -50%, 0) scale(1);
}

.stop-copy > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-panel.active .stop-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.home-panel.active .stop-copy > *:nth-child(2) { transition-delay: 40ms; }
.home-panel.active .stop-copy > *:nth-child(3) { transition-delay: 90ms; }
.home-panel.active .stop-copy > *:nth-child(4) { transition-delay: 140ms; }
.home-panel.active .stop-copy > *:nth-child(5) { transition-delay: 190ms; }

.home-panel h1,
.home-panel h2 {
  margin: 16px 0 20px;
  width: min(760px, 100%);
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.58);
}

.home-panel h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
}

.service-stop h2 {
  width: min(900px, 100%);
  margin-inline: auto;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

.dust-text-ready .service-stop .stop-copy h2 {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.66);
}

.dust-text-ready .service-stop .stop-copy p {
  margin-top: clamp(18px, 3vh, 34px);
}

.home-panel p {
  width: min(640px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.home-panel-shell {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  gap: clamp(18px, 4vw, 38px);
  align-items: center;
}

.stop-copy {
  min-width: 0;
  text-align: center;
}

.service-stop p {
  width: min(620px, 100%);
  margin-inline: auto;
  font-size: 1.08rem;
}

.service-stop .station-meta {
  justify-content: center;
}

.service-chamber {
  position: relative;
  min-height: clamp(330px, 43vh, 500px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translate3d(calc(var(--scroll-x, 0px) * -0.32), calc(var(--scroll-y, 0px) * 0.24), 0);
}

.service-chamber::before,
.service-chamber::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.service-chamber::before {
  display: none;
}

.service-chamber::after {
  display: none;
}

.torch-stage {
  position: absolute;
  inset: -6% 0 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translate3d(calc(var(--scroll-x, 0px) * -0.42), calc(var(--scroll-y, 0px) * 0.26), 0) scale(calc(0.94 + var(--scroll-depth, 0) * 0.1));
}

.torch-stage::before {
  content: "";
  position: absolute;
  left: 54%;
  top: 42%;
  width: min(360px, 76%);
  height: min(210px, 68%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240, 181, 95, 0.28), rgba(240, 181, 95, 0.09) 38%, transparent 72%);
  filter: blur(8px);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.torch-canvas {
  width: 100%;
  height: 100%;
  max-width: none;
  background: transparent !important;
  filter: drop-shadow(0 0 26px rgba(240, 181, 95, 0.28));
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0 42%, rgba(0, 0, 0, 0.72) 55%, transparent 82%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 42%, rgba(0, 0, 0, 0.72) 55%, transparent 82%);
  mix-blend-mode: screen;
}

.torch-aura {
  position: absolute;
  left: 50%;
  top: 34%;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 145, 0.48), rgba(240, 181, 95, 0.13) 38%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  animation: corePulse 3.6s ease-in-out infinite;
}

.chamber-core,
.chamber-ring,
.chamber-line {
  position: absolute;
  color: var(--service-color);
}

.chamber-core {
  width: 76px;
  height: 76px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), color-mix(in srgb, var(--service-color) 55%, transparent) 34%, transparent 68%);
  box-shadow: 0 0 56px currentColor;
  animation: corePulse 3.8s ease-in-out infinite;
}

.chamber-ring {
  width: 170px;
  height: 170px;
  border: 1px solid color-mix(in srgb, var(--service-color) 70%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 38px color-mix(in srgb, var(--service-color) 22%, transparent);
  animation: rotateRing 18s linear infinite;
}

.chamber-ring.two {
  width: 245px;
  height: 245px;
  border-style: dashed;
  opacity: 0.68;
  animation-direction: reverse;
  animation-duration: 26s;
}

.chamber-line {
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.58;
  transform: rotate(-28deg);
}

.chamber-line.b {
  width: 58%;
  transform: rotate(28deg);
  opacity: 0.4;
}

.stop-steps {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}

.stop-steps li {
  min-height: 44px;
  display: grid;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(2, 3, 6, 0.58);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
  backdrop-filter: blur(14px);
}

.wall-sigil {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid color-mix(in srgb, currentColor 48%, transparent);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.52);
  box-shadow: 0 0 38px color-mix(in srgb, currentColor 28%, transparent);
}

.wall-sigil::before,
.wall-sigil::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 7px;
  opacity: 0.82;
}

.wall-sigil::after {
  width: 22px;
  height: 22px;
  opacity: 0.42;
  transform: rotate(45deg);
}

.wall-sigil.wave::before {
  width: 38px;
  height: 14px;
  border-width: 2px 0;
  border-radius: 0;
}

.wall-sigil.wave::after {
  border-radius: 50%;
}

.wall-sigil.spark::before,
.wall-sigil.spark::after {
  border-radius: 50%;
}

.wall-sigil.app::before {
  border-radius: 7px;
}

.wall-sigil.node::before,
.wall-sigil.node::after {
  border-radius: 50%;
}

.home-progress {
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  top: 30%;
  z-index: 4;
  width: 5px;
  height: min(50vh, 440px);
  border-radius: 999px;
  pointer-events: none;
}

.home-progress::before,
.home-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.home-progress::before {
  background: rgba(255, 255, 255, 0.14);
  opacity: 0.78;
}

.home-progress::after {
  height: calc(18% + var(--scroll-depth, 0) * 82%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), #f5f2e8 28%, #f0b55f 58%, rgba(255, 255, 255, 0));
  box-shadow: 0 0 18px rgba(240, 181, 95, 0.55);
  transform-origin: top;
  animation: trenchLine 2.2s ease-in-out infinite;
}

.home-progress span {
  display: none;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  transform: translateX(-50%);
}

.dark-home-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.045), transparent 30rem),
    #020306;
}

.home-after-grid {
  margin-top: 44px;
}

.video-layer {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #020305;
}

.video-layer video,
.video-layer img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transform: translate(-50%, -50%);
}

.video-layer .home-video {
  filter: none;
  transform: translate(-50%, -23%) scale(2.58);
  transform-origin: 50% 70%;
}

.video-layer .service-video {
  filter: none;
  transform: translate(-50%, -22%) scale(2.54);
  transform-origin: 50% 70%;
}

.video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.64), rgba(2, 3, 6, 0.2) 46%, rgba(2, 3, 6, 0.52)),
    linear-gradient(180deg, rgba(2, 3, 6, 0.08), rgba(2, 3, 6, 0.08) 46%, rgba(2, 3, 6, 0.68));
}

.hero-grid {
  min-height: 100svh;
  display: grid;
  align-content: end;
  gap: 46px;
  padding: 132px 0 44px;
}

.hero-copy {
  width: min(820px, 100%);
}

.hero h1 {
  margin: 16px 0 20px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.52);
}

.hero p {
  width: min(640px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.56);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.abyss-button,
.ghost-button,
.paper-button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 0;
  font-weight: 850;
  overflow: hidden;
  isolation: isolate;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.abyss-button {
  border: 0;
  background:
    linear-gradient(105deg, transparent 0 8%, rgba(255, 255, 255, 0.09) 8.4% 9.2%, transparent 9.6% 100%),
    repeating-linear-gradient(153deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 9px),
    linear-gradient(145deg, #68645a 0%, #2a2926 38%, #08090a 100%);
  color: #fff8e8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -18px 28px rgba(0, 0, 0, 0.36),
    0 18px 48px rgba(0, 0, 0, 0.34);
}

.abyss-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(240, 181, 95, 0.48) 45% 46%, transparent 47%),
    radial-gradient(circle at 84% 50%, rgba(240, 181, 95, 0.32), transparent 28%);
  opacity: 0.72;
  mix-blend-mode: screen;
  transform: translateX(-18%);
  transition: transform 260ms ease;
}

.abyss-button::after,
.ghost-button::after,
.paper-button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  clip-path: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.abyss-button span,
.ghost-button span,
.paper-button span {
  position: relative;
  z-index: 1;
}

.ghost-button {
  border: 0;
  background:
    repeating-linear-gradient(143deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 10px),
    linear-gradient(145deg, rgba(42, 42, 39, 0.82), rgba(5, 6, 8, 0.82));
  color: #f7f7f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 38px rgba(0, 0, 0, 0.22);
}

.paper-button {
  border: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(145deg, #f1eee3, #b5b1a4);
  color: #111212;
}

.abyss-button:hover,
.ghost-button:hover,
.paper-button:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 181, 95, 0.46);
}

.abyss-button:hover::before {
  transform: translateX(18%);
}

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

.metric-tile,
.glass-card,
.service-card,
.proof-card,
.price-card,
.process-card,
.work-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 10, 16, 0.62);
  backdrop-filter: blur(18px);
}

.metric-tile {
  min-height: 106px;
  padding: 18px;
}

.metric-tile strong {
  display: block;
  font-size: 1.9rem;
}

.metric-tile span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

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

.white-band .eyebrow {
  color: #176d8c;
}

.section-title {
  margin: 14px 0 0;
  font-size: 3.35rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.white-band .section-copy {
  color: #4c5565;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

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

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

.abyss-story {
  position: relative;
  min-height: 430vh;
  background: #020306;
}

.sticky-film {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.station-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  pointer-events: none;
}

.service-page {
  background: #020306;
}

.service-hero {
  min-height: 100svh;
}

.service-reference-plate {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.18;
  filter: none;
  transform: scale(1.01);
  pointer-events: none;
}

.service-hero .video-layer {
  opacity: 0.82;
}

.service-video-scroll {
  position: relative;
  min-height: 190vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #020306;
  isolation: isolate;
}

.service-video-scroll .video-layer {
  z-index: -3;
  opacity: 0.8;
}

.service-video-scroll .service-reference-plate {
  opacity: 0.16;
  transform: translate3d(calc(var(--footer-x, 0px) * -0.08), 0, 0) scale(1.02);
}

.service-video-scroll::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 45%;
  background: linear-gradient(180deg, transparent, #020306 76%);
  pointer-events: none;
}

.service-video-scroll::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.56), rgba(2, 3, 6, 0.06) 54%, rgba(2, 3, 6, 0.42));
  pointer-events: none;
}

.service-scroll-grid {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(210px, 0.36fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 110svh;
  padding: 120px 0 80px;
}

.service-scroll-copy h2 {
  margin: 14px 0 18px;
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.service-scroll-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.75;
}

.service-scroll-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.service-scroll-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 7, 12, 0.5);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.service-scroll-engraving {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-height: 210px;
  align-content: center;
  opacity: 0.72;
}

.service-scroll-engraving span {
  min-height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(4, 5, 6, 0.38);
  color: rgba(245, 242, 232, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

.service-black-screen {
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 255, 255, 0.045), transparent 32rem),
    #020306;
}

.black-panel {
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 10, 16, 0.62);
  backdrop-filter: blur(18px);
}

.black-panel .section-title {
  font-size: clamp(2.3rem, 4vw, 4.6rem);
}

.dark-list li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
}

.station-card {
  width: min(510px, calc(100% - 36px));
  margin-left: max(18px, calc((100vw - 1180px) / 2));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 10, 16, 0.64);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.station-card.active {
  opacity: 1;
  transform: translateY(0);
}

.station-card h2 {
  margin: 10px 0;
  font-size: 2.1rem;
  line-height: 1.06;
}

.station-card p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.station-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 750;
}

.station-progress {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.station-progress span {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.station-progress span.active {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.service-card,
.proof-card,
.price-card,
.process-card {
  padding: 22px;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3,
.proof-card h3,
.price-card h3,
.process-card h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-card p,
.proof-card p,
.price-card p,
.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.white-band .service-card,
.white-band .proof-card,
.white-band .price-card,
.white-band .process-card {
  border-color: var(--line-dark);
  background: #fff;
  box-shadow: 0 20px 70px rgba(12, 17, 26, 0.08);
}

.white-band .service-card p,
.white-band .proof-card p,
.white-band .price-card p,
.white-band .process-card p {
  color: #4c5565;
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(141, 92, 255, 0.22), rgba(103, 217, 255, 0.12));
}

.icon-box::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 5px;
  transform: rotate(45deg);
}

.icon-box.wave::before {
  width: 24px;
  height: 12px;
  border-width: 2px 0;
  border-radius: 0;
  transform: none;
}

.icon-box.spark::before {
  border-radius: 50%;
}

.icon-box.app::before {
  border-radius: 6px;
  transform: rotate(0deg);
}

.icon-box.node::before {
  border-radius: 50%;
  box-shadow: 0 0 18px currentColor;
}

.icon-box.diamond::before {
  border-radius: 5px;
  transform: rotate(45deg);
}

.model-stage {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.css-device {
  position: relative;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: floatDevice 8s ease-in-out infinite;
}

.css-device .ring,
.css-device .panel,
.css-device .node {
  position: absolute;
  border: 1px solid rgba(103, 217, 255, 0.36);
  border-radius: var(--radius);
  transform-style: preserve-3d;
}

.css-device .ring {
  inset: 10%;
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(141, 92, 255, 0.18), 0 0 70px rgba(103, 217, 255, 0.12);
  animation: rotateRing 18s linear infinite;
}

.css-device .ring.two {
  inset: 22%;
  border-color: rgba(240, 181, 95, 0.44);
  animation-duration: 26s;
  animation-direction: reverse;
}

.css-device .panel {
  left: 21%;
  top: 24%;
  width: 58%;
  height: 46%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  transform: rotateX(58deg) rotateZ(-28deg);
}

.css-device .node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 26px var(--cyan);
}

.css-device .node.a { left: 18%; top: 18%; }
.css-device .node.b { right: 18%; top: 28%; background: var(--emerald); box-shadow: 0 0 26px var(--emerald); }
.css-device .node.c { left: 48%; bottom: 16%; background: var(--amber); box-shadow: 0 0 26px var(--amber); }

.work-hero {
  padding-top: 150px;
}

.work-board {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

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

.filter-row button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.filter-row button.active {
  background: #fff;
  color: #071014;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.work-card {
  position: relative;
  min-height: 320px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.work-card:nth-child(1),
.work-card:nth-child(5) {
  grid-column: span 6;
}

.work-card:hover {
  border-color: rgba(103, 217, 255, 0.4);
}

.work-card.hidden {
  display: none;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(103, 217, 255, 0.24), transparent 22rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

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

.work-card .work-code {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  font-weight: 900;
}

.work-card h3 {
  position: relative;
  margin: 58px 0 12px;
  font-size: 2rem;
  line-height: 1.04;
}

.work-card p {
  position: relative;
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.work-card .work-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.work-card .launch {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.work-card .launch::before,
.work-card .launch::after {
  content: "";
  position: absolute;
  background: #fff;
}

.work-card .launch::before {
  width: 14px;
  height: 2px;
  left: 12px;
  top: 18px;
  transform: rotate(-45deg);
}

.work-card .launch::after {
  width: 8px;
  height: 8px;
  right: 11px;
  top: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  background: transparent;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  padding: 24px 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 850;
}

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

.center-copy .eyebrow {
  justify-content: center;
}

.centered {
  justify-content: center;
}

.build-better {
  overflow: hidden;
  background: #030305;
}

.build-better .section-copy {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.competitor-wall {
  display: grid;
  grid-template-columns: repeat(15, minmax(230px, 1fr));
  gap: 18px;
  width: max-content;
  margin-top: 46px;
  animation: referenceDrift 48s linear infinite;
}

.reference-card {
  min-height: 172px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, hsl(var(--card-hue) 44% 26% / 0.82), hsl(calc(var(--card-hue) + 28) 48% 12% / 0.92)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.reference-card span {
  width: max-content;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(2, 3, 6, 0.5);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reference-card h3 {
  margin: 18px 0 4px;
  font-size: 1.65rem;
  line-height: 1;
}

.reference-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.choose-section {
  overflow: hidden;
}

.dark-choice {
  background: #020306;
  color: #fff;
}

.dark-choice .eyebrow {
  color: var(--cyan);
}

.dark-choice .choice-timeline::before {
  background: linear-gradient(180deg, var(--cyan), rgba(103, 217, 255, 0.1));
}

.choice-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 54px;
}

.choice-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), rgba(141, 92, 255, 0.1));
}

.choice-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 40px;
  padding: 36px 0 36px 42px;
  border-bottom: 1px solid rgba(12, 17, 26, 0.1);
}

.choice-timeline article::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 44px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 20px rgba(141, 92, 255, 0.6);
}

.choice-timeline h3 {
  margin: 0;
  color: #050506;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.04;
}

.choice-timeline p {
  margin: 0;
  color: #4c5565;
  font-size: 1.05rem;
  line-height: 1.7;
}

.dark-choice .choice-timeline article {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.dark-choice .choice-timeline h3 {
  color: #fff;
}

.dark-choice .choice-timeline p {
  color: rgba(255, 255, 255, 0.68);
}

.industry-cta {
  overflow: hidden;
  background:
    linear-gradient(180deg, #050506 0%, #130825 100%);
}

.industry-marquee {
  display: flex;
  width: max-content;
  gap: 14px;
  margin: -14px 0 80px;
  animation: marquee 34s linear infinite;
}

.industry-marquee span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 820;
}

.faq-section .section-title {
  text-align: center;
}

.dark-faq {
  background: #020306;
  color: #fff;
}

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

.faq-item {
  border: 1px solid rgba(12, 17, 26, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(12, 17, 26, 0.045);
}

.dark-faq .faq-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 16, 0.78);
  box-shadow: none;
}

.faq-item summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 20px 54px 20px 22px;
  color: #0c111a;
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.dark-faq .faq-item summary {
  color: #fff;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  color: #667085;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
}

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

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: #4c5565;
  line-height: 1.7;
}

.dark-faq .faq-item p {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.process-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}

.process-card .num {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(141, 92, 255, 0.26), rgba(103, 217, 255, 0.14));
  color: var(--cyan);
  font-weight: 950;
}

.process-page {
  background: #030405;
}

.process-cosmic-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 0%, rgba(103, 217, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(141, 92, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 50% 86%, rgba(240, 181, 95, 0.11), transparent 26rem),
    #030405;
}

.process-cosmic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.58;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 64px),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.4px);
  background-size: auto, auto, 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
}

.process-cosmic-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(103, 217, 255, 0.08) 46%, transparent 62%),
    linear-gradient(245deg, transparent 0 28%, rgba(141, 92, 255, 0.1) 48%, transparent 68%);
  animation: cosmicSweep 12s linear infinite;
  opacity: 0.9;
}

.process-cosmic-hero .shell {
  position: relative;
  z-index: 1;
}

.process-cosmic-hero .section-title {
  max-width: 1040px;
}

.process-cosmic-hero .section-copy {
  max-width: 830px;
  color: rgba(255, 255, 255, 0.72);
}

.process-orbit {
  margin: clamp(34px, 6vw, 64px) 0 clamp(28px, 5vw, 54px);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.process-orbit-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: cosmicProcess 32s linear infinite;
}

.process-orbit-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 15, 0.58);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  white-space: nowrap;
}

.process-orbit-track b {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.process-deep-grid {
  display: grid;
  gap: 16px;
}

.process-deep-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 46%, rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 0% 0%, rgba(103, 217, 255, 0.12), transparent 22rem),
    rgba(8, 10, 15, 0.62);
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  box-shadow: 0 24px 84px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.process-deep-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--violet), var(--amber));
  box-shadow: 0 0 28px rgba(103, 217, 255, 0.28);
}

.process-deep-card .num {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(103, 217, 255, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(103, 217, 255, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  font-weight: 950;
}

.process-deep-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.process-deep-card p {
  max-width: 900px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.process-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.process-chip-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
}

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

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

@keyframes cosmicSweep {
  from {
    transform: translateX(-10%) skewX(-8deg);
  }

  to {
    transform: translateX(10%) skewX(-8deg);
  }
}

@media (max-width: 760px) {
  .process-deep-card {
    grid-template-columns: 1fr;
  }

  .process-orbit-track span {
    min-width: 210px;
  }
}

.price-card {
  min-height: 284px;
}

.price {
  display: block;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list a,
.contact-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 6, 10, 0.78);
  color: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(103, 217, 255, 0.54);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(103, 217, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(103, 217, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.ambient-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 91;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, rgba(103, 217, 255, 0.28), transparent 42%),
    linear-gradient(135deg, rgba(141, 92, 255, 0.9), rgba(5, 5, 6, 0.72));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 34px rgba(141, 92, 255, 0.2);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(1.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.24);
}

.ambient-toggle span {
  width: 4px;
  height: 14px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.66;
  transform-origin: center bottom;
}

.ambient-toggle span:nth-child(2) {
  height: 20px;
}

.ambient-toggle span:nth-child(3) {
  height: 26px;
}

.ambient-toggle span:nth-child(4) {
  height: 18px;
}

.ambient-toggle.is-playing span {
  animation: ambientBars 760ms ease-in-out infinite;
  opacity: 1;
}

.ambient-toggle.is-playing span:nth-child(2) {
  animation-delay: 110ms;
}

.ambient-toggle.is-playing span:nth-child(3) {
  animation-delay: 220ms;
}

.ambient-toggle.is-playing span:nth-child(4) {
  animation-delay: 330ms;
}

@keyframes ambientBars {
  0%,
  100% {
    transform: scaleY(0.52);
  }

  50% {
    transform: scaleY(1.14);
  }
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #3fd46f;
  box-shadow: 0 18px 44px rgba(63, 212, 111, 0.34);
}

.floating-wa span {
  position: relative;
  width: 25px;
  height: 25px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.floating-wa span::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-20deg);
}

.footer {
  position: relative;
  padding: 0 0 30px;
  border-top: 1px solid var(--line);
  background: #020306;
  color: rgba(255, 255, 255, 0.68);
}

.footer-abyss {
  position: relative;
  min-height: 112svh;
  display: grid;
  align-items: start;
  overflow: hidden;
  margin-bottom: 30px;
  padding-top: clamp(84px, 12vh, 138px);
  isolation: isolate;
}

.footer-abyss > video {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.84;
  filter: none;
  transform: translate(calc(-50% + var(--footer-x, 0px)), calc(-50% + var(--footer-y, 0px))) scale(1.16);
}

.footer-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 6, 0.84), rgba(2, 3, 6, 0.28), rgba(2, 3, 6, 0.74)),
    linear-gradient(180deg, rgba(2, 3, 6, 0.16), #020306 100%);
}

.footer-abyss.footer-plain,
.route-work .footer-abyss {
  min-height: 92svh;
  background:
    radial-gradient(circle at 50% 75%, rgba(67, 130, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.06), transparent 22rem),
    #080a10;
}

.footer-abyss.footer-plain .footer-veil,
.route-work .footer-abyss > video,
.route-work .footer-veil {
  display: none;
}

.footer-abyss.footer-plain .footer-abyss-inner,
.route-work .footer-abyss-inner {
  padding-bottom: clamp(360px, 46vh, 500px);
}

.footer-abyss-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.74fr);
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  padding-bottom: clamp(380px, 48vh, 540px);
}

.footer-film {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(103, 217, 255, 0.22);
  border-radius: var(--radius);
  background: #030407;
  box-shadow: 0 0 70px rgba(103, 217, 255, 0.08);
}

.footer-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  opacity: 0.72;
  filter: none;
}

.footer-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 46%, rgba(240, 181, 95, 0.26), transparent 8rem),
    linear-gradient(90deg, rgba(2, 3, 6, 0.2), rgba(2, 3, 6, 0.72));
}

.footer-film span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(240, 181, 95, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 52px rgba(240, 181, 95, 0.36), inset 0 0 36px rgba(240, 181, 95, 0.16);
  transform: translate(-50%, -50%);
}

.footer-cinema-copy {
  display: grid;
  align-content: center;
  padding: 0;
}

.footer-cinema-copy h2 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(2.55rem, 6vw, 5.8rem);
  line-height: 0.96;
}

.footer-cinema-copy p {
  margin: 0;
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-contact-panel {
  position: relative;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 12, 0.74);
  backdrop-filter: blur(18px) saturate(1.16);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(122, 92, 255, 0.18), transparent 15rem),
    linear-gradient(110deg, transparent, rgba(103, 217, 255, 0.08), transparent 68%);
}

.footer-contact-panel > * {
  position: relative;
  z-index: 1;
}

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

.footer-contact-grid a,
.footer-contact-grid div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.footer-contact-grid a:hover,
.footer-brand-card-large:hover,
.footer-bottom-strip a:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.footer-contact-grid span {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.footer-contact-grid strong {
  color: #fff;
  font-size: clamp(1rem, 1.32vw, 1.24rem);
  line-height: 1.2;
}

.footer-link-row {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.footer-orbit {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: min(470px, 46svh);
  min-height: 360px;
  overflow: hidden;
  --field-x: 50%;
  --field-y: 58%;
  cursor: crosshair;
}

.footer-particle-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  filter: drop-shadow(0 0 16px rgba(103, 154, 255, 0.18));
}

.force-ball {
  position: absolute;
  left: var(--field-x);
  top: var(--field-y);
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.84), rgba(136, 185, 255, 0.52) 26%, rgba(42, 101, 255, 0.92) 62%, rgba(42, 101, 255, 0.12) 100%);
  box-shadow: 0 0 38px rgba(76, 132, 255, 0.42), 0 18px 42px rgba(42, 101, 255, 0.28);
  transform: translate(-50%, -50%) scale(1);
  transition: transform 180ms ease, opacity 180ms ease;
  pointer-events: none;
}

.force-ball::before,
.force-ball::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(113, 166, 255, 0.2);
  border-radius: 50%;
  animation: forcePulse 2.4s ease-in-out infinite;
}

.force-ball::after {
  inset: -34px;
  animation-delay: -1.2s;
}

.force-ball span {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: rgba(5, 7, 12, 0.82);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.7);
}

.orbit-card {
  position: absolute;
  left: var(--field-x);
  top: calc(var(--field-y) - 76px);
  z-index: 5;
  min-width: 176px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(2, 3, 6, 0.82);
  color: #fff;
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand-card-large {
  padding-bottom: 2px;
}

.footer-brand-card img {
  width: 48px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(113, 50, 168, 0.36));
}

.footer-brand-card strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.footer-brand-card p {
  max-width: 31rem;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-links {
  margin-left: auto;
}

.footer-link-row .footer-social-links {
  margin-left: 0;
}

.footer-bottom-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

.footer-bottom-strip a {
  color: inherit;
}

.split-panel {
  padding: 28px;
}

.big-statement {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.08;
}

.soft-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.soft-list li {
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #333d4f;
  list-style: none;
}

.dark-list li {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
}

@keyframes sweep {
  0%, 55% { transform: translateX(-90%) rotate(12deg); }
  82%, 100% { transform: translateX(90%) rotate(12deg); }
}

@keyframes trenchLine {
  0%, 100% {
    opacity: 0.72;
    filter: brightness(0.9);
  }
  50% {
    opacity: 1;
    filter: brightness(1.35);
  }
}

@keyframes crystalDrift {
  0%, 100% {
    opacity: 0.18;
    transform: translate3d(-8%, 0, 0) rotate(-28deg) scaleX(0.8);
  }
  42% {
    opacity: 0.82;
  }
  70% {
    opacity: 0.34;
    transform: translate3d(14%, 18px, 0) rotate(-28deg) scaleX(1.12);
  }
}

@keyframes corePulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.92);
  }
  48% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes forcePulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.72);
  }
  48% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatDevice {
  0%, 100% { transform: translateY(0) rotateX(62deg) rotateZ(-24deg); }
  50% { transform: translateY(-12px) rotateX(56deg) rotateZ(-16deg); }
}

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

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes referenceDrift {
  to { transform: translateX(calc(-50% - 9px)); }
}

.legacy-service-page,
.service-directory-page,
.work-page {
  background: #050506;
}

.legacy-service-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #030405;
}

.legacy-video-layer {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #020304;
}

.legacy-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, calc(-50% + var(--legacy-video-y, 0px))) scale(1.02);
  filter: none;
  opacity: 1;
  will-change: transform;
}

.legacy-service-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.7), rgba(3, 4, 5, 0.1) 48%, rgba(3, 4, 5, 0.44)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.16) 0%, rgba(3, 4, 5, 0.01) 45%, #050506 100%);
  pointer-events: none;
}

.service-directory-hero {
  min-height: 100svh;
}

.service-directory-hero .legacy-bg-video {
  opacity: 0.86;
}

.service-directory-hero .legacy-service-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.68), rgba(3, 4, 5, 0.14) 44%, rgba(3, 4, 5, 0.52)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.08) 0%, rgba(3, 4, 5, 0.44) 78%, #050506 100%);
}

.legacy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: center;
  padding: 150px 0 96px;
}

.legacy-service-page .legacy-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
}

.legacy-hero-copy {
  max-width: 820px;
}

.legacy-hero-copy h1 {
  margin: 16px 0 24px;
  max-width: 850px;
  color: #fff;
  font-size: clamp(3.85rem, 7.9vw, 8.05rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.82);
}

.legacy-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}

.legacy-hero-copy .eyebrow,
.legacy-dark-section .eyebrow,
.legacy-why-section .eyebrow,
.legacy-proof-section .eyebrow,
.legacy-stat-strip .eyebrow {
  color: color-mix(in srgb, var(--service-accent, var(--cyan)) 82%, white);
}

.legacy-hero-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--service-accent) 18%, transparent), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 9, 0.5);
  backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.reference-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
}

.reference-stack span {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, hsla(var(--card-hue), 62%, 38%, 0.72), rgba(7, 8, 11, 0.92));
  color: #fff;
}

.reference-stack b,
.reference-stack small {
  display: block;
}

.reference-stack b {
  font-size: 1.35rem;
}

.reference-stack small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.voice-console,
.content-revenue-card,
.code-window,
.agent-node-map,
.service-map-panel {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
}

.voice-orbit {
  position: relative;
  width: min(310px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--service-accent) 70%, transparent);
  box-shadow: 0 0 62px color-mix(in srgb, var(--service-accent) 24%, transparent);
  animation: slow-spin 12s linear infinite;
}

.voice-orbit span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.voice-orbit span:nth-child(2) {
  inset: 28%;
  border-color: color-mix(in srgb, var(--service-accent) 70%, white 10%);
}

.voice-orbit span:nth-child(3) {
  inset: 46%;
  background: var(--service-accent);
  box-shadow: 0 0 36px var(--service-accent);
}

.voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 88px;
  margin-top: 26px;
}

.voice-wave i {
  width: 9px;
  height: calc(18px + (var(--i) % 7) * 9px);
  border-radius: 20px;
  background: var(--service-accent);
  animation: wave-pulse 1200ms ease-in-out infinite;
  animation-delay: calc(var(--i) * -70ms);
}

.voice-console strong,
.content-revenue-card strong {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 0.95;
}

.voice-console small,
.content-revenue-card span {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 850;
}

.content-revenue-card {
  border-color: color-mix(in srgb, var(--service-accent) 42%, transparent);
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--service-accent) 20%, transparent), transparent 34%),
    rgba(5, 6, 9, 0.58);
}

.content-revenue-card p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.code-window {
  align-content: center;
  justify-items: start;
  gap: 12px;
  text-align: left;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #cfbfff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(3, 4, 6, 0.76);
}

.code-window span {
  display: block;
}

.code-window.small {
  min-height: auto;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.agent-node-map {
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  gap: 14px;
}

.agent-node-map span {
  display: grid;
  width: 128px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--service-accent);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.agent-node-map i {
  width: 56px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--service-accent) 0 6px, transparent 6px 13px);
}

.agent-node-map small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 850;
}

.service-map-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-map-panel span {
  min-height: 118px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 42%, transparent);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.legacy-stat-strip {
  padding: 28px 0;
  background: #07080b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legacy-motion-band {
  position: relative;
  min-height: 145svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #030405;
}

.legacy-motion-band .legacy-bg-video {
  transform: translate(-50%, calc(-50% + var(--legacy-video-y, 0px))) scale(1.04);
}

.legacy-motion-band .legacy-service-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.74), rgba(3, 4, 5, 0.04) 54%, rgba(3, 4, 5, 0.48)),
    linear-gradient(180deg, #050506 0%, rgba(5, 5, 6, 0.08) 24%, rgba(5, 5, 6, 0.06) 72%, #050506 100%);
}

.legacy-motion-band .shell {
  position: relative;
  z-index: 1;
}

.legacy-motion-band h2 {
  max-width: 980px;
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(2.45rem, 5.15vw, 5.65rem);
  line-height: 0.96;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.84);
}

.legacy-motion-band p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.72;
}

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

.legacy-stat-grid article,
.legacy-directory-card,
.legacy-module-grid article,
.legacy-agent-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--service-accent) 16%, transparent), rgba(255, 255, 255, 0.035) 42%, transparent 78%),
    rgba(12, 14, 20, 0.5);
  backdrop-filter: blur(22px) saturate(1.28);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(255, 255, 255, 0.045);
}

.legacy-stat-grid article {
  padding: 24px;
}

.legacy-stat-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
}

.legacy-stat-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.service-clarity-section {
  position: relative;
  background:
    radial-gradient(circle at 16% 0%, color-mix(in srgb, var(--service-accent) 13%, transparent), transparent 34rem),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.05), transparent 28rem),
    #050506;
  overflow: hidden;
}

.service-clarity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 72%, transparent);
}

.service-clarity-section > .shell {
  position: relative;
  z-index: 1;
}

.service-clarity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.service-clarity-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid color-mix(in srgb, var(--service-accent) 24%, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--service-accent) 12%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.034)),
    rgba(13, 15, 21, 0.68);
  backdrop-filter: blur(18px) saturate(1.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-clarity-grid span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--service-accent) 46%, transparent);
  border-radius: 50%;
  color: color-mix(in srgb, var(--service-accent) 82%, white);
  font-weight: 950;
}

.service-clarity-grid h3 {
  margin: 28px 0 12px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.service-clarity-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.legacy-dark-section {
  position: relative;
  background: #050506;
  overflow: hidden;
}

.legacy-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--service-accent) 14%, transparent), transparent 36rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 32%);
}

.legacy-dark-section > .shell,
.legacy-proof-section > .shell,
.legacy-why-section > .shell {
  position: relative;
  z-index: 1;
}

.legacy-agent-grid,
.legacy-module-grid,
.legacy-work-grid,
.service-directory-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.legacy-agent-grid,
.legacy-module-grid,
.service-directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legacy-work-grid {
  grid-template-columns: repeat(12, 1fr);
}

.service-directory-list {
  position: relative;
  min-height: 260svh;
  padding: clamp(84px, 12vh, 150px) 0 clamp(280px, 42vh, 520px);
  overflow: hidden;
  isolation: isolate;
  background: #030405;
}

.service-directory-list .legacy-video-layer {
  opacity: 1;
}

.service-directory-list .legacy-bg-video {
  transform: translate(-50%, calc(-50% + var(--legacy-video-y, 0px))) scale(1.045);
}

.service-directory-list .legacy-service-overlay {
  background:
    linear-gradient(180deg, #050506 0%, rgba(5, 5, 6, 0.38) 10%, rgba(5, 5, 6, 0.16) 54%, rgba(5, 5, 6, 0.34) 82%, #050506 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.66), rgba(5, 5, 6, 0.18) 52%, rgba(5, 5, 6, 0.58));
}

.service-directory-list > .shell {
  position: relative;
  z-index: 1;
}

.legacy-agent-card,
.legacy-module-grid article,
.legacy-directory-card {
  min-height: 220px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.legacy-directory-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(370px, 43vh, 520px);
  border-color: color-mix(in srgb, var(--service-accent) 34%, rgba(255, 255, 255, 0.2));
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045) 42%, rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--service-accent) 24%, transparent), transparent 20rem),
    rgba(8, 10, 15, 0.46);
  color: #fff;
  overflow: hidden;
  transform-origin: 12% 0%;
  transform-style: preserve-3d;
}

.legacy-agent-card:hover,
.legacy-module-grid article:hover,
.legacy-directory-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--service-accent) 54%, transparent);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--service-accent) 24%, transparent), rgba(255, 255, 255, 0.055) 44%, transparent 78%),
    rgba(18, 20, 28, 0.62);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.38), 0 0 52px color-mix(in srgb, var(--service-accent) 14%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.legacy-directory-card::before,
.legacy-directory-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.legacy-directory-card::before {
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.13) 48%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px);
  transform: translateX(-42%);
  transition: transform 620ms ease, opacity 260ms ease;
}

.legacy-directory-card::after {
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--service-accent), transparent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--service-accent) 42%, transparent);
  opacity: 0.58;
}

.legacy-directory-card:hover {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
}

.legacy-directory-card:hover::before {
  opacity: 1;
  transform: translateX(28%);
}

.directory-hinge {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 58px;
  height: 12px;
  border-top: 1px solid color-mix(in srgb, var(--service-accent) 72%, white 8%);
  border-bottom: 1px solid color-mix(in srgb, var(--service-accent) 44%, transparent);
  opacity: 0.7;
}

.directory-card-body,
.legacy-directory-card .station-meta,
.directory-card-action,
.legacy-directory-card .legacy-card-index {
  position: relative;
  z-index: 1;
}

.directory-card-action {
  align-self: flex-start;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid color-mix(in srgb, var(--service-accent) 52%, transparent);
  border-radius: 999px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--service-accent) 18%, transparent), rgba(255, 255, 255, 0.035));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--service-accent) 10%, transparent);
}

.legacy-card-index {
  color: var(--service-accent);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.legacy-directory-card h2,
.legacy-module-grid h3,
.legacy-agent-card h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1.02;
}

.legacy-directory-card p,
.legacy-module-grid p,
.legacy-agent-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.agent-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--service-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

.agent-top b {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(84, 224, 132, 0.12);
  color: #6df28d;
  font-size: 0.75rem;
}

.legacy-agent-card a {
  display: inline-flex;
  margin-top: 28px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--service-accent);
  font-weight: 900;
}

.legacy-brand-marquee {
  display: flex;
  gap: 44px;
  width: max-content;
  padding: 8px 0 64px;
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-weight: 950;
  animation: marquee 34s linear infinite;
}

.content-revenue-showcase {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid color-mix(in srgb, var(--service-accent) 36%, transparent);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--service-accent) 22%, transparent), transparent 36rem),
    rgba(12, 13, 18, 0.78);
  text-align: center;
}

.content-revenue-showcase span {
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.content-revenue-showcase strong {
  display: block;
  margin-top: 18px;
  color: var(--service-accent);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
}

.content-revenue-showcase p {
  max-width: 610px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.legacy-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
}

.agent-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.agent-flow span {
  min-height: 68px;
  display: grid;
  flex: 1 1 160px;
  place-items: center;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--service-accent) 36%, transparent);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 900;
}

.legacy-reference-wall {
  display: grid;
  grid-template-columns: repeat(14, minmax(250px, 1fr));
  gap: 18px;
  width: max-content;
  margin-top: 46px;
  animation: referenceDrift 42s linear infinite;
}

.legacy-why-section {
  background: #f5f0fb;
  color: #0d0e12;
}

.legacy-why-section .section-title {
  color: #0d0e12;
}

.legacy-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 58px;
  padding-left: 44px;
}

.legacy-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 2px;
  background: color-mix(in srgb, var(--service-accent) 76%, transparent);
}

.legacy-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1fr);
  gap: clamp(24px, 7vw, 96px);
  padding: 42px 0;
  border-bottom: 1px solid rgba(13, 14, 18, 0.08);
}

.legacy-timeline article::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 53px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--service-accent);
  box-shadow: 0 0 24px var(--service-accent);
}

.legacy-timeline span {
  position: absolute;
  left: -12px;
  top: 45px;
  color: color-mix(in srgb, var(--service-accent) 72%, #111 18%);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.legacy-timeline h3 {
  margin: 0;
  color: #0d0e12;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.96;
}

.legacy-timeline p {
  margin: 0;
  color: rgba(13, 14, 18, 0.68);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.legacy-proof-section {
  background: #050506;
}

.legacy-proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.legacy-proof-pills span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.legacy-work-grid .work-card {
  grid-column: span 4;
}

.work-tunnel-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #030405;
}

.work-tunnel-hero .legacy-service-overlay {
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.42), rgba(5, 5, 6, 0.76)),
    linear-gradient(90deg, rgba(5, 5, 6, 0.84), rgba(5, 5, 6, 0.22) 48%, rgba(5, 5, 6, 0.7));
}

.work-tunnel-hero .shell {
  position: relative;
  z-index: 1;
}

.work-tunnel-hero .work-board {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 6, 9, 0.48);
  backdrop-filter: blur(12px);
}

.route-work .webgl-field {
  display: none;
}

.work-lab-page {
  background: #121212;
  min-height: 100svh;
}

.work-free-section {
  position: relative;
  height: 100svh;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 24% 14%, rgba(255, 255, 255, 0.045), transparent 26rem),
    radial-gradient(circle at 82% 32%, rgba(255, 255, 255, 0.035), transparent 24rem),
    #121212;
}

.work-free-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    repeating-radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%, rgba(255, 255, 255, 0.03));
  background-size: 3px 3px, cover;
}

.work-map-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.work-map-head {
  display: none;
}

.work-map-head h1 {
  margin: 8px 0 6px;
  color: #fff;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 0.98;
  max-width: 280px;
  text-transform: uppercase;
}

.work-map-head p {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.35;
}

.work-filter-bar {
  position: fixed;
  left: 50%;
  bottom: -92px;
  transform: translateX(-50%);
  z-index: 55;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(124, 92, 255, 0.18), transparent 58%),
    rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 -18px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.filter-trigger {
  position: absolute;
  left: 50%;
  top: 78px;
  min-width: 96px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 18, 21, 0.78);
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.34);
}

.work-filter-bar button[data-filter] {
  position: absolute;
  left: var(--filter-x);
  top: var(--filter-y);
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(18, 18, 21, 0.8);
  font-weight: 900;
  font-size: 0.74rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, 18px) scale(0.72);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 180ms ease, border-color 180ms ease, color 180ms ease;
}

.work-filter-bar.open button[data-filter],
.work-filter-bar:hover button[data-filter],
.work-filter-bar:focus-within button[data-filter] {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.work-filter-bar button[data-filter]:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.work-filter-bar button[data-filter].active {
  border-color: rgba(255, 255, 255, 0.62);
  color: #111;
  background: #fff;
}

.work-free-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  overscroll-behavior: contain;
  user-select: none;
  -webkit-user-select: none;
}

.work-free-viewport.is-grabbing {
  cursor: grabbing;
}

.work-case-board {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  transform: translate3d(calc(50vw - var(--board-width) / 2), calc(50vh - var(--board-height) / 2), 0);
  will-change: transform;
}

.work-case-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.work-case-card.hidden {
  display: none;
}

.work-case-card:hover,
.work-case-card.selected {
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--case-color) 32%, transparent));
}

.case-visual,
.case-group,
.work-case-card h3,
.work-case-card p,
.case-tags,
.case-open {
  position: relative;
  z-index: 1;
}

.case-visual {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 35% 24%, color-mix(in srgb, var(--case-color) 58%, rgba(255, 255, 255, 0.12)), transparent 16rem),
    linear-gradient(145deg, color-mix(in srgb, var(--case-color) 28%, #2b2b2d), #131315 68%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 9px);
  margin-bottom: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.case-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.78) 86%);
}

.case-sigil {
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: auto;
  color: #fff;
  font-size: clamp(2.1rem, 3.35vw, 4.4rem);
  line-height: 0.8;
  font-weight: 950;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.44);
  z-index: 2;
}

.case-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.22), transparent 8rem),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.065) 18px 19px);
  opacity: 0.72;
}

.case-group {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 48px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-case-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.28rem, 1.68vw, 1.95rem);
  line-height: 0.96;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-case-card p {
  display: none;
}

.case-tags {
  display: none;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
}

.case-tags i {
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 850;
  font-size: 0.78rem;
  background: rgba(0, 0, 0, 0.22);
}

.case-open {
  display: none;
  margin-top: 12px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid color-mix(in srgb, var(--case-color) 72%, #fff);
  color: #fff;
  font-weight: 950;
}

.work-story-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.story-open .work-story-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.work-story-panel {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  width: min(720px, 100vw);
  height: 100svh;
  overflow-y: auto;
  padding: 84px clamp(22px, 5vw, 56px) 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(13, 15, 20, 0.98), rgba(4, 5, 7, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px);
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-story-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.story-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.story-close::before,
.story-close::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 25px;
  width: 22px;
  height: 2px;
  background: #fff;
}

.story-close::before {
  transform: rotate(45deg);
}

.story-close::after {
  transform: rotate(-45deg);
}

.work-story {
  display: none;
}

.work-story.active {
  display: block;
}

.story-kicker {
  color: color-mix(in srgb, var(--case-color) 72%, #fff);
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.work-story h2 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.86;
  margin-bottom: 18px;
}

.story-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
  line-height: 1.65;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 34px;
}

.story-tags span {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--case-color) 34%, rgba(255, 255, 255, 0.12));
  color: rgba(255, 255, 255, 0.8);
  font-weight: 850;
}

.story-section {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 24px 0;
}

.story-section span {
  display: block;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--case-color) 74%, #fff);
  font-weight: 950;
  text-transform: uppercase;
}

.story-section p,
.story-section li {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.story-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.story-live {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--case-color) 54%, #fff);
  color: #fff;
  font-weight: 950;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--case-color) 22%, rgba(255, 255, 255, 0.08)), rgba(255, 255, 255, 0.035)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px);
}

.story-live span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@keyframes case-scan {
  0%, 100% { transform: translateX(-42%); opacity: 0.42; }
  50% { transform: translateX(24%); opacity: 0.86; }
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.58); opacity: 0.56; }
  50% { transform: scaleY(1.18); opacity: 1; }
}

@media (max-width: 1180px) {
  .work-map-head {
    display: none;
  }
}

@media (max-width: 760px) {
  .work-free-section {
    height: 100svh;
    min-height: 620px;
  }

  .work-filter-bar {
    width: 230px;
    height: 230px;
    bottom: -112px;
  }

  .work-filter-bar button[data-filter] {
    font-size: 0.64rem;
    padding: 6px 8px;
  }

  .filter-trigger {
    top: 70px;
  }

  .work-free-viewport {
    overflow: hidden;
  }

  .work-case-board {
    width: 1px;
    height: 1px;
    margin-top: 0;
  }

  .work-story-panel {
    width: 100vw;
    padding-top: 78px;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .home-panel h1 {
    font-size: 3.8rem;
  }

  .home-panel h2 {
    font-size: 3rem;
  }

  .home-panel-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-scroll-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 130px 0 90px;
  }

  .service-scroll-engraving {
    min-height: 180px;
  }

  .service-stop h2 {
    font-size: clamp(2.2rem, 7.2vw, 4rem);
  }

  .stop-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-rail,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-abyss-inner,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choice-timeline article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-card,
  .work-card:nth-child(1),
  .work-card:nth-child(5) {
    grid-column: span 6;
  }

  .station-card {
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .topbar {
    top: 12px;
    height: 56px;
  }

  .section {
    padding: 78px 0;
  }

  .hero-grid {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .home-scroll {
    min-height: 760vh;
  }

  .home-panel {
    bottom: 8vh;
    width: calc(100% - 24px);
    max-height: 80svh;
    overflow: hidden;
  }

  .service-stop {
    top: 50%;
    bottom: auto;
    max-height: 86svh;
  }

  .home-panel h1 {
    font-size: 2.75rem;
  }

  .home-panel h2 {
    font-size: 2.32rem;
  }

  .service-stop h2 {
    font-size: clamp(3.1rem, 15vw, 5.8rem);
  }

  .home-panel p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-panel-shell {
    gap: 12px;
  }

  .wall-sigil {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .wall-sigil::before {
    width: 27px;
    height: 27px;
  }

  .service-chamber {
    min-height: 180px;
    max-height: 30svh;
  }

  .service-video-scroll {
    min-height: auto;
  }

  .service-scroll-grid {
    padding: 96px 0 72px;
  }

  .service-scroll-copy h2 {
    font-size: 2.6rem;
  }

  .service-scroll-copy p {
    font-size: 1rem;
  }

  .service-scroll-engraving {
    min-height: 160px;
  }

  .stop-steps {
    display: none;
  }

  .home-progress {
    right: 14px;
  }

  .home-progress span {
    height: 28px;
  }

  .home-progress span.active {
    height: 42px;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero-rail,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-abyss-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .competitor-wall {
    grid-template-columns: repeat(15, minmax(190px, 1fr));
    animation-duration: 58s;
  }

  .choice-timeline {
    margin-top: 34px;
  }

  .choice-timeline article {
    padding: 28px 0 28px 28px;
  }

  .choice-timeline h3 {
    font-size: 1.72rem;
  }

  .industry-marquee {
    margin-bottom: 46px;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 17px 48px 17px 18px;
  }

  .footer-abyss {
    min-height: 1060px;
    padding: 92px 0 0;
    align-items: start;
  }

  .footer-abyss-inner {
    padding-bottom: 440px;
  }

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

  .footer-cinema-copy h2 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .footer-orbit {
    height: 430px;
    min-height: 390px;
  }

  .force-ball {
    width: 48px;
    height: 48px;
  }

  .force-ball span {
    inset: 12px;
  }

  .orbit-card {
    min-width: 120px;
    font-size: 0.85rem;
  }

  .video-layer .home-video,
  .video-layer .service-video {
    transform: translate(-50%, -22%) scale(3.5);
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card:nth-child(1),
  .work-card:nth-child(5) {
    grid-column: auto;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .floating-wa {
    width: 52px;
    height: 52px;
  }

  .ambient-toggle {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

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

  .webgl-field {
    display: none;
  }
}

@media (max-width: 980px) {
  .legacy-hero-grid,
  .legacy-split {
    grid-template-columns: 1fr;
  }

  .legacy-hero-copy h1 {
    font-size: clamp(3.05rem, 9.4vw, 5.9rem);
  }

  .legacy-hero-visual {
    min-height: 340px;
  }

  .legacy-stat-grid,
  .legacy-agent-grid,
  .legacy-module-grid,
  .service-clarity-grid,
  .service-directory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legacy-timeline article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .agent-node-map {
    grid-template-columns: 1fr;
  }

  .agent-node-map i {
    width: 2px;
    height: 36px;
  }
}

@media (max-width: 680px) {
  .legacy-service-hero {
    min-height: 100svh;
  }

  .legacy-hero-grid {
    padding: 116px 0 72px;
  }

  .legacy-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.95rem);
    line-height: 0.94;
  }

  .legacy-hero-copy p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .legacy-bg-video {
    width: 100%;
    height: 100%;
    transform: translate(-50%, calc(-50% + var(--legacy-video-y, 0px))) scale(1.18);
  }

  .legacy-service-overlay {
    background:
      linear-gradient(90deg, rgba(3, 4, 5, 0.82), rgba(3, 4, 5, 0.34)),
      linear-gradient(180deg, rgba(3, 4, 5, 0.22), #050506 100%);
  }

  .legacy-stat-grid,
  .legacy-agent-grid,
  .legacy-module-grid,
  .service-clarity-grid,
  .service-directory-grid {
    grid-template-columns: 1fr;
  }

  .service-clarity-grid article {
    min-height: 230px;
  }

  .legacy-motion-band h2 {
    font-size: clamp(2.25rem, 11vw, 4.1rem);
  }

  .legacy-hero-visual {
    min-height: 260px;
  }

  .reference-stack {
    grid-template-columns: 1fr 1fr;
    transform: none;
  }

  .reference-stack span {
    min-height: 88px;
    padding: 12px;
  }

  .legacy-timeline {
    margin-top: 34px;
    padding-left: 28px;
  }

  .legacy-timeline::before {
    left: 4px;
  }

  .legacy-timeline article::before {
    left: -30px;
  }

  .legacy-timeline span {
    display: none;
  }

  .legacy-timeline h3 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
  }

  .content-revenue-showcase strong {
    font-size: clamp(3.4rem, 15vw, 5.5rem);
  }

  .legacy-reference-wall {
    grid-template-columns: repeat(14, minmax(190px, 1fr));
  }

  .legacy-work-grid {
    grid-template-columns: 1fr;
  }

  .legacy-work-grid .work-card {
    grid-column: auto;
  }
}
