:root {
  --ink: #1c2333;
  --muted: #5d697f;
  --paper: #fffaf2;
  --paper-strong: #fff3df;
  --night: #152238;
  --night-soft: #22314c;
  --teal: #3e9f9a;
  --rose: #ff6699;
  --gold: #e9b44c;
  --line: rgba(28, 35, 51, .14);
  --shadow: 0 20px 55px rgba(21, 34, 56, .18);
  --radius: 8px;
  --container: min(1140px, calc(100% - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7f4ec 40%, #eef6f5 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.7;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 102, 153, .56);
  outline-offset: 3px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--night);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(21, 34, 56, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(21, 34, 56, .96);
  box-shadow: 0 12px 30px rgba(21, 34, 56, .18);
}

.nav {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .55);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .88);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--rose);
  background: rgba(255, 255, 255, .12);
}

.nav-links .nav-download {
  margin-left: 6px;
  color: #fff;
  background: var(--rose);
  box-shadow: 0 10px 22px rgba(255, 102, 153, .28);
}

.nav-links .nav-download:hover,
.nav-links .nav-download:focus {
  color: #fff;
  background: #ff4f8a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 140px 0 70px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-bg {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 21, 35, .88) 0%, rgba(14, 21, 35, .55) 46%, rgba(14, 21, 35, .18) 100%),
    linear-gradient(0deg, rgba(14, 21, 35, .88) 0%, rgba(14, 21, 35, .12) 45%, rgba(14, 21, 35, .28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: end;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--rose);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .46);
}

.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 19px;
}

.text-accent {
  color: var(--rose);
  font-weight: 900;
}

.lead .text-accent,
.download-band .text-accent,
.site-footer .text-accent {
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg,
.stat-item svg,
.feature-card svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #ff4f8a);
  box-shadow: 0 12px 26px rgba(255, 102, 153, .34);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .12);
}

.btn.compact {
  margin-top: 18px;
}

.hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(21, 34, 56, .72);
  box-shadow: var(--shadow);
}

.hero-panel dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.hero-panel div {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel dt {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.hero-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.intro-band {
  background: var(--night);
  color: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}

.stat-item {
  display: grid;
  gap: 6px;
  padding: 26px;
  background: var(--night);
}

.stat-item svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.stat-item strong {
  font-size: 18px;
}

.stat-item span {
  color: rgba(255, 255, 255, .72);
}

.section,
.gallery-section,
.download-band {
  padding: 86px 0;
}

.two-column,
.guide-layout,
.faq-layout,
.download-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
}

.section-muted {
  background: rgba(255, 243, 223, .7);
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--rose);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--night);
  font-size: 20px;
  line-height: 1.35;
}

.section-copy p:not(.section-kicker),
.section-heading p,
.feature-card p,
.guide-list p,
.timeline-item p,
.faq-list p,
.download-inner p {
  color: var(--muted);
}

.media-frame,
.gallery-main {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 34px rgba(21, 34, 56, .08);
}

.feature-card svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  margin-bottom: 14px;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.gallery-main {
  position: relative;
  background: var(--night);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-main figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(21, 34, 56, .76);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.gallery-side {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  min-height: 126px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 16px;
  color: #fff;
  background: #18121b;
  border: 1px solid rgba(255, 102, 153, .26);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  text-align: left;
  border-color: rgba(255, 102, 153, .26);
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gallery-item:hover,
.gallery-item:focus {
  border-color: rgba(255, 102, 153, .68);
  transform: translateY(-2px);
}

.gallery-item.is-active {
  border-color: rgba(255, 102, 153, .9);
  box-shadow: 0 0 0 1px rgba(255, 102, 153, .2), 0 18px 40px rgba(255, 102, 153, .16);
}

.gallery-item img {
  width: 120px;
  height: 74px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--night);
}

.gallery-item span {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.guide-layout {
  align-items: start;
}

.guide-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  counter-reset: guide;
}

.guide-list li {
  position: relative;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(21, 34, 56, .08);
  counter-increment: guide;
}

.guide-list li::before {
  content: counter(guide, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  font-size: 13px;
}

.guide-list p {
  margin: 8px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .24);
  background: var(--night);
  color: #fff;
  box-shadow: var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 0 0 4px 4px;
}

.timeline-item time {
  color: var(--gold);
  font-weight: 900;
}

.timeline-item h3 {
  color: #fff;
  margin-top: 12px;
}

.timeline-item p {
  color: rgba(255, 255, 255, .72);
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 34, 56, .07);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--night);
  font-weight: 900;
  list-style: none;
}

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

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

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

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.download-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 34, 56, .96), rgba(34, 49, 76, .94)),
    url("img/tu3.jpg") center / cover;
}

.download-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.download-inner h2 {
  color: var(--rose);
}

.download-inner p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.friend-links {
  padding: 42px 0 46px;
  background: rgba(255, 102, 153, .16);
}

