/* ==========================================================================
   rScan platform site — public marketing pages
   (homePage, architecture, developers, process, about-us)

   Self-contained. Deliberately does NOT depend on the legacy Webflow template
   stylesheets, which carry the vendor demo's class system and dead links.

   Brand gradient is sampled directly from the rScan app mark (logoSolo.png):
   violet #AA2AF2 -> blue #4B9EE0 -> teal #0EEABE

   Readability rules this file follows (2026-09-15 pass):
   - no running text below 14px; no label below 12.5px
   - body copy is --text-mid on --surface at >= 9:1 contrast
   - measure capped at ~62ch inside cards
   - labels are small caps in mono, but never dim AND tiny at once
   ========================================================================== */

:root {
  --bg: #0b0d12;
  --bg-alt: #0f1218;
  --surface: #151a23;
  --surface-2: #1a2029;
  --line: #2b3242;
  --line-soft: #222837;

  --text: #f3f5f9;
  --text-mid: #c9d0dc;
  --text-dim: #98a2b4;

  --violet: #aa2af2;
  --blue: #4b9ee0;
  --teal: #0eeabe;

  --grad: linear-gradient(100deg, #aa2af2 0%, #7b63e3 34%, #4b9ee0 64%, #0eeabe 100%);

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;

  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: -0.021em;
  font-weight: 700;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--surface);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
}

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

/* ------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, opacity .16s ease, background-color .16s ease, border-color .16s ease;
  white-space: nowrap;
}

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

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: var(--grad);
  color: #07080c;
  font-weight: 700;
}

.btn-primary:hover {
  opacity: .92;
}

.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
}

.btn-outline:hover {
  border-color: #3e475c;
  background: rgba(255, 255, 255, .06);
}

.btn-ghost {
  color: var(--text-mid);
  padding: 11px 14px;
}

.btn-ghost:hover {
  color: var(--text);
}

/* --------------------------------- Nav --------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 18, .8);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}

.nav.is-stuck {
  border-bottom-color: var(--line-soft);
  background: rgba(11, 13, 18, .93);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  border-radius: 9px;
  width: 34px;
  height: 34px;
}

.brand-word {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-mid);
}

.nav-links a {
  transition: color .16s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line-soft);
}

.mobile-nav a {
  padding: 12px 0;
  color: var(--text-mid);
  font-size: 17px;
}

.mobile-nav a.btn {
  margin-top: 10px;
  color: #07080c;
  justify-content: center;
}

/* -------------------------------- Hero --------------------------------- */
.hero {
  position: relative;
  padding: 92px 0 72px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -320px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(170, 42, 242, .2), transparent 72%),
    radial-gradient(closest-side, rgba(14, 234, 190, .13), transparent 70%);
  background-position: 22% 42%, 76% 58%;
  background-repeat: no-repeat;
  background-size: 62% 88%, 62% 88%;
  filter: blur(18px);
}

.hero .wrap {
  position: relative;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 60px);
  max-width: 18ch;
  letter-spacing: -0.032em;
  font-weight: 800;
  line-height: 1.1;
}

.hero-sub {
  margin-top: 26px;
  max-width: 62ch;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-mid);
  line-height: 1.65;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

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

/* Pipeline rail (hero) */
.pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.pipeline li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255, 255, 255, .025);
}

.pipeline li + li::before {
  content: "\2192";
  margin-left: -4px;
  margin-right: 4px;
  color: var(--text-dim);
  font-size: 15px;
}

.pipe-num {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Badges bar */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric {
  background: var(--bg-alt);
  padding: 28px 24px;
}

.metric-value {
  display: block;
  font-size: clamp(30px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric-plus {
  font-size: .6em;
  vertical-align: super;
}

.metric-label {
  display: block;
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.45;
}

.metrics-foot {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 80ch;
}

/* ------------------------------ Sections ------------------------------- */
.section {
  padding: 92px 0;
  border-top: 1px solid var(--line-soft);
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 78ch;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(28px, 3.3vw, 40px);
  max-width: 24ch;
  letter-spacing: -0.028em;
}

.section-lede {
  margin-top: 20px;
  max-width: 66ch;
  color: var(--text-mid);
  font-size: 17.5px;
  line-height: 1.65;
}

.section-cta {
  margin-top: 44px;
}

/* Shared card copy: a short lead paragraph, then scannable bullets */
.lead {
  color: var(--text-mid);
  font-size: 16.5px;
  line-height: 1.68;
  max-width: 62ch;
}

.bullets {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.58;
  color: var(--text-mid);
  max-width: 62ch;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
}

.bullets strong {
  color: var(--text);
  font-weight: 600;
}

/* Technology cards */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tech-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px 32px;
}

.tech-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: .85;
}

.tech-index {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.tech-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.022em;
}

.tech-card p {
  color: var(--text-mid);
  font-size: 16.5px;
  line-height: 1.68;
  margin-bottom: 14px;
  max-width: 62ch;
}

.tech-card p strong {
  color: var(--text);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.chips li {
  font-family: var(--mono);
  font-size: 12.5px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, .03);
}

/* Capability cards */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.cap-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cap-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.cap-card p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.66;
  margin-bottom: 13px;
}

