:root {
  /* Theme source: keep raw color values in this block only. */

  /* Brand and semantic color roles */
  --ink: #171744;
  --muted: #5d6485;
  --surface: #ffffff;
  --surface-soft: #f5f7ff;
  --line: #d8def5;
  --orange: #f7aa00;
  --orange-light: #ffc94f;
  --sky: #3ba4f3;
  --sky-soft: #ebf5ff;
  --sky-light: #9bd5ff;
  --steel: #3f4b99;
  --indigo: #2b2874;
  --navy: #1d1b50;
  --navy-deep: #14133b;
  --button-ink: #241a03;

  /* Accent roles */
  --accent: var(--sky);
  --accent-dark: var(--indigo);
  --accent-muted: var(--steel);

  /* Derived surfaces, overlays, and effects */
  --button-border-idle: transparent;
  --on-dark: var(--surface);
  --on-dark-muted: rgba(255, 255, 255, 0.74);
  --on-dark-soft: rgba(255, 255, 255, 0.86);
  --on-dark-strong: rgba(255, 255, 255, 0.88);
  --surface-glass-strong: rgba(255, 255, 255, 0.96);
  --surface-glass: rgba(255, 255, 255, 0.94);
  --surface-glass-subtle: rgba(255, 255, 255, 0.2);
  --surface-glass-muted: rgba(255, 255, 255, 0.18);
  --surface-glass-faint: rgba(255, 255, 255, 0.16);
  --surface-glass-wash: rgba(255, 255, 255, 0.12);
  --surface-glass-quiet: rgba(255, 255, 255, 0.1);
  --surface-glass-hint: rgba(255, 255, 255, 0.08);
  --surface-glass-border: rgba(255, 255, 255, 0.46);
  --surface-glass-border-soft: rgba(255, 255, 255, 0.4);
  --hero-overlay-start: rgba(20, 19, 59, 0.9);
  --hero-overlay-mid: rgba(29, 27, 80, 0.72);
  --hero-overlay-end: rgba(43, 40, 116, 0.2);
  --hero-metric-bg: rgba(20, 19, 59, 0.58);
  --esl-card-warm-tint: rgba(247, 170, 0, 0.16);
  --esl-card-cool-tint: rgba(59, 164, 243, 0.14);
  --shadow: 0 22px 60px rgba(23, 27, 80, 0.16);
  --shadow-header: 0 8px 28px rgba(23, 27, 80, 0.1);
  --shadow-logo-ring: 0 0 0 1px rgba(29, 27, 80, 0.08);

  /* Layout */
  --content: 1120px;
  --header-height: 76px;
  --hero-min-height: 720px;
  --radius: 8px;
  --radius-pill: 999px;
  --grid-gap: 1rem;
  --card-padding: 1.35rem;
  --border: 1px solid var(--line);
}

* {
  box-sizing: border-box;
}

/* Base document behavior and inherited typography. */
html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

/* High-contrast keyboard focus ring for links, buttons, and fields. */
:focus-visible {
  outline: 3px solid var(--surface);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--indigo);
}

/* Shared shape system for repeated UI elements. */
:is(.skip-link, .brand-logo, .site-nav a, .nav-toggle, .button, .hero-metrics, .system-panel, .esl-card, .feature-card, .savings-card, .benefit-list article, .savings-benchmark, .cost-drivers li, .process-steps span, .contact-form, .contact-form input, .contact-form select, .contact-form textarea) {
  border-radius: var(--radius);
}

:is(.status-pill, .nav-toggle-line, .cost-drivers li::before) {
  border-radius: var(--radius-pill);
}

/* Shared layout primitives used by repeated section/card groups. */
:is(.label-grid, .feature-grid, .savings-proof, .cost-drivers, .savings-grid, .benefit-list, .process-steps, .contact-form) {
  display: grid;
  gap: var(--grid-gap);
}

:is(.system-panel, .feature-card, .savings-card, .benefit-list article) {
  border: var(--border);
  background: var(--surface);
}

/* Keep compact headings from inheriting browser or font negative spacing. */
:is(h1, h2, h3, .eyebrow, .savings-benchmark .benchmark-label, .savings-card .savings-card-site) {
  letter-spacing: 0;
}

:is(.feature-grid, .savings-grid, .benefit-list) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

:is(.savings-benchmark .benchmark-label, .savings-card .savings-card-site) {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

:where(.hero-content, .section-inner, .footer-inner) {
  width: min(100%, var(--content));
  margin: 0 auto;
}

/* Lower-specificity grid helper for bespoke two-column layouts. */
:where(.two-column, .savings-layout, .savings-benchmark, .process-steps li, .process-steps span, .contact-layout, .contact-points, .contact-form label) {
  display: grid;
}

/* Hidden until focused so keyboard users can bypass navigation. */
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--surface);
  padding: 0.75rem 1rem;
  text-decoration: none;
}

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

