:root {
  --ink: #0a1e32;
  --navy: #06111d;
  --red: #b80f1c;
  --red-dark: #95101a;
  --muted: #526374;
  --line: #dce5ed;
  --soft: #f3f6f9;
  --paper: #fff;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --shadow-soft: 0 14px 38px rgba(10, 30, 50, .08);
  --shadow-strong: 0 28px 80px rgba(10, 30, 50, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 15, 28, .06), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbfd 48%, #fff 100%);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  translate: 0 -160%;
  border-radius: 12px;
  background: var(--paper);
  padding: 12px 16px;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

:focus-visible {
  outline: 3px solid rgba(184, 15, 28, .52);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 229, 237, .92);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 34px rgba(10, 30, 50, .055);
  backdrop-filter: blur(16px);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(184, 15, 28, .12), transparent 72%);
  content: "";
}

.nav-shell {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding-block: 10px;
}

.brand-logo {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  height: 68px;
  filter: drop-shadow(0 8px 14px rgba(10, 30, 50, .08));
}

.main-menu,
.nav-actions {
  display: flex;
  align-items: center;
}

.main-menu {
  min-width: 0;
  justify-content: center;
  gap: 4px;
  color: #142d44;
  font-size: 15px;
  font-weight: 800;
}

.main-menu > a,
.menu-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 11px 12px;
  color: inherit;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.main-menu > a[aria-current="page"],
.main-menu > a:hover,
.menu-trigger:hover,
.menu-trigger[aria-expanded="true"] {
  background: rgba(184, 15, 28, .07);
  color: var(--red);
}

.menu-group {
  position: relative;
}

.menu-trigger::after {
  margin-left: 7px;
  color: var(--red);
  content: "▾";
  font-size: 11px;
}

.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  min-width: 236px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(220, 229, 237, .96);
  border-radius: 20px;
  background: var(--paper);
  padding: 10px;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.submenu.is-open,
.menu-group:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.submenu a {
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 14px;
}

.submenu a:hover {
  background: var(--soft);
  color: var(--red);
}

.nav-actions {
  gap: 10px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(193, 18, 31, .22);
  font-weight: 900;
  transition: box-shadow .22s ease, transform .22s ease;
}

.nav-cta {
  min-height: 52px;
  min-width: 108px;
  border-radius: 15px;
  padding: 12px 18px;
  white-space: nowrap;
}

.nav-cta.secondary {
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(10, 30, 50, .18);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(10, 30, 50, .18);
}

.nav-toggle,
.main-menu > a.menu-mobile-cta {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 56px 78px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 30, 50, .18), transparent);
  content: "";
}

.hero-grid,
.split {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.hero-copy,
.section-copy,
.solution-list,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  border: 1px solid rgba(184, 15, 28, .14);
  border-radius: 999px;
  background: rgba(184, 15, 28, .07);
  padding: 8px 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(184, 15, 28, .1);
  content: "";
}

h1,
h2,
h3,
p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1,
h2 {
  color: #081a2c;
  letter-spacing: -.045em;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.75vw, 52px);
  line-height: 1.04;
}

.lead {
  max-width: 690px;
  margin: 0;
  color: #4a5d70;
  font-size: clamp(18px, 1.75vw, 21px);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-height: 54px;
  border-radius: 999px;
  padding: 14px 23px;
}

.btn.secondary {
  border-color: rgba(10, 30, 50, .12);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(10, 30, 50, .08);
}

.hero-visual {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 34px;
  background: linear-gradient(145deg, #fff, #f4f7fa);
  box-shadow: 0 34px 86px rgba(10, 30, 50, .16);
  padding: clamp(14px, 2vw, 22px);
}

.hero-visual img {
  width: 100%;
  border-radius: 22px;
}

.section {
  padding-block: clamp(64px, 7vw, 88px);
}

.section-soft {
  border-block: 1px solid rgba(10, 30, 50, .06);
  background: linear-gradient(180deg, #f5f8fb 0%, #eef3f7 100%);
}

.desc {
  max-width: 640px;
  margin: 16px 0 0;
  color: #566879;
  font-size: 17px;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list article,
.process-list li {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(220, 229, 237, .96);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.solution-list article {
  padding: 20px 22px 20px 26px;
}

.solution-list article::before,
.process-list li::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 99px;
  background: var(--red);
  content: "";
}

.solution-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.solution-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 10%, rgba(184, 15, 28, .22), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--ink) 70%, #10283f 100%);
}

.section-dark h2 {
  color: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: #c4d5e4;
  font-size: 17px;
}

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

.outcome {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(10, 30, 50, .1);
}

.outcome strong {
  display: block;
  color: var(--red);
  font-size: clamp(28px, 2.8vw, 42px);
  letter-spacing: -.035em;
  line-height: 1;
}

.outcome p {
  margin: 12px 0 0;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 22px 18px 26px;
  font-weight: 800;
}

.process-list li::after {
  order: -1;
  min-width: 42px;
  border-radius: 999px;
  background: rgba(184, 15, 28, .08);
  padding: 8px 10px;
  color: var(--red);
  content: "0" counter(process);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.contact-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(184, 15, 28, .25);
  padding: 14px 18px;
  font-weight: 900;
}

.site-footer {
  background: linear-gradient(180deg, #081520 0%, #0b1f33 100%);
  color: var(--paper);
  padding-bottom: 24px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0b1f33 0%, #102a43 62%, #c1121f 160%);
  padding: clamp(26px, 3vw, 34px);
  box-shadow: 0 28px 80px rgba(8, 21, 32, .28);
}

.footer-kicker {
  margin: 0 0 10px;
  color: #ffcfd3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-cta h2 {
  color: var(--paper);
  font-size: clamp(28px, 3.35vw, 46px);
}

.footer-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #d9e4ee;
}

.footer-actions {
  display: grid;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, .8fr));
  gap: 34px;
  padding-block: 54px 34px;
}

