/**
 * compiledbySevval — Orbital hero
 * Prefix: cbsv-
 */

:root {
  --cbsv-bg: #f4f5f7;
  --cbsv-bg-soft: #eef0f3;
  --cbsv-text: #0a0a0b;
  --cbsv-text-muted: #5c5f66;
  --cbsv-border: #0a0a0b;
  --cbsv-accent: #6d52e8;
  --cbsv-accent-soft: rgba(123, 77, 255, 0.14);
  --cbsv-accent-glow: rgba(123, 77, 255, 0.35);
  --cbsv-accent-glow-2: rgba(167, 139, 250, 0.22);
  --cbsv-glass: rgba(255, 255, 255, 0.55);
  --cbsv-glass-border: rgba(255, 255, 255, 0.75);
  --cbsv-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  --cbsv-radius-lg: 22px;
  --cbsv-radius-full: 9999px;
  --cbsv-header-h: 76px;
  --cbsv-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --cbsv-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.cbsv-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--cbsv-bg);
  color: var(--cbsv-text);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.cbsv-orbital-hero,
.cbsv-hero-section {
  position: relative;
  overflow: hidden;
}

.cbsv-hero--has-video .cbsv-hero__ambient {
  opacity: 0.38;
  background:
    radial-gradient(ellipse 92% 68% at 50% -8%, rgba(226, 220, 255, 0.34) 0%, transparent 52%),
    radial-gradient(ellipse 58% 48% at 88% 55%, rgba(187, 170, 255, 0.16) 0%, transparent 46%),
    radial-gradient(ellipse 45% 38% at 12% 70%, rgba(156, 130, 255, 0.09) 0%, transparent 48%),
    linear-gradient(
      165deg,
      rgba(244, 245, 247, 0.62) 0%,
      rgba(250, 251, 252, 0.52) 45%,
      rgba(238, 240, 243, 0.58) 100%
    );
}

/*
 * Background stack inside .cbsv-hero (matches cinematic-hero-opening.php order):
 * z0 wrap + video · z1 wrap::after overlay · z2 ambient · z3 noise · z4 vignette
 * Hero chrome (shell / orbit / intro): z10 · Fixed glass navbar: z9999 (pointer-events unaffected on spheres)
 */

.cbsv-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.cbsv-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: blur(0.3px) saturate(1.18) contrast(1.08);
  transform: scale(1.04);
}

.cbsv-hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.32;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.38));
}

.cbsv-hero__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 92% 68% at 50% -8%, rgba(226, 220, 255, 0.4) 0%, transparent 52%),
    radial-gradient(ellipse 58% 48% at 88% 55%, rgba(187, 170, 255, 0.18) 0%, transparent 46%),
    radial-gradient(ellipse 45% 38% at 12% 70%, rgba(156, 130, 255, 0.11) 0%, transparent 48%),
    linear-gradient(165deg, var(--cbsv-bg) 0%, #fafbfc 45%, var(--cbsv-bg-soft) 100%);
}

.cbsv-hero__noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.055;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.cbsv-hero__vignette {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(ellipse 72% 58% at 50% 44%, transparent 0%, rgba(244, 240, 255, 0.34) 100%),
    radial-gradient(circle at 50% 50%, transparent 42%, rgba(15, 23, 42, 0.04) 100%);
}

/* —— Header —— */
.cbsv-header,
.site-header,
.cbsv-hero > header {
  position: fixed !important;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 18px) !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999 !important;
  height: var(--cbsv-header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.cbsv-header__logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.35rem 0;
  border-radius: 10px;
  transition: opacity 0.25s ease;
}

.cbsv-header__logo:hover {
  opacity: 1;
}

.cbsv-logo img,
.cbsv-header-logo-img {
  display: block;
  height: clamp(42px, 3.8vw + 28px, 52px);
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: left center;
  -webkit-touch-callout: none;
  user-select: none;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.cbsv-logo:hover img {
  transform: translateY(-1px) scale(1.02);
  filter:
    drop-shadow(0 0 10px var(--cbsv-accent-glow))
    drop-shadow(0 0 22px var(--cbsv-accent-glow-2));
}

@media (max-width: 780px) {
  .cbsv-logo img,
  .cbsv-header-logo-img {
    height: 38px;
  }
}

.cbsv-logo:focus-visible {
  outline: 2px solid var(--cbsv-accent);
  outline-offset: 4px;
  border-radius: 10px;
}

.cbsv-header__nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 1.5vw, 0.65rem);
  align-items: center;
  justify-content: center;
}

