.page-home-premium {
  --landing-max: 1240px;
  --landing-panel: rgba(13, 13, 13, 0.74);
  --landing-panel-strong: rgba(16, 16, 16, 0.88);
  --landing-line: rgba(255, 255, 255, 0.1);
  --landing-line-strong: rgba(239, 61, 85, 0.36);
  --landing-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --landing-radius: 28px;
  --landing-radius-sm: 20px;
}

.page-home-premium main [id] {
  scroll-margin-top: 108px;
}

.page-home-premium .landing-main {
  position: relative;
  padding-bottom: 40px;
  overflow: clip;
}

.page-home-premium .landing-main::before,
.page-home-premium .landing-main::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 1;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 999px;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.24;
}

body.has-live-grainient.page-home-premium .landing-main::before,
body.has-live-grainient.page-home-premium .landing-main::after {
  filter: blur(84px);
  opacity: 0.15;
}

.page-home-premium .landing-main::before {
  top: 10%;
  left: -16%;
  background: radial-gradient(circle, rgba(239, 61, 85, 0.82), transparent 68%);
  animation: ambient-drift-one 16s ease-in-out infinite;
}

.page-home-premium .landing-main::after {
  right: -12%;
  bottom: 16%;
  background: radial-gradient(circle, rgba(255, 91, 112, 0.62), transparent 70%);
  animation: ambient-drift-two 18s ease-in-out infinite;
}

.landing-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.atmosphere-layer {
  position: absolute;
  inset: -12%;
  opacity: 0.5;
}

body.has-live-grainient.page-home-premium .atmosphere-layer {
  opacity: 0.34;
}

.atmosphere-glow {
  filter: blur(80px);
}

.landing-atmosphere .glow-one {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 91, 112, 0.26), transparent 30%),
    radial-gradient(circle at 56% 14%, rgba(239, 61, 85, 0.14), transparent 24%);
  animation: ambient-drift-one 24s ease-in-out infinite;
}

.landing-atmosphere .glow-two {
  background:
    radial-gradient(circle at 80% 62%, rgba(239, 61, 85, 0.22), transparent 30%),
    radial-gradient(circle at 34% 78%, rgba(255, 255, 255, 0.05), transparent 20%);
  animation: ambient-drift-two 28s ease-in-out infinite;
}

.landing-atmosphere .atmosphere-grid {
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.86), transparent 78%);
  animation: atmosphere-grid-shift 22s linear infinite;
}

body.has-live-grainient.page-home-premium .landing-atmosphere .atmosphere-grid {
  opacity: 0.06;
}

.landing-atmosphere .atmosphere-lines {
  inset: -10% -5%;
  opacity: 0.16;
  background:
    linear-gradient(118deg, transparent 26%, rgba(239, 61, 85, 0.22) 38%, transparent 48%),
    linear-gradient(72deg, transparent 54%, rgba(255, 255, 255, 0.08) 58%, transparent 63%),
    linear-gradient(132deg, transparent 72%, rgba(239, 61, 85, 0.16) 75%, transparent 78%);
  transform: translate3d(0, 0, 0);
  animation: atmosphere-line-sweep 26s linear infinite;
}

body.has-live-grainient.page-home-premium .landing-atmosphere .atmosphere-lines {
  opacity: 0.11;
}

.landing-atmosphere .atmosphere-dust {
  inset: 0;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 68%, rgba(255, 91, 112, 0.72) 0 1.6px, transparent 3px),
    radial-gradient(circle at 36% 82%, rgba(255, 255, 255, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 78%, rgba(255, 91, 112, 0.5) 0 1px, transparent 2px);
  background-size: 340px 340px, 420px 420px, 520px 520px, 380px 380px, 460px 460px;
  animation: atmosphere-dust-shift 30s linear infinite;
}

body.has-live-grainient.page-home-premium .landing-atmosphere .atmosphere-dust {
  opacity: 0.12;
}

.page-home-premium .landing-header {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 3, 0.66);
}

.page-home-premium .landing-header::after {
  opacity: 0.72;
}

.page-home-premium .landing-header .header-shell {
  width: min(var(--landing-max), calc(100% - 48px));
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav actions";
  gap: 18px;
}

.page-home-premium .landing-nav {
  justify-self: center;
  gap: 4px;
}

.page-home-premium .landing-nav a {
  border-radius: 999px;
}

.page-home-premium .landing-nav a::after {
  left: 16px;
  right: 16px;
}

.page-home-premium .landing-nav a.is-active,
.page-home-premium .landing-nav a[aria-current="page"] {
  color: var(--text);
}