.footer-logo {
  width: fit-content;
  display: inline-flex;
  border-radius: 18px;
  background: var(--paper);
  padding: 10px 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.footer-logo img {
  width: auto;
  height: 58px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #c3d2df;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: #b8c7d4;
}

.footer-col a:hover,
.footer-inline-cta {
  color: var(--paper);
}

.footer-inline-cta {
  margin-top: 16px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 18px;
  color: #8fa3b5;
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 15, 28, .34), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--ink) 72%, #10283f 100%);
  padding-block: clamp(62px, 8vw, 92px);
}

.page-hero::after {
  position: absolute;
  right: 8%;
  bottom: -90px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 980px;
  color: var(--paper);
  font-size: clamp(38px, 5.4vw, 70px);
}

.page-hero .lead {
  color: #d5e1ea;
}

.breadcrumb {
  margin: 0 0 10px;
  color: #bfd3e2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.grid-3,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card,
.info-panel,
.form-panel {
  min-width: 0;
  border: 1px solid rgba(220, 229, 237, .96);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.card {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef3f7;
}

.card-body,
.info-panel,
.form-panel {
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
}

.tag,
.pill {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(184, 15, 28, .08);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tag {
  padding: 7px 10px;
}

.pill {
  margin: 4px 6px 4px 0;
  padding: 9px 13px;
}

.card h2,
.card h3,
.info-panel h2,
.form-panel h2,
.form-panel h3 {
  margin: 12px 0;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.12;
}

.card p,
.info-panel p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
}

.media-panel {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #f4f7fa);
  box-shadow: var(--shadow-strong);
  padding: clamp(14px, 2vw, 22px);
}

.media-panel img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  border: 1px solid rgba(220, 229, 237, .96);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 18px 26px;
  font-weight: 800;
}

.feature-list li::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 99px;
  background: var(--red);
  content: "";
}

.article {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
}

.article p,
.article li {
  color: #435567;
  font-size: 18px;
}

.article h2 {
  margin-top: 36px;
  font-size: clamp(28px, 3vw, 40px);
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #16324a;
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cddbe6;
  border-radius: 16px;
  background: #fbfcfe;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(184, 15, 28, .44);
  box-shadow: 0 0 0 4px rgba(184, 15, 28, .1);
  outline: 0;
}

.field-help,
.privacy-note {
  color: var(--muted);
  font-size: 13px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.status-box {
  border: 1px solid rgba(184, 15, 28, .18);
  border-radius: 20px;
  background: rgba(184, 15, 28, .07);
  padding: 18px;
}

.legal-list {
  padding-left: 20px;
}

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

.compact-hero {
  padding-block: 42px 58px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    order: 3;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 50px rgba(11, 31, 51, .12);
    padding: 14px max(24px, calc((100vw - 1200px) / 2));
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu > a,
  .menu-trigger {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
    padding-inline: 14px;
  }

  .menu-group {
    display: grid;
  }

  .submenu {
    position: static;
    min-width: 0;
    display: none;
    margin: 0 0 4px 14px;
    border: 0;
    border-left: 3px solid var(--red);
    border-radius: 0;
    box-shadow: none;
    padding: 2px 0 2px 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu.is-open,
  .menu-group:focus-within .submenu {
    display: grid;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-cta {
    min-width: 92px;
    min-height: 48px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .section-head,
  .footer-cta {
    grid-template-columns: 1fr;
  }

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

  .footer-actions {
    display: flex;
    flex-wrap: wrap;
  }

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

  .grid-3,
  .card-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: auto;
  }

  .nav-shell {
    position: relative;
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .brand-logo img {
    height: 50px;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 2;
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
    transform: translateY(-50%);
  }

  .main-menu > a.menu-mobile-cta {
    display: inline-flex;
    border-radius: 14px;
    background: rgba(184, 15, 28, .09);
    color: var(--red);
  }

  .main-menu > a.menu-mobile-cta.secondary {
    background: rgba(10, 30, 50, .08);
    color: var(--ink);
  }

  .hero {
    padding-block: 34px 56px;
  }

  .hero-grid,
  .split,
  .section-head,
  .hero-copy,
  .section-copy,
  .hero-visual,
  .solution-list,
  .footer-cta,
  .footer-grid {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(36px, 10.8vw, 52px);
    letter-spacing: -.035em;
  }

  h2 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -.035em;
  }

  .page-hero h1 {
    font-size: clamp(32px, 9.3vw, 44px);
    line-height: 1.06;
  }

  .page-hero .lead {
    font-size: 17px;
  }

  .eyebrow {
    white-space: normal;
    letter-spacing: .075em;
  }

  .actions,
  .footer-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .outcome-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .outcome,
  .solution-list article,
  .process-list li {
    padding-right: 18px;
  }

  .contact-float {
    right: 16px;
    bottom: 16px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
