/* ========== SHARED STYLES — Slyder Consulting Group ========== */
/* Single source of truth: design tokens + font loading live here. Page-specific
   inline <style> blocks may override, but no other file should redefine :root. */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-deep: #0a1419;
  --bg-mid: #0f1f26;
  --bg-elev: #152a33;
  --accent: #00ff88;
  --accent-dim: #0b6316;
  --accent-glow: rgba(0, 255, 136, 0.4);
  --teal: #06b6d4;
  --steel: #5a8ba8;
  --steel-500: var(--steel);
  --text: #e8eef2;
  --text-mute: #8a9ba5;
  --text-mid: var(--text-mute);
  --text-faint: #5a6b75;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --focus-ring: rgba(0, 255, 136, 0.55);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep); color: var(--text); line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-strong);
  border-radius: 100px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 8px; font-weight: 600; font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--accent); color: #000;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 255, 136, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 255, 136, 0.40); }
.btn-ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); color: var(--text); }
.btn svg { width: 16px; height: 16px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; backdrop-filter: blur(20px);
  background: rgba(10, 20, 25, 0.85); border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.logo-mark {
  width: 32px; height: 32px; flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(90, 139, 168, 0.25));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo:hover .logo-mark {
  transform: translateY(-1px) rotate(2deg);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-mute); transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 18px !important; font-size: 14px !important; }

/* Mobile nav toggle (hamburger) + slide-in drawer */
.nav-toggle {
  display: none; position: relative; z-index: 101;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 0 auto; border-radius: 2px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh; width: min(320px, 82vw); z-index: 99;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    padding: 88px 24px 32px; overflow-y: auto;
    background: var(--bg-mid); border-left: 1px solid var(--border);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  nav.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 16px; }
  .nav-links a:not(.nav-cta) { padding: 14px 4px; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav-links .nav-cta { margin-top: 16px; text-align: center; justify-content: center; }
  .nav-overlay {
    display: block; position: fixed; top: 0; left: 0; right: 0; height: 100vh; height: 100dvh; z-index: 98;
    background: rgba(0, 0, 0, 0.55); opacity: 0; visibility: hidden; transition: opacity 0.3s;
  }
  nav.menu-open .nav-overlay { opacity: 1; visibility: visible; }
}
@media (prefers-reduced-motion: reduce) { .nav-links, .nav-overlay { transition: none; } }

/* PAGE HERO */
.page-hero {
  position: relative; padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--bg-mid), var(--bg-deep));
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(90, 139, 168, 0.10), transparent 50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-mute); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb svg { width: 12px; height: 12px; }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin: 16px 0 20px; max-width: 880px;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, var(--text), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p.lead {
  font-size: clamp(16px, 1.4vw, 19px); color: var(--text-mute);
  max-width: 720px; margin-bottom: 28px;
}
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* GENERIC CONTENT SECTIONS */
section.content { padding: 80px 0; }
section.content.alt { background: var(--bg-mid); }
section.content h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
section.content h3 {
  font-size: clamp(20px, 2vw, 24px); font-weight: 700; margin: 32px 0 12px;
}
section.content p {
  color: var(--text-mute); margin-bottom: 16px; font-size: 16px;
}
section.content ul { margin: 16px 0 24px 0; list-style: none; }
section.content ul li {
  position: relative; padding: 8px 0 8px 28px; color: var(--text); font-size: 15px;
}
section.content ul li::before {
  content: ''; position: absolute; left: 0; top: 14px; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a8ba8' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
}
section.content strong { color: var(--text); font-weight: 600; }
section.content a { color: var(--steel-500); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
section.content a:hover { border-bottom-color: var(--steel-500); }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

/* INDUSTRY GRID */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 860px) { .industry-grid { grid-template-columns: 1fr 1fr; } }
.industry-card {
  padding: 20px; border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255,255,255,0.02); transition: transform 0.2s, border-color 0.2s;
}
.industry-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.industry-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.industry-card p { font-size: 13px; color: var(--text-mute); margin: 0; }

/* CALLOUT */
.callout {
  padding: 28px 32px; border-radius: 16px; border-left: 4px solid var(--steel-500);
  background: rgba(90, 139, 168, 0.06); margin: 32px 0;
}
.callout p { color: var(--text); margin: 0; font-size: 16px; }
.callout p:not(:last-child) { margin-bottom: 12px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  width: 100%; text-align: left; font-size: 16px; font-weight: 600;
  padding: 8px 0; transition: color 0.2s;
}
.faq-q:hover { color: var(--text); }
.faq-q .plus { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--text-mid); transition: transform 0.3s;
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--text-mute); font-size: 15px; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 12px; }

