/* ============================================================
   GLOBAL AFFINITY — bold marketing landing page
   ============================================================ */

:root {
  --bg:        #0a0a14;
  --bg-2:      #11111f;
  --bg-alt:    #f6f7fb;
  --surface:   #ffffff;
  --ink:       #15151f;
  --ink-soft:  #4a4a5e;
  --ink-light: #6b6b80;
  --line:      #e7e7ef;

  --brand:     #6c4cff;   /* electric violet */
  --brand-2:   #ff4d8d;   /* hot pink        */
  --brand-3:   #00e0c6;   /* aqua            */
  --grad:      linear-gradient(100deg, #6c4cff 0%, #ff4d8d 55%, #ff7a45 100%);
  --grad-soft: linear-gradient(100deg, #6c4cff, #ff4d8d);

  --radius:   18px;
  --radius-sm: 12px;
  --shadow:   0 20px 50px -20px rgba(108, 76, 255, .35);
  --shadow-soft: 0 10px 30px -12px rgba(20, 20, 40, .18);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

/* Anchored sections shouldn't hide under the sticky header */
[id] { scroll-margin-top: 80px; }

/* Long words / pasted URLs never blow out the layout */
p, h1, h2, h3, summary, blockquote, figcaption, .brand-name { overflow-wrap: break-word; }

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--brand-3);
  outline-offset: 2px;
  border-radius: 6px;
}

img, svg { max-width: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name { font-family: "Sora", sans-serif; line-height: 1.1; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-weight: 700; font-family: "Sora", sans-serif;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-primary {
  background: var(--grad);
  background-size: 160% 100%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, background-position .5s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -18px rgba(255, 77, 141, .5); background-position: 100% 50%; }
/* sheen sweep on hover */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }

/* on dark sections */
.section-dark .btn-ghost, .cta .btn-ghost, .hero .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05);
}
.section-dark .btn-ghost:hover, .cta .btn-ghost:hover, .hero .btn-ghost:hover {
  border-color: #fff; color: #fff; background: rgba(255,255,255,.12);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,20,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad); color: #fff;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem;
  box-shadow: var(--shadow);
}
.brand-name { color: #fff; font-weight: 800; font-size: 1.2rem; }
.brand-accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-weight: 500; font-size: .95rem; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: .5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 50% 0%, #1a1336 0%, var(--bg) 55%);
  color: #fff;
  padding: 96px 0 84px;
  overflow: hidden;
  text-align: center;
}
.hero-glow {
  position: absolute; inset: -20% 0 auto 0; height: 600px;
  background:
    radial-gradient(closest-side, rgba(108,76,255,.55), transparent 70%) 20% 0/600px 600px no-repeat,
    radial-gradient(closest-side, rgba(255,77,141,.45), transparent 70%) 80% 10%/520px 520px no-repeat,
    radial-gradient(closest-side, rgba(0,224,198,.30), transparent 70%) 55% 40%/480px 480px no-repeat;
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  text-align: left;
}
.hero-copy { max-width: 600px; }
.eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-3);
  padding: .4rem .9rem; margin-bottom: 1.3rem;
  border: 1px solid rgba(0,224,198,.35); border-radius: 999px;
  background: rgba(0,224,198,.07);
}
.eyebrow.light { color: var(--brand-3); }
.hero-title { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 800; margin-bottom: 1.3rem; }
.hero-title .grad {
  background-size: 200% auto;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: rgba(255,255,255,.78); max-width: 560px; margin: 0 0 2.2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-trust { display: inline-flex; align-items: center; gap: 1.6rem; padding: 1rem 1.6rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.04); }

