:root {
  --bg: #07060a;
  --bg-soft: #0c0a11;
  --panel: rgba(18, 15, 25, 0.72);
  --panel-strong: rgba(23, 19, 31, 0.92);
  --text: #f4f0f7;
  --text-soft: #a49eac;
  --text-faint: #696371;
  --purple: #8b6cff;
  --purple-bright: #b29cff;
  --purple-deep: #5b39dd;
  --green: #37d5a2;
  --green-deep: #15966f;
  --blue: #52b6ff;
  --blue-deep: #237ec7;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
  --shell: min(1240px, calc(100vw - 64px));
  --mx: 50%;
  --my: 30%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(90, 54, 201, 0.13), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(139, 108, 255, 0.42);
  color: #fff;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

#zov-webgl,
.webgl-fallback {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#zov-webgl {
  z-index: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

body.webgl-ready #zov-webgl {
  opacity: 1;
}

.webgl-fallback {
  z-index: 0;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 500ms ease;
}

body.webgl-ready .webgl-fallback {
  opacity: 0;
}

.fallback-core {
  width: min(32vw, 380px);
  aspect-ratio: 1;
  border-radius: 35% 65% 57% 43% / 48% 34% 66% 52%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.65), transparent 8%),
    radial-gradient(circle at 50% 45%, #a68cff 0%, #5b39dd 40%, rgba(91, 57, 221, 0.06) 72%);
  box-shadow:
    inset -30px -24px 70px rgba(17, 8, 46, 0.7),
    0 0 120px rgba(124, 86, 255, 0.34);
  filter: saturate(1.1);
  animation: fallback-float 8s ease-in-out infinite;
}