.page-home-premium .landing-nav a.is-active::after,
.page-home-premium .landing-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  grid-area: actions;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(239, 61, 85, 0.42);
  background: rgba(239, 61, 85, 0.1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.landing-header.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.landing-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.page-home-premium .landing-nav .nav-cta-mobile {
  display: none;
}

.page-home-premium .landing-hero {
  width: min(var(--landing-max), calc(100% - 48px));
  position: relative;
  min-height: clamp(620px, 90vh, 860px);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(74px, 9vw, 128px) 0 clamp(70px, 8vw, 110px);
  gap: 12px;
  --hero-parallax-x: 0;
  --hero-parallax-y: 0;
  --hero-scroll: 0;
}

.page-home-premium .landing-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(78vw, 920px);
  height: min(78vw, 920px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 91, 112, 0.34) 0%, rgba(239, 61, 85, 0.18) 18%, rgba(239, 61, 85, 0.08) 34%, transparent 66%);
  filter: blur(24px);
  opacity: 0.88;
  pointer-events: none;
  transform: translate3d(
    calc(-50% + (var(--hero-parallax-x) * 18px)),
    calc(-50% + (var(--hero-parallax-y) * 14px) + (var(--hero-scroll) * -42px)),
    0
  );
  animation: hero-aura-breathe 12s ease-in-out infinite;
}

body.has-live-grainient.page-home-premium .landing-hero::before {
  opacity: 0.7;
}

.page-home-premium .landing-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(74vw, 760px);
  height: min(50vw, 520px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 27%, rgba(255, 91, 112, 0.12) 27.8%, transparent 29.2%),
    radial-gradient(circle at 50% 50%, transparent 41%, rgba(255, 255, 255, 0.06) 41.6%, transparent 42.6%),
    linear-gradient(120deg, transparent 28%, rgba(239, 61, 85, 0.12) 42%, transparent 54%),
    linear-gradient(64deg, transparent 34%, rgba(255, 255, 255, 0.06) 46%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.52;
  pointer-events: none;
  transform: translate3d(
    calc(-50% + (var(--hero-parallax-x) * -10px)),
    calc(-50% + (var(--hero-parallax-y) * -8px) + (var(--hero-scroll) * -24px)),
    0
  ) rotate(calc(var(--hero-parallax-x) * 6deg));
  animation: hero-ring-drift 18s linear infinite;
}

body.has-live-grainient.page-home-premium .landing-hero::after {
  opacity: 0.36;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: 100%;
  gap: 0;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(860px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(var(--hero-copy-shift, 0px));
  transition: transform 220ms ease-out;
}

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

.landing-hero-copy h1 {
  margin-top: 18px;
  max-width: 10ch;
  font-size: clamp(3.7rem, 1rem + 7.2vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.44);
}

.landing-hero-copy .hero-sub {
  margin-top: 24px;
  max-width: 46ch;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.72;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.hero-actions {
  margin-top: 28px;
  justify-content: center;
}

.hero-entrance {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.97);
  filter: blur(10px);
}

.hero-entrance.is-ready {
  animation: hero-block-enter 820ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--hero-enter-delay, 0ms);
}

.page-home-premium .landing-hero-copy .hero-text-split .hero-word > span {
  background-image: none;
  -webkit-text-fill-color: currentColor;
  color: var(--text);
}

.hero-note {
  position: relative;
  max-width: 520px;
  margin-top: 26px;
  margin-inline: auto;
  padding: 16px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 62%),
    rgba(9, 9, 9, 0.66);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
}

.hero-note::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, 12%) var(--glow-y, 24%), rgba(255, 91, 112, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 48%);
  pointer-events: none;
}

.hero-note-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--signal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px rgba(255, 91, 112, 0.66);
  animation: note-dot-pulse 3.4s ease-in-out infinite;
}

.hero-note strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 780;
  text-align: center;
}

@keyframes hero-aura-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(
      calc(-50% + (var(--hero-parallax-x) * 18px)),
      calc(-50% + (var(--hero-parallax-y) * 14px) + (var(--hero-scroll) * -42px)),
      0
    ) scale(0.94);
  }

  50% {
    opacity: 0.96;
    transform: translate3d(
      calc(-50% + (var(--hero-parallax-x) * 22px)),
      calc(-50% + (var(--hero-parallax-y) * 18px) + (var(--hero-scroll) * -48px)),
      0
    ) scale(1.04);
  }
}

