:root {
  --void-bg: #030407;
  --void-surface: rgba(255, 255, 255, 0.025);
  --void-border: rgba(255, 255, 255, 0.08);
  --text-main: #eef2ff;
  --text-muted: #a8b3c7;
  --font-ritual: "Cinzel", serif;
  --font-tech: "JetBrains Mono", monospace;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--void-bg);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.section p,
.comparison-card p,
.audience-card p,
.operation-card p,
.trust-card p,
.api-card p,
.video-card p,
.entity-card p,
.care-gap-panel p,
.live-demo-copy p,
.proof-panel p,
.module-card p,
.pricing-card p {
  color: #bcc7db;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.ghost-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  --loader-bg-deep: #050505;
  --loader-bg-base: #0a0a0a;
  --loader-purple-core: #ffffff;
  --loader-purple-inner: #9b8bb5;
  --loader-purple-outer: #6b5b95;
  --loader-purple-glow: rgba(107, 91, 149, 0.4);
  --loader-gold: #d4a574;
  --loader-gold-glow: rgba(212, 165, 116, 0.3);
  --loader-cyan: #00e5ff;
  --loader-cyan-glow: rgba(0, 229, 255, 0.4);
  --loader-text-main: #f0f0f0;
  --loader-text-dim: rgba(240, 240, 240, 0.4);
  --loader-text-dark: rgba(240, 240, 240, 0.15);
  background:
    radial-gradient(circle at 50% 50%, var(--loader-bg-base) 0%, var(--loader-bg-deep) 100%);
  color: var(--loader-text-main);
  font-family: "Space Mono", var(--font-tech);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}

.ghost-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-crt {
  position: absolute;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.4;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
}

.loader-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.loader-ambient::before,
.loader-ambient::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30vw;
  background: linear-gradient(to right, transparent, var(--loader-purple-glow), transparent);
  opacity: 0.15;
  filter: blur(60px);
  animation: loaderPulseAmbient 8s ease-in-out infinite alternate;
}

.loader-ambient::before {
  left: 10vw;
  transform: skewX(-15deg);
}

.loader-ambient::after {
  right: 10vw;
  transform: skewX(15deg);
}

.loader-ui {
  position: relative;
  z-index: 10;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr minmax(190px, 250px);
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: clamp(20px, 4vw, 40px);
}

.loader-header,
.loader-footer {
  grid-column: 1 / 4;
  display: flex;
  justify-content: space-between;
}

.loader-header {
  grid-row: 1;
  align-items: flex-start;
}

.loader-brand {
  font-family: "Rajdhani", sans-serif;
}

.loader-brand-title {
  margin-bottom: 8px;
  color: var(--loader-text-main);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.loader-brand-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--loader-gold);
  font: 11px "Space Mono", monospace;
  letter-spacing: 0.2em;
}

.loader-brand-subtitle::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background: var(--loader-gold);
}

.loader-clock {
  color: var(--loader-text-dim);
  font-size: 12px;
  text-align: right;
}

.loader-data {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.loader-left {
  grid-column: 1;
  align-items: flex-start;
}

.loader-right {
  grid-column: 3;
  align-items: flex-end;
  text-align: right;
}

.loader-data-block {
  width: 100%;
}

.loader-log-block {
  flex-grow: 1;
}

.loader-memory {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.loader-label {
  margin-bottom: 8px;
  color: var(--loader-cyan);
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.8;
}

.loader-value {
  color: var(--loader-text-main);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.loader-value span {
  color: var(--loader-text-dim);
}

.loader-value.small {
  font-size: 10px;
  line-height: 2;
}

.loader-log-stream {
  height: 120px;
  overflow: hidden;
  color: var(--loader-text-dim);
  font-size: 10px;
  line-height: 1.8;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.loader-log-line {
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderSlideUpFade 0.3s forwards;
}

.loader-log-hex {
  color: var(--loader-purple-inner);
}

.loader-log-msg {
  color: var(--loader-text-dim);
}

.loader-log-status {
  margin-left: auto;
  color: var(--loader-gold);
}

.loader-stage {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-orb-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.loader-orb-core,
.loader-orb-aura,
.loader-orb-field {
  position: absolute;
  border-radius: 50%;
}

.loader-orb-core {
  z-index: 3;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--loader-purple-core) 0%, var(--loader-purple-inner) 40%, transparent 80%);
  box-shadow: 0 0 40px var(--loader-purple-core), inset 0 0 20px #fff;
  animation: loaderCorePulse 4s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

.loader-orb-aura {
  z-index: 2;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--loader-purple-inner) 0%, var(--loader-purple-outer) 50%, transparent 70%);
  opacity: 0.6;
  filter: blur(20px);
  animation: loaderAuraBreathe 6s ease-in-out infinite alternate;
}

.loader-orb-field {
  z-index: 1;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(107, 91, 149, 0.2);
  background-image: conic-gradient(from 0deg, transparent 0deg, rgba(107, 91, 149, 0.1) 90deg, transparent 180deg);
  box-shadow: 0 0 120px var(--loader-purple-glow);
  animation: loaderRotateField 20s linear infinite;
}

.loader-orb-field::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(0, 229, 255, 0.1);
  border-radius: 50%;
  animation: loaderRotateField 30s linear infinite reverse;
}

.loader-particles {
  position: absolute;
  inset: -50px;
  z-index: 4;
  pointer-events: none;
}

.loader-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--loader-cyan);
  box-shadow: 0 0 4px var(--loader-cyan);
  opacity: 0;
}

.loader-progress {
  width: min(400px, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-status {
  color: var(--loader-text-main);
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  animation: loaderFlicker 4s infinite;
}

.loader-bar-wrap {
  position: relative;
  width: 100%;
  height: 2px;
  background: var(--loader-text-dark);
}

.loader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--loader-gold);
  box-shadow: 0 0 10px var(--loader-gold-glow);
  transition: width 0.1s linear;
}

.loader-bar-head {
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 12px;
  background: var(--loader-cyan);
  box-shadow: 0 0 15px var(--loader-cyan-glow);
  transform: translateY(-50%);
}

.loader-numbers {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: var(--loader-gold);
  font-size: 11px;
}