.fallback-ring {
  position: absolute;
  width: min(42vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(164, 137, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(139, 108, 255, 0.08);
}

.fallback-ring-a {
  transform: rotateX(65deg) rotateZ(10deg);
  animation: fallback-spin 16s linear infinite;
}

.fallback-ring-b {
  width: min(35vw, 420px);
  transform: rotateY(67deg) rotateZ(-20deg);
  border-color: rgba(55, 213, 162, 0.18);
  animation: fallback-spin-reverse 20s linear infinite;
}

.page-grid,
.page-noise,
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-grid {
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 75%);
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.page-noise {
  z-index: 100;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.cursor-glow {
  z-index: 0;
  background: radial-gradient(
    520px circle at var(--mx) var(--my),
    rgba(124, 83, 255, 0.09),
    transparent 70%
  );
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 6, 10, 0.76);
  border-color: var(--line);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.nav-shell {
  width: var(--shell);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(174, 151, 255, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(139, 108, 255, 0.3), rgba(139, 108, 255, 0.04)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(120, 79, 255, 0.18);
  transform: rotate(8deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  border-radius: 3px;
  background: linear-gradient(135deg, #b9a6ff, #7958fa);
}

.brand-mark::before {
  width: 7px;
  height: 16px;
  left: 7px;
  top: 7px;
  transform: skewX(-15deg);
}

.brand-mark::after {
  width: 7px;
  height: 12px;
  right: 7px;
  top: 7px;
  transform: skewX(-15deg);
}

.brand-mark span {
  width: 11px;
  height: 5px;
  left: 9px;
  bottom: 7px;
}

.brand-word {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.brand-word span {
  color: var(--purple-bright);
}

.brand-word strong {
  color: var(--text);
  font-weight: inherit;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 64px;
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--purple-bright);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.nav-login:hover,
.nav-login:focus-visible {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  --button-bg: rgba(255, 255, 255, 0.03);
  --button-border: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid var(--button-border);
  border-radius: 13px;
  background: var(--button-bg);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -65%;
  width: 38%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before {
  left: 130%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.nav-login:focus-visible,
.brand:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 4px;
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 11px;
  font-size: 13px;
}

.button-large {
  min-height: 54px;
  padding: 0 27px;
  border-radius: 15px;
  font-size: 14px;
}

.button-primary {
  --button-bg: linear-gradient(135deg, #8969ff, #6744ed);
  --button-border: rgba(184, 164, 255, 0.58);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 40px rgba(91, 57, 221, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 55px rgba(91, 57, 221, 0.38);
}

.button-ghost {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

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

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 6, 10, 0.98) 0%, rgba(7, 6, 10, 0.88) 38%, rgba(7, 6, 10, 0.05) 67%),
    linear-gradient(to bottom, transparent 68%, var(--bg) 100%);
  pointer-events: none;
}

.hero-shell {
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 136px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 9, 18, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(55, 213, 162, 0.1), 0 0 18px rgba(55, 213, 162, 0.8);
  animation: live-pulse 2.4s ease-in-out infinite;
}

.eyebrow-divider {
  width: 1px;
  height: 12px;
  background: var(--line-strong);
}

.hero h1,
.section-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.15vw, 94px);
}

.hero h1 > span {
  display: block;
}

.gradient-text {
  background: linear-gradient(110deg, #f4f0f7 0%, #bcaeff 35%, #8b6cff 68%, #53ddae 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted-text {
  color: #777181;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 300;
  line-height: 1.7;
}

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

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

.button-arrow {
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.hero-metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 58px 0 0;
}

.hero-metrics div {
  min-width: 126px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics dt {
  margin: 0;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-metrics dd {
  margin: 3px 0 0;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  z-index: 3;
  min-height: 620px;
}

.stage-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(177, 152, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(22deg);
  pointer-events: none;
}

.stage-orbit-a {
  width: 560px;
  height: 390px;
}

.stage-orbit-b {
  width: 410px;
  height: 520px;
  border-color: rgba(55, 213, 162, 0.1);
  transform: translate(-50%, -50%) rotate(-38deg);
}

.scene-chip {
  position: absolute;
  display: grid;
  min-width: 150px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 8, 14, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: chip-float 7s ease-in-out infinite;
}

.scene-chip::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 162, 255, 0.45));
}

.scene-chip-input {
  top: 20%;
  left: -2%;
}

.scene-chip-input::before {
  left: 100%;
}

.scene-chip-sop {
  top: 24%;
  right: -3%;
  animation-delay: -2s;
}

.scene-chip-policy {
  right: 3%;
  bottom: 20%;
  animation-delay: -4.5s;
}

.scene-chip-sop::before,
.scene-chip-policy::before {
  right: 100%;
  transform: rotate(180deg);
}

.scene-chip-meeting {
  left: 4%;
  bottom: 17%;
  animation-delay: -5.8s;
}

.scene-chip-meeting::before {
  left: 100%;
}

.chip-kicker {
  margin-bottom: 6px;
  color: var(--text-faint);
  font-family: "Syne", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.scene-chip strong {
  font-family: "Syne", sans-serif;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.chip-status {
  position: absolute;
  top: 12px;
  right: 11px;
  color: var(--purple-bright);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-status-green {
  color: var(--green);
}

.chip-status-blue {
  color: var(--blue);
}

.chip-signal {
  width: 34px;
  height: 2px;
  margin-top: 11px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), transparent);
  animation: signal 1.8s ease-in-out infinite;
}

.scene-caption {
  position: absolute;
  right: 6%;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-faint);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.caption-index {
  color: var(--purple-bright);
}

.caption-line {
  width: 38px;
  height: 1px;
  background: var(--line-strong);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 1px;
  height: 10px;
  background: var(--purple-bright);
  transform: translateX(-50%);
  animation: scroll-drop 1.8s ease-in-out infinite;
}

.product-film {
  position: relative;
  padding: 116px 0 138px;
  overflow: clip;
  scroll-margin-top: 72px;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 6, 10, 0) 0%,
      rgba(7, 6, 10, 0.94) 11%,
      rgba(7, 6, 10, 0.98) 88%,
      rgba(7, 6, 10, 0) 100%
    );
  isolation: isolate;
}

.product-film::before {
  content: "";
  position: absolute;
  inset: 2% -10% 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 25%, rgba(108, 71, 235, 0.16), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(39, 188, 143, 0.1), transparent 24%);
  filter: blur(16px);
  pointer-events: none;
}

.film-shell {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
}

.film-intro {
  width: min(100%, 1240px);
  max-width: 980px;
  margin: 0 auto 50px;
}

.film-intro h2 .gradient-text {
  display: block;
}

.film-stage {
  --film-pointer-x: 0deg;
  --film-pointer-y: 0deg;
  --film-scale: 0.965;
  --film-scroll-tilt: 5deg;
  --film-scroll-y: 22px;
  position: relative;
  padding: clamp(54px, 6.5vw, 96px) clamp(10px, 3.5vw, 48px) clamp(92px, 10vw, 150px);
  perspective: 1800px;
  transform-style: preserve-3d;
}

.film-stage::before {
  content: "";
  position: absolute;
  inset: 8% 4% 16%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(130, 93, 255, 0.24), transparent 42%),
    radial-gradient(circle at 18% 70%, rgba(52, 190, 239, 0.09), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(55, 213, 162, 0.08), transparent 30%);
  filter: blur(34px);
  opacity: 0.9;
  transform: translateZ(-180px) scale(1.08);
  pointer-events: none;
}

.film-portal {
  position: absolute;
  inset: clamp(28px, 4.2vw, 64px) clamp(0px, 2vw, 28px) clamp(72px, 8vw, 122px);
  z-index: 1;
  transform-style: preserve-3d;
  pointer-events: none;
}

.film-portal-plane {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(160, 132, 255, 0.14);
  border-radius: clamp(26px, 3vw, 44px);
  background:
    linear-gradient(90deg, rgba(139, 108, 255, 0.12), transparent 10%, transparent 90%, rgba(74, 196, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%);
  box-shadow:
    inset 0 0 55px rgba(117, 79, 242, 0.08),
    0 0 38px rgba(105, 70, 225, 0.07);
}

.film-portal-plane::before,
.film-portal-plane::after {
  content: "";
  position: absolute;
  top: 13%;
  bottom: 13%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(170, 144, 255, 0.72), transparent);
  box-shadow: 0 0 22px rgba(139, 108, 255, 0.52);
  opacity: 0.7;
}

.film-portal-plane::before {
  left: -1px;
}

.film-portal-plane::after {
  right: -1px;
}

.film-portal-plane-far {
  opacity: 0.36;
  transform: translateZ(-170px) scale(0.9);
}

.film-portal-plane-near {
  opacity: 0.74;
  transform: translateZ(-82px) scale(0.955);
}

.film-rig {
  position: relative;
  z-index: 3;
  transform:
    translate3d(0, var(--film-scroll-y), 0)
    rotateX(var(--film-scroll-tilt))
    scale(var(--film-scale));
  transform-origin: 50% 52%;
  transform-style: preserve-3d;
  transition: transform 120ms linear;
  will-change: transform;
}

.film-frame {
  position: relative;
  border: 1px solid rgba(190, 170, 255, 0.24);
  border-radius: clamp(20px, 2.4vw, 34px);
  background: rgba(8, 7, 12, 0.98);
  box-shadow:
    0 60px 170px rgba(0, 0, 0, 0.72),
    0 0 100px rgba(105, 70, 225, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotateX(var(--film-pointer-y)) rotateY(var(--film-pointer-x));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out, border-color 500ms ease, box-shadow 500ms ease;
  will-change: transform;
}

.film-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 1px solid rgba(139, 108, 255, 0.12);
  border-radius: clamp(27px, 3vw, 46px);
  background: linear-gradient(135deg, rgba(143, 110, 255, 0.07), transparent 36%, rgba(73, 188, 246, 0.045));
  box-shadow: inset 0 0 36px rgba(139, 108, 255, 0.055);
  transform: translateZ(-34px);
}

.film-frame::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -32px;
  left: 8%;
  z-index: -2;
  height: 34px;
  border-radius: 50%;
  background: rgba(95, 63, 194, 0.3);
  filter: blur(22px);
  opacity: 0.6;
  transform: translateZ(-60px) rotateX(75deg);
}

.film-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: inherit;
  background: #05050a;
  transform: translateZ(1px);
}

.film-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  background: #05050a;
  cursor: pointer;
}

