
:root {
  --ink: #08141f;
  --ink-soft: #102231;
  --surface: #0c1b28;
  --surface-lift: #122737;
  --paper: #dbe6ea;
  --paper-soft: #e4ecef;
  --card: #edf3f5;
  --muted: #91a6b5;
  --muted-dark: #4a6272;
  --line: rgba(142, 183, 203, 0.18);
  --blue: #1b8cff;
  --cyan: #20c6d7;
  --green: #31d098;
  --white: #f7fbfc;
  --shadow: 0 30px 80px rgba(2, 10, 17, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

svg {
  display: block;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(142, 183, 203, 0.14);
  background: rgba(8, 20, 31, 0.88);
  backdrop-filter: blur(18px);
}

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

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

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 38px);
  color: #b8c9d3;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-header nav > a:not(.button):hover,
.footer-bottom a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid rgba(91, 228, 212, 0.4);
  border-radius: 12px;
  background: linear-gradient(135deg, #147ce9, #22bfaa);
  box-shadow: 0 14px 34px rgba(18, 139, 204, 0.25);
  color: white;
  font-size: 0.95rem;
  font-weight: 750;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18, 139, 204, 0.36);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  overflow: hidden;
  padding: 90px clamp(24px, 7vw, 110px);
  background:
    linear-gradient(rgba(35, 102, 128, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 102, 128, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 84% 14%, rgba(16, 112, 156, 0.2), transparent 36%),
    var(--ink);
  background-size:
    58px 58px,
    58px 58px,
    auto,
    auto;
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(45, 175, 197, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(38, 164, 193, 0.025),
    0 0 0 180px rgba(38, 164, 193, 0.02);
  content: "";
}

.hero-content,
.journey-card {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #55d6cb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(49, 208, 152, 0.8);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: #f2f8fa;
  font-size: clamp(3.1rem, 6vw, 6.5rem);
  font-weight: 730;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(100deg, #3da8ff 4%, #2bd3b5 92%);
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 670px;
  margin: 30px 0 0;
  color: #a8bbc7;
  font-size: clamp(1.05rem, 1.3vw, 1.26rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  padding: 10px 2px 8px;
  border-bottom: 1px solid #557080;
  color: #d7e5ea;
  font-size: 0.95rem;
  font-weight: 700;
}

.text-link:hover {
  border-color: var(--cyan);
  color: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin-top: 48px;
  color: #7f98a8;
  font-size: 0.79rem;
  font-weight: 650;
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-main {
  min-height: calc(100vh - 82px);
  padding: clamp(54px, 7vw, 94px) clamp(24px, 7vw, 110px) 90px;
  background:
    radial-gradient(circle at 84% 0%, rgba(27, 140, 255, 0.1), transparent 32%),
    var(--paper);
}

.legal-heading {
  max-width: 880px;
}

.legal-heading .eyebrow {
  margin-top: 34px;
  color: #087c82;
}

.legal-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-back {
  color: var(--muted-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.legal-back:hover,
.legal-content a:hover {
  color: #006cd8;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.legal-intro {
  margin-top: 34px;
  color: #304b5b;
  font-size: 1.07rem;
  line-height: 1.75;
}

.legal-intro p {
  margin: 0 0 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 790px);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
  margin-top: 58px;
}

.legal-index {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(74, 98, 114, 0.18);
  border-radius: 16px;
  background: rgba(237, 243, 245, 0.72);
}

.legal-index strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-index a {
  color: var(--muted-dark);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.legal-index a:hover {
  color: #006cd8;
}

.legal-content {
  display: grid;
  gap: 20px;
}

.legal-content section {
  scroll-margin-top: 110px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(74, 98, 114, 0.15);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 18px 50px rgba(8, 20, 31, 0.07);
}

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: #344f5e;
  font-size: 0.97rem;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: #006cd8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
  }
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2ebda3;
  content: "";
}

.journey-card {
  align-self: center;
  max-width: 540px;
  padding: 28px;
  border: 1px solid rgba(96, 183, 210, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(24, 52, 70, 0.9), rgba(11, 29, 42, 0.94)),
    var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.card-header > div {
  display: grid;
  gap: 6px;
}

.card-label {
  color: #69d9ce;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-header strong {
  color: #e6f0f3;
  font-size: 0.96rem;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7f9dac;
  font-size: 0.7rem;
  font-weight: 700;
}

.live-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(49, 208, 152, 0.7);
  content: "";
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 26px 0 2px 30px;
}

.timeline-line {
  position: absolute;
  top: 36px;
  bottom: 34px;
  left: 6px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--green));
}

.timeline article {
  position: relative;
  padding: 15px 16px 16px;
  border: 1px solid rgba(112, 166, 191, 0.14);
  border-radius: 14px;
  background: rgba(8, 22, 33, 0.46);
}

.timeline article::before {
  position: absolute;
  top: 23px;
  left: -29px;
  width: 9px;
  height: 9px;
  border: 2px solid #52cdbf;
  border-radius: 50%;
  background: var(--surface);
  content: "";
}

.timeline time {
  color: #49cdbd;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline h2 {
  margin: 7px 0 6px;
  color: #e7f0f3;
  font-size: 0.95rem;
  line-height: 1.35;
}

.timeline p {
  margin: 0;
  color: #7892a1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.statement {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 24px;
  border-block: 1px solid #c5d5db;
  background: var(--paper);
  color: #183246;
}

.statement svg {
  width: 56px;
  fill: none;
  stroke: #1898bc;
  stroke-width: 2;
}

.statement p {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section {
  padding: 110px clamp(24px, 7vw, 110px);
}

.how-section {
  background: var(--paper-soft);
  color: #173246;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
  color: #158ba0;
}

.section-heading h2,
.split-copy h2,
.boundary-section h2,
.cta-section h2 {
  margin: 0;
  color: #102a3c;
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 20px auto 0;
  color: #536c7b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  max-width: 1220px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #cbdadf;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 18px 50px rgba(40, 76, 94, 0.06);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #bfd0d7;
  font-family: "Courier New", monospace;
  font-size: 0.74rem;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #a8dfdd;
  border-radius: 14px;
  background: #eaf8f7;
  color: #159f98;
  font-size: 1.35rem;
}

.steps-grid h3 {
  margin: 30px 0 12px;
  color: #153247;
  font-size: 1.34rem;
  letter-spacing: -0.02em;
}

.steps-grid p {
  margin: 0;
  color: #5b7180;
  line-height: 1.72;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(58px, 8vw, 130px);
  padding: 120px clamp(24px, 8vw, 130px);
  background: #d7e3e7;
  color: #173246;
}

.split-copy {
  max-width: 660px;
}

.split-copy .eyebrow {
  color: #158ba0;
}

.split-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: #536c7b;
  font-size: 1.06rem;
  line-height: 1.78;
}

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

.feature-list li {
  position: relative;
  padding-left: 31px;
  color: #27485b;
  font-weight: 650;
  line-height: 1.45;
}

.feature-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #8fd3cd;
  border-radius: 50%;
  color: #159f98;
  content: "✓";
  font-size: 0.68rem;
}

.quote-card {
  position: relative;
  max-width: 560px;
  padding: 56px;
  border: 1px solid rgba(79, 194, 199, 0.24);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(20, 55, 73, 0.96), rgba(7, 26, 39, 0.98)),
    var(--ink);
  box-shadow: 0 35px 70px rgba(13, 43, 61, 0.25);
  color: white;
}

.quote-mark {
  display: block;
  height: 54px;
  color: #32c5b7;
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

.quote-card blockquote {
  margin: 14px 0 28px;
  color: #dfeaed;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 530;
  letter-spacing: -0.024em;
  line-height: 1.48;
}

.quote-card p {
  margin: 0;
  color: #69cfc8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clinician-section {
  background: #e1e9ec;
}

.clinician-visual {
  max-width: 590px;
  padding: 32px;
  border: 1px solid #c8d8dd;
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 30px 70px rgba(29, 72, 94, 0.12);
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #dfebee;
  color: #173a4f;
  font-size: 0.82rem;
  font-weight: 800;
}

.review-topline span:last-child {
  padding: 7px 10px;
  border-radius: 999px;
  background: #e5f8f4;
  color: #138e7f;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-chart {
  display: flex;
  height: 220px;
  align-items: end;
  gap: 12px;
  padding: 32px 8px 0;
  border-bottom: 1px solid #dbe8eb;
  background:
    linear-gradient(#edf3f5 1px, transparent 1px) 0 32px / 100% 46px;
}

.bar {
  flex: 1;
  min-width: 10px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(#39cbb8, #168fe4);
  opacity: 0.84;
}

.bar-one {
  height: 31%;
}
.bar-two {
  height: 48%;
}
.bar-three {
  height: 41%;
}
.bar-four {
  height: 63%;
}
.bar-five {
  height: 57%;
}
.bar-six {
  height: 74%;
}
.bar-seven {
  height: 68%;
}
.bar-eight {
  height: 84%;
}
.bar-nine {
  height: 77%;
}
.bar-ten {
  height: 91%;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 24px;
}

.review-stats span {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid #e0eaed;
  border-radius: 14px;
  background: #e4ecef;
}

.review-stats small {
  color: #718894;
}

.review-stats strong {
  color: #153a4f;
}

.boundary-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  padding: 120px clamp(24px, 8vw, 130px);
  background: var(--ink-soft);
}

.boundary-section h2,
.cta-section h2 {
  color: #f1f7f9;
}

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

.boundary-grid article {
  display: grid;
  gap: 15px;
  padding: 32px;
  border: 1px solid rgba(54, 209, 177, 0.25);
  border-radius: 18px;
  background: rgba(14, 42, 56, 0.68);
}

.boundary-grid span {
  margin-bottom: 7px;
  color: #51d0c1;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boundary-grid strong {
  color: #dcebed;
  font-size: 1rem;
}

.boundary-grid .boundary-no {
  border-color: rgba(140, 174, 190, 0.18);
  background: rgba(10, 28, 40, 0.62);
}

.boundary-grid .boundary-no span {
  color: #86a1b0;
}

.boundary-grid .boundary-no strong {
  color: #9fb2bd;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 100px clamp(24px, 8vw, 130px);
  background:
    radial-gradient(circle at 15% 10%, rgba(29, 139, 209, 0.22), transparent 38%),
    linear-gradient(120deg, #0a1c2a, #0c2c37);
}

.cta-section > div {
  max-width: 780px;
}

.cta-section p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: #96acb8;
  line-height: 1.7;
}

.cta-section .button {
  flex: none;
}

footer {
  padding: 70px clamp(24px, 7vw, 110px) 34px;
  border-top: 1px solid var(--line);
  background: #06111a;
}

.footer-main {
  display: grid;
  grid-template-columns: 240px minmax(240px, 1fr) auto;
  align-items: start;
  gap: 50px;
}

.footer-brand img {
  width: 220px;
}

.footer-main > p {
  max-width: 520px;
  margin: 7px 0 0;
  color: #748d9c;
  font-size: 0.9rem;
  line-height: 1.65;
}

.diagnostics {
  position: relative;
  color: #66818f;
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
}

.diagnostics summary {
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostics summary::-webkit-details-marker {
  display: none;
}

.diagnostics summary::before {
  margin-right: 8px;
  color: #31c8b0;
  content: "●";
}

.diagnostics > div {
  position: absolute;
  right: 0;
  bottom: calc(100% + 15px);
  display: grid;
  width: min(340px, calc(100vw - 48px));
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(49, 200, 176, 0.26);
  border-radius: 12px;
  background: #071822;
  box-shadow: var(--shadow);
  color: #8bb0bc;
}

.diagnostics strong {
  margin-bottom: 8px;
  color: #3bd5bd;
  letter-spacing: 0.08em;
}

.diagnostics em {
  margin-top: 8px;
  color: #d1e1e5;
  font-style: normal;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(128, 166, 184, 0.12);
  color: #68808e;
  font-size: 0.74rem;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.medical-note {
  margin: 20px 0 0;
  color: #4f6876;
  font-size: 0.68rem;
  line-height: 1.55;
}

.error-page {
  display: flex;
  min-height: 100vh;
  max-width: 820px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 60px clamp(24px, 8vw, 120px);
  background:
    radial-gradient(circle at 20% 20%, rgba(28, 139, 204, 0.2), transparent 35%),
    var(--ink);
}

.error-page .brand {
  margin-bottom: 70px;
}

.error-page h1 {
  margin: 0;
  color: #f2f8fa;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.error-page > p:not(.eyebrow) {
  max-width: 600px;
  margin: 26px 0 0;
  color: #9db1bd;
  font-size: 1.08rem;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 84px;
  }

  .hero-content {
    max-width: 820px;
  }

  .journey-card {
    width: 100%;
    max-width: 720px;
    transform: none;
  }

  .split-section,
  .boundary-section {
    grid-template-columns: 1fr;
  }

  .clinician-section .clinician-visual {
    order: 2;
  }

  .footer-main {
    grid-template-columns: 220px 1fr;
  }

  .diagnostics {
    grid-column: 1 / -1;
  }

  .diagnostics > div {
    right: auto;
    left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding-inline: 20px;
  }

  .brand img {
    width: 164px;
  }

  .site-header nav > a:not(.button) {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero {
    padding: 68px 22px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.7rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-row {
    display: grid;
  }

  .journey-card {
    padding: 22px 18px;
  }

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

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

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

  .section,
  .split-section,
  .boundary-section,
  .cta-section {
    padding: 78px 22px;
  }

  .quote-card {
    padding: 38px 28px;
  }

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

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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