.cbsv-header__nav ul,
.cbsv-header__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.5vw, 0.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.cbsv-header__nav li {
  margin: 0;
}

.cbsv-header__nav a,
.cbsv-nav a,
.site-nav a,
.cbsv-hero header nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.82);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.35);
  position: relative;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.cbsv-header__nav a::after {
  display: none;
}

.cbsv-header__nav a:hover,
.cbsv-nav a:hover,
.site-nav a:hover,
.cbsv-hero header nav a:hover {
  background: linear-gradient(
    135deg,
    rgba(237, 233, 255, 0.42) 0%,
    rgba(217, 200, 255, 0.35) 100%
  );
  color: rgba(31, 25, 55, 0.96);
  text-shadow: none;
  transform: translateY(-1px);
  box-shadow:
    0 6px 18px rgba(123, 77, 255, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.cbsv-header__nav a:focus-visible,
.cbsv-nav a:focus-visible,
.site-nav a:focus-visible,
.cbsv-hero header nav a:focus-visible {
  outline: 2px solid var(--cbsv-accent);
  outline-offset: 2px;
}

.cbsv-header__cta-wrap {
  justify-self: end;
}

.cbsv-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--cbsv-text);
  border: 1px solid rgba(10, 10, 11, 0.65);
  border-radius: var(--cbsv-radius-full);
  text-decoration: none;
  box-shadow:
    0 4px 22px rgba(10, 10, 11, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 0 32px rgba(255, 255, 255, 0.14);
  transition: transform 0.45s var(--cbsv-ease-out),
    box-shadow 0.45s var(--cbsv-ease-out),
    background 0.3s ease;
}

.cbsv-header__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 38px rgba(10, 10, 11, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.26) inset,
    0 0 48px var(--cbsv-accent-glow-2),
    0 0 32px rgba(123, 77, 255, 0.18);
  background: #050508;
}

.cbsv-header__cta:focus-visible {
  outline: 2px solid var(--cbsv-accent);
  outline-offset: 3px;
}

body.admin-bar .cbsv-header,
html.admin-bar .cbsv-header {
  top: 50px !important;
}

@media (max-width: 782px) {
  body.admin-bar .cbsv-header,
  html.admin-bar .cbsv-header {
    top: 56px !important;
  }
}

@media (max-width: 780px) {
  .cbsv-header__nav {
    display: none;
  }

  .cbsv-header {
    grid-template-columns: 1fr auto;
  }

  .cbsv-header__cta-wrap {
    justify-self: end;
  }

  .cbsv-menu-toggle {
    display: flex;
    margin-right: 0.75rem;
  }
}

@media (min-width: 781px) {
  .cbsv-menu-toggle {
    display: none !important;
  }
}

/* Simple mobile drawer trigger (optional pairing in JS later) */
.cbsv-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

/* —— Shell —— */
.cbsv-hero__shell {
  position: relative;
  z-index: 10;
  padding-top: calc(18px + var(--cbsv-header-h) + 0.75rem) !important;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.admin-bar .cbsv-hero__shell,
html.admin-bar .cbsv-hero__shell {
  padding-top: calc(50px + var(--cbsv-header-h) + 0.75rem) !important;
}

@media (max-width: 782px) {
  body.admin-bar .cbsv-hero__shell,
  html.admin-bar .cbsv-hero__shell {
    padding-top: calc(56px + var(--cbsv-header-h) + 0.75rem) !important;
  }
}

.cbsv-hero__intro {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.75rem) 1.25rem 0;
  max-width: 560px;
  margin: 0 auto;
}

.cbsv-hero__intro::before {
  content: "";
  position: absolute;
  inset: -28px -48px;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.34) 45%, rgba(255, 255, 255, 0) 75%);
  filter: blur(8px);
  pointer-events: none;
}

@keyframes cbsvHeroReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/*
 * Entrance motion: visibility baseline is explicitly set below so no-JS viewers and any
 * environment where animations do not execute still see copy. Entrance uses fill-mode forwards
 * only (never backwards/both — those applied opacity:0 from the first keyframe before playback
 * and could strand hero text invisible alongside animation-delay).
 *
 * Animations attach only under html.cbsv-js so crawlers/simple HTML renderings skip motion.
 */