@keyframes hero-ring-drift {
  0% {
    transform: translate3d(
      calc(-50% + (var(--hero-parallax-x) * -10px)),
      calc(-50% + (var(--hero-parallax-y) * -8px) + (var(--hero-scroll) * -24px)),
      0
    ) rotate(0deg);
  }

  100% {
    transform: translate3d(
      calc(-50% + (var(--hero-parallax-x) * -10px)),
      calc(-50% + (var(--hero-parallax-y) * -8px) + (var(--hero-scroll) * -24px)),
      0
    ) rotate(360deg);
  }
}

@keyframes hero-block-enter {
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}

.hero-scene {
  position: relative;
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(239, 61, 85, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(239, 61, 85, 0.15), rgba(5, 5, 5, 0.82) 48%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
  perspective: 1300px;
  transform-style: preserve-3d;
  --hero-parallax-x: 0;
  --hero-parallax-y: 0;
  --hero-scroll: 0;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  background:
    radial-gradient(circle at 48% 44%, rgba(239, 61, 85, 0.16), transparent 24%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.05), transparent 18%);
  pointer-events: none;
}

.scene-backdrop,
.scene-fog,
.scene-grid,
.scene-energy,
.scene-dust,
.scene-links,
.scene-core,
.scene-node,
.scene-beam,
.scene-vignette {
  position: absolute;
}

.scene-backdrop {
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 86% 24%, rgba(239, 61, 85, 0.14), transparent 24%),
    radial-gradient(circle at 76% 74%, rgba(239, 61, 85, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5));
  transform: translate3d(calc(var(--hero-parallax-x) * -18px), calc(var(--hero-parallax-y) * -14px), 0);
}

.scene-fog {
  inset: -12%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.42;
}

.scene-fog.fog-one {
  background: radial-gradient(circle, rgba(239, 61, 85, 0.32), transparent 64%);
  top: 14%;
  left: 46%;
  width: 46%;
  height: 46%;
  animation: fog-drift-one 14s ease-in-out infinite;
}

.scene-fog.fog-two {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
  left: 8%;
  bottom: 2%;
  width: 34%;
  height: 34%;
  animation: fog-drift-two 18s ease-in-out infinite;
}

.scene-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.16;
  mask-image: radial-gradient(circle at center, #000 42%, transparent 92%);
  transform: translate3d(calc(var(--hero-parallax-x) * -12px), calc(var(--hero-parallax-y) * -10px), 0);
  animation: scene-grid-drift 20s linear infinite;
}

.scene-energy {
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(125deg, transparent 30%, rgba(239, 61, 85, 0.2) 40%, transparent 54%),
    linear-gradient(60deg, transparent 36%, rgba(255, 255, 255, 0.08) 44%, transparent 50%),
    linear-gradient(148deg, transparent 68%, rgba(239, 61, 85, 0.12) 74%, transparent 78%);
  transform: translate3d(calc(var(--hero-parallax-x) * 10px), calc(var(--hero-parallax-y) * 8px), 0);
  animation: scene-energy-sweep 22s linear infinite;
}

.scene-dust {
  inset: 0;
}

.scene-dust span {
  position: absolute;
  left: var(--dust-x);
  top: var(--dust-y);
  width: var(--dust-size);
  height: var(--dust-size);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.3);
  opacity: 0.55;
  animation: dust-float 9s ease-in-out infinite;
  animation-delay: var(--dust-delay);
}

.scene-beam {
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140px;
  background: linear-gradient(90deg, transparent, rgba(239, 61, 85, 0.18), transparent);
  filter: blur(28px);
  opacity: 0.3;
}

.scene-beam.beam-one {
  transform: translate(-50%, -50%) rotate(-12deg);
  animation: beam-sweep-one 14s ease-in-out infinite;
}

.scene-beam.beam-two {
  width: 120%;
  transform: translate(-50%, -50%) rotate(28deg);
  animation: beam-sweep-two 18s ease-in-out infinite;
}

.scene-vignette {
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 48%, rgba(3, 3, 3, 0.38) 82%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
}

.scene-links {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(calc(var(--hero-parallax-x) * 6px), calc(var(--hero-parallax-y) * 4px), 0);
}