/* CTA STRIP */
.cta-strip {
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-mid));
  border-top: 1px solid var(--border);
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(90, 139, 168, 0.08), transparent 60%);
}
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.cta-strip p { color: var(--text-mute); margin-bottom: 24px; }
.cta-strip-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { padding: 60px 0 30px; background: var(--bg-deep); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--text-mute); font-size: 14px; margin-top: 16px; max-width: 320px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-mute); font-size: 14px; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-faint);
}

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100px; left: 16px; background: var(--accent); color: #001a0d;
  padding: 8px 16px; border-radius: 6px; font-weight: 600; z-index: 200;
}
.skip-link:focus { top: 16px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ANIMATED CITY HERO GRAPHIC (city pages) */
.city-graphic {
  position: relative; aspect-ratio: 1.4; max-width: 480px; width: 100%;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-mid));
  border: 1px solid var(--border);
}
.city-graphic svg { width: 100%; height: 100%; }

/* PRICING SNIPPET (used on city pages) */
.tier-snippet {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0;
}
@media (max-width: 700px) { .tier-snippet { grid-template-columns: 1fr; } }
.tier-snippet-card {
  padding: 24px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--bg-elev);
}
.tier-snippet-card.featured { border-color: var(--steel-500); }
.tier-name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.tier-snippet-card.featured .tier-name { color: var(--steel-500); }
.tier-price { font-size: 36px; font-weight: 800; margin: 8px 0; }
.tier-price small { font-size: 13px; color: var(--text-mute); font-weight: 500; }
.tier-snippet-card p { font-size: 14px; color: var(--text-mute); margin: 0; }

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--steel-500), var(--teal));
  z-index: 101; width: 0%;
  box-shadow: 0 0 12px rgba(90, 139, 168, 0.4);
  transition: width 0.05s linear;
}

/* ========== AMBIENT FLOATING PARTICLES ========== */
.ambient-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.ambient-particles span {
  position: absolute; display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  opacity: 0;
  animation: float-particle 10s linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  50% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20vh) translateX(40px); opacity: 0; }
}

/* ========== SECTION MESH (subtle gradient blobs) ========== */
.section-mesh {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  opacity: 0.35; z-index: 0;
}
.section-mesh::before, .section-mesh::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); will-change: transform;
}
.section-mesh::before {
  width: 500px; height: 500px; top: -150px; left: -80px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.16), transparent 70%);
  animation: float-mesh-1 26s ease-in-out infinite alternate;
}
.section-mesh::after {
  width: 450px; height: 450px; bottom: -120px; right: -80px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.13), transparent 70%);
  animation: float-mesh-2 32s ease-in-out infinite alternate;
}
@keyframes float-mesh-1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 60px); }
}
@keyframes float-mesh-2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, -50px); }
}

/* ========== PAGE HERO ENTRY ========== */
.page-hero {
  position: relative; overflow: hidden;
}
.page-hero .breadcrumb,
.page-hero .eyebrow,
.page-hero h1,
.page-hero p.lead,
.page-hero .page-hero-ctas {
  position: relative; z-index: 2;
}

/* Ensure content stays above mesh inside any section */
section > .container { position: relative; z-index: 1; }

/* ========== SECTION CONTENT ENTRY ========== */
section.content { position: relative; overflow: hidden; }
section.content > .container { position: relative; z-index: 1; }

/* ========== INDUSTRY-CARD HOVER LIFT ========== */
.industry-card {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90, 139, 168, 0.08);
}

/* ========== FAQ CHEVRON SMOOTHER ========== */
.faq-q .plus { transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }
.faq-item.open .faq-q .plus { transform: rotate(135deg); }

