:root {
  --navy: #000322;
  --navy-2: #070b3d;
  --gold: #ffb900;
  --gold-2: #ffc933;
  --paper: #f5f3ef;
  --paper-2: #e5e1d8;
  --text: #1e1e1e;
  --muted: #666;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 20px 45px rgba(0, 3, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-small {
  width: 16px;
  height: 16px;
}

.icon-large {
  width: 34px;
  height: 34px;
}

.icon-brand {
  fill: currentColor;
  stroke: none;
}

.button .icon-brand {
  width: 22px;
  height: 22px;
}

.button-small .icon-brand {
  width: 18px;
  height: 18px;
}

.whatsapp-button-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.button-gold .whatsapp-button-icon {
  filter: brightness(0) saturate(100%) invert(7%) sepia(42%) saturate(3077%) hue-rotate(231deg) brightness(84%) contrast(118%);
}

.button-small .whatsapp-button-icon {
  width: 18px;
  height: 18px;
}

.accent {
  color: var(--gold);
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 960px);
}

.center {
  text-align: center;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 3, 34, 0.92);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  width: min(100% - 40px, 1280px);
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--gold);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #ffffff;
}

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  width: 40px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  gap: 4px;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  background: var(--gold-2);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.button-full {
  width: 100%;
}

.section {
  padding: 112px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  padding: 158px 0 112px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 20% 20%, var(--gold) 0, transparent 25%),
    radial-gradient(circle at 80% 10%, #fff 0, transparent 20%);
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background: linear-gradient(to top, var(--navy), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.reveal {
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: opacity, transform, filter;
}

.reveal-delay {
  animation-delay: 0.14s;
}

@keyframes reveal {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 28px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.animate-ready {
  --enter-x: 0;
  --enter-y: 30px;
  --enter-scale: 0.985;
  --enter-blur: 8px;
  --enter-duration: 760ms;
  --enter-delay: 0ms;
  opacity: 0;
  filter: blur(var(--enter-blur));
  transform: translate3d(var(--enter-x), var(--enter-y), 0) scale(var(--enter-scale));
  transition:
    opacity var(--enter-duration) cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--enter-duration) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--enter-duration) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--enter-delay);
  will-change: opacity, transform, filter;
}

.animate-ready.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.animate-pop {
  --enter-y: 18px;
  --enter-scale: 0.955;
}

.animate-left {
  --enter-x: -34px;
  --enter-y: 0;
}

.animate-right {
  --enter-x: 34px;
  --enter-y: 0;
}