.film-video:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: -6px;
}

.film-edge {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(to bottom, rgba(7, 6, 10, 0.5), transparent 12%, transparent 86%, rgba(7, 6, 10, 0.62)),
    linear-gradient(90deg, rgba(7, 6, 10, 0.34), transparent 8%, transparent 92%, rgba(7, 6, 10, 0.34));
  box-shadow: inset 0 0 clamp(42px, 7vw, 110px) rgba(7, 6, 10, 0.52);
  pointer-events: none;
}

.film-scan {
  position: absolute;
  top: -12%;
  right: 5%;
  left: 5%;
  height: 11%;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent, rgba(181, 159, 255, 0.09), transparent);
  filter: blur(5px);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.film-floor {
  position: absolute;
  right: 2%;
  bottom: 0;
  left: 2%;
  z-index: 0;
  height: 42%;
  background-image:
    linear-gradient(rgba(139, 108, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 108, 255, 0.1) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 0%, rgba(116, 78, 233, 0.18), transparent 56%);
  background-position: center top;
  background-size: 52px 32px, 52px 32px, 100% 100%;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
  opacity: 0.48;
  transform: rotateX(69deg) translateZ(-90px);
  transform-origin: 50% 100%;
  pointer-events: none;
}

.product-film.is-playing .film-frame {
  border-color: rgba(190, 170, 255, 0.34);
  box-shadow:
    0 60px 170px rgba(0, 0, 0, 0.72),
    0 0 115px rgba(105, 70, 225, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.product-film.is-playing .film-portal-plane-near {
  animation: film-portal-breathe 4.8s ease-in-out infinite;
}

.product-film.is-playing .film-scan {
  animation: film-scan-pass 7s linear infinite;
}

@keyframes film-portal-breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.84; }
}

@keyframes film-scan-pass {
  0% { opacity: 0; transform: translateY(-10%); }
  8% { opacity: 0.75; }
  82% { opacity: 0.34; }
  100% { opacity: 0; transform: translateY(970%); }
}

