body {
  font-family: "Space Grotesk", sans-serif;
  background: #080318;
}

/* ── Promo banner ───────────────────────────────────── */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 50%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 52px 14px 16px;
  text-align: center;
}
.promo-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.promo-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.promo-cta:hover { background: rgba(255,255,255,0.28); }
.promo-cta-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
}
.promo-cta-outline:hover { background: rgba(255,255,255,0.15); }
.promo-highlight {
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}
.promo-divider {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
}
.promo-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.promo-close:hover { color: #fff; }

/* Push header below promo banner */
body:has(#promo-banner[style*="none"]) header { top: 0; }
header { top: 50px; transition: top 0.3s; }

/* Glow */
.glow {
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

/* ── Hero section layout ───────────────────────────── */
.hero-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 60px;
  overflow: clip;
}

/* ── Hero side panels (world → AI narrative) ──────── */
.hero-side-left,
.hero-side-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 220px;
  display: none;          /* hidden on mobile / tablet */
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .hero-side-left,
  .hero-side-right { display: flex; }
}

.hero-side-left  { left: 0;  padding-left: 24px; }
.hero-side-right { right: 0; padding-right: 24px; align-items: flex-end; }

/* vertical data stream line */
.data-stream {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  overflow: hidden;
}

.hero-side-left  .data-stream { right: 0; }
.hero-side-right .data-stream { left: 0; }

.data-stream::before,
.data-stream::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.55), transparent);
}
.data-stream::before { animation: streamSlide 3.2s ease-in-out 0s    infinite; }
.data-stream::after  { animation: streamSlide 3.2s ease-in-out 1.6s  infinite; }

@keyframes streamSlide {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(300%);  opacity: 0; }
}

/* cards container */
.side-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* individual floating stat card */
.hero-float-card {
  background: rgba(168, 85, 247, 0.07);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation:
    fcFadeIn  0.8s cubic-bezier(0.16,1,0.3,1) var(--delay,0s) both,
    fcFloat   var(--dur,6s) ease-in-out        var(--fd,1s)    infinite;
}

.hero-side-left  .hero-float-card { border-left:  2px solid rgba(168,85,247,0.45); }
.hero-side-right .hero-float-card { border-right: 2px solid rgba(168,85,247,0.45); }

@keyframes fcFadeIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0);    }
}
@keyframes fcFloat {
  0%,100% { transform: translateY(0px);  }
  50%     { transform: translateY(-13px); }
}

/* card internals */
.fc-eye {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: rgba(192,132,252,0.80);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fc-val {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.fc-sup {
  font-size: 0.9rem;
  color: #c084fc;
  vertical-align: super;
}
.fc-hint {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.50rem;
  color: rgba(255,255,255,0.28);
  margin-top: 5px;
  letter-spacing: 0.04em;
}
/* live indicator dot */
.fc-live {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.9);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow: 0 0 4px rgba(74,222,128,0.8); }
  50%     { opacity:.6; box-shadow: 0 0 10px rgba(74,222,128,0.4); }
}

/* ── Hero spotlight glow ───────────────────────────── */
.hero-glow {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 95vw);
  height: min(800px, 95vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.30) 0%,
    rgba(139, 92, 246, 0.12) 35%,
    rgba(59, 130, 246, 0.06) 58%,
    transparent 72%
  );
  animation: heroGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.70; transform: translateX(-50%) scale(1.00); }
  50%       { opacity: 1.00; transform: translateX(-50%) scale(1.20); }
}

/* ── Premium Hero Typography ───────────────────────── */

.hero-content {
  animation: heroAppear 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroAppear {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* — eyebrow — */
.hero-eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.50em;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* pulsing live indicator */
.hero-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.6);
  animation: dotPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(168,85,247,0.6); opacity: 1; }
  50%       { box-shadow: 0 0 0 7px rgba(168,85,247,0);   opacity: 0.7; }
}

/* — main title — */
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.95;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 28%, #c084fc 60%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 100px rgba(168, 85, 247, 0.65));
}

/* — thin rule — */
.hero-rule {
  width: 88px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(168,85,247,0.85), transparent);
}

/* — solutions label — styled as a tag, not a second heading — */
.hero-sub {
  font-family: "Orbitron", sans-serif;
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.60em;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 2px;
  padding: 7px 22px 7px 28px;
  text-transform: uppercase;
  background: rgba(168, 85, 247, 0.06);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.10);
}