.cap-card .bullets li {
  font-size: 15.5px;
}

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec {
  background: var(--surface);
  padding: 28px 24px 30px;
}

.spec-k {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.spec-v {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.15;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spec-d {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Integration strips */
.integration-strip,
.stack-strip {
  margin-top: 40px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.stack-strip {
  margin-top: 16px;
}

.integration-label {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
}

.integration-list.mono li {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
}

/* CTA band */
.cta-band {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(900px 320px at 18% 0%, rgba(170, 42, 242, .14), transparent 70%),
    radial-gradient(900px 320px at 82% 100%, rgba(14, 234, 190, .11), transparent 70%),
    var(--bg-alt);
  padding: 76px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(25px, 2.6vw, 33px);
  max-width: 22ch;
  letter-spacing: -0.026em;
}

.cta-band p {
  margin-top: 14px;
  max-width: 54ch;
  color: var(--text-mid);
  font-size: 16.5px;
  line-height: 1.64;
}

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

/* -------------------------------- Footer ------------------------------- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
  padding: 66px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.15fr 1.4fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-blurb {
  margin-top: 16px;
  max-width: 34ch;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.62;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 15px;
  color: var(--text-mid);
  transition: color .16s ease;
}

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

.footer-contact address {
  font-style: normal;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.62;
}

.footer-hours {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
}

.footer-legal {
  font-size: 14px;
  color: var(--text-mid);
}

.footer-meta {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ==================== Architecture page components ==================== */
.hero-compact {
  padding: 78px 0 56px;
}

.hero-compact .hero-title {
  font-size: clamp(30px, 4.2vw, 48px);
  max-width: 20ch;
}

/* Pipeline diagram */
.diagram {
  margin: 0;
  padding: 26px 22px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}

.diagram svg {
  display: block;
  width: 100%;
  min-width: 860px;
  height: auto;
}

.diagram figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
  min-width: 0;
}

/* Stage deep-dive list */
.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stage {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  padding: 34px 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stage-mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.stage-mark span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  font-family: var(--mono);
  font-size: 16px;
  background-image: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stage-body h3 {
  font-size: 21px;
  margin-bottom: 14px;
  letter-spacing: -0.022em;
}

.stage-body p {
  color: var(--text-mid);
  font-size: 16.5px;
  line-height: 1.68;
  margin-bottom: 14px;
  max-width: 64ch;
}

.stage-body p strong {
  color: var(--text);
  font-weight: 600;
}

.stage-body .bullets {
  margin-top: 4px;
}

.stage-note {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  padding: 12px 16px;
  border-left: 2px solid var(--blue);
  background: rgba(255, 255, 255, .03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px !important;
  color: var(--text-mid) !important;
  line-height: 1.6 !important;
  max-width: 64ch;
}

/* Tables */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.spec-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15.5px;
}

.spec-table th {
  text-align: left;
  padding: 16px 20px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  white-space: nowrap;
}

.spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.55;
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.spec-table tbody tr:hover td {
  background: rgba(255, 255, 255, .02);
}

.spec-table code,
.stage-body code {
  font-family: var(--mono);
  font-size: 13.5px;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg-alt);
  color: var(--text);
  white-space: nowrap;
}

.spec-table td:first-child code {
  font-weight: 400;
}

/* Principle cards (architecture page) */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.principle h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.principle p {
  color: var(--text-mid);
  font-size: 15.5px;
  line-height: 1.62;
}

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 1080px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .tech-grid,
  .cap-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 66px 0 56px;
  }

  .section {
    padding: 68px 0;
  }

  .pipeline li + li::before {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .wrap {
    padding: 0 18px;
  }

  .metrics,
  .spec-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-cta .btn,
  .cta-band-actions .btn {
    width: 100%;
  }

  .tech-card,
  .cap-card {
    padding: 28px 22px;
  }

  .stage {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 22px;
  }

  .stage-mark {
    justify-content: flex-start;
  }

  .stage-mark span {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .diagram {
    padding: 18px 14px 16px;
  }
}

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

  .btn:hover {
    transform: none;
  }

  * {
    transition-duration: .01ms !important;
  }
}
