:root {
  --sf: 'Space Grotesk', sans-serif;
  --bf: 'Inter', sans-serif;
  --bg: #0a1628;
  --purple: #8b5cf6;
  --blue: #00adff;
  --mint: #00d9c0;
  --purple-tint: #a78bfa;
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;

  /* HubSpot form dark theme */
  --hsf-global__font-family: 'Inter', sans-serif;
  --hsf-global__font-size: 14px;
  --hsf-global__color: #d1d5db;
  --hsf-global-error__color: #f87171;
  --hsf-background__background-color: transparent;
  --hsf-background__border-color: transparent;
  --hsf-background__border-radius: 0px;
  --hsf-background__padding: 0px;
  --hsf-field-input__background-color: rgba(255, 255, 255, 0.1);
  --hsf-field-input__border-color: rgba(255, 255, 255, 0.2);
  --hsf-field-input__border-radius: 8px;
  --hsf-field-input__color: #ffffff;
  --hsf-field-input__font-size: 16px;
  --hsf-field-input__placeholder-color: #9ca3af;
  --hsf-field-label__color: #d1d5db;
  --hsf-field-label__font-size: 14px;
  --hsf-button__background-color: rgba(139, 92, 246, 0.8);
  --hsf-button__color: #ffffff;
  --hsf-button__border-color: rgba(139, 92, 246, 0.5);
  --hsf-button__border-radius: 8px;
  --hsf-button__font-family: 'Inter', sans-serif;
  --hsf-button__font-size: 14px;
  --hsf-button__font-weight: 500;
  --hsf-button--hover__background-color: #8b5cf6;
  --hsf-button--hover__color: #ffffff;
  --hsf-button--hover__border-color: #8b5cf6;
  --hsf-legal-consent__color: #9ca3af;
  --hsf-legal-consent__font-size: 12px;
  --hsf-rich-text__color: #9ca3af;
  --hsf-rich-text__font-size: 12px;
  --hsf-row__vertical-spacing: 16px;
  --hsf-module__vertical-spacing: 12px;
}

/* ========================================
   1. RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--bf);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-300);
  background: linear-gradient(135deg, #0a1628 0%, #0d1a2d 50%, #0a1628 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========================================
   2. TAILWIND UTILITY CLASSES
   ======================================== */