.scene-links path {
  fill: none;
  stroke: url(#sceneLine);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 18 10;
  opacity: 0.8;
  filter: drop-shadow(0 0 12px rgba(239, 61, 85, 0.2));
  animation: scene-dash 18s linear infinite;
}

.scene-links circle {
  fill: var(--signal);
  filter: drop-shadow(0 0 10px rgba(255, 91, 112, 0.66));
  animation: node-beat 4.2s ease-in-out infinite;
}

.scene-core {
  left: 50%;
  top: 50%;
  width: 340px;
  height: 340px;
  transform: translate3d(
    calc(-50% + (var(--hero-parallax-x) * 22px)),
    calc(-50% + (var(--hero-parallax-y) * 18px) + (var(--hero-scroll) * -26px)),
    0
  );
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.scene-core-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.core-shadow {
  position: absolute;
  width: 220px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 61, 85, 0.28), rgba(239, 61, 85, 0.06) 50%, transparent 72%);
  filter: blur(16px);
  transform: translateY(86px) rotateX(78deg);
}

.core-aura {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 61, 85, 0.42), rgba(239, 61, 85, 0.08) 40%, transparent 74%);
  filter: blur(28px);
  animation: aura-breathe 6.5s ease-in-out infinite;
}

.core-pulse {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px solid rgba(255, 91, 112, 0.16);
  animation: core-pulse-ring 4.8s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 18px rgba(239, 61, 85, 0.15), 0 0 22px rgba(0, 0, 0, 0.2);
}

.ring-one {
  inset: 0;
  transform: rotateX(72deg) rotateZ(8deg);
  animation: ring-spin 18s linear infinite;
}

.ring-two {
  inset: 20px;
  transform: rotateY(74deg) rotateX(4deg);
  opacity: 0.72;
  animation: ring-spin-reverse 22s linear infinite;
}

.ring-three {
  inset: 44px;
  transform: rotateX(58deg) rotateY(18deg);
  opacity: 0.42;
  animation: ring-drift 14s linear infinite;
}

.core-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(255, 91, 112, 0.12);
}

.core-orbit::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 91, 112, 0.86) 62%, rgba(255, 91, 112, 0) 100%);
  filter: drop-shadow(0 0 12px rgba(255, 91, 112, 0.6));
  transform: translateX(-50%);
}

.orbit-one {
  inset: 18px 46px;
  transform: rotateX(78deg) rotateZ(0deg);
  animation: orbit-spin 12s linear infinite;
}

.orbit-two {
  inset: 48px 10px;
  opacity: 0.72;
  transform: rotateY(72deg) rotateZ(18deg);
  animation: orbit-spin-reverse 18s linear infinite;
}

.orbit-three {
  inset: 52px 70px;
  opacity: 0.54;
  transform: rotateX(62deg) rotateZ(36deg);
  animation: orbit-drift 16s linear infinite;
}

.core-shell {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transform: translateZ(20px);
}

.core-sphere {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.16) 14%, rgba(255, 91, 112, 0.98) 34%, rgba(164, 18, 45, 0.94) 58%, rgba(54, 0, 12, 0.98) 82%, rgba(8, 0, 0, 1) 100%);
  box-shadow:
    0 0 90px rgba(239, 61, 85, 0.52),
    inset 0 18px 34px rgba(255, 255, 255, 0.12),
    inset 0 -30px 46px rgba(0, 0, 0, 0.5);
  animation: sphere-float 7.5s ease-in-out infinite;
  transform: translateZ(36px);
}

.core-hotspot {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 72%);
  filter: blur(4px);
  transform: translate(-24px, -28px) translateZ(48px);
  opacity: 0.88;
}

.core-label {
  position: absolute;
  bottom: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.core-label span {
  display: block;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.core-label strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 800;
}

.scene-node {
  width: min(208px, 24vw);
  transform: translate3d(
    calc(-50% + (var(--hero-parallax-x) * var(--px, 16px))),
    calc(-50% + (var(--hero-parallax-y) * var(--py, 12px)) + (var(--hero-scroll) * -20px)),
    0
  );
  will-change: transform;
}

.scene-node-card {
  position: relative;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 54%),
    rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
  animation: node-float 9s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  overflow: hidden;
}

.scene-node-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glow-x, 24%) var(--glow-y, 18%), rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(239, 61, 85, 0.08), transparent 46%);
  opacity: 0.92;
  pointer-events: none;
}

