:root {
  --navy-950: #061528;
  --navy-900: #0b1f35;
  --navy-800: #123250;
  --blue: #1e66f5;
  --blue-dark: #164fbd;
  --teal: #16b8b8;
  --gold: #e3b341;
  --gold-soft: #f8e4a9;
  --ink: #102033;
  --muted: #5e6f82;
  --line: #e5eaf0;
  --surface: #ffffff;
  --soft: #f5f8fb;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.1);
  --shadow-soft: 0 10px 30px rgba(16, 32, 51, 0.08);
  --radius-card: 18px;
  --radius-button: 10px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

main,
section,
.container,
.hero-copy,
.section-heading,
.section-copy,
.section-intro,
.service-card,
.industry-card,
.use-case-grid article,
.audit-block,
.dashboard-visual {
  min-width: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--max-width)) / 2));
  color: #ffffff;
  background: rgba(6, 21, 40, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 9px;
  font-size: 17px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover,
.learn-link:hover {
  color: var(--teal);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--blue);
  border-radius: var(--radius-button);
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(30, 102, 245, 0.25);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--blue-dark);
}

.section {
  padding: 94px 0;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(30, 102, 245, 0.08), transparent 28%),
    var(--soft);
}

.section-dark,
.section-navy {
  color: #ffffff;
  background: var(--navy-950);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.72;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 40, 0.98) 0%, rgba(6, 21, 40, 0.9) 35%, rgba(6, 21, 40, 0.42) 72%, rgba(6, 21, 40, 0.54) 100%),
    linear-gradient(0deg, rgba(6, 21, 40, 0.95) 0%, rgba(6, 21, 40, 0) 34%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-navy h2,
.section-dark h2 {
  color: #ffffff;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark p,
.section-navy p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.hero-actions,
.final-cta-grid,
.footer-grid {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-button);
  font-weight: 800;
  text-align: center;
  white-space: normal;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(30, 102, 245, 0.28);
}

.button-secondary {
  color: var(--navy-950);
  background: #ffffff;
  border-color: #cbd6e2;
}

.button-secondary.dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.button-premium {
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 16px 32px rgba(227, 179, 65, 0.28);
}

.button-premium:hover {
  background: #f0c451;
}

.hero-panel {
  padding: 24px;
  color: #ffffff;
  background: rgba(10, 29, 49, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.panel-header strong {
  color: #ffffff;
  font-size: 30px;
}

.progress-stack {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.progress-stack span {
  position: relative;
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.progress-stack span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--width);
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
  border-radius: inherit;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.metric-value,
.metric-label {
  display: block;
}

.metric-value {
  color: #ffffff;
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
}

.metric-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.workflow-strip {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.workflow-strip span {
  display: grid;
  min-height: 38px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.workflow-strip i {
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.trust-strip {
  padding: 22px 0;
  color: var(--navy-950);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.trust-grid span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.split-section,
.about-grid,
.why-grid,
.audit-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.section-heading p,
.section-copy p,
.section-intro p {
  max-width: 680px;
}

.section-copy {
  padding-left: 24px;
  border-left: 3px solid var(--blue);
}

.text-link,
.learn-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.section-intro {
  max-width: 750px;
  margin-bottom: 34px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro.center p {
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.industry-card,
.use-case-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
}

.service-card p,
.industry-card p,
.use-case-grid p {
  font-size: 15.5px;
}

.icon-wrap {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(30, 102, 245, 0.1), rgba(22, 184, 184, 0.12));
  border: 1px solid rgba(30, 102, 245, 0.16);
  border-radius: 14px;
}

.icon-wrap.compact {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}

.industry-card {
  padding: 26px;
}

.section-navy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 25%, rgba(30, 102, 245, 0.18), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.section-navy::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 75%, transparent);
}

.section-navy .container {
  position: relative;
  z-index: 1;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.why-item span {
  color: var(--gold);
  font-weight: 850;
}

.why-item h3 {
  color: #ffffff;
}

.why-item p {
  margin-bottom: 0;
  font-size: 15.5px;
}

.audit-block {
  align-items: stretch;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(30, 102, 245, 0.08), rgba(22, 184, 184, 0.08)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.audit-panel {
  padding: 28px;
  background: var(--navy-950);
  border-radius: 18px;
}

.audit-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.audit-panel li {
  position: relative;
  padding-left: 24px;
}

.audit-panel li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.use-case-grid article {
  padding: 24px;
}

.use-case-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-visual {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.dash-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dash-top span {
  width: 10px;
  height: 10px;
  background: #c9d4e1;
  border-radius: 50%;
}

.dash-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 210px;
  padding: 18px;
  background: linear-gradient(180deg, #f9fbfd, #eef5fb);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.dash-chart i {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), var(--teal));
  border-radius: 10px 10px 4px 4px;
}

.dash-notes {
  display: grid;
  gap: 14px;
}

.dash-notes span {
  min-height: 58px;
  background:
    linear-gradient(90deg, rgba(30, 102, 245, 0.1), rgba(22, 184, 184, 0.08)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dash-flow {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.dash-flow span {
  min-height: 54px;
  background: var(--navy-950);
  border-radius: 14px;
}

.dash-flow i {
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.final-cta {
  position: relative;
  padding: 82px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(22, 184, 184, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #092845);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  max-width: 680px;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #04101f;
}

.footer-grid {
  justify-content: space-between;
}

.site-footer .brand {
  color: #ffffff;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.mobile-sticky-cta {
  display: none;
}

.contact-body .mobile-sticky-cta {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 76px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.page-hero h1 {
  margin-bottom: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-method {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.contact-form-card {
  padding: 34px;
}

.contact-form-card h2 {
  margin-bottom: 12px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cbd6e2;
  border-radius: 12px;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(30, 102, 245, 0.12);
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-method {
  padding: 24px;
}

.contact-method p {
  margin-bottom: 0;
  font-size: 15.5px;
}

.contact-method.dark-card {
  color: #ffffff;
  background: var(--navy-950);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-method.dark-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.contact-method.dark-card li {
  position: relative;
  padding-left: 22px;
}

.contact-method.dark-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.status-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(22, 184, 184, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.status-card {
  max-width: 760px;
}

.status-card .brand {
  margin-bottom: 48px;
  color: #ffffff;
}

.status-card h1 {
  font-size: clamp(40px, 6vw, 64px);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-section,
  .why-grid,
  .audit-block,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .trust-grid,
  .card-grid.three,
  .industry-layout,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-copy {
    padding-left: 0;
    border-left: 0;
  }

  .audit-block {
    padding: 24px;
  }

  .contact-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-method.dark-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 108px 0 48px;
  }

  .page-hero {
    min-height: auto;
    padding: 108px 0 62px;
  }

  .hero-bg {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 21, 40, 0.98) 0%, rgba(6, 21, 40, 0.92) 56%, rgba(6, 21, 40, 0.72) 100%),
      linear-gradient(0deg, rgba(6, 21, 40, 0.94) 0%, rgba(6, 21, 40, 0) 45%);
  }

  h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
  }

  .hero-lede,
  p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .trust-grid,
  .card-grid.three,
  .industry-layout,
  .use-case-grid,
  .form-grid,
  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-method.dark-card {
    grid-column: auto;
  }

  .trust-grid {
    gap: 12px;
  }

  .service-card,
  .industry-card,
  .use-case-grid article {
    padding: 22px;
  }

  .dash-row {
    grid-template-columns: 1fr;
  }

  .dash-chart {
    min-height: 170px;
  }

  .dash-flow {
    grid-template-columns: 1fr;
  }

  .dash-flow i {
    display: none;
  }

  .final-cta-grid,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 40;
    display: grid;
    min-height: 52px;
    place-items: center;
    color: #ffffff;
    background: var(--blue);
    border-radius: var(--radius-button);
    box-shadow: 0 14px 32px rgba(6, 21, 40, 0.28);
    font-weight: 850;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