/* — body — */
.hero-body {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

/* — CTA solid (primary) — */
.hero-cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
  border: none;
  border-radius: 3px;
  padding: 17px 40px;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.3s;
}

.hero-cta-solid:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.45);
}

/* — CTA outline (secondary) — */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  border-radius: 3px;
  padding: 17px 40px;
  background: transparent;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.hero-cta:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Math AI pillars row ───────────────────────────── */
.math-pillars-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top:    1px solid rgba(168, 85, 247, 0.10);
  border-bottom: 1px solid rgba(168, 85, 247, 0.10);
  background: rgba(168, 85, 247, 0.03);
}

.math-pillar {
  flex: 1;
  min-width: 180px;
  padding: 32px 24px;
  border-right: 1px solid rgba(168, 85, 247, 0.08);
  text-align: center;
  transition: background 0.3s;
}

.math-pillar:last-child { border-right: none; }

.math-pillar:hover {
  background: rgba(168, 85, 247, 0.06);
}

.mp-symbol {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #c084fc, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.mp-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mp-desc {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.70rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.35);
  max-width: 180px;
  margin: 0 auto;
}

/* Button hover */
.btn-hover:hover {
  background: #a855f7;
  color: white;
}

.entropix-text {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.25em;
  font-weight: 600;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up,
.slide-in-left,
.slide-in-right,
.pop-in {
  opacity: 0;
  animation-fill-mode: both;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease-out forwards;
}

.pop-in {
  animation: popIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-150 { animation-delay: 0.15s; transition-delay: 0.15s; }
.delay-300  { animation-delay: 0.30s; transition-delay: 0.30s; }

/* ── Scroll reveal system ──────────────────────────── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition:
    opacity  0.80s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.80s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal       { transform: translateY(44px);  }
.reveal-left  { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px);  }
.reveal-scale { transform: scale(0.88);       }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible { opacity: 1; transform: none; }

/* Stagger delays */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.32s; }
.delay-4 { transition-delay: 0.44s; }
.delay-5 { transition-delay: 0.56s; }

/* Glow hover effect */
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 28px rgba(168,85,247,0.22);
  transition: all 0.3s ease;
}

/* ── Mobile AI stats ticker ────────────────────────── */
.mobile-ticker-wrap {
  overflow: hidden;
  border-top:    1px solid rgba(168,85,247,0.12);
  border-bottom: 1px solid rgba(168,85,247,0.12);
  background: rgba(168,85,247,0.04);
  padding: 13px 0;
}

.mobile-ticker {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: mTicker 28s linear infinite;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.70rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.06em;
}

.mobile-ticker strong { color: #c084fc; font-weight: 600; }
.mobile-ticker .sep   { color: rgba(168,85,247,0.35); font-size: 0.6rem; }

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

/* ── Product cards ─────────────────────────────────── */
.eigenpilot-card {
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.28);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.eigenpilot-card:hover {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.18), 0 0 0 1px rgba(168, 85, 247, 0.12);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.30);
  color: #4ade80;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
}

.ep-chip {
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.22);
  color: rgba(216, 180, 254, 0.85);
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.3s;
}
.ep-chip:hover { background: rgba(168, 85, 247, 0.18); }

.ep-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35);
}
.ep-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.50);
}

.hilbert-card {
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(100, 116, 139, 0.22);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s;
}
.hilbert-card:hover {
  border-color: rgba(59, 130, 246, 0.30);
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #93c5fd;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: 999px;
}

.hilbert-chip {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: rgba(147, 197, 253, 0.70);
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 8px;
}