.plan-panel,
.comparison-card,
.demo-pane,
.final-cta {
  --glow-x: 50%;
  --glow-y: 50%;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.plan-panel::after,
.comparison-card::after,
.demo-pane::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 91, 112, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.final-cta::after {
  border-radius: 30px;
}

.plan-panel:hover,
.plan-panel:focus-within,
.comparison-card:hover,
.comparison-card:focus-within,
.demo-pane:hover,
.demo-pane:focus-within,
.final-cta:hover,
.final-cta:focus-within {
  border-color: rgba(239, 61, 85, 0.34);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
}

.plan-panel:hover::after,
.plan-panel:focus-within::after,
.comparison-card:hover::after,
.comparison-card:focus-within::after,
.demo-pane:hover::after,
.demo-pane:focus-within::after,
.final-cta:hover::after,
.final-cta:focus-within::after {
  opacity: 0.88;
}

.plan-panel > *,
.comparison-card > *,
.demo-pane > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.scene-node-kicker {
  display: inline-flex;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scene-node strong {
  display: block;
  margin-top: 9px;
  color: var(--text);
  font-size: 1.03rem;
  font-weight: 800;
}

.scene-node p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.landing-section {
  width: min(var(--landing-max), calc(100% - 48px));
  padding: clamp(86px, 9vw, 126px) 0;
}

.landing-section .section-heading {
  max-width: 800px;
}

.landing-section .section-heading h2 {
  max-width: 12ch;
}

.landing-section .section-heading p {
  max-width: 720px;
}

.landing-section .card {
  min-height: 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%),
    rgba(12, 12, 12, 0.76);
}

body.has-live-grainient.page-home-premium .landing-section .card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 46%),
    rgba(10, 10, 10, 0.82);
}

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

.issue-card {
  min-height: 220px;
  justify-content: flex-start;
}

.issue-sigil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(239, 61, 85, 0.36);
  border-radius: 12px;
  background: rgba(239, 61, 85, 0.08);
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-card h3 {
  margin-top: 22px;
}

.flow-stage {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 61, 85, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 52%),
    rgba(8, 8, 8, 0.74);
  box-shadow: var(--landing-shadow);
  overflow: hidden;
}

body.has-live-grainient.page-home-premium .flow-stage {
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 61, 85, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 52%),
    rgba(7, 7, 7, 0.8);
}

.flow-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 18%, rgba(239, 61, 85, 0.08) 50%, transparent 82%),
    radial-gradient(circle at 50% 50%, rgba(255, 91, 112, 0.1), transparent 34%);
  pointer-events: none;
}

.flow-stage > * {
  position: relative;
  z-index: 1;
}

.flow-stage-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.flow-stage-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-stage-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px rgba(255, 91, 112, 0.72);
  animation: note-dot-pulse 3.4s ease-in-out infinite;
}

.flow-stage-head p {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr) 46px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.flow-card {
  min-height: 292px;
  justify-content: flex-start;
  transition: transform 280ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.flow-card-highlight {
  border-color: rgba(239, 61, 85, 0.26);
  background:
    linear-gradient(180deg, rgba(239, 61, 85, 0.14), transparent 38%),
    rgba(12, 12, 12, 0.82);
}

.flow-card.is-active {
  border-color: rgba(255, 91, 112, 0.34);
  background:
    linear-gradient(180deg, rgba(239, 61, 85, 0.18), transparent 40%),
    rgba(12, 12, 12, 0.9);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(239, 61, 85, 0.08);
  transform: translateY(-4px);
}

.flow-card-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--subtle);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flow-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.flow-card.is-active .flow-card-dot {
  background: var(--signal);
  box-shadow: 0 0 14px rgba(255, 91, 112, 0.72);
  transform: scale(1.14);
}

.flow-card.is-active .flow-card-state {
  color: var(--signal);
}

.flow-connector {
  position: relative;
  display: grid;
  place-items: center;
}

.flow-connector::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(239, 61, 85, 0.8), rgba(255, 255, 255, 0.04));
}

.flow-connector span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 16px rgba(255, 91, 112, 0.72);
  animation: flow-pulse 2.8s ease-in-out infinite;
}

.flow-connector::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 112, 0.58), transparent);
  opacity: 0;
  filter: blur(4px);
  transition: opacity 220ms ease;
}

.flow-connector.is-active::after {
  opacity: 1;
  animation: connector-scan 1.3s ease-in-out infinite;
}

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

.build-card {
  grid-column: span 4;
  min-height: 230px;
  justify-content: flex-start;
}

.build-card-feature {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 100%;
  padding-top: 32px;
}

.build-card-wide {
  grid-column: span 5;
}

.build-tag {
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--signal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(239, 61, 85, 0.08);
}

.build-card h3 {
  margin-top: 22px;
  max-width: 14ch;
}

.build-card p {
  max-width: 32ch;
}

.demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.02fr) minmax(240px, 0.95fr) minmax(240px, 0.96fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 52%),
    rgba(8, 8, 8, 0.74);
  box-shadow: var(--landing-shadow);
}

.demo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(239, 61, 85, 0.12), transparent 42%);
  pointer-events: none;
}

