/* ========================================
   AI Cloud Pinnacle — Dark SaaS Theme
   ======================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #0b0f1a;
  --bg-alt: #0f1629;
  --surface: #151d2e;
  --surface-hover: #1c2640;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(99, 102, 241, 0.35);
  --ink: #f1f5f9;
  --ink-secondary: #e2e8f0;
  --muted: #94a3b8;
  --accent: #818cf8;
  --accent-dark: #a5b4fc;
  --accent-light: rgba(99, 102, 241, 0.12);
  --cyan: #22d3ee;
  --cyan-light: rgba(34, 211, 238, 0.1);
  --gradient: linear-gradient(135deg, #6366f1, #06b6d4);
  --gradient-text: linear-gradient(135deg, #818cf8, #22d3ee);
  --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.2), 0 20px 48px rgba(0, 0, 0, 0.25);
  --shadow-accent: 0 8px 24px rgba(99, 102, 241, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --space: clamp(80px, 8vw, 120px);
  --container: 1140px;
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { height: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }

/* ---------- Utilities ---------- */
.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: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 16px; top: 16px; padding: 8px 14px; background: var(--accent);
  color: #fff; border-radius: 8px; z-index: 9999;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0, 0, 0, 0.3); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-icon { flex-shrink: 0; }
.brand-text { font-weight: 600; font-size: 1.05rem; color: var(--ink); }

.menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface);
  color: var(--ink); cursor: pointer;
}
.menu-icon {
  position: relative; width: 18px; height: 2px;
  background: currentColor; display: block; transition: .3s;
}
.menu-icon::before, .menu-icon::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: currentColor; transition: .3s;
}
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-btn[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

.nav-links {
  display: flex; gap: 6px; list-style: none; padding: 0; align-items: center;
}
.nav-links a {
  color: var(--muted); font-weight: 500; font-size: .92rem;
  padding: 8px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-hover); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: none; text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: var(--shadow-accent);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4); color: #fff; }

.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--border-accent);
}
.btn-outline:hover { background: var(--accent-light); color: var(--accent-dark); }

.btn-nav {
  background: var(--gradient); color: #fff;
  padding: 8px 18px; font-size: .88rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}
.btn-nav:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(72px, 10vw, 120px) 0 var(--space);
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
}
.hero-orb--1 {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
}
.hero-orb--2 {
  width: 500px; height: 500px; bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
}
.hero-orb--3 {
  width: 300px; height: 300px; top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(40px, 5vw, 72px);
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--accent-light); color: var(--accent);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 20px;
  border: 1px solid var(--border-accent);
  animation: fadeInUp .6s ease-out both;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08; font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  animation: fadeInUp .6s .1s ease-out both;
}

.hero-lead {
  color: var(--muted); font-size: 1.1rem; max-width: 56ch;
  margin-bottom: 32px; line-height: 1.7;
  animation: fadeInUp .6s .2s ease-out both;
}
.hero-lead strong { color: var(--ink); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; animation: fadeInUp .6s .3s ease-out both; }

/* Stats */
.hero-stats {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  animation: fadeInUp .6s .4s ease-out both;
}
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
  transition: border-color .3s, box-shadow .3s;
}
.stat-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.stat-value {
  display: block; font-size: 2.2rem; font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { display: block; color: var(--muted); font-size: .88rem; margin-top: 4px; }

.stat-card--wide {
  grid-column: 1 / -1; display: flex; justify-content: space-around;
  gap: 24px; padding: 20px 28px;
}
.stat-row { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.stat-mini-label { color: var(--muted); font-size: .8rem; }
.stat-row strong { color: var(--ink); font-size: 1.05rem; }

/* ---------- Sections ---------- */
.section { padding: var(--space) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--alt::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(99, 102, 241, 0.05), transparent 60%);
  pointer-events: none;
}

.section-head { margin-bottom: clamp(40px, 5vw, 56px); }
.section-tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: var(--accent-light); color: var(--accent);
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); max-width: 56ch; font-size: 1.05rem; }

/* ---------- Product Cards ---------- */
.product-grid { display: grid; gap: 24px; }

.product-card {
  display: grid; grid-template-columns: auto 1fr; gap: 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.product-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-icon-wrap {
  width: 64px; height: 64px; border-radius: 14px;
  display: grid; place-items: center; flex-shrink: 0;
}
.product-icon--stock { background: var(--cyan-light); color: var(--cyan); }
.product-icon--grade { background: var(--accent-light); color: var(--accent); }
.product-icon--doc  { background: rgba(168, 85, 247, 0.1); color: #c084fc; }

.product-body h3 { font-size: 1.35rem; margin-bottom: 2px; color: var(--ink); }
.product-subtitle {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); font-weight: 600; margin-bottom: 12px;
}
.product-body > p { color: var(--muted); margin-bottom: 16px; }
.product-body ul {
  list-style: none; padding: 0; display: grid; gap: 8px;
  color: var(--muted); font-size: .93rem;
}
.product-body li::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); margin-right: 10px;
  vertical-align: middle;
}