.text-5xl { font-size: 3rem; line-height: 1; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mr-2 { margin-right: 0.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-20 { padding-top: 5rem; }
.pb-5 { padding-bottom: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.leading-relaxed { line-height: 1.625; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.inline-flex { display: inline-flex; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.pointer-events-none { pointer-events: none; }
.pr-4 { padding-right: 1rem; }
.pl-4 { padding-left: 1rem; }

@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:p-8 { padding: 2rem; }
}

/* ========================================
   3. GRADIENT TEXT
   ======================================== */
.grad-text {
  color: #8b5cf6; /* solid fallback */
  background: linear-gradient(90deg, #8b5cf6 0%, #00adff 50%, #00d9c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-purple {
  color: #8b5cf6;
  background: linear-gradient(90deg, #8b5cf6 0%, #8b5cf6 40%, #00adff 75%, #00d9c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   4. AMBIENT BACKGROUND GLOWS
   ======================================== */
.ambient-glow-1 {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(139,92,246,0.06) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.ambient-glow-2 {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 30% 70%, rgba(0,173,255,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}

/* ========================================
   5. NEURAL CANVAS
   ======================================== */
#neural-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

/* ========================================
   6. BUTTONS
   ======================================== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-family: var(--bf); font-size: 0.875rem; font-weight: 600;
  color: #fff; cursor: pointer;
  background: rgba(139,92,246,0.8);
  border: 1px solid rgba(139,92,246,0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all 0.3s;
  text-decoration: none; line-height: 1.25rem;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,92,246,0.3);
}
.btn .btn-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #8b5cf6, #00adff);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn:hover .btn-fill { transform: translateX(0); }
.btn .btn-text { position: relative; z-index: 1; }
.btn .btn-arrow {
  position: relative; z-index: 1;
  transition: transform 0.3s;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Secondary button */
.btn-secondary {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-family: var(--bf); font-size: 0.875rem; font-weight: 500;
  color: #fff; cursor: pointer;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  overflow: visible;
  transition: all 0.3s;
  text-decoration: none; line-height: 1.25rem;
  border: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-secondary .btn-border-static {
  position: absolute; inset: 0; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: opacity 0.3s; pointer-events: none;
}
.btn-secondary:hover .btn-border-static { opacity: 0; }
.btn-secondary .border-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible;
}
.btn-secondary .border-svg rect {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.6s ease-out;
}
.btn-secondary:hover .border-svg rect { stroke-dashoffset: 0; }
.btn-secondary .btn-glow {
  position: absolute; inset: 0; border-radius: 8px;
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.btn-secondary:hover .btn-glow { opacity: 1; }
.btn-secondary .btn-text { position: relative; z-index: 1; }
.btn-secondary .btn-arrow {
  position: relative; z-index: 1;
  transition: transform 0.3s;
}
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ========================================
   7. GLASS CARD
   ======================================== */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem; padding: 1.75rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.glass:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.glass .glass-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.glass:hover .glass-glow { opacity: 1; }
.glass img { padding: 1rem 0; }

/* ========================================
   8. FEATURE CARD
   ======================================== */
.feature-card {
  padding: 1.75rem 1.5rem; border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.feature-card .card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.feature-card:hover .card-glow { opacity: 1; }

/* Icon container with CSS mask gradient */
.icon-container {
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(0,173,255,0.2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.icon-mask {
  width: 2rem; height: 2rem;
  background: linear-gradient(135deg, #8b5cf6, #00adff, #00d9c0);
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
}
/* Use case icons: 3rem standalone */
.icon-mask-lg {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, #8b5cf6, #00adff, #00d9c0);
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
  mask-size: contain; mask-repeat: no-repeat; mask-position: center;
  margin-bottom: 1rem;
}

/* ========================================
   9. COMMAND CARD (Imagine / Create / Publish)
   ======================================== */
.command-card {
  border-radius: 0.75rem; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%; position: relative; overflow: hidden;
}
.command-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.command-card .card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.command-card:hover .card-glow { opacity: 1; }

.command-icon-wrap {
  position: absolute; top: 16px; right: 16px;
  width: 64px; height: 64px;
}
.command-orbit {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1.5px dashed rgba(139,92,246,0.3);
  animation: orbitSpin 20s linear infinite;
}
.command-card:hover .command-orbit {
  animation-play-state: paused;
}
.command-icon-bg {
  position: absolute; inset: 4px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
}
.command-icon-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.25);
}
.command-icon-inner {
  width: 100%; height: 100%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,0.1);
}
.command-icon-inner .icon-mask {
  width: 2rem; height: 2rem;
}

/* ========================================
   10. GAME CARD
   ======================================== */
.game-card {
  border-radius: 0.75rem; overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; cursor: default;
}
.game-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 20px rgba(139,92,246,0.08);
  transform: translateY(-2px);
}
.game-card-img {
  width: 100%; display: block;
  object-fit: contain;
  background: rgba(10,22,40,0.6);
}
.game-card-body { padding: 1rem; }

/* ========================================
   11. STAT COUNTER
   ======================================== */
.stat-value {
  font-family: var(--sf); font-weight: 700;
  font-size: 2.25rem; line-height: 2.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #8b5cf6 30%, #00adff 60%, #00d9c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.6)) drop-shadow(0 0 24px rgba(139,92,246,0.4));
}
@media (min-width: 768px) {
  .stat-value { font-size: 3rem; line-height: 1; }
}

/* ========================================
   12. FAQ ACCORDION
   ======================================== */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-btn {
  width: 100%; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; background: transparent; border: none;
  cursor: pointer; color: #fff; font-family: var(--sf); font-weight: 600;
  font-size: 1rem; line-height: 1.5rem;
}
.faq-btn:hover { color: #fff; }
.faq-icon {
  font-size: 1.5rem; color: #8b5cf6;
  transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-content { max-height: 500px; }
.faq-content-inner {
  padding-bottom: 1.25rem;
  color: var(--gray-300); font-size: 0.875rem; line-height: 1.625;
}
.faq-content-inner a { color: #a78bfa; text-decoration: underline; }

/* ========================================
   13. TIME CALCULATOR
   ======================================== */
.calc-input {
  width: 8rem; text-align: center;
  font-size: 1.5rem; font-weight: 700;
  font-family: var(--sf); color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(139,92,246,0.5);
  border-radius: 0.5rem; padding: 0.6rem 2.5rem 0.6rem 0.5rem;
  outline: none; -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-slider { width: 100%; accent-color: #a78bfa; display: block; }
.calc-3col {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}
.calc-3col > .rounded-xl {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.calc-arrow {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .calc-3col {
    grid-template-columns: 1fr !important;
  }
  .calc-arrow { display: none; }
}

/* ========================================
   14. CASE STUDY
   ======================================== */
.case-study-wrap {
  position: relative; border-radius: 1rem; padding: 3rem 2rem;
  background: rgba(13, 26, 45, 0.8); backdrop-filter: blur(20px);
}
.case-study-border {
  position: absolute; inset: 0; border-radius: 1rem; padding: 1px;
  background: linear-gradient(135deg, #8b5cf6 0%, #00adff 50%, #00d9c0 100%);
  opacity: 0.6; pointer-events: none;
}
.case-study-border-inner {
  width: 100%; height: 100%; border-radius: calc(1rem - 1px);
  background: rgba(13, 26, 45, 0.95);
}

/* ========================================
   15. CREATION HUB BORDER
   ======================================== */
.hub-wrap {
  position: relative; border-radius: 1.5rem;
  padding: 1.5rem; background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
}
@media (min-width: 768px) { .hub-wrap { padding: 2rem; } }
.hub-border-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible; border-radius: 1.5rem;
}
.travel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139,92,246,0.8), 0 0 16px rgba(139,92,246,0.5);
  animation: travelBorder 16s linear infinite;
  position: absolute; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 10;
}

/* ========================================
   16. IMAGE PLACEHOLDERS (for missing assets)
   ======================================== */
.placeholder {
  width: 100%;
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(0,173,255,0.2) 100%);
  border: 2px dashed rgba(139,92,246,0.4); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.placeholder-label {
  color: rgba(139,92,246,0.8); font-size: 14px;
  font-family: var(--sf); text-align: center; padding: 0 8px;
}

/* ========================================
   17. HERO — STACKED CENTRED LAYOUT
   ======================================== */
.hero-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-0.5rem);
}
.hero-h1 { white-space: nowrap; }
.hero-bottom { max-width: 42rem; margin: 0 auto; }
.hero-img-full {
  max-width: 58rem;
  margin: 0 auto;
  overflow: visible;
  padding: 3rem 0 4.5rem;
  position: relative;
}
.hero-img-full::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(139,92,246,0.45) 0%,
    rgba(139,92,246,0.25) 25%,
    rgba(0,173,255,0.12) 50%,
    rgba(0,217,192,0.04) 70%,
    transparent 85%
  );
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-img-full img {
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Orbiting particles (per ge-particle-spec.docx — copy verbatim) */
.hero-particle {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 2;
}
.hero-particle-1 { width: 5px; height: 5px; background: #8b5cf6;
  box-shadow: 0 0 10px rgba(139,92,246,0.8), 0 0 20px rgba(139,92,246,0.4);
  top: 20%; left: 5%; animation: heroOrbit1 20s linear infinite; }
.hero-particle-2 { width: 4px; height: 4px; background: #00adff;
  box-shadow: 0 0 8px rgba(0,173,255,0.8), 0 0 16px rgba(0,173,255,0.4);
  bottom: 25%; right: 4%; animation: heroOrbit2 25s linear infinite; }
.hero-particle-3 { width: 3px; height: 3px; background: #00d9c0;
  box-shadow: 0 0 6px rgba(0,217,192,0.7), 0 0 14px rgba(0,217,192,0.3);
  top: 55%; left: 3%; animation: heroOrbit3 30s linear infinite; }
.hero-particle-4 { width: 4px; height: 4px; background: #8b5cf6;
  box-shadow: 0 0 8px rgba(139,92,246,0.7), 0 0 16px rgba(139,92,246,0.3);
  top: 15%; right: 8%; animation: heroOrbit4 22s linear infinite; }
.hero-particle-5 { width: 3px; height: 3px; background: #00adff;
  box-shadow: 0 0 6px rgba(0,173,255,0.7), 0 0 12px rgba(0,173,255,0.3);
  bottom: 18%; left: 8%; animation: heroOrbit5 28s linear infinite; }

@keyframes heroOrbit1 {
  0%{transform:translate(0,0)} 25%{transform:translate(680px,30px)}
  50%{transform:translate(700px,180px)} 75%{transform:translate(40px,160px)}
  100%{transform:translate(0,0)} }
@keyframes heroOrbit2 {
  0%{transform:translate(0,0)} 25%{transform:translate(-620px,-20px)}
  50%{transform:translate(-660px,-150px)} 75%{transform:translate(-30px,-140px)}
  100%{transform:translate(0,0)} }
@keyframes heroOrbit3 {
  0%{transform:translate(0,0)} 25%{transform:translate(340px,-100px)}
  50%{transform:translate(700px,-40px)} 75%{transform:translate(360px,80px)}
  100%{transform:translate(0,0)} }
@keyframes heroOrbit4 {
  0%{transform:translate(0,0)} 25%{transform:translate(-300px,100px)}
  50%{transform:translate(-580px,60px)} 75%{transform:translate(-280px,-40px)}
  100%{transform:translate(0,0)} }
@keyframes heroOrbit5 {
  0%{transform:translate(0,0)} 25%{transform:translate(400px,-60px)}
  50%{transform:translate(580px,80px)} 75%{transform:translate(200px,120px)}
  100%{transform:translate(0,0)} }

/* Scroll chevron */
.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  transition: opacity 0.4s, color 0.3s;
}
.scroll-chevron:hover { color: rgba(255,255,255,0.8); }
.scroll-chevron.hidden { opacity: 0; pointer-events: none; }
.scroll-chevron-text {
  font-family: var(--bf);
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
}
@keyframes chevronBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.scroll-chevron svg {
  animation: chevronBob 2s ease-in-out infinite;
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.25rem !important; white-space: normal !important; }
}

/* ========================================
   18. ANIMATIONS
   ======================================== */
@keyframes travelBorder {
  0% { left: 0%; top: 0; } 25% { left: 100%; top: 0; }
  50% { left: 100%; top: 100%; } 75% { left: 0%; top: 100%; }
  100% { left: 0%; top: 0; }
}
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ========================================
   19. FOCUS & ACCESSIBILITY
   ======================================== */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid #8b5cf6; outline-offset: 2px; border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .command-orbit { animation: none !important; }
  .travel-dot { animation: none !important; display: none !important; }
  .hero-particle { animation: none !important; }
  .scroll-chevron svg { animation: none !important; }
}

/* ========================================
   20. RESPONSIVE GRIDS
   ======================================== */
.command-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.neuro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.case-study-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: center; }

@media (min-width: 1200px) {
  .px-6 { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .game-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .usecase-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 800px) {
  .command-grid { grid-template-columns: 1fr !important; }
  .neuro-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .case-study-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 500px) {
  .feature-grid { grid-template-columns: 1fr !important; }
  .game-grid { grid-template-columns: 1fr !important; }
  .usecase-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr !important; }
}