:root {
  --background: #ffffff;
  --surface-soft: #f7fafb;
  --brand-blue: #134266;
  --brand-blue-dark: #0b2c45;
  --brand-teal: #2ea4a3;
  --brand-teal-dark: #238887;
  --brand-teal-faint: #edfafa;
  --teal: var(--brand-teal);
  --teal-dark: var(--brand-teal-dark);
  --teal-faint: var(--brand-teal-faint);
  --slate-950: #071f33;
  --slate-900: var(--brand-blue);
  --slate-700: #274f6c;
  --slate-600: #4f6578;
  --slate-500: #718393;
  --slate-300: #c8d5df;
  --slate-200: #dde7ee;
  --slate-100: #eef4f7;
  --white: #ffffff;
  --error: #b91c1c;
  --shadow-soft: 0 18px 45px rgba(19, 66, 102, 0.08);
  --page-gradient: linear-gradient(180deg, rgba(237, 250, 250, 0.9), var(--white));
  --container: min(1080px, calc(100vw - 64px));
  --topbar-height: 65px;
  --footer-height: 84px;
  --page-shell-height: calc(100svh - var(--topbar-height) - var(--footer-height));
  --page-content-top: 78px;
  --page-content-bottom: 58px;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--slate-900);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Grow the main content so the footer is always pinned to the bottom of the
   viewport, regardless of how tall a given page's content is. */
#main-content {
  flex: 1 0 auto;
}

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

[hidden] {
  display: none !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(46, 164, 163, 0.34);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -64px;
  left: 16px;
  z-index: 1000;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--slate-900);
  color: var(--white);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.variant-badge {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(15, 23, 42, 0.76);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(19, 66, 102, 0.18);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(19, 66, 102, 0.14);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.topbar.is-scrolled {
  box-shadow: 0 10px 28px rgba(19, 66, 102, 0.06);
}

.topbar-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 138px;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(132px, 13vw, 168px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate-600);
  font-size: 0.98rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--slate-900);
}

.nav a.is-active {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--slate-700);
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-700);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--slate-500);
  color: var(--slate-900);
}

.hero,
.services-section,
.contact-section {
  display: flex;
  align-items: center;
  min-height: var(--page-shell-height);
  background: var(--page-gradient);
}

.hero {
  border-bottom: 1px solid var(--slate-100);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 64px;
  align-items: start;
  padding: 40px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.hero .eyebrow {
  font-size: clamp(1.3rem, 2.2vw, 1.875rem);
  line-height: 1;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--slate-900);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  text-wrap: balance;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3.7rem, 6.6vw, 5.625rem);
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--slate-600);
  font-size: 1.14rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 14px;
  margin-top: 26px;
}

.audit-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.audit-summary span {
  display: block;
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.audit-summary-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.audit-summary-card {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--slate-100);
  padding: 16px 18px;
  text-align: center;
}

.audit-summary-card strong {
  display: block;
  color: var(--slate-900);
  font-size: 1.3rem;
  line-height: 1.14;
}

