:root {
  --rose: #f4a7b9;
  --rose-strong: #e77f9a;
  --rose-deep: #9b435b;
  --cream: #fdfbf7;
  --cream-2: #fff7f3;
  --wood: #a89080;
  --wood-dark: #6d594f;
  --ink: #282023;
  --muted: #73666a;
  --line: rgba(168, 144, 128, .28);
  --panel: rgba(255, 255, 255, .76);
  --shadow: 0 20px 60px rgba(95, 58, 68, .16);
  --radius: 8px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
  background:
    linear-gradient(180deg, rgba(244, 167, 185, .18), transparent 520px),
    radial-gradient(circle at 12% 8%, rgba(244, 167, 185, .16), transparent 280px),
    var(--cream);
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  max-width: 720px;
  color: var(--rose-deep);
}

h2 {
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  color: var(--rose-deep);
}

h3 {
  font-size: 1.08rem;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(253, 251, 247, .95);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(81, 55, 62, .12);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1220px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .68);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand:hover img {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 12px 30px rgba(244, 167, 185, .28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .95rem;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  padding: .52rem .72rem;
  border-radius: 999px;
  color: inherit;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(244, 167, 185, .22);
  transform: translateY(-1px);
  outline: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .25rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: .5;
  transform: scaleX(1);
}

.nav-cta {
  margin-left: .35rem;
  background: var(--rose);
  color: var(--ink) !important;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(155, 67, 91, .2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 10px;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease, margin .22s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  margin-top: 10px;
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-open .nav-toggle span:nth-child(3) {
  margin-bottom: 10px;
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--header-h) + 3.25rem) 0 3.25rem;
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 19, 23, .88), rgba(31, 19, 23, .45) 48%, rgba(31, 19, 23, .24)),
    linear-gradient(0deg, rgba(31, 19, 23, .72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero h1 {
  color: #fff7fb;
  text-shadow: 0 12px 34px rgba(31, 19, 23, .42);
}

.eyebrow,
.section-kicker {
  margin: 0 0 .8rem;
  color: var(--rose);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-lead {
  width: min(700px, 100%);
  margin: 1rem 0 1.35rem;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  color: rgba(255, 255, 255, .9);
}

.hero-actions,
.final-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -75%;
  z-index: -1;
  width: 48%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  opacity: 0;
  transition: transform .55s ease, opacity .25s ease;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(360%) skewX(-18deg);
}

.link-icon,
.button-icon {
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.nav-cta .link-icon,
.button.primary .button-icon {
  stroke-width: 2.2;
}

.button-icon {
  width: 1.12em;
  height: 1.12em;
  transition: transform .22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button:hover .button-icon,
.button:focus-visible .button-icon {
  transform: translateX(2px);
}

.button.primary {
  background: var(--rose);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(244, 167, 185, .32);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #f7b5c4;
  box-shadow: 0 20px 44px rgba(231, 127, 154, .4);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .1);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.button.compact {
  min-height: 42px;
  padding-inline: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 140px));
  gap: .8rem;
  margin: 1.35rem 0 0;
  width: fit-content;
}

.hero-stats div {
  padding: .9rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.hero-stats div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .18);
  border-color: rgba(244, 167, 185, .58);
}

.hero-stats dt {
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
}

.hero-stats dd {
  margin: .2rem 0 0;
  font-weight: 800;
}

.quick-index {
  padding: 1.35rem 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quick-grid article,
.feature-grid article,
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(108, 72, 82, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.quick-grid article:hover,
.feature-grid article:hover,
.faq-list details:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 167, 185, .58);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(108, 72, 82, .14);
}

.quick-grid article {
  padding: 1rem;
}

.quick-grid h2 {
  font-size: 1.06rem;
  margin: .45rem 0 .35rem;
}

.quick-grid p,
.system-card p,
.feature-grid p,
.updates-list p,
.faq-list p {
  color: var(--muted);
  margin: 0;
}

.icon,
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--rose-deep);
  background: rgba(244, 167, 185, .24);
  border-radius: 50%;
  font-weight: 900;
}

.section {
  padding: clamp(3.5rem, 6vw, 5.6rem) 0;
}

.split,
.guide-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split.reversed {
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1fr);
}

.section-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.media-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 167, 185, .62);
  box-shadow: 0 26px 70px rgba(95, 58, 68, .22);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.media-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.media-frame figcaption {
  padding: .85rem 1rem;
  color: var(--wood-dark);
  font-size: .92rem;
  background: rgba(253, 251, 247, .96);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto 1.65rem;
  text-align: center;
}

.section-heading.narrow {
  width: min(760px, 100%);
}

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

.systems-showcase {
  display: block;
}

.system-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}

.system-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 1rem;
  min-height: 168px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(108, 72, 82, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.system-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(244, 167, 185, .34);
  color: var(--rose-deep);
  font-weight: 900;
  letter-spacing: .02em;
}

.system-card h3 {
  margin-bottom: .5rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.system-card p {
  color: var(--muted);
}

.system-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .96);
  border-color: rgba(244, 167, 185, .68);
  box-shadow: 0 18px 46px rgba(108, 72, 82, .14);
}

