:root {
  --navy-950: #06111f;
  --navy-900: #08182b;
  --navy-850: #0b1f36;
  --navy-800: #0e2844;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --cyan-400: #22d3ee;
  --teal-300: #5eead4;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 17, 31, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-700);
  background: #f8fbff;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

button,
input,
textarea {
  font: inherit;
}

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

.section-pad {
  padding: 110px 0;
}

.section-pad.compact {
  padding: 70px 0 40px;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 12px;
  transition: top 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  background: rgba(248, 251, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 10px 0;
}

.nav {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 12px 20px rgba(37, 99, 235, 0.18));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-600);
  font-weight: 650;
  font-size: 0.95rem;
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--navy-950);
  background: rgba(37, 99, 235, 0.08);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  background: var(--navy-950);
  color: var(--white);
  padding-inline: 18px;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--blue-600);
  color: var(--white);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.2), transparent 32%),
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 42%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.hero-text {
  margin-top: 26px;
  max-width: 740px;
  color: var(--slate-600);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #143d8f);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(37, 99, 235, 0.32);
}

.btn-secondary {
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.trust-strip {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--slate-600);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 560px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 17, 31, 0.98), rgba(10, 34, 61, 0.95)),
    var(--navy-950);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.14), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(59, 130, 246, 0.28), transparent 30%);
  z-index: -1;
}

.orb {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.32;
  z-index: -1;
}

.orb-one {
  top: -80px;
  right: -70px;
  background: var(--cyan-400);
}

.orb-two {
  bottom: -90px;
  left: -70px;
  background: var(--blue-600);
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--slate-200);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 750;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-300);
  box-shadow: 0 0 0 rgba(94, 234, 212, 0.5);
  animation: pulse 1.8s infinite;
}

.metric-grid {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.metric-grid > div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.07rem;
  line-height: 1.3;
}

.architecture-map {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.node {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  color: var(--slate-200);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  font-size: 0.91rem;
}

.primary-node {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--teal-300), #93c5fd);
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.intro-band p:last-child {
  font-size: 1.08rem;
  color: var(--slate-600);
}

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

.section-heading p:last-child {
  margin-top: 18px;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section-heading.light h2,
.section-heading.light p:last-child {
  color: var(--white);
}

.cards {
  display: grid;
  gap: 22px;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  padding: 30px;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.09);
}

.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  color: var(--blue-600);
  background: rgba(37, 99, 235, 0.1);
  border-radius: 16px;
  font-weight: 900;
}

.service-card p,
.sector-card p,
.special-panel p,
.proof-copy p,
.contact-copy p,
.step p {
  margin-top: 15px;
  color: var(--slate-600);
}

.specializations {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #0b2545 58%, #0c3358);
}

.specializations::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 76%);
  pointer-events: none;
}

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

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

.special-panel {
  min-height: 640px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.panel-label {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 9px 13px;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.special-panel h3 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.special-panel p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(248, 250, 252, 0.9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.25L6.5 11.25L12.75 4.75' stroke='%2306111F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat,
    var(--teal-300);
}

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

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 32px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(94, 234, 212, 0.18), transparent 32%),
    linear-gradient(145deg, transparent, rgba(37, 99, 235, 0.18));
  pointer-events: none;
}

.sector-card > * {
  position: relative;
  z-index: 1;
}

.sector-head {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sector-head span {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.sector-card p {
  color: rgba(226, 232, 240, 0.78);
}

.proof-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 120px;
}

.proof-copy p {
  font-size: 1.08rem;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list div {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
}

.proof-list strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.proof-list span {
  color: var(--slate-600);
}

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

.step {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.055);
}

.step::before {
  content: "";
  position: absolute;
  top: 53px;
  left: 80px;
  right: -32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.34), transparent);
}

.step:last-child::before {
  display: none;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 62px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--navy-950));
  border-radius: 50%;
  font-weight: 900;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(135deg, #06111f, #0d2b4d 62%, #09213b);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 1.08rem;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--white);
  font-weight: 800;
}

.contact-methods a {
  color: var(--teal-300);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--slate-200);
  font-size: 0.91rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(94, 234, 212, 0.62);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.12);
}

.footer {
  color: var(--slate-300);
  background: var(--navy-950);
  padding: 58px 0 30px;
}

.footer h2,
.footer h3,
.footer .brand {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  max-width: 460px;
  color: rgba(226, 232, 240, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--slate-200);
  font-weight: 700;
  font-size: 0.92rem;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(226, 232, 240, 0.56);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.48); }
  70% { box-shadow: 0 0 0 12px rgba(94, 234, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0); }
}

@media (max-width: 1040px) {
  .hero-grid,
  .intro-band,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 500px;
  }

  .cards.three,
  .sector-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .special-panel {
    min-height: auto;
  }

  .proof-copy {
    position: static;
  }

  .step::before {
    display: none;
  }

  .step span {
    margin-bottom: 42px;
  }
}

@media (max-width: 760px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 102;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 36px;
    color: var(--white);
    background: rgba(6, 17, 31, 0.96);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

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

  .nav-menu a {
    font-size: 1.25rem;
    color: var(--white);
  }

  .nav-menu .nav-cta {
    background: var(--blue-600);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-card {
    min-height: auto;
    padding-bottom: 28px;
  }

  .architecture-map {
    position: static;
    margin-top: 22px;
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-band {
    padding: 30px;
  }

  .cards.three,
  .sector-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .sector-card,
  .step {
    min-height: auto;
  }

  .special-panel {
    padding: 30px;
  }

  .panel-label {
    margin-bottom: 30px;
  }

  .proof-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-grid,
  .copyright {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

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

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

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