.cbsv-hero__intro > .cbsv-hero__eyebrow,
.cbsv-hero__intro > .cbsv-hero__title,
.cbsv-hero__intro > .cbsv-hero__subtitle {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.cbsv-js .cbsv-hero__intro > .cbsv-hero__eyebrow,
  html.cbsv-js .cbsv-hero__intro > .cbsv-hero__title,
  html.cbsv-js .cbsv-hero__intro > .cbsv-hero__subtitle {
    animation: cbsvHeroReveal 1.08s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  html.cbsv-js .cbsv-hero__intro > .cbsv-hero__title {
    animation-delay: 0.1s;
  }

  html.cbsv-js .cbsv-hero__intro > .cbsv-hero__subtitle {
    animation-delay: 0.2s;
  }
}

.cbsv-hero__title,
.cbsv-hero__subtitle,
.cbsv-hero__eyebrow {
  position: relative;
  z-index: 21;
}

.cbsv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cbsv-text);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), 0 0 18px rgba(255, 255, 255, 0.4);
}

.cbsv-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cbsv-accent);
  box-shadow: 0 0 0 4px var(--cbsv-accent-soft);
}

.cbsv-hero__title {
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: var(--cbsv-text);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62),
    0 2px 20px rgba(255, 255, 255, 0.5);
}

.cbsv-hero__subtitle {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.55;
  color: var(--cbsv-text-muted);
  margin: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 0 16px rgba(255, 255, 255, 0.35);
}

/* Orbit + intro sit above video stack (z0 wrap, z2–4 scrims), below fixed glass header (z9999). */
.cbsv-orbit-shell {
  position: relative;
  z-index: 10;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  padding: clamp(0.25rem, 1vw, 1rem) 0 clamp(2.5rem, 7vh, 4.5rem);
  isolation: isolate;
}

.cbsv-orbit-shell::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -8% -4% 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 78% 56% at 50% 42%, rgba(156, 130, 255, 0.17) 0%, transparent 58%),
    radial-gradient(ellipse 42% 36% at 72% 28%, rgba(226, 220, 255, 0.13) 0%, transparent 50%);
  opacity: 0.94;
}

.cbsv-orbit-shell > * {
  position: relative;
  z-index: 1;
}

.cbsv-orbit-shell__stage {
  position: relative;
  width: min(90vw, 100%);
  max-width: min(1920px, 100%);
  margin: 0 auto;
  min-height: clamp(340px, 60vh, 66vh);
  height: clamp(44vh, 60vh, 65vh);
  pointer-events: auto;
}

/** Decorative orbit guides (pseudo only); orbit-layer lifted so hits still reach interaction-layer */
.cbsv-orbit-shell__stage::before,
.cbsv-orbit-shell__stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 72%;
  height: 34%;
  border: 1px solid rgba(165, 140, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  box-shadow: 0 0 24px rgba(140, 110, 255, 0.1);
  pointer-events: none;
  z-index: 1;
}

.cbsv-orbit-shell__stage::after {
  width: 86%;
  height: 42%;
  opacity: 0.55;
  transform: translate(-50%, -50%) rotate(7deg);
}

.cbsv-orbit-shell__stage .cbsv-orbit-layer {
  z-index: 2;
}

.cbsv-hint-wrap {
  position: relative;
  z-index: 6;
  pointer-events: none;
}

.cbsv-orbit-layer {
  position: absolute;
  inset: 0 1%;
  perspective: 1400px;
  perspective-origin: 50% 46%;
  pointer-events: none;
}

.cbsv-orbit-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.55s var(--cbsv-ease-smooth);
  background: rgba(248, 250, 252, 0.1);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
}

.cbsv-orbit-layer--active::before {
  opacity: calc(0.78 * var(--cbsv-fe, 0));
}

.cbsv-orbit-svg {
  position: absolute;
  inset: -2%;
  width: calc(100% + 4%);
  height: calc(100% + 4%);
  z-index: 0;
  pointer-events: none;
  /* ~0.14–0.26 effective with stroke breath; drop-shadow keeps paths legible on dark video */
  opacity: 0.26 !important;
  mix-blend-mode: screen !important;
  filter:
    blur(0.35px) drop-shadow(0 0 8px rgba(154, 120, 255, 0.32)) !important;
  transition:
    opacity 1s var(--cbsv-ease-smooth),
    filter 0.55s var(--cbsv-ease-smooth);
}

.cbsv-orbit-svg .cbsv-orbit-path {
  pointer-events: none;
}

.cbsv-orbit-layer--active .cbsv-orbit-svg {
  filter:
    blur(calc(2.5px + 2px * var(--cbsv-fe, 0)))
    drop-shadow(0 0 10px rgba(150, 120, 255, 0.26)) !important;
  opacity: calc(0.15 + 0.16 * (1 - var(--cbsv-fe, 1))) !important;
}