/* Utility for text that should be available to assistive tech only. */
.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;
}

/* Site header, brand, navigation, and mobile menu trigger. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1.25rem, calc((100vw - var(--content)) / 2));
  color: var(--surface);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  background: var(--surface-glass);
  color: var(--ink);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo {
  box-shadow: var(--shadow-logo-ring);
}

.brand-name,
.brand-line {
  display: block;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-line {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.55rem 0.78rem;
  color: currentColor;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: var(--surface-glass-faint);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-scrolled .site-nav a.is-active {
  background: var(--sky-soft);
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--surface-glass-border-soft);
  background: var(--surface-glass-wash);
  color: inherit;
  cursor: pointer;
}

/* Keeps the collapsed menu button visible once the header turns light. */
.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: var(--surface);
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: currentColor;
}

/* Hero image treatment and first-screen messaging. */
.hero {
  min-height: var(--hero-min-height);
  min-height: min(var(--hero-min-height), 92vh);
  min-height: min(var(--hero-min-height), 92svh);
  display: flex;
  align-items: end;
  background-image:
    linear-gradient(90deg, var(--hero-overlay-start) 0%, var(--hero-overlay-mid) 42%, var(--hero-overlay-end) 100%),
    url("../assets/electronic-shelf-label-hero.jpg");
  background-position: center;
  background-size: cover;
  color: var(--on-dark);
}

.hero-content {
  padding: calc(var(--header-height) + 5rem) 1.25rem 4.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sky-light);
}

/* Core heading scale and overflow handling for narrow screens. */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
p,
li,
dt,
dd,
.button {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 4rem;
  line-height: 1.02;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 1.8rem;
  color: var(--on-dark-strong);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--button-border-idle);
  padding: 0.78rem 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: var(--button-ink);
}

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

.button-secondary {
  border-color: var(--surface-glass-border);
  background: var(--surface-glass-quiet);
  color: var(--surface);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-glass-muted);
}

.hero-metrics {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--surface-glass-subtle);
  background: var(--surface-glass-subtle);
}

.hero-metrics div {
  min-height: 104px;
  padding: 1rem;
  background: var(--hero-metric-bg);
}

.hero-metrics dt {
  font-weight: 900;
}

.hero-metrics dd {
  margin: 0.2rem 0 0;
  color: var(--on-dark-muted);
  font-size: 0.93rem;
}

/* Section shells and recurring editorial layout. */
.section {
  background: var(--surface);
}

.section-band,
.section-intro {
  background: var(--surface-soft);
}

.section-inner {
  padding: 6rem 1.25rem;
}

.two-column {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 4rem;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* Visual product mockup: label manager toolbar plus ESL cards. */
.system-panel {
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.status-pill {
  background: var(--sky-soft);
  color: var(--indigo);
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
}

.label-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.75rem), 1fr));
  padding: 1rem;
}

.esl-card {
  min-height: 162px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--navy);
  background:
    linear-gradient(0deg, var(--esl-card-warm-tint), var(--esl-card-warm-tint)),
    var(--surface);
  padding: 0.9rem;
}

.esl-card > * {
  min-width: 0;
}

.esl-card.accent {
  background:
    linear-gradient(0deg, var(--esl-card-cool-tint), var(--esl-card-cool-tint)),
    var(--surface);
}

.esl-card .sku,
.esl-card span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.esl-card strong {
  color: var(--navy-deep);
  font-size: 1.8rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

/* Cards used by feature, savings, and benefits sections. */
.feature-card,
.savings-card,
.benefit-list article {
  padding: var(--card-padding);
}

.feature-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card p,
.savings-card p,
.savings-note,
.benefit-list p,
.process-steps p,
.contact-points {
  margin-bottom: 0;
  color: var(--muted);
}

/* Cost-savings section: proof panel, cost drivers, and example savings cards. */
.savings-layout {
  gap: 2rem;
}

.savings-heading {
  margin-bottom: 0;
}

.savings-heading p {
  max-width: 820px;
}

.savings-proof {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.savings-benchmark {
  align-content: start;
  gap: 0.8rem;
  background: var(--navy);
  color: var(--surface);
  padding: 1.35rem;
}

.savings-benchmark p {
  margin: 0;
  color: var(--on-dark-muted);
}

.savings-benchmark strong,
.savings-card strong {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.05;
}

.savings-benchmark strong {
  color: var(--surface);
  font-size: 2.35rem;
}

.savings-benchmark .benchmark-label {
  color: var(--sky-light);
}

.cost-drivers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost-drivers li {
  display: flex;
  gap: 0.75rem;
  min-height: 112px;
  border: var(--border);
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 800;
  padding: 1rem;
}

.cost-drivers li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  background: var(--orange);
}

.savings-card .savings-card-site {
  color: var(--accent-muted);
}

.savings-card strong {
  margin-bottom: 0.6rem;
  color: var(--navy-deep);
  font-size: 2rem;
}

.savings-card-assumption {
  font-weight: 800;
}

.savings-note {
  max-width: 880px;
  font-size: 0.92rem;
}

.savings-card,
.benefit-list article {
  min-height: 250px;
}

.number {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--accent-muted);
  font-weight: 900;
}