.hilbert-notify {
  background: transparent;
  border: 1px solid rgba(100, 116, 139, 0.35);
  color: rgba(148, 163, 184, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.hilbert-notify:hover {
  border-color: rgba(59, 130, 246, 0.45);
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.08);
}

.voiceflow-card {
  background: rgba(236, 72, 153, 0.04);
  border: 1px solid rgba(100, 116, 139, 0.22);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s;
}
.voiceflow-card:hover {
  border-color: rgba(236, 72, 153, 0.30);
}

.vf-badge {
  background: rgba(236, 72, 153, 0.10);
  border-color: rgba(236, 72, 153, 0.28);
  color: #f9a8d4;
}

.vf-chip {
  background: rgba(236, 72, 153, 0.07);
  border-color: rgba(236, 72, 153, 0.18);
  color: rgba(249, 168, 212, 0.70);
}

.vf-notify:hover {
  border-color: rgba(236, 72, 153, 0.45);
  color: #f9a8d4;
  background: rgba(236, 72, 153, 0.08);
}

/* ── Inducer card ───────────────────────────────────── */
.inducer-card {
  background: rgba(124, 92, 255, 0.04);
  border: 1px solid rgba(100, 116, 139, 0.22);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color 0.4s;
}
.inducer-card:hover {
  border-color: rgba(124, 92, 255, 0.35);
}

.inducer-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(62, 216, 195, 0.22);
  background: rgba(62, 216, 195, 0.07);
  color: rgba(62, 216, 195, 0.80);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.inducer-cta {
  display: block;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid rgba(124, 92, 255, 0.40);
  background: rgba(124, 92, 255, 0.10);
  color: #A78BFA;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  text-align: center;
}
.inducer-cta:hover {
  background: rgba(124, 92, 255, 0.20);
  border-color: rgba(62, 216, 195, 0.55);
  color: #3ED8C3;
}

/* ── Mobile stat strip ──────────────────────────────── */
.mobile-stat-section {
  width: 100%;
  overflow: hidden;
  padding: 16px 0 8px;
  background: #080318;
}

.mobile-stat-strip {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.mobile-stat-strip::-webkit-scrollbar { display: none; }

.mobile-stat-track {
  display: flex;
  gap: 12px;
  padding: 4px 20px 12px;
  width: max-content;
}

.msc-card {
  width: 148px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-left: 2px solid rgba(168, 85, 247, 0.45);
  text-align: left;
  cursor: grab;
}
.msc-card:active { cursor: grabbing; }


/* ── Social icons ───────────────────────────────────── */
.social-icon {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s, transform 0.25s;
}
.social-icon:hover {
  color: #a855f7;
  transform: translateY(-2px);
}
.whatsapp-icon:hover { color: #25d366; }

/* ── Contact form (glassmorphism) ──────────────────── */
.contact-glass {
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.20);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cf-input, .cf-select, .cf-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}

.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,255,255,0.28); }
.cf-select { color: rgba(255,255,255,0.70); }
.cf-select option { background: #0e0426; }

.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  border-color: rgba(168,85,247,0.55);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}

.cf-textarea { resize: none; min-height: 120px; }

.cf-label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(192,132,252,0.75);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.2s, box-shadow 0.3s;
}

.cf-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(168,85,247,0.40);
}

.cf-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.cf-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

.cf-trust-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  border: 1px solid rgba(168,85,247,0.35);
  color: #c084fc;
  font-size: 0.60rem;
  flex-shrink: 0;
}

/* AI Background Canvas */
#ai-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #080318;
}