/* Backdrop catches empty-area clicks below the interaction layer */
.cbsv-orbit-scene.cbsv-orbit-scene--backdrop {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: auto;
}

/* Hit targets: always above decorative SVG / frosted layer; layer pe:none, buttons pe:auto */
.cbsv-orbit-interaction-layer {
  position: absolute;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  transform-style: preserve-3d;
}

.cbsv-orbit-interaction-layer .cbsv-sphere {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 501 !important;
}

.cbsv-orbit-interaction-layer .cbsv-sphere::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08) 28%, transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 45%);
  mix-blend-mode: soft-light;
  opacity: 0.5;
  z-index: 14;
  pointer-events: none !important;
}

.cbsv-orbit-interaction-layer .cbsv-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    inset 0 -14px 22px rgba(15, 23, 42, 0.16),
    0 16px 44px rgba(15, 23, 42, 0.18);
  opacity: 0.4;
  z-index: 15;
  pointer-events: none !important;
}

.cbsv-orbit-interaction-layer .cbsv-sphere * {
  pointer-events: none !important;
}

/**
 * Focused sphere: dominant layer, cinematic shadow/glow.
 * Transform is driven per frame in JS (long blend); shadow/filter ease here for depth.
 */
.cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active {
  z-index: 1000 !important;
  transition:
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 450ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 400ms ease;
  box-shadow:
    0 0 0 1px rgba(123, 77, 255, 0.32),
    0 0 52px rgba(123, 77, 255, 0.32),
    0 40px 90px rgba(15, 23, 42, 0.28),
    0 14px 32px rgba(15, 23, 42, 0.2);
}

.cbsv-orbit-focus-chrome {
  position: absolute;
  inset: 0;
  z-index: 600;
  pointer-events: none;
}

@keyframes cbsvOrbitDashFlow {
  to {
    stroke-dashoffset: -172;
  }
}

@keyframes cbsvOrbitSpark {
  0%,
  100% {
    opacity: 0.07;
  }
  45% {
    opacity: 0.24;
  }
}

@keyframes cbsvOrbitSparkDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0.35px, -0.45px);
  }
}

@keyframes cbsvOrbitStrokeBreath {
  0%,
  100% {
    stroke-opacity: 0.07;
    opacity: 0.06;
  }
  50% {
    stroke-opacity: 0.16;
    opacity: 0.11;
  }
}

.cbsv-orbit-stroke--flow {
  animation:
    cbsvOrbitDashFlow 54s linear infinite,
    cbsvOrbitStrokeBreath 19s ease-in-out infinite;
}

.cbsv-orbit-stroke--flow-slow {
  animation:
    cbsvOrbitDashFlow 72s linear infinite reverse,
    cbsvOrbitStrokeBreath 24s ease-in-out infinite reverse;
}

.cbsv-orbit-stroke--flow-rev {
  animation:
    cbsvOrbitDashFlow 62s linear infinite reverse,
    cbsvOrbitStrokeBreath 17s ease-in-out -3.2s infinite;
}

/* Ultra-thin atmospheric rings; opacity band ~0.05–0.12 via breath + screen blend on parent */
.cbsv-orbit-svg ellipse.cbsv-orbit-stroke--flow {
  stroke-width: 0.78 !important;
}

.cbsv-orbit-svg ellipse.cbsv-orbit-stroke--flow-slow {
  stroke-width: 0.58 !important;
}

.cbsv-orbit-svg ellipse.cbsv-orbit-stroke--flow-rev {
  stroke-width: 0.48 !important;
}

.cbsv-orbit-spark {
  transform-box: fill-box;
  transform-origin: center;
  mix-blend-mode: screen;
  filter: blur(0.25px);
  animation-name: cbsvOrbitSpark, cbsvOrbitSparkDrift;
  animation-duration: 5.8s, 12s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

/* Focus slot: reserves left column for selected sphere (measured in JS) */
.cbsv-focus-row__sphere-slot {
  display: none;
  pointer-events: none;
}

.cbsv-focus-row {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  z-index: 1;
}

.cbsv-focus-row > * {
  pointer-events: none;
}

.cbsv-orbit-shell__stage.is-focus .cbsv-focus-row > .cbsv-info-card.is-visible {
  pointer-events: auto;
}

.cbsv-orbit-shell__stage.is-focus .cbsv-focus-row {
  display: grid;
  grid-template-columns: minmax(min(310px, 34vw), 360px) minmax(420px, 520px);
  justify-content: center;
  align-items: center;
  column-gap: clamp(2rem, 4.5vw, 3.75rem);
  max-width: min(1120px, 96%);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2vw, 1.25rem);
  box-sizing: border-box;
}