/* Rollout process list with numbered step markers. */
.process-layout {
  align-items: start;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.process-steps span {
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--sky-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

/* Dark contact band and dependency-free mailto form. */
.section-contact {
  background: var(--navy);
  color: var(--surface);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.section-contact .eyebrow {
  color: var(--sky-light);
}

.contact-copy p,
.contact-points {
  color: var(--on-dark-muted);
}

.contact-points {
  gap: 0.65rem;
  padding-left: 1.1rem;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--surface-glass-faint);
  background: var(--surface-glass-hint);
  padding: 1rem;
}

.contact-form label {
  gap: 0.42rem;
  color: var(--on-dark-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--surface-glass-muted);
  background: var(--surface-glass-strong);
  color: var(--ink);
  padding: 0.82rem 0.85rem;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline-offset: 2px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--sky-soft);
  font-size: 0.92rem;
}

/* Inline privacy notice keeps consent context beside the contact action. */
.form-privacy-notice {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.84rem;
}

.form-privacy-notice a {
  color: var(--sky-light);
  font-weight: 800;
}

/* Minimal footer after the contact CTA. */
.site-footer {
  background: var(--navy-deep);
  color: var(--on-dark-muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.25rem;
}

.footer-details {
  display: grid;
  gap: 0.25rem;
}

.footer-details p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.footer-legal a {
  color: var(--on-dark-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Simple, unframed policy layout for legal pages. */
.legal-page {
  background: var(--surface-soft);
}

.legal-header {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: var(--border);
  background: var(--surface);
  padding: 0.85rem max(1.25rem, calc((100vw - var(--content)) / 2));
}

.legal-header .brand {
  color: var(--ink);
}

.legal-home {
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.legal-main {
  padding: 4.5rem 1.25rem 6rem;
}

.policy-document {
  width: min(100%, 820px);
  margin: 0 auto;
}

.policy-lead {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.policy-updated {
  margin: 0 0 3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-section {
  border-top: var(--border);
  padding: 2rem 0;
}

.policy-section h2 {
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
}

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

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-resource a {
  color: var(--accent-dark);
  font-weight: 800;
}

/* Tablet and small desktop: collapse multi-column layouts. */
@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 1rem;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

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

  .site-nav a {
    padding: 0.85rem;
  }

  .hero {
    --hero-min-height: 680px;
    background-position: 58% center;
  }

  .hero-content {
    padding: calc(var(--header-height) + 4rem) 1rem 3rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .savings-proof,
  .savings-grid,
  .cost-drivers,
  .benefit-list,
  .two-column,
  .contact-layout,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 88px;
  }

  .section-inner {
    padding: 4.5rem 1rem;
  }

  .label-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  }

  .benefit-list article {
    min-height: auto;
  }

  .savings-card,
  .cost-drivers li {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 1rem;
  }

  .legal-header {
    padding-inline: 1rem;
  }
}

/* Mobile: reduce hero density and make primary actions full-width. */
@media (max-width: 520px) {
  .brand-line {
    display: none;
  }

  .hero {
    --hero-min-height: 620px;
  }

  .hero-content {
    padding: calc(var(--header-height) + 2.75rem) 1rem 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 1.03rem;
    margin-bottom: 1.1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    margin-bottom: 1.2rem;
  }

  .hero-metrics div {
    min-height: 76px;
    padding: 0.72rem;
  }

  .hero-metrics dt,
  .hero-metrics dd {
    font-size: 0.82rem;
  }

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

  .esl-card strong {
    font-size: 1.7rem;
  }

  .savings-benchmark strong,
  .savings-card strong {
    font-size: 1.75rem;
  }

  .system-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding: 3rem 1rem 4rem;
  }

  .policy-updated {
    margin-bottom: 2rem;
  }

  .process-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .process-steps span {
    width: 40px;
    height: 40px;
  }
}

/* Very narrow phones: preserve the three hero metrics without overflow. */
@media (max-width: 360px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    min-height: 64px;
    padding-block: 0.6rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    padding: calc(var(--header-height) + 1.2rem) 1rem 1.5rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.65rem;
  }

  h1 {
    font-size: 1.95rem;
    margin-bottom: 0.75rem;
  }

  .hero-copy {
    font-size: 0.98rem;
    margin-bottom: 0.85rem;
  }

  .button {
    min-height: 44px;
    padding-block: 0.68rem;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-bottom: 0.85rem;
  }

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

  .hero-metrics div {
    min-height: 72px;
    padding: 0.55rem;
  }

  .hero-metrics dt,
  .hero-metrics dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }
}

/* Respect users who prefer less animation. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