.loader-footer {
  grid-row: 3;
  align-items: flex-end;
  color: var(--loader-text-dark);
  font-size: 10px;
}

.cyan-text {
  color: var(--loader-cyan) !important;
}

.gold-text {
  color: var(--loader-gold) !important;
}

@keyframes loaderPulseAmbient {
  0% { opacity: 0.1; }
  100% { opacity: 0.25; }
}

@keyframes loaderCorePulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderAuraBreathe {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.1); opacity: 0.7; }
}

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

@keyframes loaderSlideUpFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes loaderFlicker {
  0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
  }
  20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
    opacity: 0.4;
    text-shadow: none;
  }
}

@media (max-width: 860px) {
  .loader-ui {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 22px;
  }

  .loader-header,
  .loader-footer,
  .loader-stage {
    grid-column: 1;
  }

  .loader-data {
    display: none;
  }

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

  .loader-orb-container {
    width: 260px;
    height: 260px;
    margin-bottom: 42px;
  }

  .loader-orb-field {
    width: 260px;
    height: 260px;
  }

  .loader-orb-aura {
    width: 190px;
    height: 190px;
  }

  .loader-orb-core {
    width: 100px;
    height: 100px;
  }
}

#canvas-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  filter: brightness(0.78) saturate(1.35) contrast(1.05);
  mask-image: linear-gradient(to bottom, #000 0, #000 82vh, rgba(0,0,0,0.35) 112vh, transparent 145vh);
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,4,7,0.72), transparent 22%, transparent 78%, rgba(3,4,7,0.72)),
    radial-gradient(circle at center, rgba(3,4,7,0.16) 0%, #030407 100%);
}

main {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ritual-text {
  font-family: var(--font-ritual);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tech-text,
.micro-label {
  font-family: var(--font-tech);
}

.micro-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.section {
  min-height: 100vh;
  width: 100%;
  max-width: 1600px;
  padding: 8rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#hero {
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 2rem 0;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.24);
  mix-blend-mode: screen;
  animation: heroSignalPulse 4.2s ease-in-out infinite;
}

.hero-watermark {
  position: absolute;
  inset: auto 0 12%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font: 800 clamp(4rem, 18vw, 18rem) var(--font-tech);
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 70px rgba(255, 255, 255, 0.12);
}

.hero-ghost-mark {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: -1;
  width: min(58vw, 680px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(167, 139, 250, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.52) 0 4%, rgba(216,180,254,.32) 5% 13%, rgba(124,58,237,.18) 30%, rgba(10,12,22,.12) 58%, transparent 72%);
  box-shadow:
    0 0 90px rgba(124, 58, 237, 0.18),
    inset -44px -48px 90px rgba(0, 0, 0, 0.28),
    inset 24px 22px 60px rgba(255,255,255,0.035);
  filter: blur(0.2px);
  animation: heroOrbBreathe 7s ease-in-out infinite;
}

.hero-ghost-mark::before,
.hero-ghost-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-ghost-mark::before {
  inset: 12%;
  border: 1px solid rgba(230, 194, 122, 0.12);
  box-shadow: 0 0 54px rgba(230, 194, 122, 0.08);
}

.hero-ghost-mark::after {
  inset: 32%;
  background: radial-gradient(circle, rgba(196,181,253,0.26), rgba(124,58,237,0.12) 48%, transparent 72%);
  box-shadow: 0 0 72px rgba(167,139,250,0.18);
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 760px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.value-line {
  margin-top: 0.6rem;
  color: #fff;
  font: 0.9rem var(--font-tech);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.28), 0 0 34px rgba(255, 140, 0, 0.18);
  animation: valuePulse 2.9s ease-in-out infinite;
}

@keyframes valuePulse {
  0%, 100% {
    color: #e2e8f0;
    filter: drop-shadow(0 0 0 rgba(255, 140, 0, 0));
  }
  50% {
    color: #fff;
    filter: drop-shadow(0 0 18px rgba(255, 140, 0, 0.34));
  }
}

.plain-sell {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--void-border);
  background: var(--void-border);
  animation: sellGridWake 5.8s ease-in-out infinite;
}

.plain-sell span,
.plain-sell strong {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 0.85rem;
  background: rgba(3, 4, 7, 0.9);
  color: var(--text-muted);
  font: 0.68rem/1.45 var(--font-tech);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.plain-sell span::after,
.plain-sell strong::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.12) 45%, rgba(56,189,248,0.16) 52%, transparent 66%);
  transform: translateX(-120%);
  animation: sellTileShine 4.8s ease-in-out infinite;
}

.plain-sell span:nth-child(2)::after { animation-delay: 0.35s; }
.plain-sell span:nth-child(3)::after { animation-delay: 0.7s; }
.plain-sell span:nth-child(4)::after { animation-delay: 1.05s; }

.plain-sell span:hover,
.plain-sell strong:hover {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.13), transparent 56%),
    rgba(3, 4, 7, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 140, 0, 0.22);
}

.plain-sell strong {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 132, 252, 0.16), transparent 52%),
    rgba(3, 4, 7, 0.94);
}

.price-strip {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.22);
}

.price-strip span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  background: rgba(3, 4, 7, 0.92);
  color: #fef3c7;
  font: 0.66rem/1.35 var(--font-tech);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trial-burst {
  position: relative;
  z-index: 5;
  display: inline-grid;
  gap: 0.25rem;
  margin: 0 auto 1.15rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 79, 123, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(255, 79, 123, 0.34), rgba(192, 132, 252, 0.18)),
    rgba(3, 4, 7, 0.96);
  color: #fff;
  box-shadow:
    0 0 34px rgba(255, 79, 123, 0.32),
    0 0 64px rgba(250, 204, 21, 0.14),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  text-align: center;
  animation: trialBurstPulse 1.45s ease-in-out infinite;
}

.trial-burst b {
  font: 900 clamp(1.05rem, 3vw, 2rem) var(--font-tech);
  letter-spacing: 0.16em;
}

.trial-burst span,
.trial-inline-pulse {
  color: #fde68a;
  font-family: var(--font-tech);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(250, 204, 21, 0.46);
}

