/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --bg:           #050508;
  --bg-2:         #080810;
  --bg-card:      rgba(10, 10, 18, 0.85);
  --glass:        rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover:  rgba(255, 255, 255, 0.07);

  --ink:        #f0efff;
  --ink-muted:  rgba(240, 239, 255, 0.55);
  --ink-dim:    rgba(240, 239, 255, 0.28);

  --accent:   #6366f1;
  --accent-2: #22d3ee;
  --accent-3: #a855f7;

  --glow-sm:  0 0 20px rgba(99,102,241,0.3);
  --glow-md:  0 0 40px rgba(99,102,241,0.25), 0 0 80px rgba(99,102,241,0.1);
  --glow-btn: 0 0 30px rgba(99,102,241,0.5), 0 4px 20px rgba(99,102,241,0.3);

  --container: 1200px;
  --gutter:    clamp(1rem, 4vw, 1.5rem);

  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'Fira Code', monospace;

  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --section-y: clamp(80px, 10vw, 130px);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.025em; font-family: var(--display); }
em { font-style: italic; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* =============================================================
   3. UTILITIES
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.mono { font-family: var(--mono); font-size: 0.875em; letter-spacing: 0.04em; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1.2rem; background: var(--accent); color: #fff;
  border-radius: var(--r-sm); font-weight: 600; font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-kicker {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* Status dots */
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--live   { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.6); animation: pulse-live 2s ease-in-out infinite; }
.status-dot--cyan   { background: var(--accent-2); }
.status-dot--purple { background: var(--accent-3); }

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* =============================================================
   4. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Defensive: never hide split-text elements */
.reveal[data-split] { opacity: 1; transform: none; }

/* data-delay variants */
.reveal[data-delay="0"]   { transition-delay: 0s; }
.reveal[data-delay="0.1"] { transition-delay: 0.1s; }
.reveal[data-delay="0.15"]{ transition-delay: 0.15s; }
.reveal[data-delay="0.2"] { transition-delay: 0.2s; }
.reveal[data-delay="0.25"]{ transition-delay: 0.25s; }
.reveal[data-delay="0.3"] { transition-delay: 0.3s; }
.reveal[data-delay="0.35"]{ transition-delay: 0.35s; }
.reveal[data-delay="0.4"] { transition-delay: 0.4s; }
.reveal[data-delay="0.45"]{ transition-delay: 0.45s; }
.reveal[data-delay="0.5"] { transition-delay: 0.5s; }
.reveal[data-delay="0.55"]{ transition-delay: 0.55s; }
.reveal[data-delay="0.6"] { transition-delay: 0.6s; }
.reveal[data-delay="0.65"]{ transition-delay: 0.65s; }

/* =============================================================
   5. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: var(--display);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .25s;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #7577f3; }

.btn-glow { box-shadow: var(--glow-btn); }
.btn-glow:hover { box-shadow: 0 0 50px rgba(99,102,241,0.7), 0 8px 30px rgba(99,102,241,0.4); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.18);
  background: var(--glass);
}

.btn-nav {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--glass-border);
  padding: .5rem 1.25rem;
  font-size: .875rem;
}
.btn-nav:hover { background: var(--glass); border-color: var(--accent); }

.btn-sm { padding: .5rem 1.1rem; font-size: .875rem; }
.btn-large { padding: 1rem 2.25rem; font-size: 1.0625rem; }

.btn-arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =============================================================
   6. CURSOR
   ============================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.cursor.is-ready { opacity: 1; }

.cursor-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  top: -4px; left: -4px;
  box-shadow: 0 0 10px rgba(34,211,238,.8);
}

.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,.6);
  top: -18px; left: -18px;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s;
}

.cursor.is-hovering .cursor-ring {
  width: 54px; height: 54px;
  top: -27px; left: -27px;
  border-color: var(--accent);
}

@media (hover: none) { .cursor { display: none; } }

/* =============================================================
   7. NAVIGATION
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(5,5,8,.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -.02em;
  color: var(--ink);
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--accent);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--glow-sm);
  font-family: var(--display);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: .25rem;
}
.nav-link {
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--ink); background: var(--glass); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(5,5,8,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem var(--gutter) 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: .25rem; }
.nav-mobile-link {
  display: block;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-mobile-link:hover { color: var(--ink); background: var(--glass); }
.btn-mobile-cta { margin-top: .75rem; width: 100%; justify-content: center; }

/* =============================================================
   8. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  padding-top: var(--nav-h);
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.28) 0%, transparent 70%);
  top: -15%; left: -10%;
  animation: orb-drift-1 18s ease-in-out infinite;
}
.hero-orb--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,.2) 0%, transparent 70%);
  top: 10%; right: -8%;
  animation: orb-drift-2 22s ease-in-out infinite;
}
.hero-orb--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,.15) 0%, transparent 70%);
  bottom: 0%; left: 40%;
  animation: orb-drift-3 16s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, 40px) scale(1.1); }
  66%       { transform: translate(-30px, 70px) scale(.95); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-50px, 60px) scale(1.08); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(40px, -50px) scale(1.12); }
  80%       { transform: translate(-30px, 20px) scale(.9); }
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
}

/* Mouse-reactive gradient */
.hero-mouse-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 400px at var(--mx, 50%) var(--my, 30%),
      rgba(99,102,241,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, transparent 50%, rgba(5,5,8,.4) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

/* Particles canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 6rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem .9rem;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: var(--r-pill);
  font-size: .75rem;
  color: var(--accent-2);
  letter-spacing: .08em;
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px rgba(34,211,238,.8);
  animation: pulse-live 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  display: flex;
  flex-direction: column;
  gap: .05em;
  margin-bottom: 1.75rem;
}
.hero-title span { display: block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--ink-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-trusted {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero-trusted-label { font-size: .75rem; color: var(--ink-dim); }
.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-platforms span {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--ink-muted);
  padding: .2rem .6rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(10,10,22,.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  min-width: 200px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 0.5px rgba(99,102,241,.15);
}

.float-card--tl {
  top: 22%;
  left: calc(50% + 20px);
  animation: float-bob 5s ease-in-out infinite;
}
.float-card--tr {
  top: 14%;
  right: 3%;
  animation: float-bob 6s ease-in-out infinite .8s;
}
.float-card--br {
  bottom: 20%;
  right: 2%;
  animation: float-bob 7s ease-in-out infinite 1.4s;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.float-card-label { font-family: var(--mono); font-size: .68rem; color: var(--ink-dim); margin-bottom: .3rem; letter-spacing: .08em; }
.float-card-value { font-family: var(--display); font-size: 1.625rem; font-weight: 700; color: var(--ink); line-height: 1; }
.float-card-value--accent { color: var(--accent-2); }
.float-card-value--sm { font-size: .9rem; font-weight: 500; color: var(--ink-muted); margin-top: .2rem; }
.float-card-meta { font-size: .72rem; color: var(--ink-dim); margin-top: .3rem; }
.float-up { color: #22c55e; }

.float-card-sparkline { margin-top: .5rem; color: var(--accent-2); height: 28px; }
.float-card-sparkline svg { width: 100%; height: 100%; }

.float-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.float-card-status { display: flex; align-items: center; gap: .4rem; font-size: .7rem; color: #22c55e; }

.float-card-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  margin-top: .6rem;
  overflow: clip;
}
.float-card-bar-fill {
  height: 100%;
  width: 73%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: bar-grow 2s var(--ease-out) .5s both;
}
@keyframes bar-grow { from { width: 0; } }

/* =============================================================
   9. STATS
   ============================================================= */
.stats-section {
  padding-block: var(--section-y);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(180deg, var(--bg) 0%, #070712 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--glass-border);
  position: relative;
}
.stat-item:last-child { border-right: 0; }

.stat-number {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .875rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Platform badges */
.stats-platforms { text-align: center; }
.stats-platforms-scroll {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.platform-badge {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--ink-muted);
  padding: .35rem .9rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  background: var(--glass);
  transition: color .2s, border-color .2s, background .2s;
}
.platform-badge:hover { color: var(--ink); border-color: rgba(99,102,241,.4); background: rgba(99,102,241,.08); }

/* =============================================================
   10. SERVICES
   ============================================================= */
.services-section {
  padding-block: var(--section-y);
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: clip;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-2);
  transition: background .3s;
  cursor: default;
}
.service-card:hover {
  background: rgba(12, 12, 24, 1);
}

/* Glow on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle 200px at var(--cx,50%) var(--cy,50%),
    rgba(99,102,241,.12) 0%, transparent 80%);
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }

/* Top border highlight on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover::after { opacity: 1; }

.service-card-icon {
  width: 42px; height: 42px;
  color: var(--accent-2);
  margin-bottom: 1.25rem;
  transition: color .3s, transform .3s var(--ease-bounce);
}
.service-card:hover .service-card-icon { color: var(--accent); transform: scale(1.1); }

.service-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--ink);
}

.service-card-desc {
  font-size: .875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.service-card-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.75rem;
  font-size: 1rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: none; }

/* Featured variant */
.service-card--featured {
  background: rgba(99,102,241,.05);
}
.service-card--featured .service-card-icon { color: var(--accent); }

.service-card-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: var(--r-pill);
  padding: .2rem .6rem;
  margin-bottom: 1rem;
  background: rgba(99,102,241,.06);
}

/* =============================================================
   11. AI SYSTEM
   ============================================================= */
.ai-section {
  padding-block: var(--section-y);
  background: var(--bg);
  overflow: clip;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.ai-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ai-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(99,102,241,.6);
  flex-shrink: 0;
  margin-top: .45rem;
}
.ai-feature strong {
  display: block;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--ink);
}
.ai-feature span {
  font-size: .875rem;
  color: var(--ink-muted);
}

/* Dashboard */
.ai-visual { position: relative; }

.ai-dashboard {
  background: rgba(8,8,18,.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 0.5px rgba(99,102,241,.1), var(--glow-sm);
}

.ai-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.25rem;
  font-size: .75rem;
  color: var(--ink-muted);
  letter-spacing: .06em;
}
.ai-status { display: flex; align-items: center; gap: .4rem; color: #22c55e; font-size: .7rem; }

.ai-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  overflow: clip;
  margin-bottom: 1.5rem;
}
.ai-metric {
  padding: .875rem 1rem;
  background: var(--bg-2);
  text-align: center;
}
.ai-metric-label { font-size: .65rem; letter-spacing: .08em; color: var(--ink-dim); margin-bottom: .35rem; }
.ai-metric-value { font-family: var(--display); font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.ai-metric--pos { color: #22c55e; }

/* Bar chart */
.ai-chart { margin-bottom: 1.5rem; }
.ai-chart-title { font-size: .65rem; letter-spacing: .08em; color: var(--ink-dim); margin-bottom: .75rem; }
.ai-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 80px;
}
.ai-bar {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.ai-bar-fill {
  width: 100%;
  height: var(--h, 50%);
  background: rgba(99,102,241,.3);
  border-radius: 3px 3px 0 0;
  transition: height .8s var(--ease-out);
  animation: bar-rise .8s var(--ease-out) both;
}
.ai-bar-fill--win {
  background: linear-gradient(180deg, var(--accent-2), rgba(34,211,238,.4));
  box-shadow: 0 0 12px rgba(34,211,238,.4);
}

@keyframes bar-rise {
  from { height: 0; }
}

/* Sparkline */
.ai-sparkline { margin-bottom: 1.25rem; }
.ai-sparkline-svg { width: 100%; height: 70px; }
.ai-spark-line { stroke-dasharray: 500; stroke-dashoffset: 500; animation: draw-line 2s var(--ease-out) .5s forwards; }
.ai-spark-area { opacity: 0; animation: fade-in .8s .8s forwards; }

@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes fade-in { to { opacity: 1; } }

/* Feed */
.ai-feed { display: flex; flex-direction: column; gap: .5rem; }
.ai-feed-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
  padding: .4rem .75rem;
  background: var(--glass);
  border-radius: var(--r-sm);
  animation: slide-in .5s var(--ease-out) both;
}
.ai-feed-item:nth-child(1) { animation-delay: 1.2s; }
.ai-feed-item:nth-child(2) { animation-delay: 1.8s; }
.ai-feed-item:nth-child(3) { animation-delay: 2.4s; }

@keyframes slide-in { from { opacity: 0; transform: translateX(-8px); } }

/* =============================================================
   12. CASE STUDIES
   ============================================================= */
.cs-section {
  padding-block: var(--section-y);
  background: var(--bg-2);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cs-card {
  background: rgba(10,10,20,.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  transition: border-color .3s, transform .4s var(--ease-out), box-shadow .4s;
  backdrop-filter: blur(8px);
}
.cs-card:hover {
  border-color: rgba(99,102,241,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), var(--glow-sm);
}

.cs-card--featured {
  border-color: rgba(99,102,241,.25);
  background: rgba(99,102,241,.05);
  box-shadow: var(--glow-sm);
}
.cs-card--featured:hover { border-color: rgba(99,102,241,.5); }

.cs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.cs-tag {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.cs-platform-tag {
  font-size: .72rem;
  color: var(--ink-dim);
  padding: .2rem .6rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
}

.cs-metrics {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}
.cs-metric-hero {}
.cs-metric-big {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--ink), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.cs-metric-label { font-size: .75rem; color: var(--ink-dim); margin-top: .25rem; }

.cs-metric-sub { display: flex; flex-direction: column; gap: .5rem; }
.cs-metric-sub > div { display: flex; align-items: baseline; gap: .3rem; }
.cs-metric-val { font-family: var(--display); font-size: 1rem; font-weight: 700; color: var(--ink); }
.cs-metric-sub-label { font-size: .7rem; color: var(--ink-dim); }

.cs-story { display: flex; flex-direction: column; gap: 1rem; }
.cs-story-block strong { display: block; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: .3rem; }
.cs-story-block p { font-size: .875rem; color: var(--ink-muted); line-height: 1.55; }
.cs-story-block--result p { color: var(--ink); }
.cs-story-block--result strong { color: var(--accent-2); }

/* =============================================================
   13. PROCESS
   ============================================================= */
.process-section {
  padding-block: var(--section-y);
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 54px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3), var(--accent-2));
  opacity: .35;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 1.25rem 2rem;
}

.process-step-num {
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--ink-dim);
  margin-bottom: .75rem;
}

.process-step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  color: var(--accent);
  transition: background .3s, border-color .3s, transform .3s var(--ease-bounce);
}
.process-step:hover .process-step-icon {
  background: rgba(99,102,241,.08);
  border-color: rgba(99,102,241,.4);
  transform: translateY(-4px);
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--ink);
}
.process-step p {
  font-size: .875rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* =============================================================
   14. ECOSYSTEM
   ============================================================= */
.eco-section {
  padding-block: var(--section-y);
  background: var(--bg-2);
  overflow: clip;
}

.eco-visual {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.eco-visual::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(99,102,241,.08) 0%, transparent 70%);
  pointer-events: none;
}

.eco-svg {
  width: 100%;
  height: auto;
}

.eco-line {
  opacity: .7;
  animation: line-fade 3s ease-in-out infinite;
}
.eco-line:nth-child(odd) { animation-delay: .4s; }

@keyframes line-fade {
  0%, 100% { opacity: .4; }
  50% { opacity: .9; }
}

.eco-node {
  transition: r .3s;
}

/* Animated dots on lines */
.eco-dot {
  filter: drop-shadow(0 0 4px rgba(34,211,238,.8));
  animation: dot-move-1 3s ease-in-out infinite;
}
.eco-dot--1 { animation-name: dot-move-1; animation-duration: 2.8s; }
.eco-dot--2 { animation-name: dot-move-2; animation-duration: 3.2s; animation-delay: .4s; }
.eco-dot--3 { animation-name: dot-move-3; animation-duration: 2.6s; animation-delay: .8s; }
.eco-dot--4 { animation-name: dot-move-4; animation-duration: 3.5s; animation-delay: .2s; }
.eco-dot--5 { animation-name: dot-move-5; animation-duration: 3s; animation-delay: .6s; }
.eco-dot--6 { animation-name: dot-move-6; animation-duration: 2.9s; animation-delay: 1s; }
.eco-dot--7 { animation-name: dot-move-7; animation-duration: 3.1s; animation-delay: .3s; }
.eco-dot--8 { animation-name: dot-move-8; animation-duration: 2.7s; animation-delay: .7s; }

@keyframes dot-move-1 { 0%,100%{cx:500}  50%{cx:420} }
@keyframes dot-move-2 { 0%,100%{cx:477;cy:338} 50%{cx:430;cy:298} }
@keyframes dot-move-3 { 0%,100%{cy:370} 50%{cy:310} }
@keyframes dot-move-4 { 0%,100%{cx:322;cy:338} 50%{cx:370;cy:300} }
@keyframes dot-move-5 { 0%,100%{cx:300} 50%{cx:380} }
@keyframes dot-move-6 { 0%,100%{cx:322;cy:182} 50%{cx:368;cy:220} }
@keyframes dot-move-7 { 0%,100%{cy:150} 50%{cy:200} }
@keyframes dot-move-8 { 0%,100%{cx:477;cy:182} 50%{cx:432;cy:220} }

/* =============================================================
   15. TESTIMONIALS
   ============================================================= */
.testi-section {
  padding-block: var(--section-y);
  background: var(--bg);
}

.testi-slider { position: relative; overflow: clip; }

.testi-track {
  display: flex;
  transition: transform .6s var(--ease-out);
}

.testi-card {
  flex: 0 0 100%;
  padding: 3rem;
  background: rgba(10,10,20,.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: clip;
}
.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(99,102,241,.06) 0%, transparent 60%);
  pointer-events: none;
}

