:root {
  --bg: #05070d;
  --bg-2: #0b1020;
  --surface: rgba(20, 28, 48, 0.55);
  --surface-2: rgba(28, 40, 68, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f6fc;
  --muted: #97a3bd;
  --accent: #22d3ee;
  --accent-2: #60a5fa;
  --accent-3: #a78bfa;
  --success: #34d399;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --shadow-soft: 0 10px 40px -10px rgba(34, 211, 238, 0.25);
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(800px 600px at 80% 10%, rgba(96, 165, 250, 0.18), transparent 60%),
    radial-gradient(700px 500px at 10% 30%, rgba(34, 211, 238, 0.14), transparent 60%),
    radial-gradient(900px 700px at 50% 90%, rgba(167, 139, 250, 0.12), transparent 60%);
  z-index: -2;
  animation: drift 24s ease-in-out infinite alternate;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

::selection { background: rgba(34, 211, 238, 0.35); color: #fff; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(5, 7, 13, 0.6);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(5, 7, 13, 0.85);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: transform 0.4s var(--ease-spring);
}
.brand:hover { transform: scale(1.03); }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001018;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.6);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
}
.brand:hover .brand-mark::after { transform: translateX(100%); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  transition: background 0.2s var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,0.05); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(0) scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001018;
  box-shadow: 0 10px 30px -8px rgba(34, 211, 238, 0.55);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 18px 40px -10px rgba(96, 165, 250, 0.7); }

.btn-outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(34, 211, 238, 0.06); }

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 9px 20px;
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 560px;
  letter-spacing: -0.005em;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  list-style: none;
  display: flex;
  gap: 40px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 16px;
}
.hero-stats li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
}
.hero-stats strong {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { color: var(--muted); font-size: 0.85rem; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 440px;
  perspective: 1200px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
  transition: translate 0.4s var(--ease);
}
.orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  top: 20px; right: 20px;
}
.orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--accent-3), transparent 70%);
  bottom: 0; left: 10px;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(20px, -20px) scale(1.05); }
}

.card-glass {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-12deg);
  width: 300px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(28, 40, 68, 0.6), rgba(11, 16, 32, 0.7));
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.6s var(--ease);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translate(-50%, -50%) rotateX(8deg) rotateY(-12deg) translateY(0); }
  50%      { transform: translate(-50%, -50%) rotateX(8deg) rotateY(-12deg) translateY(-12px); }
}

.signal { display: flex; align-items: flex-end; gap: 5px; height: 36px; margin-bottom: 22px; }
.signal span {
  width: 9px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
}
.signal span:nth-child(1) { height: 30%; animation-delay: 0s; }
.signal span:nth-child(2) { height: 55%; animation-delay: 0.15s; }
.signal span:nth-child(3) { height: 80%; animation-delay: 0.3s; }
.signal span:nth-child(4) { height: 100%; animation-delay: 0.45s; }
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

.card-line {
  height: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent);
  border-radius: 4px;
  margin-bottom: 12px;
}
.card-line.short { width: 60%; }

.badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(52, 211, 153, 0.3);
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Sections */
.section { padding: 110px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(11, 16, 32, 0.6), transparent);
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.08rem;
}

/* Reveal-on-scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.cards { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(34, 211, 238, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card:hover::before { opacity: 1; }

.card .icon {
  font-size: 1.7rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.2);
  margin-bottom: 18px;
  transition: transform 0.5s var(--ease-spring);
}
.card:hover .icon { transform: scale(1.1) rotate(-4deg); }
.card h3 { margin: 0 0 8px; font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Brands */
.brands { grid-template-columns: 1fr 1fr; gap: 28px; }
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.brand-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  transition: transform 0.8s var(--ease);
}
.brand-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.brand-card:hover::before { transform: scale(1.2) translate(-10%, 10%); }
.brand-card h3 {
  margin: 0 0 22px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.brand-card ul { list-style: none; padding: 0; margin: 0 0 26px; position: relative; }
.brand-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: padding 0.3s var(--ease), color 0.3s var(--ease);
}
.brand-card li:hover { padding-left: 8px; color: var(--accent); }
.brand-card li:last-child { border-bottom: 0; }
.tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.steps li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.steps li:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001018;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -6px rgba(34, 211, 238, 0.5);
}
.steps h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; }
.steps p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq details[open] {
  border-color: rgba(34, 211, 238, 0.35);
  background: var(--surface-2);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.4s var(--ease-spring);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq p {
  margin: 14px 0 0;
  color: var(--muted);
  animation: fadeIn 0.5s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.contact-info a { color: var(--accent); transition: color 0.3s var(--ease); }
.contact-info a:hover { color: var(--accent-2); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 18px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  background: rgba(5, 7, 13, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(5, 7, 13, 0.8);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}
.form-note {
  color: var(--success);
  margin: 0;
  font-size: 0.9rem;
  animation: fadeIn 0.5s var(--ease);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  margin-top: 40px;
  background: rgba(5, 7, 13, 0.6);
  backdrop-filter: blur(20px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-grid h4 { margin: 0 0 14px; font-size: 0.95rem; font-weight: 700; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--muted); font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer-grid a:hover { color: var(--accent); }
.muted { color: var(--muted); margin: 14px 0 0; font-size: 0.9rem; }
.footer-bottom {
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 72px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 320px; }
  .cards, .brands, .steps, .footer-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(5, 7, 13, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
    display: flex;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}