.section-pad {
  position: relative;
  padding: 150px 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-intro {
  max-width: 820px;
}

.section-kicker {
  margin-bottom: 26px;
}

.section-kicker span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-bright);
  font-size: 9px;
  letter-spacing: 0;
}

.section-kicker.centered {
  justify-content: center;
}

.section-intro h2,
.final-cta h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.section-intro > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
}

.story {
  min-height: 250vh;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(9, 7, 13, 0.88) 8%, rgba(9, 7, 13, 0.7) 85%, var(--bg) 100%);
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 42%, rgba(109, 70, 240, 0.11), transparent 24%),
    radial-gradient(circle at 85% 75%, rgba(28, 172, 127, 0.07), transparent 22%);
}

.story-intro {
  padding-bottom: 88px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(64px, 9vw, 140px);
}

.story-visual {
  position: sticky;
  top: 120px;
  align-self: start;
  height: calc(100vh - 170px);
  min-height: 560px;
}

.visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(100, 64, 220, 0.07), transparent 45%),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 0 100px rgba(0, 0, 0, 0.26);
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
}

.visual-frame::before {
  top: 50%;
  left: 7%;
  right: 7%;
  height: 1px;
}

.visual-frame::after {
  top: 7%;
  bottom: 7%;
  left: 50%;
  width: 1px;
}

.visual-corners {
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(var(--purple), var(--purple)) left top / 24px 1px no-repeat,
    linear-gradient(var(--purple), var(--purple)) left top / 1px 24px no-repeat,
    linear-gradient(var(--purple), var(--purple)) right top / 24px 1px no-repeat,
    linear-gradient(var(--purple), var(--purple)) right top / 1px 24px no-repeat,
    linear-gradient(var(--green), var(--green)) left bottom / 24px 1px no-repeat,
    linear-gradient(var(--green), var(--green)) left bottom / 1px 24px no-repeat,
    linear-gradient(var(--green), var(--green)) right bottom / 24px 1px no-repeat,
    linear-gradient(var(--green), var(--green)) right bottom / 1px 24px no-repeat;
  opacity: 0.45;
}

.visual-readout {
  position: absolute;
  top: 30px;
  left: 34px;
  display: grid;
  gap: 7px;
}

.visual-readout span {
  color: var(--purple-bright);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.visual-readout strong {
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.visual-axis {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-family: "Syne", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.visual-axis i {
  position: relative;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--green));
}

.visual-axis i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transform: rotate(45deg);
}

.story-steps {
  padding: 9vh 0 38vh;
}

.story-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  min-height: 73vh;
  padding: 42px 34px 42px 0;
  opacity: 0.28;
  transform: translateY(22px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.story-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story-number {
  padding-top: 7px;
  color: var(--purple-bright);
  font-family: "Syne", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-tag,
.tool-label {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-step h3,
.tool-copy h3,
.capability-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.04em;
}

.story-step h3 {
  max-width: 560px;
  font-size: clamp(31px, 3.2vw, 47px);
  line-height: 1.06;
}

.story-step div > p:not(.story-tag) {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.story-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.story-detail span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tools {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(96, 61, 205, 0.12), transparent 34%),
    var(--bg);
}

.tools::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1100px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 108, 255, 0.32), transparent);
  transform: translateX(-50%);
}

.tools-intro,
.pricing-intro {
  margin: 0 auto;
  text-align: center;
}

.tools-intro > p,
.pricing-intro > p {
  margin-right: auto;
  margin-left: auto;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 74px;
  perspective: 1400px;
}