.demo-pane {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(14, 14, 14, 0.74);
  padding: 18px;
  overflow: hidden;
}

.demo-pane-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.demo-pane-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(255, 91, 112, 0.64);
}

.demo-bubbles {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.demo-bubble {
  max-width: 92%;
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.demo-bubble p {
  color: var(--muted);
  line-height: 1.58;
}

.demo-bubble.incoming {
  border-color: rgba(255, 255, 255, 0.1);
}

.demo-bubble.outgoing {
  justify-self: end;
  background: rgba(239, 61, 85, 0.12);
  border-color: rgba(239, 61, 85, 0.26);
}

.demo-bubble.note {
  justify-self: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.demo-time {
  display: block;
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 700;
}

.demo-steps {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  list-style: none;
}

.demo-steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.demo-steps li.is-live {
  border-color: rgba(239, 61, 85, 0.24);
  background: rgba(239, 61, 85, 0.08);
}

.demo-steps li.is-live::after {
  content: "";
  position: absolute;
  inset: auto 16px -1px 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 112, 0.88), transparent);
  animation: live-scan 2.4s ease-in-out infinite;
}

.demo-steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 61, 85, 0.3);
  border-radius: 12px;
  background: rgba(239, 61, 85, 0.1);
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
}

.demo-steps strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.demo-steps p,
.demo-tool-stack p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.demo-tool-stack {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}

.demo-tool-stack article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.tool-label {
  display: inline-flex;
  color: var(--signal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 26px;
}

.journey-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239, 61, 85, 0.14), rgba(255, 91, 112, 0.9), rgba(239, 61, 85, 0.14));
  transform: scaleX(0.12);
  transform-origin: left center;
  transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-grid.visible::before {
  transform: scaleX(1);
}

.journey-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%),
    rgba(11, 11, 11, 0.78);
}

.journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(239, 61, 85, 0.32);
  border-radius: 14px;
  background: rgba(239, 61, 85, 0.08);
  color: var(--signal);
  font-size: 0.9rem;
  font-weight: 800;
}

.journey-card h3 {
  margin-top: 22px;
  color: var(--text);
  font-size: 1.2rem;
}

.journey-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.68;
}

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

.plan-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(11, 11, 11, 0.8);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.plan-panel-featured {
  transform: translateY(-8px);
  border-color: rgba(239, 61, 85, 0.28);
  background:
    linear-gradient(180deg, rgba(239, 61, 85, 0.14), transparent 36%),
    rgba(11, 11, 11, 0.86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(239, 61, 85, 0.14);
  border: 1px solid rgba(239, 61, 85, 0.28);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-tier {
  display: inline-flex;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-price-home {
  margin-top: 16px;
  color: var(--text);
  font-size: clamp(2.2rem, 1.3rem + 1.9vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.plan-price-home span {
  margin-left: 8px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-panel header p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.plan-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 10px rgba(255, 91, 112, 0.48);
}

.pricing-footnote {
  margin-top: 22px;
  color: var(--subtle);
  line-height: 1.6;
}

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

.diagnostic-card {
  min-height: 210px;
  justify-content: flex-start;
}

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

.comparison-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(10, 10, 10, 0.8);
  overflow: hidden;
}

.comparison-card-highlight {
  border-color: rgba(239, 61, 85, 0.26);
  background:
    linear-gradient(180deg, rgba(239, 61, 85, 0.14), transparent 36%),
    rgba(11, 11, 11, 0.86);
}

.comparison-label {
  display: inline-flex;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
}

.comparison-card-highlight .comparison-list li::before {
  background: var(--signal);
  box-shadow: 0 0 10px rgba(255, 91, 112, 0.46);
}

.final-cta {
  position: relative;
  max-width: 100%;
  padding: clamp(84px, 8vw, 120px) clamp(24px, 6vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 61, 85, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 46%),
    rgba(9, 9, 9, 0.8);
  box-shadow: var(--landing-shadow);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  pointer-events: none;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.final-cta h2 {
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(2.05rem, 0.9rem + 3.4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.final-cta p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.final-cta .btn {
  margin-top: 32px;
}

.landing-contact-layout {
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1fr);
  gap: 20px;
}

.contact-side-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-side-list article {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-side-list strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.contact-side-list p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.lead-form-upgraded {
  padding: 28px;
}

.lead-form-upgraded .btn {
  min-height: 54px;
}

.lead-form-upgraded textarea {
  min-height: 148px;
}

.footer-expanded {
  width: min(var(--landing-max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) auto auto;
  align-items: start;
  gap: 26px;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-col h4 {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes scene-dash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -220;
  }
}

@keyframes ambient-drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(24px, -16px, 0) scale(1.06);
  }
}

@keyframes ambient-drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-22px, 18px, 0) scale(1.08);
  }
}

@keyframes atmosphere-grid-shift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 72px, 72px 0;
  }
}

@keyframes atmosphere-line-sweep {
  0%,
  100% {
    transform: translate3d(-1%, 0, 0);
    opacity: 0.12;
  }

  50% {
    transform: translate3d(1.5%, -1.5%, 0);
    opacity: 0.18;
  }
}

@keyframes atmosphere-dust-shift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 60px -80px, -40px 50px, 30px -40px, -35px 48px, 28px -60px;
  }
}