.trial-price-strip {
  border-color: rgba(255,79,123,0.44);
  background: rgba(255,79,123,0.34);
  box-shadow: 0 0 32px rgba(255,79,123,0.16);
}

.trial-price-strip span:first-child,
.trial-price-strip span:nth-child(2) {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,79,123,0.24), transparent 56%),
    rgba(3,4,7,0.96);
  animation: trialCellPulse 1.8s ease-in-out infinite;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tip-button {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 1.2rem;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--text-main);
  background: rgba(0,0,0,0.38);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tip-button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(250,204,21,0.14) 43%, rgba(255,255,255,0.18) 51%, transparent 66%);
  transform: translateX(-120%);
  animation: tipButtonShine 3.6s ease-in-out infinite;
}

.tip-button:hover,
.tip-button:focus-visible {
  border-color: #facc15;
  color: #facc15;
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(250, 204, 21, 0.18);
}

.music-dock {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--void-border);
  background: rgba(5, 7, 10, 0.55);
  backdrop-filter: blur(16px);
}

.music-dock button {
  min-height: 32px;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.music-dock select,
.system-metrics select {
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.music-source-mini {
  display: inline-flex;
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
}

.music-source-mini button,
.music-source-mini a {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0 0.62rem;
  border: 0;
  color: rgba(255,255,255,0.68);
  background: rgba(0,0,0,0.5);
  font: 0.56rem var(--font-tech);
  letter-spacing: 0.12em;
  text-decoration: none;
}

.music-source-mini .active,
.music-source-mini button:hover,
.music-source-mini a:hover {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(250,204,21,0.18), transparent 58%),
    rgba(3,4,7,0.92);
}

.music-dock span {
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.music-dock .music-credit {
  color: rgba(255,255,255,0.36);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
}

.sacred-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  min-height: 56px;
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sacred-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease;
  z-index: -1;
}

.sacred-button:hover {
  color: #020205;
  border-color: #fff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.sacred-button:hover::before {
  width: 320%;
  height: 320%;
}

.ghost-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ghost-link:hover {
  color: #fff;
}

.system-status {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--void-border);
  border-bottom: 1px solid var(--void-border);
  padding: 1rem 0;
  margin-top: 6rem;
}

.ninety-section,
.context-tax-section,
.audience-section,
.proof-section {
  min-height: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.ninety-panel {
  width: min(1180px, 100%);
  display: grid;
  gap: 1px;
  border: 1px solid rgba(192, 132, 252, 0.22);
  background: rgba(192, 132, 252, 0.22);
  box-shadow: 0 28px 90px rgba(0,0,0,0.46);
}

.ninety-open,
.ninety-close {
  background:
    radial-gradient(circle at 8% 0%, rgba(192, 132, 252, 0.14), transparent 44%),
    rgba(3, 4, 7, 0.94);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.ninety-open h2 {
  max-width: 880px;
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.ninety-open p {
  max-width: 820px;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.ninety-steps article {
  min-height: 230px;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent),
    rgba(3, 4, 7, 0.92);
}

.ninety-steps article:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.12), transparent 42%),
    rgba(3, 4, 7, 0.95);
}

.ninety-steps span {
  color: #facc15;
  font: 0.68rem var(--font-tech);
  letter-spacing: 0.16em;
}

.ninety-steps h3 {
  margin: 1.1rem 0 0.65rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
}

.ninety-steps p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ninety-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.ninety-close strong {
  max-width: 760px;
  color: #fff;
  font: 0.86rem/1.65 var(--font-tech);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.context-tax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.tax-card {
  min-height: 320px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent),
    rgba(3, 4, 7, 0.92);
}

.tax-card.before {
  background:
    radial-gradient(circle at 8% 12%, rgba(225, 29, 72, 0.16), transparent 44%),
    rgba(3, 4, 7, 0.92);
}

.tax-card.after {
  background:
    radial-gradient(circle at 88% 14%, rgba(52, 211, 153, 0.15), transparent 44%),
    rgba(3, 4, 7, 0.92);
}

.tax-card h2 {
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
}

.tax-card p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.audience-card {
  min-height: 190px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.08), transparent 45%),
    rgba(3, 4, 7, 0.9);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 20% 0%, rgba(192, 132, 252, 0.16), transparent 45%),
    rgba(3, 4, 7, 0.94);
}

.audience-card span {
  color: #d8b4fe;
  font: 0.66rem var(--font-tech);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-card p {
  margin-top: 1rem;
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.65;
}

.proof-panel {
  width: min(1020px, 100%);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(192, 132, 252, 0.32);
  background:
    radial-gradient(circle at 10% 15%, rgba(52, 211, 153, 0.14), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 140, 0, 0.14), transparent 42%),
    rgba(3, 4, 7, 0.9);
  box-shadow: 0 28px 90px rgba(0,0,0,0.44), inset 0 0 0 1px rgba(255,255,255,0.025);
}