/* ── Animated background orbs ─────────────────────── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

.bg-orb-1 { display: none; }
.bg-orb-2 { display: none; }
.bg-orb-3 { display: none; }
.bg-orb-4 { display: none; }

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(220px, 130px) scale(1.15); }
  50%       { transform: translate(120px, 340px) scale(0.9); }
  75%       { transform: translate(-60px, 180px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-220px, -130px) scale(1.12); }
  66%       { transform: translate(-110px, -280px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(-170px, -120px) scale(1.2); }
  50%       { transform: translate(120px, -210px) scale(0.85); }
  75%       { transform: translate(220px, 60px) scale(1.1); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(-100px, 150px) scale(1.08); }
  60%       { transform: translate(80px, 250px) scale(0.93); }
}
.metric-card {
  border: 1px solid rgba(168,85,247,0.2);
  padding: 20px;
  border-radius: 12px;
  background: rgba(168,85,247,0.05);
  text-align: center;
  transition: 0.3s;
}

.metric-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

.metric-card h3 {
  font-size: 28px;
  color: #a855f7;
  font-weight: bold;
}

.metric-card p {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 6px;
}
.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-450 {
  animation-delay: 0.45s;
  transition-delay: 0.45s;
}

.delay-600 {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}
  /* CTA / Footer */
  .cta-section {
    position: relative; z-index: 10;
    padding: 140px 64px;
    text-align: center;
    border-top: 1px solid var(--border);
    overflow: hidden;
  }
  .cta-glow {
    position: absolute;
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(200,245,66,0.08), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -2px; margin-bottom: 32px;
    position: relative;
  }
  .cta-section h2 em { font-style: italic; color: var(--accent); }
  .cta-section p {
    font-family: 'DM Mono', monospace;
    font-size: 13px; color: var(--muted);
    margin-bottom: 48px; line-height: 1.8;
  }
  .cta-form {
    display: flex; justify-content: center; gap: 0;
    max-width: 440px; margin: 0 auto;
    position: relative;
  }
  .cta-input {
    flex: 1; background: var(--surface);
    border: 1px solid var(--border); border-right: none;
    padding: 16px 20px; color: var(--text);
    font-family: 'DM Mono', monospace; font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
  }
  .cta-input:focus { border-color: rgba(200,245,66,0.4); }
  .cta-input::placeholder { color: var(--muted); }
  .cta-submit {
    background: var(--accent); color: #05060a;
    border: none; padding: 0 28px;
    font-family: 'DM Mono', monospace;
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; font-weight: 500;
    cursor: none; white-space: nowrap;
    transition: background 0.2s;
  }
  .cta-submit:hover { background: #d8ff55; }

.eq-strip {
  margin: 60px 0; /* cleaner */
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 48px;
  display: flex;
  align-items: center;

}
.eq-inner {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
:root {
  --border: rgba(255, 255, 255, 0.08);
  --accent: #a855f7;
  --muted:  rgba(255,255,255,0.35);
}

.eq-inner span {
  font-size: 15px;
  color: #9ca3af;
}
.eq-inner .hi {
  color: var(--accent);
}
#ai-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 1;
  background: #020510;
}

.metric-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 1.5rem;
  transition: all 0.35s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.45);
  box-shadow: 0 0 25px rgba(34,211,238,0.08);
}

.metric-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.metric-card p {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}
canvas {
  pointer-events: none;
}

#network {
  opacity: 0.25;
}
/* Video cards */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: scale(1.05);
  border-color: rgba(34,211,238,0.5);
}

.preview-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.6);
  transition: 0.5s;
}

.video-card:hover .preview-video {
  filter: brightness(1);
}

.video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
}
/* 🎬 Cinematic Video Effects */

.video-card video {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Active video (focused) */
.video-active video {
  transform: scale(1.08);
  opacity: 1;
  z-index: 2;
}

/* Inactive video (background feel) */
.video-inactive video {
  transform: scale(0.95);
  opacity: 0.5;
}

/* Optional glow for premium feel */
.video-active {
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.25);
}
/* Sound reactive glow */
.sound-glow {
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
}/* Video cards */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}

.video-card:hover {
  transform: scale(1.05);
  border-color: rgba(34,211,238,0.5);
}

.preview-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.6);
  transition: 0.5s;
}

.video-card:hover .preview-video {
  filter: brightness(1);
}

.video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Sound reactive glow */
.sound-glow {
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

#chart {
  box-shadow: 0 0 30px rgba(34,211,238,0.15);
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── YouTube-style video controls ────────────────── */
.yt-controls {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}

.yt-progress-bar {
  transition: height 0.12s ease;
}
.yt-progress-bar:hover {
  height: 5px !important;
}

.yt-thumb {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.yt-progress-bar:hover .yt-thumb {
  opacity: 1;
}

/* Center overlay: visible when paused, hidden when playing */
.yt-center {
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: auto;
}
.yt-center.yt-hidden {
  opacity: 0;
  pointer-events: none;
}
/* Always show center overlay on hover */
.video-card:hover .yt-center.yt-hidden {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile Responsive ────────────────────────────── */
@media (max-width: 768px) {
  /* Eyebrow text — reduce letter-spacing and allow wrapping */
  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    gap: 6px;
    row-gap: 4px;
    text-align: center;
    line-height: 1.8;
  }

  /* Make mobile stat strip more prominent */
  .mobile-stat-strip {
    margin-top: 8px;
  }

  .msc-card {
    width: 130px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-form {
    flex-direction: column;
    gap: 8px;
  }

  .cta-input {
    border-right: 1px solid var(--border);
    width: 100%;
  }

  .cta-submit {
    width: 100%;
    padding: 14px 20px;
  }

  .preview-video {
    height: 180px;
  }

  .metric-card h3 {
    font-size: 1.5rem;
  }

  .eq-strip {
    margin: 30px 0;
  }

  .entropix-text {
    letter-spacing: 0.1em;
  }
}
 