.tool-card {
  --accent: var(--purple);
  --accent-soft: rgba(139, 108, 255, 0.16);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 660px;
  overflow: hidden;
  padding: 28px 30px 36px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008) 45%),
    rgba(12, 10, 17, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 36px 100px rgba(0, 0, 0, 0.24);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 180ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.tool-card:hover {
  border-color: rgba(139, 108, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 42px 120px rgba(0, 0, 0, 0.34),
    0 0 70px var(--accent-soft);
}

.tool-card-green {
  --accent: var(--green);
  --accent-soft: rgba(55, 213, 162, 0.13);
}

.tool-card-green:hover {
  border-color: rgba(55, 213, 162, 0.3);
}

.tool-card-blue {
  --accent: var(--blue);
  --accent-soft: rgba(82, 182, 255, 0.14);
}

.tool-card-blue:hover {
  border-color: rgba(82, 182, 255, 0.3);
}

.tool-glow {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 68%);
  pointer-events: none;
}

.tool-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-index {
  color: var(--text-faint);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(139, 108, 255, 0.23);
  border-radius: 999px;
  background: rgba(139, 108, 255, 0.08);
  color: var(--purple-bright);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
}

.live-badge-green {
  border-color: rgba(55, 213, 162, 0.24);
  background: rgba(55, 213, 162, 0.07);
  color: var(--green);
}

.live-badge-green i {
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.live-badge-blue {
  border-color: rgba(82, 182, 255, 0.24);
  background: rgba(82, 182, 255, 0.07);
  color: var(--blue);
}

.live-badge-blue i {
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.tool-visual {
  position: relative;
  height: 270px;
  margin: 40px -6px 26px;
  transform: translateZ(36px);
}

.doc-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 205px;
  height: 152px;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-34deg);
  transform-style: preserve-3d;
  animation: doc-float 7s ease-in-out infinite;
}

.doc-sheet {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(190, 174, 255, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(160, 133, 255, 0.24), rgba(38, 27, 70, 0.5)),
    rgba(16, 12, 23, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 42px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
}

.doc-sheet-back {
  transform: translateZ(-42px) translate(25px, -16px);
  opacity: 0.33;
}

.doc-sheet-mid {
  transform: translateZ(-21px) translate(12px, -8px);
  opacity: 0.58;
}

.doc-sheet-front {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.doc-sheet-front span {
  height: 5px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(191, 174, 255, 0.88), rgba(125, 89, 241, 0.12));
  box-shadow: 0 0 14px rgba(139, 108, 255, 0.18);
}

.doc-sheet-front span:nth-child(2) {
  width: 72%;
}

.doc-sheet-front span:nth-child(3) {
  width: 88%;
}

.doc-sheet-front span:nth-child(4) {
  width: 56%;
}

.tool-path {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 108, 255, 0.3), transparent);
}

.tool-path i {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 14px var(--purple);
  animation: path-dot 2.4s linear infinite;
}

.tool-path i:nth-child(2) {
  animation-delay: -0.6s;
}

.tool-path i:nth-child(3) {
  animation-delay: -1.2s;
}

.tool-path i:nth-child(4) {
  animation-delay: -1.8s;
}

.policy-visual {
  display: grid;
  place-items: center;
}

.policy-wheel {
  position: relative;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(55, 213, 162, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 70px rgba(55, 213, 162, 0.06),
    0 0 60px rgba(55, 213, 162, 0.05);
  animation: policy-turn 16s linear infinite;
}

.policy-wheel::before,
.policy-wheel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(55, 213, 162, 0.14);
  border-radius: 50%;
}

.policy-wheel::before {
  inset: 32px;
}

.policy-wheel::after {
  inset: 79px;
  background: radial-gradient(circle, rgba(55, 213, 162, 0.2), rgba(55, 213, 162, 0.03));
  box-shadow: 0 0 30px rgba(55, 213, 162, 0.12);
}

.policy-wheel span {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(55, 213, 162, 0.23);
  border-radius: 12px;
  background: rgba(13, 20, 19, 0.86);
  color: var(--green);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  animation: policy-counter 16s linear infinite;
}

.policy-wheel span:nth-child(1) {
  top: -10px;
  left: calc(50% - 21px);
}

.policy-wheel span:nth-child(2) {
  top: calc(50% - 21px);
  right: -10px;
}

.policy-wheel span:nth-child(3) {
  bottom: -10px;
  left: calc(50% - 21px);
}

.policy-wheel span:nth-child(4) {
  top: calc(50% - 21px);
  left: -10px;
}

.policy-wheel i {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: var(--green);
  box-shadow: 0 0 30px rgba(55, 213, 162, 0.55);
  transform: translate(-50%, -50%) rotate(45deg);
}

.policy-scan {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 1px;
  height: 72%;
  background: linear-gradient(transparent, var(--green), transparent);
  box-shadow: 0 0 16px var(--green);
  opacity: 0.36;
  animation: scan-sweep 5s ease-in-out infinite;
}



.meeting-visual {
  display: grid;
  place-items: center;
}

.meeting-panel {
  position: relative;
  width: min(100%, 270px);
  padding: 28px 24px 24px;
  border: 1px solid rgba(82, 182, 255, 0.23);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(82, 182, 255, 0.09), rgba(13, 15, 23, 0.82)),
    rgba(10, 12, 18, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(82, 182, 255, 0.08);
  transform: rotateX(7deg) rotateY(-8deg);
  animation: meeting-float 7s ease-in-out infinite;
}