.audit-summary-card p {
  margin: 6px 0 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.services-section,
.contact-section {
  padding: 40px 0;
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 675px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.flow-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.flow-pair-item {
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-pair-item:first-child {
  position: relative;
}

.flow-pair-item:first-child::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: var(--slate-200);
}

.flow-single {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-arrow {
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.service-card {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
  padding: 26px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 164, 163, 0.32);
  box-shadow: 0 16px 36px rgba(19, 66, 102, 0.07);
}

.service-card span,
.flow-pair-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card h3,
.flow-pair-item h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 1.22rem;
  font-weight: 800;
}

.footer p,
.footer a {
  color: var(--slate-600);
  line-height: 1.7;
  text-wrap: pretty;
}

.flow-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.flow-list li {
  position: relative;
  padding-left: 20px;
  color: var(--slate-600);
  font-size: 1.02rem;
  line-height: 1.7;
}

.flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.contact-copy h2 {
  font-size: clamp(2.25rem, 3.4vw, 3rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.accent-dot {
  color: var(--teal);
}

.contact-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.contact-points li:hover {
  border-color: var(--slate-200);
  background: var(--white);
  transform: translateX(3px);
}

.point-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--teal-faint);
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.point-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.4;
}

.point-text strong {
  color: var(--slate-900);
  font-size: 1rem;
  font-weight: 800;
}

.contact-promise {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 600;
}

.promise-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(46, 164, 163, 0.5);
  animation: promise-pulse 2.4s ease-out infinite;
}

@keyframes promise-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 164, 163, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(46, 164, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 164, 163, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .promise-dot {
    animation: none;
  }
}

.contact-form {
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.hubspot-form-shell {
  align-content: start;
  --hsf-global__font-family: "Inter", sans-serif;
  --hsf-global__font-size: 16px;
  --hsf-global__color: var(--slate-900);
  --hsf-global-error__color: var(--error);
  --hsf-heading__font-family: "Inter", sans-serif;
  --hsf-heading__color: var(--slate-900);
  --hsf-richtext__font-family: "Inter", sans-serif;
  --hsf-richtext__font-size: 1rem;
  --hsf-richtext__color: var(--slate-600);
  --hsf-background__background-color: transparent;
  --hsf-background__border-color: transparent;
  --hsf-background__border-width: 0;
  --hsf-background__border-radius: 0;
  --hsf-background__padding: 0;
  --hsf-row__horizontal-spacing: 20px;
  --hsf-row__vertical-spacing: 12px;
  --hsf-module__vertical-spacing: 12px;
  --hsf-field-label__font-family: "Inter", sans-serif;
  --hsf-field-label__font-size: 0.95rem;
  --hsf-field-label__color: var(--slate-700);
  --hsf-field-label-requiredindicator__color: var(--teal);
  --hsf-field-input__font-family: "Inter", sans-serif;
  --hsf-field-input__color: var(--slate-900);
  --hsf-field-input__background-color: var(--white);
  --hsf-field-input__placeholder-color: var(--slate-500);
  --hsf-field-input__border-color: var(--slate-200);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: 12px;
  --hsf-field-input__padding: 12px 14px;
  --hsf-field-textarea__font-family: "Inter", sans-serif;
  --hsf-field-textarea__color: var(--slate-900);
  --hsf-field-textarea__background-color: var(--white);
  --hsf-field-textarea__placeholder-color: var(--slate-500);
  --hsf-field-textarea__border-color: var(--slate-200);
  --hsf-field-textarea__border-width: 1px;
  --hsf-field-textarea__border-style: solid;
  --hsf-field-textarea__border-radius: 12px;
  --hsf-field-textarea__padding: 12px 14px;
  --hsf-button__font-family: "Inter", sans-serif;
  --hsf-button__font-size: 1rem;
  --hsf-button__color: var(--white);
  --hsf-button__background-color: var(--teal);
  --hsf-button__background-image: none;
  --hsf-button__border-radius: 999px;
  --hsf-button__padding: 12px 22px;
  --hsf-button__box-shadow: none;
}

.hubspot-contact-form {
  min-height: 480px;
  width: 100%;
  overflow: visible;
}

.hubspot-contact-form:empty {
  min-height: 0;
}

.hubspot-contact-form iframe {
  display: block;
  max-width: 100%;
  width: 100% !important;
  min-height: 0;
  border: 0;
}

.contact-form.is-fallback .hubspot-contact-form {
  display: none;
  min-height: 0;
}

.contact-form.is-embedded {
  padding-top: 12px;
}

.contact-form.is-embedded .hubspot-contact-form {
  min-height: 0;
}

.form-fallback {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(240, 253, 250, 0.64), var(--surface-soft));
  padding: 22px;
}

.form-fallback[hidden] {
  display: none;
}

.contact-form.is-fallback .form-fallback {
  display: block;
}

.fallback-kicker {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fallback-contact-form {
  display: grid;
  gap: 16px;
}

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

.fallback-contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 800;
}

.fallback-contact-form input,
.fallback-contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--slate-900);
  font: inherit;
  font-weight: 500;
  line-height: 1.35;
  padding: 12px 14px;
  box-shadow: none;
}

.fallback-contact-form textarea {
  resize: vertical;
}

.fallback-contact-form input:focus,
.fallback-contact-form textarea:focus {
  outline: none;
  border-color: rgba(46, 164, 163, 0.58);
  box-shadow: 0 0 0 3px rgba(46, 164, 163, 0.16);
}