/* ========== REVEAL STAGGER FOR INDUSTRY GRIDS ========== */
.industry-grid .industry-card {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.industry-grid.in .industry-card { opacity: 1; transform: translateY(0); }
.industry-grid.in .industry-card:nth-child(1) { transition-delay: 0.0s; }
.industry-grid.in .industry-card:nth-child(2) { transition-delay: 0.08s; }
.industry-grid.in .industry-card:nth-child(3) { transition-delay: 0.16s; }
.industry-grid.in .industry-card:nth-child(4) { transition-delay: 0.24s; }
.industry-grid.in .industry-card:nth-child(5) { transition-delay: 0.32s; }
.industry-grid.in .industry-card:nth-child(6) { transition-delay: 0.4s; }

/* ========== CALLOUT SLIDE-IN ========== */
.callout {
  position: relative;
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.callout.in { opacity: 1; transform: translateX(0); }

/* ========== CITY-GRAPHIC SUBTLE HOVER ========== */
.city-graphic {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.city-graphic:hover { transform: scale(1.02); }

/* ========== MAGNETIC BUTTONS ========== */
.btn-magnetic { transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1); }

/* ============================================================
   SITE-WIDE FLUID BACKGROUND (warped mesh + ambient page aurora)
   Drop the markup from partials/page-background.html into a page
   to opt in. Sections that want the mesh to bleed through should
   leave their background transparent.
   ============================================================ */
.hero-liquid { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero-liquid svg {
  position: absolute; top: 0; left: 0;
  width: 50%; height: 50%;
  transform: scale(2); transform-origin: top left;
  opacity: 0.92;
}

.page-aurora { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.page-aurora span { position: absolute; display: block; border-radius: 50%; will-change: transform; }
.page-aurora .pa1 {
  width: 62vw; height: 62vw; left: -16%; top: 4%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.16), transparent 66%);
  animation: pa-drift1 40s ease-in-out infinite alternate;
}
.page-aurora .pa2 {
  width: 56vw; height: 56vw; right: -16%; top: 42%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 66%);
  animation: pa-drift2 46s ease-in-out infinite alternate;
}
.page-aurora .pa3 {
  width: 52vw; height: 52vw; left: 22%; bottom: -14%;
  background: radial-gradient(circle, rgba(16, 200, 170, 0.12), transparent 68%);
  animation: pa-drift3 52s ease-in-out infinite alternate;
}
@keyframes pa-drift1 { from { transform: translate3d(0,0,0); } to { transform: translate3d(14%,10%,0); } }
@keyframes pa-drift2 { from { transform: translate3d(0,0,0); } to { transform: translate3d(-12%,-8%,0); } }
@keyframes pa-drift3 { from { transform: translate3d(0,0,0); } to { transform: translate3d(10%,-12%,0); } }
@media (prefers-reduced-motion: reduce) { .page-aurora span { animation: none; } }

/* ============================================================
   MOBILE PERFORMANCE: disable expensive effects on touch devices.
   iOS Safari handles SVG turbulence/displacement filters,
   backdrop-blur, and stacked filtered layers poorly. Swap to
   static equivalents so scroll stays smooth.
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  /* Hide the warped-mesh SVG — its turbulence + displacement filter is the
     single biggest scroll-perf hit on iOS. */
  .hero-liquid { display: none !important; }

  /* Replace it with a static body-level gradient that captures the same
     green/teal/aqua color story without a continuous filter recompute. */
  body {
    background:
      radial-gradient(ellipse 80vw 80vw at 15% 10%, rgba(0, 255, 136, 0.10), transparent 60%),
      radial-gradient(ellipse 70vw 70vw at 85% 30%, rgba(6, 182, 212, 0.09), transparent 60%),
      radial-gradient(ellipse 70vw 70vw at 50% 80%, rgba(16, 200, 170, 0.07), transparent 60%),
      var(--bg-deep) !important;
  }

  /* page-aurora: drop two of three drifting layers + stop animating the third.
     Fixed + animated radial-gradients also trigger scroll repaints on iOS. */
  .page-aurora .pa2, .page-aurora .pa3 { display: none !important; }
  .page-aurora .pa1 { animation: none !important; opacity: 0.6 !important; }

  /* backdrop-filter is poorly accelerated on iOS — substitute solid
     translucent dark for every frosted-glass element. */
  .faq-list,
  .service-card,
  .pricing-card,
  .matrix-table {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .faq-list      { background: rgba(7, 14, 19, 0.85)  !important; }
  .service-card  { background: rgba(21, 42, 51, 0.85) !important; }
  .pricing-card  { background: rgba(21, 42, 51, 0.85) !important; }
  .matrix-table  { background: rgba(15, 31, 38, 0.85) !important; }

  /* Service-card 3D plane: collapse to flat so leftover Z translations
     don't promote extra compositing layers. */
  .service-card,
  .service-card .service-icon,
  .service-card h3,
  .service-card p {
    transform: none !important;
    transform-style: flat !important;
  }

  /* Cheap-individually but compound-expensive — disable on touch. */
  .stat-spark .dot { animation: none !important; }
  .pillar-block.in .pillar-num { animation: none !important; }
  .flow-connector { display: none !important; }
}