.friend-links-inner {
  text-align: center;
}

.friend-links h2 {
  color: #2a1d28;
  font-size: clamp(24px, 3vw, 34px);
}

.friend-link-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 22px;
  color: #2a1d28;
  background: #fff;
  border: 1px solid rgba(255, 102, 153, .22);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(255, 102, 153, .16);
  font-weight: 900;
  line-height: 1.35;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.friend-link-list a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  transition: transform .22s var(--ease);
}

.friend-link-list a:hover,
.friend-link-list a:focus {
  color: var(--rose);
  border-color: rgba(255, 102, 153, .5);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 102, 153, .24);
}

.friend-link-list a:hover svg,
.friend-link-list a:focus svg {
  transform: translateY(-1px) scale(1.08);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, .72);
  background: #10192b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-inner,
  .two-column,
  .guide-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

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

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

  .gallery-main img {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1140px);
  }

  .nav {
    min-height: 64px;
  }

  .brand span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 8px;
    background: rgba(21, 34, 56, .98);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
    justify-content: flex-start;
  }

  .nav-links .nav-download {
    margin-left: 0;
    margin-top: 4px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 21, 35, .54) 0%, rgba(14, 21, 35, .78) 45%, rgba(14, 21, 35, .96) 100%);
  }

  .lead {
    font-size: 17px;
  }

  .hero-panel {
    padding: 18px;
  }

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

  .section,
  .gallery-section,
  .download-band {
    padding: 62px 0;
  }

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

  .gallery-side {
    grid-template-rows: none;
  }

  .gallery-item {
    min-height: 96px;
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 12px;
  }

  .gallery-item img {
    width: 96px;
    height: 60px;
  }

  .guide-list li {
    padding: 18px 18px 18px 64px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .friend-links {
    padding: 34px 0 38px;
  }

  .friend-link-list {
    gap: 10px;
  }

  .friend-link-list a {
    width: 100%;
    max-width: 360px;
    min-height: 44px;
    padding: 10px 16px;
  }

}

@media (max-width: 430px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .brand span {
    max-width: 158px;
  }

  h1 {
    font-size: 32px;
  }
}

.nav-links a {
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.nav-links a:not(.nav-download) {
  position: relative;
}

.nav-links a:not(.nav-download)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus {
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .36) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
}

.btn:hover::before,
.btn:focus::before {
  transform: translateX(120%);
}

.btn:hover svg,
.btn:focus svg,
.nav-links a:hover svg,
.nav-links a:focus svg,
.nav-links a:hover svg,
.nav-links a:focus svg {
  transform: translateY(-1px) scale(1.08);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 16px 34px rgba(255, 102, 153, .45);
}

.hero-panel,
.media-frame,
.gallery-main,
.feature-card,
.guide-list li,
.timeline-item,
details,
.stat-item {
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.hero-panel:hover,
.media-frame:hover,
.gallery-main:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 102, 153, .48);
  box-shadow: 0 26px 68px rgba(21, 34, 56, .22);
}

.media-frame img,
.gallery-main img,
.gallery-item img {
  transition: transform .5s var(--ease), filter .5s var(--ease);
}

.media-frame:hover img,
.gallery-main:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.stat-item:hover {
  background: var(--night-soft);
  transform: translateY(-2px);
}

.stat-item svg,
.feature-card svg,
.nav-links a svg,
.btn svg {
  transition: transform .22s var(--ease), color .22s var(--ease);
}

.stat-item:hover svg,
.feature-card:hover svg {
  color: var(--rose);
  transform: rotate(-4deg) scale(1.1);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 102, 153, .14), transparent 45%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 102, 153, .42);
  background: #fff;
  box-shadow: 0 22px 48px rgba(21, 34, 56, .14);
}

.feature-card:hover::before {
  opacity: 1;
}

.gallery-item:hover,
.gallery-item:focus {
  background: #211421;
  box-shadow: 0 14px 34px rgba(255, 102, 153, .14);
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.guide-list li:hover {
  transform: translateX(4px);
  border-color: rgba(255, 102, 153, .36);
  box-shadow: 0 18px 42px rgba(21, 34, 56, .12);
}

.guide-list li::before {
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.guide-list li:hover::before {
  background: var(--rose);
  transform: scale(1.06);
}

.timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 102, 153, .5);
  box-shadow: 0 24px 58px rgba(21, 34, 56, .24);
}

.timeline-item::before {
  transition: background .25s var(--ease);
}

.timeline-item:hover::before {
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

details:hover,
details[open] {
  border-color: rgba(255, 102, 153, .36);
  box-shadow: 0 16px 38px rgba(21, 34, 56, .11);
}

details:hover {
  transform: translateY(-2px);
}

summary {
  transition: color .2s var(--ease);
}

details:hover summary,
details[open] summary {
  color: var(--rose);
}

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