.product-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
}
.deploy-badge {
  padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  background: var(--cyan-light); color: var(--cyan);
}
.product-cta {
  font-weight: 600; font-size: .85rem; color: #fff;
  background: var(--gradient); padding: 8px 18px; border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}
.product-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4); }

/* ---------- Service Cards ---------- */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.service-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-number {
  font-family: "Sora", sans-serif; font-size: 2.5rem; font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 16px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); }
.service-card > p { color: var(--muted); margin-bottom: 16px; }
.service-card ul {
  list-style: none; padding: 0; display: grid; gap: 6px;
  color: var(--muted); font-size: .92rem;
}
.service-card li::before {
  content: ""; display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent); margin-right: 10px;
  vertical-align: middle;
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.why-card:hover { border-color: var(--border-accent); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 16px;
}
.why-card h4 { margin-bottom: 8px; font-size: 1.05rem; color: var(--ink); }
.why-card p { color: var(--muted); font-size: .93rem; }

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; position: relative;
}
.step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .3s, box-shadow .3s;
}
.step:hover { border-color: var(--border-accent); box-shadow: var(--shadow-lg); }
.step-num {
  font-family: "Sora", sans-serif; font-size: 1.6rem; font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 14px;
}
.step h4 { margin-bottom: 8px; color: var(--ink); }
.step p { color: var(--muted); font-size: .92rem; }

/* ---------- Stories ---------- */
.story-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.story-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.story-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-industry {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--cyan); font-weight: 700; margin-bottom: 10px;
}
.story-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.story-card > p { color: var(--muted); flex: 1; }
.story-result {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border);
  font-weight: 700; color: var(--accent); font-size: .95rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 32px; align-items: start;
}
.contact-info {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info h3 { margin-bottom: 10px; color: var(--ink); }
.contact-info > p { color: var(--muted); margin-bottom: 20px; }

.contact-list {
  list-style: none; padding: 0; display: grid; gap: 14px; margin-bottom: 24px;
}
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted); font-size: .93rem;
}
.contact-list svg { color: var(--accent); flex-shrink: 0; }
.contact-list a { color: var(--accent); }

.contact-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-badges span {
  padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  background: var(--accent-light); color: var(--accent);
}

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; }
.contact-form label > span { font-size: .88rem; font-weight: 500; color: var(--muted); }

input, select, textarea {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg);
  color: var(--ink); font-size: .95rem; font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
textarea { resize: vertical; min-height: 100px; }

.form-full { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-full > span { font-size: .88rem; font-weight: 500; color: var(--muted); }

.form-actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 4px;
}
.form-status { color: var(--muted); font-size: .9rem; min-height: 1.4em; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: #060911;
  color: #e2e8f0;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-row strong { font-size: 1rem; }
.footer-brand p { color: #64748b; font-size: .9rem; margin-bottom: 10px; }
.footer-brand a { color: var(--accent); }

.footer-col h4 { font-size: .9rem; color: #64748b; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #94a3b8; font-size: .93rem; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b; font-size: .85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05); color: #94a3b8;
  transition: background .2s, color .2s, transform .2s;
}
.footer-social a:hover { background: rgba(99, 102, 241, 0.2); color: #fff; transform: translateY(-2px); }

/* ---------- FABs ---------- */
.fab {
  position: fixed; z-index: 90; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, opacity .3s, box-shadow .3s;
  text-decoration: none; border: none; cursor: pointer;
}
.fab--wa {
  bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}
.fab--wa:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35); color: #fff; }

.fab--top {
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
}
.fab--top.show { opacity: 1; pointer-events: auto; }
.fab--top:hover { background: var(--surface-hover); border-color: var(--border-accent); }

/* ---------- Tech Strip ---------- */
.tech-strip {
  padding: 40px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.tech-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px;
}
.tech-strip-label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted); font-weight: 600; white-space: nowrap;
}
.tech-logos {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  justify-content: center;
}
.tech-logos span {
  font-size: .95rem; font-weight: 600; color: #475569;
  transition: color .2s;
  white-space: nowrap;
}
.tech-logos span:hover { color: var(--ink); }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- Misc ---------- */
.noscript { background: #422006; color: #fbbf24; padding: 8px 12px; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-card--wide { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed; inset: auto 16px 16px 16px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 20px; flex-direction: column; padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px); opacity: 0; visibility: hidden;
    transition: .3s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { width: 100%; text-align: center; padding: 12px; color: var(--ink); }
  .nav-links .btn-nav { width: 100%; }

  .product-card { grid-template-columns: 1fr; }
  .product-icon-wrap { width: 56px; height: 56px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding-top: 100px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card--wide { flex-direction: column; gap: 12px; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0s !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

[data-count] { will-change: contents; }