.meeting-wave {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.meeting-wave i {
  width: 4px;
  height: 20px;
  border-radius: 99px;
  background: linear-gradient(180deg, #b9e3ff, var(--blue));
  box-shadow: 0 0 12px rgba(82, 182, 255, 0.35);
  animation: meeting-wave 1.3s ease-in-out infinite;
}

.meeting-wave i:nth-child(2),
.meeting-wave i:nth-child(8) { animation-delay: -0.2s; }
.meeting-wave i:nth-child(3),
.meeting-wave i:nth-child(7) { animation-delay: -0.45s; }
.meeting-wave i:nth-child(4),
.meeting-wave i:nth-child(6) { animation-delay: -0.7s; }
.meeting-wave i:nth-child(5) { animation-delay: -0.95s; }

.meeting-lines {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.meeting-lines span {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(178, 220, 248, 0.78), rgba(82, 182, 255, 0.08));
}

.meeting-lines span:nth-child(2) { width: 82%; }
.meeting-lines span:nth-child(3) { width: 63%; }

.meeting-action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 11px 12px;
  border: 1px solid rgba(82, 182, 255, 0.18);
  border-radius: 12px;
  background: rgba(82, 182, 255, 0.06);
  color: #cdeaff;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.meeting-action span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(82, 182, 255, 0.45);
}

.meeting-pulse {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(82, 182, 255, 0.12);
  border-radius: 50%;
  animation: meeting-pulse 3.2s ease-out infinite;
}

.development-tools {
  margin-top: 70px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(140deg, rgba(139, 108, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(11, 9, 15, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.development-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  align-items: end;
  gap: 50px;
}

.development-kicker,
.development-status {
  color: var(--purple-bright);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.development-heading h3 {
  max-width: 520px;
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
}

.development-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.development-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.development-card:hover {
  border-color: rgba(139, 108, 255, 0.24);
  background: rgba(139, 108, 255, 0.035);
  transform: translateY(-4px);
}

.development-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(139, 108, 255, 0.22);
  border-radius: 12px;
  background: rgba(139, 108, 255, 0.07);
  color: var(--purple-bright);
  font-family: "Syne", sans-serif;
  font-size: 18px;
}

.development-card h4 {
  margin-top: 9px;
  font-family: "Syne", sans-serif;
  font-size: 20px;
}

.development-card p {
  margin: 11px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.65;
}

.tool-copy {
  position: relative;
  z-index: 2;
  transform: translateZ(26px);
}

.tool-copy h3 {
  font-size: clamp(32px, 3vw, 44px);
}

.tool-copy > p:not(.tool-label) {
  margin: 17px 0 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.tool-copy ul,
.price-card ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.tool-copy li,
.price-card li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #c7c1cb;
  font-size: 12px;
}

.tool-copy li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-soft);
}

.capabilities {
  background:
    linear-gradient(180deg, var(--bg), rgba(13, 10, 18, 0.9) 50%, var(--bg));
}

.capability-intro {
  max-width: 900px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition:
    background 240ms ease,
    transform 240ms ease;
}

.capability-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.09), transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.capability-card:hover {
  z-index: 2;
  background: rgba(139, 108, 255, 0.035);
  transform: translateY(-4px);
}

.capability-card:hover::after {
  opacity: 1;
}

.capability-number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: var(--text-faint);
  font-family: "Syne", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.capability-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  border: 1px solid rgba(139, 108, 255, 0.23);
  border-radius: 14px;
  background: rgba(139, 108, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.capability-icon::before,
.capability-icon::after {
  content: "";
  position: absolute;
}

.icon-bolt::before {
  top: 10px;
  left: 17px;
  width: 13px;
  height: 25px;
  background: linear-gradient(160deg, var(--purple-bright), var(--purple));
  clip-path: polygon(55% 0, 100% 0, 66% 39%, 100% 39%, 22% 100%, 40% 55%, 0 55%);
}

.icon-globe::before {
  inset: 11px;
  border: 1px solid var(--purple-bright);
  border-radius: 50%;
}

.icon-globe::after {
  top: 12px;
  left: 20px;
  width: 7px;
  height: 22px;
  border-right: 1px solid var(--purple-bright);
  border-left: 1px solid var(--purple-bright);
  border-radius: 50%;
}

.icon-history::before {
  inset: 11px;
  border: 1px solid var(--purple-bright);
  border-left-color: transparent;
  border-radius: 50%;
}

.icon-history::after {
  top: 20px;
  left: 22px;
  width: 9px;
  height: 7px;
  border-bottom: 1px solid var(--purple-bright);
  border-left: 1px solid var(--purple-bright);
}

.icon-import::before,
.icon-export::before {
  top: 12px;
  left: 12px;
  width: 22px;
  height: 24px;
  border: 1px solid var(--purple-bright);
  border-radius: 4px;
}

.icon-import::after,
.icon-export::after {
  top: 18px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--purple-bright);
  border-bottom: 1px solid var(--purple-bright);
  transform: rotate(45deg);
}

.icon-export::after {
  top: 21px;
  transform: rotate(225deg);
}

.icon-vault::before {
  inset: 11px;
  border: 1px solid var(--purple-bright);
  border-radius: 6px;
}

.icon-vault::after {
  top: 19px;
  left: 19px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--purple-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(139, 108, 255, 0.35);
}

.capability-card h3 {
  font-size: 20px;
}

.capability-card p {
  margin: 13px 0 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

.pricing {
  background:
    radial-gradient(circle at 50% 30%, rgba(87, 53, 186, 0.11), transparent 35%),
    var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 72px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 28px 25px 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.006)),
    rgba(11, 9, 15, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.price-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.price-card-featured {
  border-color: rgba(139, 108, 255, 0.45);
  background:
    linear-gradient(145deg, rgba(139, 108, 255, 0.12), rgba(255, 255, 255, 0.012) 48%),
    rgba(15, 11, 23, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(72, 41, 153, 0.15);
}

.featured-label {
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 6px 12px;
  border: 1px solid rgba(190, 173, 255, 0.4);
  border-radius: 999px;
  background: #6f4ef0;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-top p {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.price-top span {
  color: var(--text-faint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin-top: 42px;
  font-family: "Syne", sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.price small {
  margin-left: 5px;
  color: var(--text-faint);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
}

.price-custom {
  padding-top: 8px;
  font-size: 36px;
}

.price-description {
  min-height: 64px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card li::before {
  background: var(--purple);
}

.price-card .button {
  margin-top: auto;
}

.final-cta {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(91, 57, 221, 0.08), transparent 33%),
    linear-gradient(180deg, var(--bg), rgba(8, 6, 12, 0.5));
}

.cta-shell {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
  padding: 112px 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(8, 7, 12, 0.62);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 50px 140px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.03) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(255, 255, 255, 0.03) 50%, transparent 50.1%);
  pointer-events: none;
}

.cta-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 690px;
  height: 320px;
  border: 1px solid rgba(139, 108, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.final-cta h2 span {
  display: block;
}

.final-cta p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 26px auto 0;
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 300;
}

.cta-actions {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 38px;
}

.site-footer {
  padding: 88px 0 26px;
  border-top: 1px solid var(--line);
  background: #060509;
}

.footer-shell,
.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 70px;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.65;
}

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

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--text);
  font-family: "Syne", sans-serif;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.footer-links a {
  width: fit-content;
  color: var(--text-faint);
  font-size: 12px;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #514c57;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.noscript-note {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #141019;
  color: var(--text-soft);
  font-size: 12px;
}

@keyframes fallback-float {
  0%,
  100% {
    transform: translateY(-8px) rotate(-4deg);
  }
  50% {
    transform: translateY(12px) rotate(5deg);
  }
}

@keyframes fallback-spin {
  to {
    transform: rotateX(65deg) rotateZ(370deg);
  }
}

@keyframes fallback-spin-reverse {
  to {
    transform: rotateY(67deg) rotateZ(-380deg);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.78);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.5);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes scroll-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, -4px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 9px);
  }
}