.proof-panel h2 {
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.proof-panel p {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.status-value {
  color: #fff;
  font-size: 1.15rem;
}

.cross-star {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
}

.cross-star::before,
.cross-star::after {
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 20px rgba(255, 255, 255, 0.5);
}

.cross-star::before {
  top: 14px;
  left: 0;
  width: 30px;
  height: 1px;
}

.cross-star::after {
  top: 0;
  left: 14px;
  width: 1px;
  height: 30px;
}

.star-a {
  top: 20%;
  left: 10%;
}

.star-b {
  bottom: 20%;
  right: 10%;
}

.star-c {
  top: 50%;
  left: 20%;
}

.star-d {
  top: 50%;
  right: 20%;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.section-plain {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section-header.centered {
  align-items: center;
  text-align: center;
}

.section-header h2,
#cta h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.plain-section {
  min-height: auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.comparison-card {
  min-height: 310px;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent),
    #030407;
}

.comparison-card span {
  color: var(--text-muted);
  font: 0.64rem var(--font-tech);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin: 1rem 0;
  color: #fff;
  font: 400 clamp(1.35rem, 2.4vw, 2.1rem) var(--font-ritual);
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.comparison-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.comparison-card.ghost {
  background:
    radial-gradient(circle at 82% 16%, rgba(192, 132, 252, 0.18), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent),
    #030407;
}

.comparison-card.ghost span {
  color: #d8b4fe;
}

.fast-proof {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 1.6rem auto 0;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.fast-proof div {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(3, 4, 7, 0.92);
}

.fast-proof strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(192, 132, 252, 0.45);
  border-radius: 999px;
  color: #d8b4fe;
  font-family: var(--font-tech);
}

.fast-proof span {
  color: #d8dee9;
  font: 0.78rem/1.55 var(--font-tech);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.care-gap {
  min-height: auto;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.care-gap-panel {
  width: min(980px, 100%);
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(216, 180, 254, 0.28);
  background:
    radial-gradient(circle at 12% 20%, rgba(225, 29, 72, 0.14), transparent 36%),
    radial-gradient(circle at 88% 84%, rgba(58, 180, 181, 0.12), transparent 34%),
    rgba(3, 4, 7, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.care-gap-panel p {
  max-width: 860px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
}

.care-gap-panel .care-hit {
  color: #fff;
  font: 400 clamp(1.45rem, 3vw, 2.35rem) var(--font-ritual);
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.care-gap-panel .care-doctrine {
  border-left: 2px solid rgba(230, 194, 122, 0.72);
  padding-left: 1rem;
  color: #f8fafc;
  background: linear-gradient(90deg, rgba(230, 194, 122, 0.08), transparent);
}

.shift-card {
  min-height: 360px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent),
    #030407;
}

.shift-card h3 {
  margin: 1rem 0;
  max-width: 620px;
  color: #fff;
  font: 400 clamp(1.45rem, 3vw, 2.4rem) var(--font-ritual);
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shift-card p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.shift-card.after {
  background:
    radial-gradient(circle at 85% 20%, rgba(57, 255, 20, 0.14), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    #030407;
}

.entities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--void-border);
  border: 1px solid var(--void-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.08);
}

.entities-grid::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(168, 85, 247, 0.12) 50%, transparent 52%),
    linear-gradient(0deg, transparent 0 48%, rgba(56, 189, 248, 0.08) 50%, transparent 52%);
  background-size: 86px 86px;
  opacity: 0.22;
  animation: personaMatrixDrift 22s linear infinite;
  pointer-events: none;
}

.entity-card {
  background: #030407;
  position: relative;
  min-height: 390px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  cursor: crosshair;
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, transform 0.35s ease;
}

.entity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--entity-color), transparent 70%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.entity-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid transparent;
  background:
    linear-gradient(120deg, transparent 0 35%, color-mix(in srgb, var(--entity-color) 42%, transparent) 48%, transparent 60%) border-box;
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.entity-card:hover {
  background: var(--void-surface);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--entity-color) 55%, transparent), 0 24px 80px color-mix(in srgb, var(--entity-color) 18%, transparent);
}

.entity-card:hover::before {
  opacity: 0.22;
}

.entity-card:hover::after {
  opacity: 1;
  animation: entityScan 1.8s ease-in-out infinite;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.entity-sigil {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  font-size: 1.9rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 3;
}

.entity-sigil::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--entity-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.entity-card:hover .entity-sigil::after {
  opacity: 0.95;
}

.entity-card:hover .entity-name {
  color: color-mix(in srgb, var(--entity-color) 72%, #ffffff 28%);
  text-shadow: 0 0 22px color-mix(in srgb, var(--entity-color) 38%, transparent);
}

@keyframes personaMatrixDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(86px, 86px, 0); }
}

@keyframes entityScan {
  0% { transform: translateX(-48%); }
  50% { transform: translateX(48%); }
  100% { transform: translateX(48%); }
}

.entity-id {
  text-align: right;
  line-height: 1.8;
}

.entity-name {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 3;
}

.entity-card > div:not(.card-header):not(.card-modules) {
  position: relative;
  z-index: 2;
}

.card-promise {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.operator-outcome {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.operator-outcome p {
  margin-top: 0.45rem;
  color: #d8dee9;
  font-size: 0.86rem;
  line-height: 1.55;
}

.card-modules {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.module-tag {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.35rem 0.75rem;
  min-height: 36px;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.055);
  color: #a0aabf;
  font-size: 0.75rem;
  position: relative;
  overflow: visible;
}

.module-tag small {
  display: block;
  grid-column: 2;
  max-width: 100%;
  min-height: 2.5em;
  opacity: 0.72;
  color: var(--text-muted);
  font-size: 0.64rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.module-tag:hover,
.module-tag:focus {
  border-color: var(--entity-color);
  background: color-mix(in srgb, var(--entity-color) 10%, transparent);
  outline: none;
}

.module-tag:hover small,
.module-tag:focus small {
  opacity: 1;
  color: #d7dde8;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.operation-card {
  min-height: 285px;
  padding: 1.5rem;
  background: #030407;
  border-top: 2px solid color-mix(in srgb, var(--entity-color) 62%, transparent);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.operation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 16%, var(--entity-color), transparent 58%);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.operation-card:hover {
  transform: translateY(-2px);
  border-color: var(--entity-color);
  box-shadow: 0 16px 54px color-mix(in srgb, var(--entity-color) 18%, transparent);
}

.operation-card:hover::before {
  opacity: 0.18;
}

.operation-card span {
  color: color-mix(in srgb, var(--entity-color) 70%, #ffffff 15%);
  font-family: var(--font-tech);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}

.operation-card h3 {
  margin: 1rem 0;
  color: #fff;
  font-family: var(--font-ritual);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.operation-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.operation-card > * {
  position: relative;
  z-index: 1;
}

.forge-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 3rem;
}

.forge-copy p {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.forge-copy h2 {
  margin-top: 1rem;
  color: #fff;
  font: 400 clamp(2rem, 4vw, 3.5rem) var(--font-ritual);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.forge-matrix {
  display: grid;
  gap: 1px;
  border: 1px solid var(--void-border);
  background: var(--void-border);
}

.forge-matrix div {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.12), transparent 48%),
    #030407;
}

.forge-matrix strong {
  color: #fff;
  font: 600 2rem var(--font-tech);
}

.forge-matrix span {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-demo-section {
  min-height: auto;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.live-demo-section .section-header {
  width: min(1320px, 100%);
  align-self: center;
  margin-bottom: 2.2rem;
}

.live-demo-section .section-header h2 {
  max-width: 980px;
  font-size: clamp(2.1rem, 3.15vw, 3.45rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.live-demo-shell {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.live-demo-copy {
  border: 1px solid color-mix(in srgb, var(--live-color) 28%, var(--void-border));
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--live-color) 16%, transparent), transparent 46%),
    rgba(3, 4, 7, 0.86);
  padding: 1.35rem;
}

.live-demo-copy p {
  margin: 1rem 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.live-demo-controls {
  display: grid;
  gap: 0.55rem;
}

.live-demo-controls button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  cursor: pointer;
  font: 0.72rem var(--font-tech);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  padding: 0 0.9rem;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.live-demo-controls button.active,
.live-demo-controls button:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--live-color) 68%, transparent);
  background: color-mix(in srgb, var(--live-color) 12%, rgba(255,255,255,0.02));
  transform: translateX(4px);
}

.live-demo-screen {
  width: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--live-color) 38%, var(--void-border));
  color: var(--text-main);
  background:
    radial-gradient(circle at 50% 20%, color-mix(in srgb, var(--live-color) 16%, transparent), transparent 44%),
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    rgba(5, 7, 10, 0.94);
  background-size: auto, 32px 32px, 32px 32px, auto;
  box-shadow: 0 26px 88px rgba(0, 0, 0, 0.58), inset 0 0 80px rgba(0,0,0,0.42);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}

.live-demo-screen.playing {
  animation: liveScreenPulse 0.48s ease;
}

@keyframes liveScreenPulse {
  0% { transform: scale(0.992); filter: saturate(0.8); }
  100% { transform: scale(1); filter: saturate(1.14); }
}

.live-demo-topbar,
.live-demo-command {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: color-mix(in srgb, var(--live-color) 76%, #ffffff 18%);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.live-demo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 64px minmax(0, 1.18fr) minmax(218px, 0.72fr);
  min-height: 280px;
}

.live-demo-rail {
  display: grid;
  align-content: center;
  gap: 0.6rem;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.live-demo-rail span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font: 0.62rem var(--font-tech);
}

.live-demo-rail span.active {
  border-color: var(--live-color);
  color: #fff;
  box-shadow: 0 0 22px color-mix(in srgb, var(--live-color) 28%, transparent);
}

.live-demo-stage {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  min-width: 0;
}

.live-orb {
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--live-color) 72%, transparent);
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.72), transparent 13%),
    radial-gradient(circle, color-mix(in srgb, var(--live-color) 48%, transparent), transparent 62%),
    rgba(0,0,0,0.55);
  box-shadow: 0 0 70px color-mix(in srgb, var(--live-color) 34%, transparent), inset 0 0 40px rgba(0,0,0,0.7);
  font-size: 2.35rem;
}

.live-demo-stage > div:last-child {
  min-width: 0;
}

.live-demo-stage h3 {
  margin: 0.65rem 0;
  color: #fff;
  font: 400 clamp(1.18rem, 1.85vw, 1.85rem) var(--font-ritual);
  letter-spacing: 0.04em;
  line-height: 1.16;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.live-demo-stage p {
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0;
  font-size: 0.9rem;
}

.live-demo-action {
  padding: 1.1rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
}

#live-demo-feed {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

#live-demo-feed span {
  display: block;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(255,255,255,0.075);
  color: #dbe4f2;
  background: rgba(255,255,255,0.035);
  font: 0.62rem/1.42 var(--font-tech);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

#live-demo-feed span::before {
  content: ">";
  color: var(--live-color);
  margin-right: 0.5rem;
}

.live-demo-tool {
  min-height: 118px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
}

.live-demo-tool span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem;
  background: rgba(3,4,7,0.92);
  color: #fff;
  font: 0.72rem var(--font-tech);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-demo-tool b {
  color: var(--live-color);
  font-size: 1.3rem;
}

.live-demo-command {
  justify-content: flex-start;
  border-bottom: none;
  color: #e5e7eb;
}

.live-demo-command span {
  color: var(--live-color);
}

#demo {
  display: none;
}

.terminal-window {
  width: 100%;
  max-width: 980px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(57, 255, 20, 0.08), transparent 44%),
    rgba(5, 7, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.terminal-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--void-border);
  background: rgba(255, 255, 255, 0.025);
}

