:root {
  --navy: #0b1020;
  --graphite: #171a22;
  --ink: #20202a;
  --muted: #625d63;
  --paper: #f5efe5;
  --cream: #fffaf0;
  --surface: #ebe2d4;
  --line: #d7caba;
  --coral: #d84f45;
  --cyan: #15c2ca;
  --cyan-bright: #22e5ec;
  --magenta: #c830d7;
  --gold: #9b7432;
  --white: #ffffff;
  --focus: #0b6f75;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--navy);
  background: var(--cyan-bright);
  font-weight: 850;
  text-decoration: none;
}

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

.status-badge {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(34, 229, 236, 0.58);
  color: var(--cyan-bright);
  background: rgba(11, 16, 32, 0.94);
  box-shadow: 0 0 24px rgba(34, 229, 236, 0.18);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: rgba(11, 16, 32, 0.96);
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--cream);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.22);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.nav {
  gap: 18px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 13px;
}

.nav a {
  padding: 8px 0;
  text-decoration: none;
}

.nav a:hover {
  color: var(--cyan-bright);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--navy);
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 16, 32, 0.98) 0%, rgba(11, 16, 32, 0.86) 48%, rgba(11, 16, 32, 0.42) 82%),
    linear-gradient(0deg, rgba(11, 16, 32, 0.88), rgba(11, 16, 32, 0.12) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 72px) clamp(38px, 7vw, 72px);
  padding-top: 112px;
}

.media-caption {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 10px;
  color: rgba(255, 250, 240, 0.9);
  background: rgba(11, 16, 32, 0.76);
  border: 1px solid rgba(255, 250, 240, 0.2);
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.implementation .eyebrow,
.reports .eyebrow,
.split .eyebrow {
  color: #ffd98a;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5.7vw, 68px);
  line-height: 1.04;
}

h2 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 240, 0.44);
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: var(--navy);
  background: var(--cyan-bright);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 22px rgba(34, 229, 236, 0.18);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 250, 240, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 38px 0 0;
  background: rgba(255, 250, 240, 0.18);
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(110px, 180px) minmax(0, 760px);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(42px, 7vw, 76px) clamp(20px, 6vw, 86px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(34, 229, 236, 0.08), transparent 48%),
    var(--graphite);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.brand-panel-mark {
  width: min(180px, 38vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.22);
  box-shadow: 0 0 30px rgba(34, 229, 236, 0.12);
}

.brand-panel-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-panel h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.brand-panel p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 18px;
}

.hero-facts div {
  padding: 18px;
  background: rgba(11, 16, 32, 0.58);
}

.hero-facts dt {
  color: rgba(255, 250, 240, 0.6);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 760;
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(155, 116, 50, 0.12), transparent 42%),
    var(--paper);
}

.editorial-copy {
  color: var(--muted);
  font-size: 19px;
}

.warm,
.docs,
.security {
  background: var(--cream);
}

.use-case-grid,
.implementation-grid,
.security-grid {
  display: grid;
  gap: 18px;
}

.use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.use-case-grid article,
.quiet-card,
.security-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.use-case-grid article {
  min-height: 250px;
}

.number {
  display: block;
  margin-bottom: 34px;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.use-case-grid p,
.quiet-card p,
.security-grid p,
.timeline span,
.risk-panel p {
  color: var(--muted);
}

.implementation {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(11, 16, 32, 0.98), rgba(23, 26, 34, 0.98)),
    var(--navy);
}

.implementation .quiet-card {
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(255, 250, 240, 0.16);
}

.implementation .quiet-card p {
  color: rgba(255, 250, 240, 0.76);
}

.tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(11, 16, 32, 0.14);
  color: var(--graphite);
  background: rgba(255, 250, 240, 0.74);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-pill.current {
  color: #063338;
  background: rgba(34, 229, 236, 0.22);
  border-color: rgba(34, 229, 236, 0.46);
}

.status-pill.conceptual {
  color: #4e1730;
  background: rgba(255, 109, 128, 0.18);
  border-color: rgba(255, 109, 128, 0.42);
}

code {
  display: block;
  max-width: 100%;
  margin: 20px 0;
  padding: 13px;
  overflow-wrap: anywhere;
  color: var(--cyan-bright);
  background: rgba(11, 16, 32, 0.5);
  border: 1px solid rgba(34, 229, 236, 0.22);
  font-size: 13px;
}

.quiet-card a,
.text-link,
.dashboard-links a,
.report-list a,
.doc-centers a,
.project-record a {
  color: inherit;
  text-decoration: none;
}

.quiet-card a,
.text-link {
  color: var(--cyan-bright);
  font-weight: 850;
}

.trust {
  background:
    linear-gradient(180deg, rgba(11, 16, 32, 0.04), transparent 28%),
    var(--paper);
}

.dashboard-status {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 14px;
  color: var(--navy);
  background: rgba(21, 194, 202, 0.14);
  border: 1px solid rgba(21, 194, 202, 0.34);
  font-weight: 820;
}

.dashboard-status.is-error {
  color: #7a251f;
  background: rgba(216, 79, 69, 0.12);
  border-color: rgba(216, 79, 69, 0.35);
}

.trust-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-dashboard div {
  min-width: 0;
  padding: 24px;
  background: var(--cream);
}