.cbsv-orbit-shell__stage.is-focus .cbsv-focus-row__sphere-slot {
  display: block;
  min-height: clamp(280px, 36vh, 360px);
  width: 100%;
}

/* Card motion during focus is driven by --cbsv-fe (0–1) from JS for butter-smooth pairing with the sphere */
.cbsv-info-card {
  width: 100%;
  max-width: 520px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(48px) scale(0.96);
  transition: none;
  pointer-events: none;
  visibility: hidden;
}

.cbsv-orbit-shell__stage.is-focus .cbsv-info-card.is-visible {
  opacity: var(--cbsv-fe, 1);
  transform: translateX(calc((1 - var(--cbsv-fe, 1)) * 48px)) scale(calc(0.94 + var(--cbsv-fe, 1) * 0.06));
  visibility: visible;
}

.cbsv-info-card__inner {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--cbsv-radius-lg);
  background: var(--cbsv-glass);
  border: 1px solid var(--cbsv-glass-border);
  box-shadow: var(--cbsv-shadow), 0 0 0 1px rgba(10, 10, 11, 0.04) inset;
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.cbsv-info-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cbsv-accent);
  margin-bottom: 0.65rem;
}

.cbsv-info-card__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cbsv-accent);
  opacity: 0.35;
}

.cbsv-info-card__title {
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.cbsv-info-card__desc {
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--cbsv-text-muted);
  margin: 0 0 1.25rem;
}

.cbsv-info-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cbsv-info-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: var(--cbsv-text);
  border: 1px solid var(--cbsv-border);
  border-radius: var(--cbsv-radius-full);
  text-decoration: none;
  transition: transform 0.4s var(--cbsv-ease-out), box-shadow 0.4s ease;
}

.cbsv-info-card__btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 28px rgba(10, 10, 11, 0.16),
    0 0 24px rgba(123, 77, 255, 0.14);
}

.cbsv-info-card__close {
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cbsv-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.45rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.cbsv-info-card__close:hover {
  color: var(--cbsv-text);
}

@keyframes cbsvSphereDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(-1.6deg);
  }
  50% {
    transform: translate3d(0, -4px, 0) rotateZ(2deg);
  }
}

@keyframes cbsvActiveFocusFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(-0.45deg);
  }
  50% {
    transform: translate3d(0, -3px, 0) rotateZ(0.55deg);
  }
}

.cbsv-sphere__drift {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-origin: 50% 50%;
  animation: cbsvSphereDrift 15s ease-in-out infinite;
  will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
  .cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active .cbsv-sphere__drift {
    animation: cbsvActiveFocusFloat 3.25s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  }
}

/* Spheres — orbit position from JS only; hover = scale + green glow on inner mount */
.cbsv-sphere {
  --cbsv-globe-photo: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--cbsv-sphere-size, clamp(150px, 14.5vmin, 190px));
  height: var(--cbsv-sphere-size, clamp(150px, 14.5vmin, 190px));
  margin: calc(var(--cbsv-sphere-size, clamp(150px, 14.5vmin, 190px)) / -2) 0 0
    calc(var(--cbsv-sphere-size, clamp(150px, 14.5vmin, 190px)) / -2);
  padding: 0;
  border: none;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50%;
  transform-origin: center center;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  perspective: 520px;
  transform-style: preserve-3d;
  transition:
    box-shadow 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.cbsv-sphere:focus-visible {
  outline: 2px solid var(--cbsv-accent);
  outline-offset: 6px;
}

.cbsv-sphere__globe-mount {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 0.35s ease;
}

.cbsv-sphere__outer-bloom {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 40% 35%, rgba(109, 82, 232, 0.28), transparent 58%),
    radial-gradient(circle at 62% 72%, rgba(187, 170, 255, 0.16), transparent 62%);
  filter: blur(9px);
  opacity: 0.78;
  z-index: 0;
  transition:
    opacity 0.65s var(--cbsv-ease-out),
    filter 0.65s var(--cbsv-ease-out),
    transform 0.65s var(--cbsv-ease-out);
}