.terminal-body {
  height: 410px;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  font-family: var(--font-tech);
  font-size: 0.9rem;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 34px 34px;
}

.msg {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.msg.user {
  align-self: flex-end;
  align-items: flex-end;
}

.msg.entity {
  align-self: flex-start;
}

.msg-sender {
  color: var(--text-muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.entity .msg-sender {
  color: #39ff14;
}

.msg-content {
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.055);
  color: #e2e8f0;
  line-height: 1.45;
  box-shadow: inset 2px 0 0 rgba(255, 255, 255, 0.08);
}

.msg.entity .msg-content {
  border-left: 2px solid #39ff14;
  background: rgba(57, 255, 20, 0.055);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.06);
}

.action-log {
  color: #64748b;
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.action-log::before {
  content: ">";
  color: #39ff14;
}

#cta {
  min-height: 70vh;
  align-items: center;
  text-align: center;
  position: relative;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin: -2rem 0 1rem;
  flex-wrap: wrap;
}

.demo-tabs button {
  min-height: 34px;
  padding: 0 0.9rem;
  border: 1px solid var(--void-border);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.demo-tabs button.active,
.demo-tabs button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.demo-terminal {
  display: none;
}

.demo-terminal.active {
  display: block;
}

#cta .hero-subtitle {
  margin-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delayed-a,
.delayed-b,
.delayed-c,
.delayed-d,
.delayed-e {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.delayed-a { animation-delay: 0.4s; }
.delayed-b { animation-delay: 0.8s; }
.delayed-c { animation-delay: 1.1s; }
.delayed-d { animation-delay: 1.4s; }
.delayed-e { animation-delay: 1.9s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 1.5rem;
  }

  #hero h1 {
    font-size: 2.55rem;
  }

  .system-status {
    display: none;
  }

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

  .plain-sell,
  .price-strip,
  .ninety-steps,
  .context-tax-grid,
  .audience-grid,
  .comparison-grid,
  .fast-proof {
    grid-template-columns: 1fr;
  }

  .ninety-close {
    align-items: stretch;
    flex-direction: column;
  }

  .ninety-close .sacred-button {
    width: 100%;
  }

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

  .shift-grid,
  .forge-section,
  .live-demo-shell {
    grid-template-columns: 1fr;
  }

  .live-demo-screen {
    min-height: auto;
  }

  .live-demo-grid {
    grid-template-columns: 1fr;
  }

  .live-demo-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

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

  .live-orb {
    width: 120px;
  }

  .live-demo-action {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

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

  .hero-watermark {
    bottom: 18%;
    font-size: clamp(3.5rem, 22vw, 7rem);
  }

  .terminal-body {
    height: 460px;
    padding: 1.25rem;
  }
}

.api-section,
.trust-section,
.patent-section,
.walkthrough-vault {
  position: relative;
  z-index: 4;
}

.provider-strip-section {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 2rem));
  min-height: auto;
  margin: 0 auto 3rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.provider-strip-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.provider-strip-copy strong {
  color: #fff;
  font: 500 clamp(1rem, 2vw, 1.35rem) var(--font-tech);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.provider-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.provider-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  animation: providerSlide 28s linear infinite;
}

.provider-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 150px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at 0 0, rgba(192,132,252,0.16), transparent 58%),
    rgba(3,4,7,0.84);
  color: rgba(226,232,240,0.88);
  font: 0.78rem var(--font-tech);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: providerPulse 4.6s ease-in-out infinite;
}