@keyframes doc-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-34deg) translateY(-5px);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-30deg) translateY(8px);
  }
}

@keyframes path-dot {
  from {
    left: 0;
    opacity: 0;
  }
  20%,
  75% {
    opacity: 1;
  }
  to {
    left: 100%;
    opacity: 0;
  }
}

@keyframes policy-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes policy-counter {
  to {
    transform: rotate(-360deg);
  }
}



@keyframes meeting-wave {
  0%, 100% { height: 16px; opacity: 0.55; }
  50% { height: 48px; opacity: 1; }
}

@keyframes meeting-float {
  0%, 100% { transform: rotateX(7deg) rotateY(-8deg) translateY(0); }
  50% { transform: rotateX(4deg) rotateY(-4deg) translateY(-10px); }
}

@keyframes meeting-pulse {
  0% { opacity: 0.45; transform: scale(0.72); }
  75%, 100% { opacity: 0; transform: scale(1.25); }
}

@keyframes scan-sweep {
  0%,
  100% {
    transform: translateX(-105px) rotate(8deg);
    opacity: 0;
  }
  20%,
  80% {
    opacity: 0.45;
  }
  50% {
    transform: translateX(105px) rotate(8deg);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1040px);
  }

  .desktop-nav {
    gap: 20px;
    margin-left: 36px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
  }

  .hero h1 {
    font-size: clamp(52px, 6.7vw, 78px);
  }

  .hero-stage {
    min-height: 560px;
  }

  .stage-orbit-a {
    width: 470px;
    height: 340px;
  }

  .stage-orbit-b {
    width: 340px;
    height: 440px;
  }

  .scene-chip {
    min-width: 132px;
  }

  .story-layout {
    gap: 64px;
  }

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

  .tool-card:last-child {
    grid-column: 1 / -1;
  }

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

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

