:root {
  --ink: #061014;
  --ink-soft: #10232c;
  --paper: #f7fbff;
  --paper-2: #ffffff;
  --line: rgba(6, 16, 20, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --muted: #5b6b75;
  --muted-dark: #9fb0bc;
  --blue: #0866ff;
  --cyan: #18d8ff;
  --green: #22c88a;
  --amber: #ffb83f;
  --rose: #f35f9d;
  --red: #ef4444;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(6, 16, 20, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 16, 20, 0.08);
  background: rgba(247, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  height: 38px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink-soft);
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  color: rgba(6, 16, 20, 0.78);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(8, 102, 255, 0.09);
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 34px rgba(8, 102, 255, 0.28);
}

.btn-primary:hover {
  background: #0055df;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.13);
}

.btn-ghost {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: rgba(8, 102, 255, 0.35);
  color: var(--blue);
}

.hero {
  position: relative;
  display: flex;
  min-height: 82svh;
  align-items: center;
  overflow: hidden;
  background: #05070a;
  color: white;
  padding: 112px 0 78px;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.hero-grid {
  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: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.34));
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 22px currentColor;
  content: "";
}

.hero h1,
.product-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.98;
  font-weight: 880;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: var(--cyan);
  font-size: 1.55rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead,
.product-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.proof-item {
  min-height: 112px;
  padding: 20px;
  background: rgba(8, 12, 16, 0.82);
}

.proof-value {
  display: block;
  color: white;
  font-size: 1.35rem;
  font-weight: 850;
}

.proof-label {
  display: block;
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 68px 0;
}

.section-dark {
  background: var(--ink);
  color: white;
}

.section-soft {
  background: #eef5fb;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 44px;
}

.section-header h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.section-dark .section-header p {
  color: var(--muted-dark);
}

.client-band {
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 24px 0;
}

.client-band .container {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.client-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 28s linear infinite;
}

.client-logo {
  display: inline-flex;
  min-width: 176px;
  height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(6, 16, 20, 0.1);
  border-radius: var(--radius);
  background: #f9fcff;
  color: var(--ink-soft);
  font-weight: 820;
}

.client-logo img {
  max-width: 136px;
  max-height: 36px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.product-carousel {
  position: relative;
  padding: 0 54px;
}

.product-carousel-window {
  overflow: hidden;
}

.product-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  margin: -4px;
  padding: 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-card {
  display: flex;
  flex: 0 0 calc((100% - 28px) / 3);
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
  scroll-snap-align: start;
  box-shadow: 0 12px 36px rgba(6, 16, 20, 0.06);
}

.product-card:hover {
  border-color: rgba(8, 102, 255, 0.38);
  box-shadow: var(--shadow);
}

.product-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(8, 102, 255, 0.08);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
  line-height: 1.12;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-card li {
  display: flex;
  gap: 9px;
}

.product-card li::before {
  width: 7px;
  height: 7px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.card-link {
  color: var(--blue);
  font-weight: 820;
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 102, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(6, 16, 20, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.product-carousel-arrow:hover {
  border-color: rgba(8, 102, 255, 0.45);
  color: #0055df;
  box-shadow: var(--shadow);
  transform: translateY(-50%) scale(1.04);
}

.product-carousel-arrow[hidden] {
  display: none;
}

.product-carousel-arrow span {
  font-size: 1.3rem;
  line-height: 1;
}

.product-carousel-arrow-prev {
  left: 0;
}

.product-carousel-arrow-next {
  right: 0;
}

.system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.system-copy h2,
.method-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.system-copy p,
.method-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted-dark);
}

.capability-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.capability {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.capability-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(24, 216, 255, 0.1);
  color: var(--cyan);
  font-weight: 900;
}

.capability strong {
  display: block;
  color: white;
}

.capability span {
  display: block;
  margin-top: 4px;
  color: var(--muted-dark);
}

.architecture-board {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

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

.flow-node {
  min-height: 108px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-node b {
  display: block;
  color: white;
}

.flow-node span {
  display: block;
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.integration-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.method-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 50px;
}

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

.method-step {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  font-weight: 850;
}

.method-step h3 {
  margin: 20px 0 8px;
  font-size: 1.08rem;
}

.method-step p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 42px 0;
}

.cta-inner h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 0;
}

.cta-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  background: #05070a;
  color: white;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(160px, 0.6fr));
  gap: 36px;
}