.provider-track span:nth-child(3n + 2) { animation-delay: 0.55s; }
.provider-track span:nth-child(3n + 3) { animation-delay: 1.1s; }

.provider-track b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(192,132,252,0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(192,132,252,0.12);
  box-shadow: 0 0 18px rgba(192,132,252,0.16);
  font-size: 0.68rem;
  animation: providerBadgeBreathe 3.8s ease-in-out infinite;
}

.provider-pill b::before {
  content: "";
  font: 700 0.72rem var(--font-tech);
  letter-spacing: 0;
}

.provider-openrouter b::before { content: "OR"; }
.provider-openai b::before { content: "◎"; font-size: 1rem; }
.provider-anthropic b::before { content: "A"; }
.provider-gemini b::before { content: "✦"; font-size: 1rem; }
.provider-mistral b::before { content: "M"; }
.provider-groq b::before { content: "G"; }
.provider-deepseek b::before { content: "DS"; }
.provider-tavily b::before { content: "T"; }
.provider-google b::before { content: "G"; color: #4285f4; text-shadow: 0 0 10px rgba(66,133,244,0.5); }
.provider-elevenlabs b::before { content: "11"; }
.provider-twilio b::before { content: "Tw"; }
.provider-github b::before { content: "GH"; }
.provider-spotify b::before { content: "\266B"; color: #1db954; text-shadow: 0 0 12px rgba(29,185,84,0.65); }
.provider-soundcloud b::before { content: "SC"; color: #ff7700; text-shadow: 0 0 12px rgba(255,119,0,0.65); }

.provider-openrouter b { background: linear-gradient(135deg, rgba(119, 92, 255, 0.22), rgba(0,0,0,0.2)); }
.provider-openai b { border-color: rgba(16, 185, 129, 0.55); box-shadow: 0 0 18px rgba(16,185,129,0.18); }
.provider-anthropic b { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 0 18px rgba(245,158,11,0.16); }
.provider-gemini b { border-color: rgba(96, 165, 250, 0.55); box-shadow: 0 0 18px rgba(96,165,250,0.18); }
.provider-mistral b { border-color: rgba(248, 113, 113, 0.5); box-shadow: 0 0 18px rgba(248,113,113,0.16); }
.provider-groq b { border-color: rgba(251, 146, 60, 0.5); box-shadow: 0 0 18px rgba(251,146,60,0.16); }
.provider-deepseek b { border-color: rgba(56, 189, 248, 0.55); box-shadow: 0 0 18px rgba(56,189,248,0.18); }
.provider-tavily b { border-color: rgba(34, 211, 238, 0.55); box-shadow: 0 0 18px rgba(34,211,238,0.18); }
.provider-google b { border-color: rgba(234, 67, 53, 0.45); box-shadow: 0 0 18px rgba(251,188,5,0.18); }
.provider-elevenlabs b { border-color: rgba(255,255,255,0.35); box-shadow: 0 0 18px rgba(255,255,255,0.12); }
.provider-twilio b { border-color: rgba(248, 113, 113, 0.55); box-shadow: 0 0 18px rgba(248,113,113,0.18); }
.provider-github b { border-color: rgba(226,232,240,0.55); box-shadow: 0 0 18px rgba(226,232,240,0.12); }
.provider-spotify b { border-color: rgba(29,185,84,0.55); box-shadow: 0 0 18px rgba(29,185,84,0.18); }
.provider-soundcloud b { border-color: rgba(255,119,0,0.55); box-shadow: 0 0 18px rgba(255,119,0,0.18); }

.provider-strip-note {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.lead-capture-section {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1rem;
  align-items: center;
  margin: -1.5rem auto 3rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: radial-gradient(circle at 8% 0%, rgba(255,79,123,0.13), transparent 42%), rgba(7,8,13,0.72);
  box-shadow: 0 0 42px rgba(0,0,0,0.34);
}

.lead-capture-section strong {
  display: block;
  margin: 0.35rem 0;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.lead-capture-section p {
  margin: 0;
  color: var(--text-muted);
}

.lead-capture-section form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}

.lead-capture-section input,
.lead-capture-section button {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.34);
  color: #fff;
  padding: 0 0.9rem;
  font-family: var(--font-tech);
  letter-spacing: 0.08em;
}

.lead-capture-section button {
  border-color: rgba(255,79,123,0.55);
  box-shadow: 0 0 18px rgba(255,79,123,0.16);
  cursor: pointer;
}

.push-ghost-section {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 3.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(192,132,252,0.18);
  background:
    radial-gradient(circle at 20% 0%, rgba(56,189,248,0.13), transparent 38%),
    radial-gradient(circle at 82% 14%, rgba(255,79,123,0.12), transparent 36%),
    rgba(3,4,7,0.76);
  box-shadow: 0 0 54px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.push-ghost-copy {
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.push-ghost-copy h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.92;
}

.push-ghost-copy p {
  margin: 0;
  color: rgba(226,232,240,0.76);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.push-ghost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.push-ghost-grid article {
  min-height: 170px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 48%), rgba(0,0,0,0.34);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.push-ghost-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.48);
  box-shadow: 0 0 34px rgba(56,189,248,0.14);
}

.push-ghost-grid b {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.push-ghost-grid strong {
  display: block;
  color: #fff;
  font: 800 0.86rem var(--font-tech);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.push-ghost-grid span {
  display: block;
  margin-top: 0.65rem;
  color: rgba(203,213,225,0.74);
  line-height: 1.45;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .lead-capture-section,
  .lead-capture-section form,
  .push-ghost-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes providerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes providerPulse {
  0%, 100% {
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 rgba(192,132,252,0);
  }
  50% {
    border-color: rgba(192,132,252,0.34);
    box-shadow: 0 0 24px rgba(192,132,252,0.12);
  }
}

@keyframes providerBadgeBreathe {
  0%, 100% { transform: scale(1); filter: brightness(0.92); }
  50% { transform: scale(1.08); filter: brightness(1.25); }
}

@keyframes heroSignalPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
    letter-spacing: 0.08em;
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.22)) drop-shadow(0 0 34px rgba(250, 204, 21, 0.12));
    letter-spacing: 0.095em;
  }
}

@keyframes heroOrbBreathe {
  0%, 100% { transform: translateX(-50%) scale(0.98) rotate(0deg); opacity: 0.82; }
  50% { transform: translateX(-50%) scale(1.035) rotate(2deg); opacity: 1; }
}

@keyframes trialBurstPulse {
  0%, 100% {
    transform: scale(1);
    border-color: rgba(255,79,123,0.66);
    box-shadow: 0 0 34px rgba(255,79,123,0.26), 0 0 64px rgba(250,204,21,0.12), inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  50% {
    transform: scale(1.045);
    border-color: rgba(250,204,21,0.92);
    box-shadow: 0 0 46px rgba(255,79,123,0.42), 0 0 88px rgba(250,204,21,0.24), inset 0 0 0 1px rgba(255,255,255,0.12);
  }
}

@keyframes trialCellPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

@keyframes sellGridWake {
  0%, 100% { box-shadow: 0 0 0 rgba(168,85,247,0); }
  50% { box-shadow: 0 0 44px rgba(168,85,247,0.12); }
}

@keyframes sellTileShine {
  0%, 18% { transform: translateX(-120%); opacity: 0; }
  38%, 54% { opacity: 1; }
  78%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes tipButtonShine {
  0%, 24% { transform: translateX(-120%); opacity: 0; }
  42%, 58% { opacity: 1; }
  82%, 100% { transform: translateX(120%); opacity: 0; }
}

.api-grid,
.video-grid,
.trust-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.api-card,
.video-card,
.trust-card {
  --card-accent: #c084fc;
  min-height: 180px;
  padding: 1.25rem;
  border: 1px solid var(--void-border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(3, 4, 7, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.api-card:nth-child(1) { --card-accent: #ff8c00; }
.api-card:nth-child(2) { --card-accent: #34d399; }
.api-card:nth-child(3) { --card-accent: #a78bfa; }
.api-card:nth-child(4) { --card-accent: #facc15; }
.api-card:nth-child(5) { --card-accent: #fcd34d; }
.api-card:nth-child(6) { --card-accent: #c084fc; }
.api-card:nth-child(7) { --card-accent: #38bdf8; }

.trust-card:nth-child(1) { --card-accent: #38bdf8; }
.trust-card:nth-child(2) { --card-accent: #fb7185; }
.trust-card:nth-child(3) { --card-accent: #ff8c00; }
.trust-card:nth-child(4) { --card-accent: #34d399; }

.video-card:nth-child(1) { --card-accent: #ff8c00; }
.video-card:nth-child(2) { --card-accent: #34d399; }
.video-card:nth-child(3) { --card-accent: #60a5fa; }
.video-card:nth-child(4) { --card-accent: #a78bfa; }
}

.api-card:hover,
.video-card:hover,
.trust-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--card-accent) 70%, transparent);
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--card-accent) 22%, transparent), transparent 44%),
    rgba(3, 4, 7, 0.9);
  box-shadow: 0 18px 58px color-mix(in srgb, var(--card-accent) 16%, transparent);
}

.api-card:hover span,
.video-card:hover span,
.trust-card:hover span {
  color: color-mix(in srgb, var(--card-accent) 72%, #ffffff 20%);
}

.api-card span,
.video-card span,
.trust-card span {
  color: var(--text-muted);
  font: 0.66rem var(--font-tech);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.api-card h3,
.video-card h3,
.trust-card h3 {
  margin-top: 0.85rem;
  color: #fff;
  font: 500 1.1rem var(--font-tech);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.api-card p,
.video-card p,
.trust-card p {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.video-frame {
  height: 160px;
  margin-bottom: 1rem;
  border: 1px solid var(--void-border);
  background:
    radial-gradient(circle at 50% 50%, rgba(0,229,255,0.12), transparent 48%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    #020306;
  background-size: auto, 28px 28px, 28px 28px, auto;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.72);
  font: 0.72rem var(--font-tech);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.patent-section {
  min-height: 28vh;
  align-items: center;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  opacity: 0.82;
}

.patent-section .ritual-text {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
}

.tip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1.5rem;
  padding: 0 1rem;
  border: 1px solid rgba(192, 132, 252, 0.42);
  color: #f5f3ff;
  background: rgba(192, 132, 252, 0.08);
  text-decoration: none;
}

.marketing-orb-guide,
.console-orb-guide {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  width: auto;
  display: grid;
  grid-template-columns: auto;
  gap: 0;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0.34;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.marketing-orb-guide.visible,
.marketing-orb-guide:hover {
  opacity: 0.96;
  pointer-events: auto;
  transform: translateY(0);
}

.marketing-orb-guide.scrolled {
  animation: orbDrift 14s ease-in-out infinite alternate;
}

#marketing-orb-minimize,
#console-orb-minimize {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 7, 12, 0.82);
  cursor: pointer;
  z-index: 2;
}

#marketing-orb-core,
#console-orb-core {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.34);
  color: #c4b5fd;
  background:
    radial-gradient(circle at 40% 35%, rgba(245, 243, 255, 0.82) 0 7%, rgba(167, 139, 250, 0.6) 16%, rgba(91, 33, 182, 0.58) 44%, rgba(24, 18, 43, 0.34) 76%);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.22), inset 0 0 18px rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

#marketing-orb-sigil,
#console-orb-sigil {
  font-size: 1.65rem;
  line-height: 1;
}

.marketing-orb-copy,
.console-orb-copy {
  position: absolute;
  right: calc(100% + 0.8rem);
  bottom: 0.15rem;
  width: min(330px, calc(100vw - 7rem));
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(192, 132, 252, 0.26);
  background: rgba(4, 5, 10, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.marketing-orb-guide.visible .marketing-orb-copy,
.marketing-orb-guide:hover .marketing-orb-copy,
.console-orb-guide.visible .console-orb-copy,
.console-orb-guide:hover .console-orb-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.marketing-orb-copy strong,
.console-orb-copy strong {
  color: #fff;
  font: 0.68rem var(--font-tech);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marketing-orb-copy span,
.console-orb-copy span {
  color: var(--text-muted);
  font: 0.75rem/1.45 var(--font-tech);
}

.marketing-orb-guide.minimized,
.console-orb-guide.minimized {
  width: auto;
  grid-template-columns: auto;
  padding: 0;
  opacity: 0.28;
}

.marketing-orb-guide.minimized .marketing-orb-copy,
.console-orb-guide.minimized .console-orb-copy {
  display: none;
}

.pantheon-drop-section {
  min-height: auto;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.pantheon-drop {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  border: 1px solid rgba(192, 132, 252, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.13), transparent 48%),
    linear-gradient(135deg, rgba(246, 173, 85, 0.045), transparent 34%, rgba(56, 189, 248, 0.035)),
    rgba(4, 5, 10, 0.68);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 100px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06);
}

.pantheon-drop summary {
  min-height: 112px;
  display: grid;
  gap: 0.55rem;
  align-content: center;
  padding: clamp(1.2rem, 4vw, 2.2rem);
  cursor: pointer;
  list-style: none;
  position: relative;
  overflow: hidden;
}

.pantheon-drop summary::before {
  content: "";
  position: absolute;
  inset: -32%;
  background:
    radial-gradient(circle at 30% 30%, rgba(246,173,85,0.14), transparent 28%),
    radial-gradient(circle at 72% 44%, rgba(168,85,247,0.16), transparent 30%),
    radial-gradient(circle at 54% 80%, rgba(56,189,248,0.10), transparent 24%);
  opacity: 0.42;
  animation: pantheonRoll 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.pantheon-drop summary > * {
  position: relative;
  z-index: 1;
}

.pantheon-drop summary::-webkit-details-marker {
  display: none;
}

.pantheon-drop summary strong {
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 0.98;
}

.pantheon-drop summary em {
  color: var(--text-muted);
  font: 0.72rem var(--font-tech);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pantheon-drop-map {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pantheon-drop-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.48));
}

.pantheon-drop-map path {
  fill: none;
  stroke: rgba(192, 132, 252, 0.42);
  stroke-width: 2;
  stroke-dasharray: 10 16;
  animation: pantheonWire 32s linear infinite;
}

.pantheon-map-node {
  position: absolute;
  width: min(300px, 38vw);
  min-height: 132px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 0%, rgba(192,132,252,0.18), transparent 46%),
    rgba(6, 7, 14, 0.82);
  box-shadow: 0 18px 54px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  animation: pantheonFloat 6s ease-in-out infinite;
  overflow: hidden;
}

.pantheon-map-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(rgba(246,173,85,0.7), rgba(168,85,247,0.2), rgba(56,189,248,0.62), rgba(246,173,85,0.7));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.28;
  animation: pantheonBorder 16s linear infinite;
  pointer-events: none;
}

.pantheon-map-node.core { left: 50%; top: 46px; transform: translateX(-50%); text-align: center; border-color: rgba(246, 173, 85, 0.32); }
.pantheon-map-node.left-a { left: 4%; top: 306px; animation-delay: .5s; }
.pantheon-map-node.right-a { right: 4%; top: 306px; animation-delay: 1s; }
.pantheon-map-node.left-b { left: 4%; top: 662px; animation-delay: 1.5s; }
.pantheon-map-node.right-b { right: 4%; top: 662px; animation-delay: 2s; }
.pantheon-map-node.bottom { left: 50%; bottom: 62px; transform: translateX(-50%); text-align: center; border-color: rgba(56, 189, 248, 0.28); animation-delay: 2.5s; }

.pantheon-map-node b {
  display: block;
  color: #fff;
  font: 0.78rem var(--font-tech);
  letter-spacing: 0.18em;
}

.pantheon-map-node span {
  display: block;
  margin-top: 0.45rem;
  color: #f6ad55;
  font: 0.72rem var(--font-tech);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pantheon-map-node p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.origin-credit {
  width: min(920px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(246, 173, 85, 0.18);
  background: rgba(4, 5, 10, 0.72);
  backdrop-filter: blur(20px);
}

.origin-credit p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.origin-credit a {
  color: #f6ad55;
  text-decoration: none;
}

.origin-credit div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

@keyframes pantheonWire {
  from { stroke-dashoffset: 900; }
  to { stroke-dashoffset: 0; }
}

@keyframes pantheonFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

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

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

@keyframes orbDrift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-18px, -34px); }
  100% { transform: translate(-4px, -14px); }
}

@media (max-width: 900px) {
  .api-grid,
  .video-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .live-demo-shell {
    grid-template-columns: 1fr;
  }

  .pantheon-drop-map {
    min-height: 0;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
  }

  .pantheon-drop-map svg {
    display: none;
  }

  .pantheon-map-node {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    transform: none !important;
    animation: none;
  }
}