.cbsv-sphere__ball {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background-color: rgba(215, 222, 232, 0.88);
  background-image: var(--cbsv-globe-photo, none),
    radial-gradient(
      circle at 30% 22%,
      #ffffff 0%,
      #eef1f6 26%,
      #c5d0e2 55%,
      #8b98ad 88%,
      #5a6578 100%
    );
  background-size: cover, 100% 100%;
  background-blend-mode: soft-light, normal;
  box-shadow:
    inset -22px -26px 38px rgba(12, 16, 28, 0.38),
    inset 14px 14px 28px rgba(255, 255, 255, 0.45),
    inset 0 -10px 24px rgba(15, 23, 42, 0.16),
    inset 0 0 52px rgba(124, 90, 255, 0.06),
    0 6px 20px rgba(15, 23, 42, 0.1),
    0 22px 48px rgba(109, 82, 232, 0.1);
}

.cbsv-sphere__ball[data-has-photo="true"] {
  background-color: transparent;
  background-image: radial-gradient(
    circle at 30% 24%,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(241, 245, 249, 0.14) 32%,
    rgba(226, 232, 240, 0.18) 55%,
    rgba(148, 163, 184, 0.2) 100%
  );
  background-size: 100% 100%;
  background-blend-mode: soft-light;
}

.cbsv-sphere__ball::before {
  content: "";
  position: absolute;
  top: -6%;
  left: 10%;
  width: 58%;
  height: 48%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 80% 70% at 45% 38%,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.35) 42%,
    transparent 72%
  );
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.52;
  z-index: 7;
}

.cbsv-sphere__photo {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  image-rendering: auto;
  filter: none;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active .cbsv-sphere__photo {
  filter: contrast(1.09) saturate(1.08) brightness(1.03) !important;
  opacity: 1 !important;
}

.cbsv-sphere__depth {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle at 72% 68%,
    transparent 0%,
    transparent 35%,
    rgba(12, 18, 32, 0.22) 100%
  );
  mix-blend-mode: multiply;
  opacity: 0.92;
  z-index: 3;
}

.cbsv-sphere__shine-sweep {
  position: absolute;
  top: 8%;
  left: 14%;
  width: 64%;
  height: 52%;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.74) 0%,
    rgba(255, 255, 255, 0.2) 28%,
    transparent 62%
  );
  opacity: 0.44;
  transform: rotate(-16deg);
  filter: none;
  mix-blend-mode: overlay;
  z-index: 4;
}

.cbsv-sphere__inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.42) 0%, transparent 38%),
    radial-gradient(circle at 74% 78%, rgba(124, 90, 255, 0.18) 0%, transparent 48%),
    radial-gradient(circle at 48% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 42%);
  mix-blend-mode: soft-light;
  opacity: 0.74;
  z-index: 5;
}

.cbsv-sphere__edge-fade {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    inset 0 0 28px rgba(15, 23, 42, 0.32),
    inset 0 0 58px rgba(124, 90, 255, 0.11);
  z-index: 6;
  -webkit-mask: radial-gradient(
    circle closest-side at 50% 50%,
    transparent 62%,
    #000 100%
  );
  mask: radial-gradient(
    circle closest-side at 50% 50%,
    transparent 62%,
    #000 100%
  );
}

.cbsv-sphere__art {
  position: absolute;
  inset: 11%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cbsv-sphere__art:empty {
  display: none;
}

.cbsv-sphere__art-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
  opacity: 0.94;
}

.cbsv-sphere__rim {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(15, 23, 42, 0.05) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(140, 100, 255, 0.12),
    0 4px 18px rgba(109, 82, 232, 0.12),
    0 12px 36px rgba(15, 23, 42, 0.12);
}

/* Hover: violet brand glow on outer shell (orbit motion unchanged) */
.cbsv-sphere:not(.is-back):not(.is-active):hover {
  box-shadow:
    0 0 0 1px rgba(123, 77, 255, 0.38),
    0 0 26px rgba(167, 139, 250, 0.42),
    0 18px 45px rgba(15, 23, 42, 0.22);
}

.cbsv-sphere:not(.is-back):not(.is-active):hover .cbsv-sphere__globe-mount {
  transform: scale(1.09);
}

.cbsv-sphere:not(.is-back):not(.is-active):hover .cbsv-sphere__outer-bloom {
  opacity: 0.55;
  filter: blur(10px);
  transform: scale(1.04);
  background: radial-gradient(
    circle at 40% 35%,
    rgba(167, 139, 250, 0.26),
    transparent 58%
  );
}