@keyframes node-beat {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.72;
  }
}

@keyframes note-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.26);
    opacity: 1;
  }
}

@keyframes aura-breathe {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.58;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.88;
  }
}

@keyframes core-pulse-ring {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.16;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.38;
  }
}

@keyframes ring-spin {
  from {
    transform: rotateX(72deg) rotateZ(8deg);
  }

  to {
    transform: rotateX(72deg) rotateZ(368deg);
  }
}

@keyframes ring-spin-reverse {
  from {
    transform: rotateY(74deg) rotateX(4deg) rotateZ(0deg);
  }

  to {
    transform: rotateY(74deg) rotateX(4deg) rotateZ(-360deg);
  }
}

@keyframes ring-drift {
  0%,
  100% {
    transform: rotateX(58deg) rotateY(18deg) rotateZ(0deg);
  }

  50% {
    transform: rotateX(66deg) rotateY(10deg) rotateZ(180deg);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotateX(78deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(78deg) rotateZ(360deg);
  }
}

@keyframes orbit-spin-reverse {
  from {
    transform: rotateY(72deg) rotateZ(18deg);
  }

  to {
    transform: rotateY(72deg) rotateZ(-342deg);
  }
}

@keyframes orbit-drift {
  0%,
  100% {
    transform: rotateX(62deg) rotateZ(36deg);
  }

  50% {
    transform: rotateX(70deg) rotateZ(216deg);
  }
}

@keyframes sphere-float {
  0%,
  100% {
    transform: translateY(0) translateZ(36px);
  }

  50% {
    transform: translateY(-12px) translateZ(44px);
  }
}

@keyframes node-float {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

@keyframes flow-pulse {
  0%,
  100% {
    transform: translateX(-12px);
    opacity: 0.52;
  }

  50% {
    transform: translateX(12px);
    opacity: 1;
  }
}

@keyframes fog-drift-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -16px, 0) scale(1.08);
  }
}

@keyframes fog-drift-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) scale(1.06);
  }
}

@keyframes scene-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 70px, 70px 0;
  }
}

@keyframes scene-energy-sweep {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.15;
  }

  50% {
    transform: translate3d(10px, -8px, 0);
    opacity: 0.24;
  }
}

@keyframes dust-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.34;
  }

  50% {
    transform: translate3d(0, -14px, 0) scale(1.24);
    opacity: 0.72;
  }
}

@keyframes beam-sweep-one {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-12deg) scaleX(0.9);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, -50%) rotate(-7deg) scaleX(1.06);
    opacity: 0.34;
  }
}

@keyframes beam-sweep-two {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(28deg) scaleX(0.88);
    opacity: 0.16;
  }

  50% {
    transform: translate(-50%, -50%) rotate(32deg) scaleX(1.04);
    opacity: 0.28;
  }
}

@keyframes connector-scan {
  0% {
    transform: translateX(-16px);
  }

  50% {
    transform: translateX(16px);
  }

  100% {
    transform: translateX(-16px);
  }
}

@keyframes connector-scan-vertical {
  0% {
    transform: translateY(-16px);
  }

  50% {
    transform: translateY(16px);
  }

  100% {
    transform: translateY(-16px);
  }
}

@keyframes live-scan {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.4);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1180px) {
  .landing-hero-grid,
  .pricing-grid-home,
  .comparison-grid,
  .landing-contact-layout,
  .footer-expanded {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 640px;
  }

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

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

  .build-card,
  .build-card-feature,
  .build-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .flow-stage-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey-grid::before {
    right: calc(50% + 8px);
  }

  .plan-panel-featured {
    transform: none;
  }
}