.guide-section {
  background: linear-gradient(180deg, #fff, var(--cream-2));
}

.guide-grid {
  align-items: start;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.guide-intro {
  position: static;
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.guide-intro p {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: .72rem;
  width: min(920px, 100%);
  margin: 0 auto;
}

.timeline article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: .9rem;
  padding: .85rem .9rem .85rem .9rem;
  border-left: 3px solid var(--rose);
  background: rgba(255, 255, 255, .72);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.timeline article:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, .94);
  border-left-color: var(--rose-strong);
  box-shadow: 0 14px 34px rgba(108, 72, 82, .12);
}

.timeline span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--ink);
  font-weight: 900;
}

.timeline h3 {
  grid-column: 2;
  align-self: end;
}

.timeline p {
  grid-column: 2;
  margin: .35rem 0 0;
  color: var(--muted);
}

.route-section {
  background: var(--cream);
}

.check-list {
  display: grid;
  gap: .7rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.check-list li {
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.feature-grid article {
  padding: 1.05rem;
}

.feature-grid h3 {
  margin: .8rem 0 .45rem;
}

.updates-section {
  background:
    linear-gradient(180deg, rgba(244, 167, 185, .18), transparent 260px),
    linear-gradient(135deg, var(--cream), var(--cream-2));
  color: var(--ink);
}

.updates-heading {
  margin-bottom: 2.4rem;
}

.updates-heading .section-kicker {
  margin-bottom: .35rem;
  color: var(--wood-dark);
  font-size: .82rem;
  letter-spacing: .04em;
}

.updates-heading h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: var(--rose-deep);
  font-weight: 900;
}

.updates-heading h2::before {
  content: "";
  width: 4px;
  height: .92em;
  background: var(--rose-strong);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(231, 127, 154, .42);
}

.updates-heading p:not(.section-kicker) {
  width: min(760px, 100%);
  margin: .85rem auto 0;
  color: var(--muted);
}

.updates-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  width: min(920px, 100%);
  margin: 0 auto;
}

.updates-list article {
  display: grid;
  grid-template-columns: 150px max-content 1fr;
  align-items: center;
  column-gap: 1.2rem;
  min-height: 68px;
  padding: .95rem 1.45rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(168, 144, 128, .28);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(108, 72, 82, .08);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.updates-list article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .96);
  border-color: rgba(244, 167, 185, .68);
  box-shadow: inset 4px 0 0 var(--rose-strong), 0 18px 44px rgba(108, 72, 82, .14);
}

.updates-list article:hover time,
.updates-list article:hover h3 {
  color: var(--rose-deep);
}

.updates-list article:hover p {
  color: var(--ink);
}

.updates-list time {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--rose-deep);
  font-weight: 900;
  letter-spacing: .02em;
}

.updates-list h3 {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  white-space: nowrap;
}

.updates-list p {
  display: block;
  color: var(--muted);
}

.faq-section {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.faq-intro {
  position: static;
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.faq-intro p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: .62rem;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 850;
  list-style: none;
  transition: color .2s ease, background .2s ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--rose-deep);
  background: rgba(244, 167, 185, .1);
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--rose-deep);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 1.1rem 1rem;
}

.final-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, var(--ink), #5f3a44);
  color: #fff;
}

.final-inner {
  justify-content: space-between;
  gap: 2rem;
}

.final-inner p {
  color: rgba(255, 255, 255, .76);
  margin: .8rem 0 0;
  max-width: 700px;
}

.friend-links {
  padding: clamp(2.6rem, 5vw, 4.8rem) 0;
  background:
    linear-gradient(90deg, rgba(40, 32, 35, .94), rgba(155, 67, 91, .94) 52%, rgba(231, 127, 154, .92)),
    var(--rose-deep);
  color: #fff;
}

.friend-links-inner {
  display: grid;
  justify-items: center;
  gap: 1.45rem;
  text-align: center;
}

.friend-links h2 {
  color: #ffe874;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(40, 32, 35, .24);
}

.friend-link-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .72rem;
  width: min(920px, 100%);
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.18rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 14px 30px rgba(40, 32, 35, .16);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 232, 116, .74);
  background: rgba(255, 255, 255, .24);
  color: #fff8cf;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 18px 36px rgba(40, 32, 35, .24);
}

.site-footer {
  padding: 1.4rem 0;
  background: #1d1719;
  color: rgba(255, 255, 255, .72);
}

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

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inner a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header-h) - 4px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .8rem;
    background: rgba(253, 251, 247, .98);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .quick-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .systems-showcase {
    grid-template-columns: 1fr;
  }

  .system-layout {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reversed,
  .guide-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .guide-intro,
  .faq-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 2.5rem;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(31, 19, 23, .9), rgba(31, 19, 23, .5));
  }

  .hero-stats,
  .quick-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .system-layout {
    grid-template-columns: 1fr;
  }

  .system-card {
    grid-template-columns: 44px 1fr;
    min-height: auto;
  }

  .updates-list article {
    grid-template-columns: 1fr;
    gap: .35rem;
    align-items: start;
  }

  .updates-list h3,
  .updates-list p {
    display: block;
  }

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

  .timeline article {
    grid-template-columns: 44px 1fr;
    padding-left: .75rem;
  }

  .friend-link-list {
    gap: .6rem;
  }

  .friend-link-list a {
    width: 100%;
    max-width: 420px;
    padding-inline: 1rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