/* ---------- Hero dashboard visual ---------- */
.hero-visual { position: relative; }
.dash {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(30,24,60,.95), rgba(16,14,32,.95));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 40px 80px -30px rgba(108,76,255,.55), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.dash-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dash-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.dash-title { margin-left: .6rem; font-family: "Sora", sans-serif; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); }
.dash-live { margin-left: auto; font-size: .68rem; font-weight: 700; letter-spacing: .08em; color: #28c840; }
.dash-body { padding: 1.2rem; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; margin-bottom: 1.1rem; }
.kpi {
  display: flex; flex-direction: column; gap: .15rem;
  padding: .8rem .7rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.kpi-label { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; }
.kpi-val { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff; }
.kpi-trend { font-size: .7rem; font-weight: 700; }
.kpi-trend.up { color: #28c840; }
.dash-chart { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: .6rem; margin-bottom: 1rem; }
.chart-svg { width: 100%; height: 120px; display: block; }
.chart-line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 2.2s ease forwards .3s; }
.chart-area { opacity: 0; animation: fadein 1.5s ease forwards 1.4s; }
.chart-end { opacity: 0; animation: fadein .5s ease forwards 2.3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }
.dash-bars { display: flex; align-items: flex-end; gap: .5rem; height: 56px; }
.dbar {
  flex: 1; height: var(--h);
  background: var(--grad);
  border-radius: 5px 5px 0 0;
  opacity: .85;
  transform-origin: bottom;
  animation: growbar .9s ease backwards;
}
.dbar:nth-child(1){animation-delay:.1s}.dbar:nth-child(2){animation-delay:.18s}
.dbar:nth-child(3){animation-delay:.26s}.dbar:nth-child(4){animation-delay:.34s}
.dbar:nth-child(5){animation-delay:.42s}.dbar:nth-child(6){animation-delay:.5s}
.dbar:nth-child(7){animation-delay:.58s}
@keyframes growbar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.float-chip {
  position: absolute;
  padding: .55rem .9rem;
  background: rgba(20,18,40,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  font-size: .82rem; font-weight: 600; color: #fff;
  box-shadow: 0 16px 36px -14px rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.chip-1 { top: -16px; left: -22px; animation: floaty 5s ease-in-out infinite; }
.chip-2 { bottom: 16%; right: -22px; animation: floaty 7s ease-in-out infinite .5s; }
.trust-item { display: flex; flex-direction: column; line-height: 1.2; }
.trust-item strong { font-family: "Sora", sans-serif; font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.trust-item span { font-size: .82rem; color: rgba(255,255,255,.6); }
.trust-divider { width: 1px; height: 34px; background: rgba(255,255,255,.15); }

/* ---------- Client logos ---------- */
.logos-section { background: var(--bg); padding: 40px 0 8px; }
.logos-title {
  text-align: center;
  font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.6rem;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.2rem 2.6rem;
}
.logo-item {
  display: inline-flex; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.55);
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.15rem;
  filter: grayscale(1);
  opacity: .7;
  transition: opacity .25s ease, color .25s ease, filter .25s ease, transform .25s ease;
}
.logo-item svg { width: 30px; height: 30px; }
.logo-item:hover { opacity: 1; color: #fff; filter: grayscale(0); transform: translateY(-2px); }

/* ---------- Marquee ---------- */
.marquee-wrap { background: var(--bg-2); border-block: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.marquee { display: flex; }
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  padding: 14px 0;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: "Sora", sans-serif; font-weight: 700; letter-spacing: .12em; font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.marquee-track span { color: rgba(255,255,255,.45); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Generic section ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: radial-gradient(120% 100% at 50% 0%, #16112e 0%, var(--bg) 60%); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.section-head .on-dark { color: #fff; }
.section-lead { color: var(--ink-soft); font-size: 1.12rem; }
.section-dark .section-lead { color: rgba(255,255,255,.7); }
.section .eyebrow { color: var(--brand); border-color: rgba(108,76,255,.3); background: rgba(108,76,255,.06); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); }
.pillar:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -20px rgba(108,76,255,.3); }
.pillar-icon {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 15px; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, rgba(108,76,255,.14), rgba(255,77,141,.14));
  color: var(--brand);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.pillar p { color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.step-num {
  display: inline-grid; place-items: center;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1rem;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad); color: #fff; margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.benefit {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform .2s ease, border-color .2s ease;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--brand); }
.benefit-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(108,76,255,.12), rgba(255,77,141,.12));
  color: var(--brand);
  margin-bottom: 1rem;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.benefit p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4.5rem; }
.stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.stat-num { font-family: "Sora", sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat-label { margin-top: .6rem; color: rgba(255,255,255,.65); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.testimonial blockquote { font-size: 1.02rem; color: rgba(255,255,255,.9); margin-bottom: 1.1rem; }
.testimonial blockquote::before { content: "“"; font-family: "Sora", sans-serif; font-size: 2.4rem; color: var(--brand-2); line-height: 0; vertical-align: -0.4em; margin-right: .1em; }
.testimonial figcaption { color: rgba(255,255,255,.6); font-size: .9rem; }
.testimonial figcaption strong { color: #fff; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--brand); box-shadow: var(--shadow-soft); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 1.2rem 1.4rem;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.4rem 1.3rem; }
.faq-body p { color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: radial-gradient(120% 120% at 50% 100%, #1a1336 0%, var(--bg) 60%);
  color: #fff; text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: auto 0 -30% 0; height: 500px;
  background:
    radial-gradient(closest-side, rgba(108,76,255,.5), transparent 70%) 30% 100%/520px 520px no-repeat,
    radial-gradient(closest-side, rgba(255,77,141,.4), transparent 70%) 70% 100%/480px 480px no-repeat;
  filter: blur(20px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta p { font-size: 1.15rem; color: rgba(255,255,255,.78); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.4rem; }
.cta-fineprint { font-size: .9rem; color: rgba(255,255,255,.55); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); color: rgba(255,255,255,.7); padding-top: 56px; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; gap: .9rem; align-items: flex-start; max-width: 420px; }
.footer-tag { font-size: .92rem; color: rgba(255,255,255,.55); margin-top: .3rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-content: flex-start; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 22px 24px 30px; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-copy { max-width: 660px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .float-chip { font-size: .76rem; }
  .chip-1 { left: 0; } .chip-2 { right: 0; }
}

@media (max-width: 900px) {
  .pillars, .steps, .benefits-grid, .stats, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(10,10,20,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 1rem 24px 1.4rem;
  }
  .nav-links.open a { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .pillars, .steps, .benefits-grid, .stats, .testimonials { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  .hero-trust { flex-direction: column; gap: 1rem; width: 100%; }
  .trust-divider { width: 60%; height: 1px; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
  .float-chip { display: none; }
  .dash-kpis { gap: .5rem; }
  .kpi { padding: .6rem .5rem; }
  .kpi-val { font-size: .92rem; }
}

/* ---------- Reduced motion: respect user preference ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