.trust-dashboard dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-dashboard dd {
  min-height: 2.5em;
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.trust-dashboard dd.is-address,
.trust-dashboard dd.is-small {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-dashboard dd.is-unavailable {
  color: #7a251f;
  font-family: inherit;
  font-size: 16px;
}

.dashboard-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dashboard-links a,
.report-list a,
.doc-centers article {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(11, 16, 32, 0.98), rgba(42, 62, 70, 0.94)),
    var(--navy);
}

.split p {
  color: rgba(255, 250, 240, 0.78);
  font-size: 18px;
}

.allocation-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 250, 240, 0.18);
}

.allocation-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px;
  background: rgba(255, 250, 240, 0.08);
}

.allocation-list strong {
  color: var(--cyan-bright);
}

.roadmap {
  background: var(--paper);
}

.timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--graphite);
}

.reports {
  color: var(--cream);
  background: var(--graphite);
}

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

.report-list a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  color: var(--cream);
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(255, 250, 240, 0.16);
}

.report-list span {
  color: var(--cyan-bright);
  font-size: 12px;
  text-transform: uppercase;
}

.project-record {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

.project-record div {
  min-width: 0;
  padding: 18px;
  background: var(--paper);
}

.project-record span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.project-record strong {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
}

.project-record a {
  color: #086a70;
}

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

.doc-centers article {
  display: grid;
  align-content: start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.56);
}

.doc-centers h3 {
  margin-bottom: 8px;
}

.doc-centers a {
  display: block;
  padding: 10px 0;
  color: #086a70;
  border-top: 1px solid var(--line);
  font-weight: 820;
}

.risks {
  background: var(--paper);
}

.risk-panel {
  max-width: 980px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.risk-panel p:last-child {
  margin-bottom: 0;
}

.footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 86px) 84px;
  color: rgba(255, 250, 240, 0.78);
  background: var(--navy);
}

.footer-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  flex: 0 0 auto;
}

.footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .use-case-grid,
  .trust-dashboard,
  .dashboard-links,
  .doc-centers,
  .project-record {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(18px, 4vw, 56px) 18px;
    background: rgba(11, 16, 32, 0.98);
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 250, 240, 0.12);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-top: 116px;
    margin-bottom: 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 16, 32, 0.98), rgba(11, 16, 32, 0.78)),
      linear-gradient(0deg, rgba(11, 16, 32, 0.86), rgba(11, 16, 32, 0.16));
  }

  .hero-facts,
  .brand-panel,
  .intro-grid,
  .implementation-grid,
  .split,
  .security-grid,
  .report-list {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  body {
    background: var(--navy);
    line-height: 1.48;
  }

  :focus-visible {
    outline-width: 2px;
    outline-offset: 3px;
  }

  .topbar {
    position: sticky;
    padding: 10px 12px;
    background: rgba(11, 16, 32, 0.98);
    border-bottom-color: rgba(255, 250, 240, 0.1);
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nav {
    padding: 6px 12px 12px;
  }

  .nav a {
    min-height: 42px;
    font-size: 14px;
  }

  .use-case-grid,
  .trust-dashboard,
  .dashboard-links,
  .doc-centers,
  .project-record {
    grid-template-columns: 1fr;
  }

  .status-badge {
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  }

  .hero {
    min-height: auto;
    align-items: start;
    border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  }

  .hero-image {
    object-position: 64% center;
    opacity: 0.42;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 16, 32, 0.84), rgba(11, 16, 32, 0.98) 78%),
      linear-gradient(90deg, rgba(11, 16, 32, 0.92), rgba(11, 16, 32, 0.48));
  }

  .hero-content {
    width: calc(100% - 24px);
    margin: 0 12px;
    padding: 42px 0 24px;
  }

  .media-caption {
    max-width: 100%;
    margin-bottom: 14px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.03;
  }

  h2 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.08;
  }

  h3 {
    font-size: 18px;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 0;
    color: rgba(255, 250, 240, 0.8);
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .button {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
    background: transparent;
  }

  .hero-facts div {
    padding: 12px;
    border: 1px solid rgba(255, 250, 240, 0.12);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.06);
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 14px;
  }

  .section {
    padding: 38px 14px;
    border-top: 1px solid rgba(11, 16, 32, 0.08);
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-note,
  .editorial-copy,
  .split p,
  .brand-panel p:not(.eyebrow) {
    font-size: 15px;
  }

  .brand-panel {
    gap: 16px;
    padding: 28px 14px;
  }

  .brand-panel h2 {
    font-size: 25px;
  }

  .brand-panel-mark {
    width: 82px;
    box-shadow: none;
  }

  .use-case-grid article,
  .quiet-card,
  .security-grid article,
  .dashboard-links a,
  .report-list a,
  .doc-centers article,
  .project-record div,
  .risk-panel {
    padding: 16px;
    border-radius: 8px;
  }

  .use-case-grid article {
    min-height: auto;
  }

  .number {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .tag,
  .status-pill,
  .project-record span,
  .trust-dashboard dt,
  .report-list span {
    font-size: 10px;
  }

  code {
    margin: 14px 0;
    padding: 10px;
    border-radius: 8px;
    font-size: 11px;
  }

  .trust-dashboard {
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .trust-dashboard div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .trust-dashboard dd {
    min-height: auto;
    font-size: 22px;
  }

  .trust-dashboard dd.is-address,
  .trust-dashboard dd.is-small {
    font-size: 11px;
  }

  .dashboard-status {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
  }

  .split,
  .implementation,
  .reports {
    background: var(--navy);
  }

  .timeline li {
    padding: 16px 0;
  }

  .footer {
    gap: 12px;
    padding: 22px 14px 62px;
    font-size: 13px;
  }

  .footer-mark {
    width: 34px;
    height: 34px;
  }

  .allocation-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
