:root {
  --navy-950: #07152d;
  --navy-900: #0b1c3a;
  --navy-800: #102953;
  --blue-700: #244f9e;
  --blue-600: #2f64b7;
  --red-500: #d9263b;
  --teal-600: #0796a1;
  --teal-500: #12b8bf;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-500: #6b7280;
  --line: #d8dee8;
  --paper: #ffffff;
  --mist: #f3f6fa;
  --soft: #eaf0f7;
  --shadow: 0 24px 70px rgba(7, 21, 45, 0.15);
  --shadow-soft: 0 14px 36px rgba(7, 21, 45, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page: min(1180px, calc(100% - 40px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.13;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6.1vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 4.4vw, 4.1rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}

h4 {
  margin: 26px 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

p {
  margin-bottom: 18px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 39, 78, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(7, 21, 45, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.nav-shell {
  width: var(--page);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  width: 148px;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(7, 21, 45, 0.06);
}

.brand img {
  width: 100%;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink-700);
  transition: color 180ms ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-700);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 18px;
  color: #fff !important;
  background: var(--navy-900);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(7, 21, 45, 0.15);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  position: relative;
  padding: clamp(84px, 10vw, 132px) 0;
  overflow: hidden;
}

.section-light {
  background: var(--paper);
}

.section-muted {
  background: var(--mist);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: clamp(80px, 9vw, 128px) 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 25%, rgba(47, 100, 183, 0.4), transparent 26%),
    radial-gradient(circle at 14% 86%, rgba(217, 38, 59, 0.16), transparent 23%),
    linear-gradient(135deg, #07152d 0%, #0b1c3a 58%, #15366d 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(-12deg);
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -210px;
  right: -80px;
  border-radius: 34% 66% 70% 30% / 30% 32% 68% 70%;
}

.hero::after {
  width: 760px;
  height: 280px;
  left: -270px;
  bottom: -160px;
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b9c9e6;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

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

.eyebrow-teal {
  color: var(--teal-600);
}

.hero-quote {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d8e2f2;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.hero-mark {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-logo-card {
  position: relative;
  z-index: 2;
  width: min(330px, 80%);
  padding: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.33);
  transform: rotate(-2deg);
}

.hero-logo-card img {
  width: 100%;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.orbit-one {
  width: 350px;
  height: 350px;
  animation: orbit 18s linear infinite;
}

.orbit-two {
  width: 440px;
  height: 440px;
  border-style: dashed;
  opacity: 0.65;
  animation: orbitReverse 24s linear infinite;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34%;
  height: 5px;
  background: var(--red-500);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.split-reverse .content-block {
  order: 1;
}

.split-reverse .media-frame {
  order: 2;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.staff-frame img {
  object-position: center;
}

.content-block > p {
  color: var(--ink-700);
  font-size: 1.06rem;
}

.statement-card {
  position: relative;
  margin-top: 30px;
  padding: 26px 28px;
  color: #fff;
  background: linear-gradient(135deg, #087e89, #0ba8b2);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(7, 150, 161, 0.22);
}

.statement-card p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.statement-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.82;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading > p {
  margin: -8px 0 0;
  color: var(--ink-500);
  font-size: 1.05rem;
}

.section-heading-light > p,
.section-heading-light h2 {
  color: #fff;
}

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

.principle-card {
  position: relative;
  min-height: 330px;
  padding: 34px 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5eaf1;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.principle-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(7, 150, 161, 0.08);
}

.principle-card h3 {
  margin-top: 72px;
  color: var(--teal-600);
}

.principle-card p,
.principle-card li {
  color: var(--ink-700);
}

.principle-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(7, 150, 161, 0.24);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.clean-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.values-list li {
  padding: 8px 11px;
  color: var(--teal-600);
  font-size: 0.9rem;
  font-weight: 800;
  background: rgba(7, 150, 161, 0.08);
  border-radius: 999px;
}

.teal-accent {
  background:
    radial-gradient(circle at 90% 15%, rgba(18, 184, 191, 0.16), transparent 30%),
    linear-gradient(135deg, #061529, #0a1d39 56%, #073842 140%);
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 215px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.service-card-dark {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.service-card-dark:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(18, 184, 191, 0.42);
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  margin-bottom: 0;
  color: #cbd7e7;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(18, 184, 191, 0.5);
  border-radius: 50%;
  background: rgba(18, 184, 191, 0.12);
}

.mission-panel {
  margin-top: 30px;
  padding: 26px 28px;
  border-left: 4px solid var(--red-500);
  background: var(--mist);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.mission-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.mission-panel p {
  margin: 0;
  color: var(--ink-700);
  font-weight: 700;
}

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

.division-card {
  padding: clamp(28px, 4vw, 42px);
  background: #fff;
  border: 1px solid #e4e9f1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.division-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 46px;
}

.division-card-featured .division-head,
.division-card-featured > p:first-of-type,
.division-card-featured > p:nth-of-type(2),
.division-card-featured > p:nth-of-type(3) {
  grid-column: 1;
}

.division-card-featured h4,
.division-card-featured .check-list {
  grid-column: 2;
}

.division-card-featured h4 {
  align-self: end;
  margin-top: 70px;
}

.division-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.division-head h3 {
  margin: 5px 0 0;
  color: var(--navy-900);
}

.division-number {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--blue-700);
  border-radius: 50%;
}

.division-card p {
  color: var(--ink-700);
}

.check-list {
  display: grid;
  gap: 9px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-700);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(47, 100, 183, 0.1);
}

.record-chip {
  display: inline-flex;
  width: auto;
  padding: 7px 12px;
  color: var(--blue-700) !important;
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(47, 100, 183, 0.08);
  border-radius: 999px;
}

.register-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: end;
}

.register-layout .section-heading {
  margin-bottom: 0;
}

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

.register-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.register-card span {
  color: #c8d6eb;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.register-card strong {
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  overflow-wrap: anywhere;
}

.clients-section {
  background:
    linear-gradient(rgba(7, 21, 45, 0.95), rgba(7, 21, 45, 0.95)),
    linear-gradient(135deg, #07152d, #15366d);
}

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

.client-chip {
  min-height: 122px;
  display: grid;
  place-items: center;
  padding: 22px 18px;
  text-align: center;
  color: #f7f9fc;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.contact-section {
  background:
    radial-gradient(circle at 100% 100%, rgba(47, 100, 183, 0.12), transparent 28%),
    #fff;
}

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

.contact-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 5vw, 48px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  border: 34px solid rgba(255, 255, 255, 0.08);
}

.contact-card-invicta {
  color: #fff;
  background: linear-gradient(145deg, #086f78, #0aa6b1);
}

.contact-card-ces {
  color: #fff;
  background: linear-gradient(145deg, var(--navy-950), var(--blue-700));
}

.contact-kicker {
  display: block;
  margin-bottom: 26px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  opacity: 0.78;
}

.contact-card h3 {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.contact-links {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.contact-links a {
  width: fit-content;
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.address,
.social-reference {
  position: relative;
  z-index: 2;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: 30px 0;
  color: #d8e2f2;
  background: #050f21;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-inner img {
  width: 112px;
  padding: 7px;
  background: #fff;
  border-radius: 9px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
}

.back-top {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

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

/* JavaScript enhances the page, but content stays visible if JS is unavailable. */
.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes orbitReverse {
  to { transform: rotate(-360deg); }
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 34px, 980px);
  }

  .main-nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .brand {
    width: 132px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.55fr;
  }

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

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

@media (max-width: 840px) {
  :root {
    --header-height: 74px;
  }

  .brand {
    width: 124px;
  }

  .brand img {
    height: 47px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 40px;
    background: rgba(255, 255, 255, 0.985);
    transform: translateX(105%);
    transition: transform 240ms ease;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 10px;
    font-size: 1.08rem;
    border-bottom: 1px solid #e6eaf0;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .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);
  }

  .hero {
    min-height: auto;
  }

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

  .hero-mark {
    min-height: 350px;
  }

  .hero-logo-card {
    width: min(300px, 72vw);
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 370px;
    height: 370px;
  }

  .split-reverse .content-block,
  .split-reverse .media-frame {
    order: initial;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: auto;
  }

  .division-card-featured {
    grid-column: auto;
    display: block;
  }

  .division-card-featured h4 {
    margin-top: 26px;
  }

  .register-layout {
    align-items: start;
  }

  .register-layout .section-heading {
    margin-bottom: 10px;
  }

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

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 72px 0 84px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-mark {
    min-height: 300px;
  }

  .orbit-one {
    width: 250px;
    height: 250px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .media-frame,
  .media-frame img {
    min-height: 320px;
  }

  .service-grid-six,
  .division-grid,
  .register-cards,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-card {
    min-height: 340px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner img {
    grid-column: 1 / -1;
  }
}

@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,
  .reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }
}