.fallback-message {
  grid-column: 1 / -1;
}

.fallback-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.fallback-actions .button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.fallback-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--slate-600);
  font-size: 0.96rem;
  font-weight: 800;
}

.fallback-status.is-success {
  color: var(--teal-dark);
}

.fallback-status.is-error {
  color: var(--error);
}

.hubspot-contact-form,
.hubspot-contact-form * {
  font-family: "Inter", sans-serif;
}

.hubspot-contact-form .hs-richtext,
.hubspot-contact-form .hs-richtext p,
.hubspot-contact-form .hs-richtext span,
.hubspot-contact-form label,
.hubspot-contact-form legend,
.hubspot-contact-form .hs-form-field > label,
.hubspot-contact-form .hs-fieldtype-intl-phone label,
.hubspot-contact-form .input,
.hubspot-contact-form .hs-field-desc {
  color: var(--slate-700) !important;
}

.hubspot-contact-form .hs-form-required {
  color: var(--teal) !important;
}

.hubspot-contact-form input,
.hubspot-contact-form select,
.hubspot-contact-form textarea {
  width: 100% !important;
  border: 1px solid var(--slate-200) !important;
  border-radius: 12px !important;
  background: var(--white) !important;
  color: var(--slate-900) !important;
  box-shadow: none !important;
}

.hubspot-contact-form .hs-form-field {
  margin-bottom: 16px !important;
}

.hubspot-contact-form .hs-form-field > label {
  display: block !important;
  margin-bottom: 7px !important;
  font-weight: 700 !important;
}

.hubspot-contact-form input:focus,
.hubspot-contact-form select:focus,
.hubspot-contact-form textarea:focus {
  outline: none !important;
  border-color: rgba(46, 164, 163, 0.58) !important;
  box-shadow: 0 0 0 3px rgba(46, 164, 163, 0.16) !important;
}

.hubspot-contact-form ul.no-list,
.hubspot-contact-form .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hubspot-contact-form .hs-error-msg,
.hubspot-contact-form .hs-main-font-element .hs-error-msg {
  color: var(--error) !important;
}

.hubspot-contact-form .submitted-message,
.hubspot-contact-form .hs-form__thankyou-message {
  color: var(--slate-900) !important;
}

.hubspot-contact-form .hs_submit .actions,
.hubspot-contact-form .actions {
  margin-top: 18px !important;
}

.hubspot-contact-form .hs-button,
.hubspot-contact-form input[type="submit"] {
  appearance: none !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--teal) !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  padding: 14px 24px !important;
  box-shadow: none !important;
}

.footer {
  border-top: 1px solid var(--slate-200);
  background: var(--surface-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-logo {
  height: 22px;
  width: auto;
  margin-right: 8px;
  vertical-align: -5px;
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.98rem;
  font-weight: 800;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--teal);
}

.reveal {
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-delay {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    padding: 62px 0 58px;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .services-section,
  .contact-section {
    padding: 62px 0 50px;
  }

  .contact-layout {
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
    gap: 20px;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero,
  .services-section,
  .contact-section {
    min-height: auto;
  }

  .hero-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 34px;
    padding: 50px 0;
  }

  .audit-summary {
    max-width: 440px;
    width: 100%;
  }

  .contact-layout {
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .flow-pair {
    grid-template-columns: 1fr;
  }

  .flow-pair-item:first-child::after {
    top: auto;
    bottom: 0;
    left: 20%;
    right: 20%;
    width: auto;
    height: 1px;
  }

  .contact-points {
    gap: 2px;
  }

  .contact-points li:hover {
    transform: none;
  }

  .fallback-field-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  :root {
    --container: min(1080px, calc(100vw - 24px));
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.35rem);
    line-height: 1.07;
  }

  .hero-layout {
    padding: 40px 0 42px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .services-section,
  .contact-section {
    min-height: auto;
    padding: 42px 0;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .audit-summary,
  .contact-form,
  .service-card {
    border-radius: 14px;
    padding: 22px;
  }

  .hubspot-contact-form {
    min-height: 620px;
  }

  .hubspot-contact-form iframe {
    min-height: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-sitemap {
    justify-content: flex-start;
  }
}

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

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

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