@media (max-width: 860px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .desktop-nav,
  .nav-login,
  .nav-actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(12, 10, 17, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .mobile-nav[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav > a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 14px;
    text-decoration: none;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .hero::before {
    background:
      linear-gradient(to bottom, rgba(7, 6, 10, 0.12) 0%, rgba(7, 6, 10, 0.88) 40%, var(--bg) 88%);
  }

  .hero-shell {
    min-height: auto;
    padding: 118px 0 100px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-copy {
    max-width: 700px;
    text-align: center;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-metrics {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(48px, 10.5vw, 76px);
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stage {
    order: -1;
    min-height: 390px;
    margin-top: -46px;
    margin-bottom: -34px;
  }

  .scene-chip-input {
    left: 4%;
  }

  .scene-chip-sop {
    right: 2%;
  }

  .scene-chip-policy,
  .scene-caption,
  .stage-orbit {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .product-film {
    padding: 88px 0 108px;
  }

  .film-shell {
    width: calc(100% - 28px);
  }

  .film-intro {
    margin-bottom: 34px;
  }

  .film-stage {
    padding: 48px 18px 102px;
    perspective: 1300px;
  }

  .film-portal {
    inset: 28px 5px 80px;
  }

  .section-pad {
    padding: 110px 0;
  }

  .story {
    min-height: auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-visual {
    position: relative;
    top: auto;
    height: 520px;
    min-height: 0;
  }

  .story-steps {
    padding: 0;
  }

  .story-step {
    min-height: auto;
    margin-top: 12px;
    padding: 34px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.018);
    opacity: 1;
    transform: none;
  }

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

  .tool-card:last-child {
    grid-column: auto;
  }

  .development-tools {
    padding: 28px;
  }

  .development-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tool-card {
    min-height: 640px;
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .nav-shell {
    height: 68px;
  }

  .mobile-nav {
    top: 68px;
  }

  .brand-word {
    font-size: 18px;
  }

  .hero-shell {
    padding-top: 104px;
  }

  .hero-stage {
    min-height: 300px;
    margin-top: -34px;
  }

  .scene-chip {
    display: none;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-metrics {
    margin-top: 44px;
  }

  .hero-metrics div {
    min-width: 0;
    flex: 1;
    padding: 0 12px;
  }

  .hero-metrics dt {
    font-size: 19px;
  }

  .hero-metrics dd {
    font-size: 8px;
  }

  .product-film {
    padding: 72px 0 94px;
  }

  .film-shell {
    width: 100%;
  }

  .film-intro {
    width: calc(100% - 28px);
    margin-bottom: 28px;
  }

  .film-stage {
    padding: 34px 14px 78px;
    perspective: 900px;
  }

  .film-portal {
    inset: 23px 6px 61px;
  }

  .film-portal-plane::before,
  .film-portal-plane::after {
    top: 18%;
    bottom: 18%;
  }

  .film-frame {
    border-radius: 15px;
  }

  .film-frame::before {
    inset: -7px;
    border-radius: 21px;
  }

  .film-edge {
    box-shadow: inset 0 0 38px rgba(7, 6, 10, 0.46);
  }

  .film-floor {
    right: 0;
    left: 0;
    height: 45%;
    background-size: 34px 24px, 34px 24px, 100% 100%;
  }

  .section-intro h2,
  .final-cta h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .story-intro {
    padding-bottom: 48px;
  }

  .story-visual {
    height: 390px;
  }

  .visual-readout {
    top: 25px;
    left: 26px;
  }

  .visual-axis {
    right: 24px;
    bottom: 23px;
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px;
  }

  .story-step h3 {
    font-size: 30px;
  }

  .story-step div > p:not(.story-tag) {
    font-size: 14px;
  }

  .tool-grid {
    margin-top: 48px;
  }

  .tool-card {
    min-height: 620px;
    padding: 22px 20px 28px;
    border-radius: 21px;
  }

  .tool-visual {
    height: 235px;
  }

  .doc-stack {
    width: 170px;
    height: 126px;
  }

  .policy-wheel {
    width: 205px;
    height: 205px;
  }

  .development-tools {
    margin-top: 48px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .development-card {
    min-height: 0;
    padding: 20px;
  }

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

  .capability-card {
    min-height: 260px;
    padding: 28px;
  }

  .capability-icon {
    margin-bottom: 42px;
  }

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

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

  .cta-shell {
    padding: 84px 20px;
    border-radius: 25px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }

  .film-video {
    cursor: default;
  }

  .tool-card {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .film-stage {
    --film-scale: 1;
    --film-scroll-tilt: 0deg;
    --film-scroll-y: 0px;
  }

  .film-frame {
    --film-pointer-x: 0deg;
    --film-pointer-y: 0deg;
  }
}