.cbsv-sphere:not(.is-back):not(.is-active):active .cbsv-sphere__globe-mount {
  transform: scale(1.03);
}

.cbsv-sphere.is-active .cbsv-sphere__globe-mount {
  transform: none;
}

.cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active .cbsv-sphere__inner-glow {
  opacity: 0.9;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active .cbsv-sphere__depth {
  opacity: 0.82;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active .cbsv-sphere__rim {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(143, 102, 255, 0.28),
    0 0 30px rgba(167, 139, 250, 0.28),
    0 10px 28px rgba(15, 23, 42, 0.16);
  transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

.cbsv-sphere.is-active:not([data-visual="ai-video"]) .cbsv-sphere__outer-bloom {
  opacity: 1;
  background: radial-gradient(circle at 38% 32%, rgba(109, 82, 232, 0.34), transparent 55%);
}

.cbsv-orbit-shell__stage.is-focus .cbsv-orbit-interaction-layer .cbsv-sphere.is-active:not([data-visual="ai-video"]) .cbsv-sphere__outer-bloom {
  filter: blur(11px);
  transform: scale(1.06);
  background: radial-gradient(
      circle at 36% 30%,
      rgba(186, 160, 255, 0.44),
      rgba(124, 90, 255, 0.2) 42%,
      transparent 58%
    ),
    radial-gradient(circle at 68% 72%, rgba(214, 200, 255, 0.26), transparent 62%);
}

/* —— AI video sphere: neon, holographic, subtle motion —— */
@keyframes cbsvAiBloomPulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(1);
  }
  50% {
    opacity: 0.94;
    transform: scale(1.07);
  }
}

@keyframes cbsvAiBallGlow {
  0%,
  100% {
    box-shadow:
      inset -18px -22px 32px rgba(12, 16, 28, 0.48),
      inset 14px 12px 22px rgba(255, 255, 255, 0.4),
      inset 0 0 18px rgba(139, 92, 255, 0.12),
      0 4px 16px rgba(15, 23, 42, 0.14);
  }
  50% {
    box-shadow:
      inset -18px -22px 32px rgba(12, 16, 28, 0.48),
      inset 14px 12px 28px rgba(255, 255, 255, 0.5),
      inset 0 0 32px rgba(167, 139, 250, 0.22),
      0 0 26px rgba(167, 139, 250, 0.28),
      0 4px 20px rgba(15, 23, 42, 0.12);
  }
}

@keyframes cbsvAiScanDrift {
  0%,
  100% {
    opacity: 0.42;
    transform: translateY(0);
  }
  50% {
    opacity: 0.78;
    transform: translateY(1.5px);
  }
}

@keyframes cbsvAiNeuralPulse {
  0%,
  100% {
    opacity: 0.65;
    stroke-opacity: 0.65;
  }
  50% {
    opacity: 1;
    stroke-opacity: 1;
  }
}

@keyframes cbsvAiArtDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-1.5%, 1.2%) scale(1.04);
  }
}