.footer-brand img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted-dark);
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 10px 0;
  color: var(--muted-dark);
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.page-main {
  background: var(--paper);
}

.product-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding: 92px 0 74px;
}

.product-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  opacity: 0.58;
}

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

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.52fr);
  gap: 48px;
  align-items: center;
}

.product-hero-media {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
}

.product-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: white;
}

.product-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 850px;
  margin-top: 38px;
}

.kpi {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.kpi strong {
  display: block;
  color: white;
  font-size: 1.16rem;
}

.kpi span {
  display: block;
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.48fr);
  gap: 52px;
  align-items: start;
}

.content-block + .content-block {
  margin-top: 50px;
}

.content-block h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.content-block p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.feature {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 20px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.feature p {
  margin: 0;
  font-size: 0.94rem;
}

.side-panel {
  position: sticky;
  top: 94px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 22px;
  box-shadow: 0 14px 42px rgba(6, 16, 20, 0.08);
}

.side-panel h2 {
  margin: 0 0 16px;
  font-size: 1.28rem;
}

.side-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-panel li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--muted);
}

.side-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.side-panel strong {
  display: block;
  color: var(--ink);
}

.tech-list,
.use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tech-list span,
.use-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 9px 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 720;
}

.contact-hero {
  background: var(--ink);
  color: white;
  padding: 86px 0 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.65fr);
  gap: 52px;
  align-items: start;
}

.contact-copy h1 {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.contact-copy p {
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-point {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-point strong {
  display: block;
  color: white;
}

.contact-point span {
  display: block;
  margin-top: 5px;
  color: var(--muted-dark);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 780;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  padding: 12px 13px;
  color: var(--ink);
}

.form-row textarea {
  min-height: 148px;
  resize: vertical;
}

.turnstile-row {
  min-height: 65px;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(8, 102, 255, 0.12);
}

.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #0f8a5f;
  font-weight: 760;
}

.form-status.is-error {
  color: var(--red);
  font-weight: 760;
}

.contact-form .btn:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

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

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

.accent-oil {
  color: var(--green);
}

.accent-routes {
  color: var(--cyan);
}

.accent-crm {
  color: var(--rose);
}

.accent-sales {
  color: var(--amber);
}

.accent-wapi {
  color: #26d367;
}

@media (max-width: 1120px) {
  .product-card {
    flex-basis: calc((100% - 14px) / 2);
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 251, 255, 0.98);
    padding: 18px 20px 24px;
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 80svh;
    padding-top: 82px;
  }

  .hero h1,
  .product-hero h1 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .hero-proof,
  .product-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header,
  .system-grid,
  .method-grid,
  .product-hero-inner,
  .product-layout,
  .contact-grid,
  .cta-inner,
  .client-band .container {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .method-list,
  .flow-row {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

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

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 30px;
  }

  .hero h1,
  .product-hero h1,
  .contact-copy h1 {
    font-size: 2.35rem;
  }

  .hero-lead,
  .product-lead {
    font-size: 1rem;
  }

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

  .hero-proof,
  .product-kpis,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-carousel {
    padding: 0 42px;
  }

  .product-card {
    flex-basis: 100%;
  }

  .proof-item {
    min-height: auto;
  }

  .section {
    padding: 66px 0;
  }

  .section-header h2,
  .system-copy h2,
  .method-copy h2,
  .contact-copy h2,
  .content-block h2 {
    font-size: 1.9rem;
  }

  .cta-inner {
    padding: 34px 0;
  }

  .footer-bottom {
    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;
  }
}