.testi-quote-mark {
  font-family: 'Georgia', serif;
  font-size: 5rem;
  line-height: .6;
  color: var(--accent);
  opacity: .25;
  margin-bottom: 1.5rem;
  user-select: none;
}

.testi-card blockquote p {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  max-width: 720px;
  margin-bottom: 2rem;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: .875rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-info { flex: 1; }
.testi-info strong { display: block; font-weight: 600; }
.testi-info span { font-size: .875rem; color: var(--ink-muted); }

.testi-result {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.2);
  border-radius: var(--r-pill);
  padding: .35rem .9rem;
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s, background .2s;
}
.testi-btn svg { width: 18px; height: 18px; }
.testi-btn:hover { border-color: var(--accent); color: var(--ink); background: rgba(99,102,241,.1); }

.testi-dots { display: flex; gap: .5rem; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  transition: background .3s, width .3s;
}
.testi-dot--active {
  background: var(--accent);
  width: 24px;
  border-radius: var(--r-pill);
}

/* =============================================================
   16. ABOUT
   ============================================================= */
.about-section {
  padding-block: var(--section-y);
  background: var(--bg-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-desc {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-top: 1.25rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.about-pillar-mark {
  font-size: 1.1rem;
  color: var(--accent);
  opacity: .7;
  flex-shrink: 0;
  margin-top: .1rem;
}
.about-pillar strong { display: block; font-size: .9375rem; font-weight: 600; margin-bottom: .2rem; }
.about-pillar span { font-size: .875rem; color: var(--ink-muted); }

/* About stats card */
.about-stats-card {
  background: rgba(8,8,16,.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,.4), var(--glow-sm);
}

.about-stat { text-align: center; padding: 1.25rem 0; }
.about-stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: .35rem;
}
.about-stat-lbl { font-size: .875rem; color: var(--ink-muted); }

.about-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0 1rem;
}

/* =============================================================
   17. FINAL CTA
   ============================================================= */
.cta-section {
  position: relative;
  padding-block: clamp(100px, 14vw, 180px);
  overflow: clip;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.cta-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.22) 0%, transparent 70%);
  top: -20%; left: -10%;
  animation: orb-drift-1 20s ease-in-out infinite;
}
.cta-orb--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,.18) 0%, transparent 70%);
  bottom: -20%; right: -5%;
  animation: orb-drift-2 24s ease-in-out infinite;
}
.cta-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,211,238,.12) 0%, transparent 70%);
  top: 30%; left: 60%;
  animation: orb-drift-3 18s ease-in-out infinite;
}
.cta-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content .section-kicker { color: rgba(240,239,255,.55); }
.cta-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  margin-top: .75rem;
}
.cta-sub {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-note {
  font-size: .75rem;
  color: var(--ink-dim);
  letter-spacing: .04em;
}

/* =============================================================
   18. FOOTER
   ============================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--glass-border);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-tagline {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: .75rem;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  color: var(--ink-muted);
  background: var(--glass);
  transition: color .2s, border-color .2s;
}
.footer-social-link svg { width: 15px; height: 15px; }
.footer-social-link:hover { color: var(--ink); border-color: var(--accent); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .9rem; color: var(--ink-dim); transition: color .2s; }
.footer-col a:hover { color: var(--ink); }

.footer-newsletter { max-width: 260px; }
.footer-newsletter p { font-size: .875rem; color: var(--ink-muted); margin-top: .4rem; margin-bottom: 1rem; line-height: 1.55; }

.footer-form { display: flex; gap: .5rem; }
.footer-input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: .5rem .85rem;
  font-size: .875rem;
  color: var(--ink);
  font-family: var(--sans);
  min-width: 0;
  transition: border-color .2s;
}
.footer-input::placeholder { color: var(--ink-dim); }
.footer-input:focus { outline: none; border-color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
}
.footer-bottom p { font-size: .8rem; color: var(--ink-dim); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8rem; color: var(--ink-dim); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--ink); }

/* =============================================================
   19. RESPONSIVE
   ============================================================= */
@media (max-width: 1279px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .float-card--tl { left: calc(50% + 10px); top: 18%; }
}

@media (max-width: 959px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-nav { display: none; }

  /* Hero */
  .float-card { display: none; }
  .hero-content { max-width: 100%; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item { border-right: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: 0; }
  .stat-item:nth-child(4) { border-right: 0; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* AI section */
  .ai-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ai-visual { order: -1; }

  /* Case studies */
  .cs-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-newsletter { max-width: 100%; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 719px) {
  :root { --section-y: 70px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* Testimonial */
  .testi-card { padding: 2rem 1.5rem; }
  .testi-card blockquote p { font-size: .9375rem; }

  /* Footer */
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Eco SVG */
  .eco-visual { max-width: 100%; }
}

@media (max-width: 539px) {
  .hero-title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-form { flex-direction: column; }
}

/* =============================================================
   20. REDUCED-MOTION (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-orb--1, .hero-orb--2, .hero-orb--3 { animation: none; }
  .cta-orb--1, .cta-orb--2, .cta-orb--3 { animation: none; }
  .float-card { animation: none; }
  /* Do NOT disable: tilt, hover, fade, gradient text, buttons, counters, reveals */
}