.animate-soft {
  --enter-y: 18px;
  --enter-scale: 1;
  --enter-blur: 4px;
  --enter-duration: 640ms;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 185, 0, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  color: var(--gold);
  font-size: 14px;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.hero-text {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list .icon {
  color: var(--gold);
}

.dossier-frame {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.dossier-panel {
  border-radius: 24px;
  background: var(--navy-2);
  padding: 28px;
}

.dossier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 22px;
}

.dossier-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.dossier-header h2 {
  margin: 4px 0 0;
  color: var(--white);
  font-size: 26px;
}

.dossier-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.dossier-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.dossier-list .icon {
  color: var(--gold);
}

.dossier-objective {
  margin-top: 24px;
  border: 1px solid rgba(255, 185, 0, 0.25);
  border-radius: 18px;
  background: rgba(255, 185, 0, 0.1);
  padding: 20px;
}

.dossier-objective p {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
}

.dossier-objective strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.45;
}

.stats {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -40px;
}

.card {
  border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(0, 3, 34, 0.05);
}

.stat-card {
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}

.stat-card p {
  margin: 8px 0 0;
  color: #555;
}

.section-heading p {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.section-heading h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: inherit;
}

.section-dark .section-heading p {
  color: var(--gold);
}

.section-heading.center {
  max-width: 760px;
  margin: 0 auto;
}

.section-heading.wide {
  max-width: 760px;
}

.copy {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-dark .copy {
  color: rgba(255, 255, 255, 0.68);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.target-card {
  padding: 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
}

.target-card h3 {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.target-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.risk-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
}

.risk-panel div {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.risk-panel div:first-child {
  padding-top: 0;
}

.risk-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.risk-panel .icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold);
}

.risk-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.carousel {
  margin-top: 48px;
}

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.carousel-top p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.icon-button:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.icon-button-light {
  border-color: var(--paper-2);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 5px 18px rgba(0, 3, 34, 0.08);
}

.icon-button-light:hover {
  background: var(--navy);
  color: var(--white);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  min-height: 320px;
  padding: 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-card strong {
  color: var(--gold);
  font-size: 40px;
  font-weight: 900;
}

.step-card h3 {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 20px;
}

.step-card p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #d8d2c8;
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.dot.active {
  width: 32px;
  background: var(--gold);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
}

.cta-band .button {
  margin-top: 36px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.process-list {
  display: grid;
  gap: 20px;
}

.process-list article {
  display: flex;
  gap: 20px;
  border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 5px 18px rgba(0, 3, 34, 0.05);
}

.process-list span {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
}

.process-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.faq-list details {
  border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding: 64px 0;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.final-cta p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
}

.final-message-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
}

.final-message-card p {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.final-message-card strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.final-message-card .button {
  margin-top: 24px;
}

.footer {
  padding: 22px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: block;
  width: min(100%, 270px);
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: none;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.social-link {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(255, 185, 0, 0.16);
  opacity: 1;
  transform: none;
}

.social-link .icon {
  width: 16px;
  height: 16px;
}

.footer-copy {
  margin: 2px 0 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 1023px) {
  .hero-grid,
  .split-grid,
  .process-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dossier {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .container,
  .narrow,
  .header-inner {
    width: min(100% - 32px, 1280px);
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    display: none;
  }

  .site-header .button-small {
    display: none;
  }

  .brand-logo {
    height: 38px;
    max-width: 190px;
  }

  .mobile-menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .mobile-menu-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    display: flex;
    width: min(82vw, 330px);
    min-height: 100vh;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 28px 22px 36px;
    box-shadow: -22px 0 45px rgba(0, 0, 0, 0.32);
    transform: translateX(104%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-open .mobile-menu {
    transform: translateX(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 18px;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-menu-logo {
    display: flex;
    justify-content: center;
    margin: 52px 0 34px;
  }

  .mobile-menu-logo img {
    display: block;
    width: min(100%, 210px);
    height: auto;
    object-fit: contain;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 16px;
  }

  .mobile-menu-link {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 0;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link.is-active {
    color: var(--gold);
    transform: translateX(2px);
  }

  .mobile-menu-link-home {
    background: var(--gold);
    color: var(--navy);
  }

  .mobile-menu-link-home:hover {
    color: var(--navy);
    background: var(--gold-2);
  }

  .mobile-menu-link-whatsapp {
    margin-top: 12px;
    color: #ffffff;
  }

  .mobile-menu-link-whatsapp .whatsapp-button-icon {
    width: 19px;
    height: 19px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 16px;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 128px 0 88px;
  }

  .hero-grid {
    align-items: stretch;
    gap: 28px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-lead {
    order: 3;
  }

  .dossier {
    order: 4;
    width: 100%;
    max-width: none;
  }

  .hero-text {
    order: 5;
    margin-top: 0;
  }

  .hero-actions {
    order: 6;
    margin-top: 8px;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    order: 7;
    margin-top: 4px;
  }

  .stats,
  .target-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -28px;
  }

  .carousel-top {
    align-items: flex-start;
  }

  .process-list article {
    gap: 16px;
    padding: 20px;
  }

  .process-list span {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    max-width: 160px;
  }

  .site-header .button {
    font-size: 13px;
  }

  .dossier-panel,
  .stat-card,
  .target-card,
  .step-card,
  .final-message-card {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .animate-ready,
  .animate-ready.is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