@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden;
  }

  .page-home-premium .landing-header .header-shell {
    width: min(100% - 32px, var(--landing-max));
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo actions"
      "nav nav";
    row-gap: 14px;
  }

  .page-home-premium .landing-header .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .page-home-premium .landing-nav {
    display: none;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(6, 6, 6, 0.9);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .page-home-premium .landing-header.menu-open .landing-nav {
    display: flex;
  }

  .page-home-premium .landing-nav a {
    height: auto;
    min-height: 46px;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
  }

  .page-home-premium .landing-nav a::after {
    display: none;
  }

  .page-home-premium .landing-nav .nav-cta-mobile {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
  }

  .page-home-premium .landing-hero,
  .landing-section,
  .footer-expanded {
    width: min(100% - 32px, var(--landing-max));
  }

  .page-home-premium .landing-hero {
    min-height: auto;
    padding: clamp(76px, 12vw, 104px) 0 72px;
  }

  .hero-scene {
    min-height: 600px;
  }

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

  .flow-connector {
    min-height: 42px;
  }

  .flow-connector::before {
    width: 1px;
    height: 100%;
  }

  .flow-connector span {
    animation-name: flow-pulse-vertical;
  }

  .flow-connector::after {
    width: 10px;
    height: 70%;
  }

  .flow-connector.is-active::after {
    animation-name: connector-scan-vertical;
  }

  .demo-stage,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    right: auto;
    transform: scaleY(0.12);
    transform-origin: top center;
  }

  .journey-grid.visible::before {
    transform: scaleY(1);
  }

  .journey-card {
    padding-left: 30px;
  }
}

@keyframes flow-pulse-vertical {
  0%,
  100% {
    transform: translateY(-10px);
    opacity: 0.52;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .page-home-premium .landing-hero {
    min-height: auto;
    padding: 64px 0 58px;
  }

  .landing-hero-copy {
    justify-items: flex-start;
    text-align: left;
  }

  .landing-hero-copy .eyebrow,
  .hero-actions,
  .hero-note-kicker {
    justify-content: flex-start;
  }

  .landing-hero-copy .hero-sub,
  .hero-note {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-note,
  .hero-note strong {
    text-align: left;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-home-premium .landing-hero::before {
    width: 124vw;
    height: 124vw;
    top: 44%;
  }

  .page-home-premium .landing-hero::after {
    width: 124vw;
    height: 92vw;
    top: 53%;
  }

  .landing-hero-copy h1,
  .landing-section .section-heading h2 {
    max-width: none;
  }

  .hero-scene {
    min-height: 500px;
    border-radius: 26px;
  }

  .scene-core {
    width: 280px;
    height: 280px;
  }

  .scene-node {
    width: min(154px, 42vw);
  }

  .scene-node p {
    font-size: 0.8rem;
  }

  .node-5,
  .node-6 {
    display: none;
  }

  .issues-grid,
  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-note,
  .comparison-card,
  .final-cta,
  .lead-form-upgraded,
  .contact-panel {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 560px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .landing-hero-copy .hero-sub,
  .landing-section .section-heading p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .scene-node-kicker,
  .comparison-label,
  .plan-tier,
  .build-tag {
    letter-spacing: 0.08em;
  }

  .scene-node {
    width: min(136px, 41vw);
  }

  .scene-node strong {
    font-size: 0.88rem;
  }

  .scene-node p {
    display: none;
  }

  .hero-scene {
    min-height: 460px;
  }

  .issue-card,
  .flow-card,
  .journey-card,
  .diagnostic-card {
    padding: 20px;
  }

  .demo-stage {
    padding: 16px;
  }

  .flow-stage {
    padding: 18px;
  }

  .demo-pane,
  .comparison-card,
  .plan-panel {
    padding: 16px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home-premium .landing-main::before,
  .page-home-premium .landing-main::after,
  .page-home-premium .landing-hero::before,
  .page-home-premium .landing-hero::after,
  .landing-atmosphere .atmosphere-layer,
  .scene-fog,
  .scene-energy,
  .scene-dust span,
  .scene-beam,
  .scene-links path,
  .scene-links circle,
  .core-aura,
  .core-pulse,
  .core-ring,
  .core-orbit,
  .core-sphere,
  .hero-note-dot,
  .scene-node-card,
  .flow-connector span,
  .flow-connector::after,
  .flow-stage-dot,
  .demo-steps li.is-live::after {
    animation: none !important;
  }

  .journey-grid::before,
  .page-home-premium .landing-nav a,
  .page-home-premium .btn,
  .page-home-premium .card,
  .page-home-premium .plan-panel,
  .page-home-premium .comparison-card {
    transition: none !important;
  }
}