@keyframes cbsvAiTwinkle {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

.cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__outer-bloom {
  background: radial-gradient(
    circle at 40% 32%,
    rgba(154, 120, 255, 0.42) 0%,
    rgba(167, 139, 250, 0.24) 44%,
    transparent 68%
  );
  filter: blur(11px);
  animation: cbsvAiBloomPulse 2.8s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"].is-active .cbsv-sphere__outer-bloom {
  opacity: 1;
  animation: cbsvAiBloomPulse 2.4s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__ball:not([data-has-photo="true"]) {
  background-image: radial-gradient(
    circle at 24% 20%,
    #f3f0ff 0%,
    #dcd6ff 26%,
    #a78bfa 52%,
    #312e81 82%,
    #0f172a 100%
  );
  background-size: 100% 100%;
  animation: cbsvAiBallGlow 3.2s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__ball[data-has-photo="true"] {
  animation: cbsvAiBallGlow 3.2s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"] .cbsv-sphere__rim {
  border-color: rgba(167, 139, 250, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 12px rgba(123, 77, 255, 0.32),
    0 0 20px rgba(167, 139, 250, 0.12);
}

.cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__shine-sweep {
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(154, 120, 255, 0.34) 38%,
    transparent 68%
  );
  opacity: 0.52;
}

.cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__art {
  animation: cbsvAiArtDrift 4.2s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"] .cbsv-sphere__art-svg--ai {
  filter: drop-shadow(0 0 8px rgba(139, 92, 255, 0.32))
    drop-shadow(0 0 14px rgba(167, 139, 250, 0.12))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18));
  opacity: 0.98;
}

.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-scan {
  animation: cbsvAiScanDrift 3.5s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-neural {
  animation: cbsvAiNeuralPulse 2.3s ease-in-out infinite;
}

.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt1 {
  animation: cbsvAiTwinkle 2.5s ease-in-out infinite;
  animation-delay: 0s;
}
.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt2 {
  animation: cbsvAiTwinkle 2.5s ease-in-out infinite;
  animation-delay: 0.35s;
}
.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt3 {
  animation: cbsvAiTwinkle 2.5s ease-in-out infinite;
  animation-delay: 0.7s;
}
.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt4 {
  animation: cbsvAiTwinkle 2.5s ease-in-out infinite;
  animation-delay: 1.05s;
}
.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt5 {
  animation: cbsvAiTwinkle 2.5s ease-in-out infinite;
  animation-delay: 1.4s;
}
.cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt6 {
  animation: cbsvAiTwinkle 2.5s ease-in-out infinite;
  animation-delay: 1.75s;
}

.cbsv-orbit-shell__stage:not(.is-focus) .cbsv-orbit-interaction-layer .cbsv-sphere {
  filter: none !important;
  opacity: 1 !important;
}

.cbsv-orbit-shell__stage:not(.is-focus) .cbsv-orbit-interaction-layer .cbsv-sphere__photo {
  filter: none !important;
  opacity: 1 !important;
}

.cbsv-sphere.is-back {
  transition:
    filter 0.55s var(--cbsv-ease-smooth),
    opacity 0.55s var(--cbsv-ease-smooth);
}

.cbsv-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--cbsv-text-muted);
  padding: 0 1rem 1.5rem;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}

.cbsv-orbit-shell:has(.cbsv-orbit-shell__stage.is-focus) .cbsv-hint {
  opacity: 0.35;
}

/* Mobile: stack card below */
@media (max-width: 768px) {
  .cbsv-orbit-shell__stage {
    width: min(100%, 94vw);
    height: auto;
    min-height: clamp(320px, 54vh, 62vh);
  }

  .cbsv-orbit-shell__stage.is-focus .cbsv-focus-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: clamp(1.25rem, 4vw, 1.75rem);
    align-content: center;
    max-width: 100%;
    padding-bottom: clamp(1rem, 3vh, 2rem);
  }

  .cbsv-orbit-shell__stage.is-focus .cbsv-focus-row__sphere-slot {
    min-height: clamp(248px, 32vh, 320px);
    order: -1;
  }

  /* Mobile: slide card up gently as it appears */
  .cbsv-orbit-shell__stage.is-focus .cbsv-info-card.is-visible {
    max-width: 100%;
    transform: translateX(0)
      translateY(calc((1 - var(--cbsv-fe, 1)) * 20px))
      scale(calc(0.94 + var(--cbsv-fe, 1) * 0.06));
    justify-self: center;
  }

  .cbsv-sphere {
    --cbsv-sphere-size: clamp(128px, 30vw, 168px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cbsv-hero-video {
    opacity: 0.12;
    filter: blur(12px);
  }

  .cbsv-hero__eyebrow,
  .cbsv-hero__title,
  .cbsv-hero__subtitle {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .cbsv-sphere,
  .cbsv-sphere__globe-mount,
  .cbsv-info-card,
  .cbsv-orbit-svg {
    transition-duration: 0.01ms !important;
  }

  .cbsv-sphere:not(.is-back):not(.is-active):hover .cbsv-sphere__globe-mount,
  .cbsv-sphere.is-active .cbsv-sphere__globe-mount {
    transform: none;
  }

  .cbsv-sphere:not(.is-back):not(.is-active):hover .cbsv-sphere__outer-bloom {
    transform: none;
  }

  .cbsv-sphere__drift {
    animation: none !important;
  }

  .cbsv-orbit-stroke--flow,
  .cbsv-orbit-stroke--flow-slow,
  .cbsv-orbit-stroke--flow-rev,
  .cbsv-orbit-spark {
    animation: none !important;
  }

  .cbsv-sphere[data-visual="ai-video"] .cbsv-sphere__outer-bloom,
  .cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__ball,
  .cbsv-sphere[data-visual="ai-video"]:not(.is-back) .cbsv-sphere__art,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-scan,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-neural,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt1,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt2,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt3,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt4,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt5,
  .cbsv-sphere[data-visual="ai-video"] .cbsv-ai-pt6 {
    animation: none !important;
  }
}
