:root {
  --color-bg: #1a1a2e;
  --color-bg-raised: #262640;
  --color-panel: #fdf0d5;
  --color-card: #fdf0d5;
  --color-ink: #222;
  --color-body-text: #fdf0d5;
  --color-muted: #b8b8c6;
  --color-line: rgba(253, 240, 213, 0.22);
  --color-line-soft: rgba(0, 0, 0, 0.14);
  --color-orange: #ff9f1c;
  --color-pink: #e71d36;
  --color-teal: #2ec4b6;
  --color-yellow: #ffd166;
  --color-green: #06d6a0;
  --color-blue: #118ab2;
  --color-purple: #8338ec;
  --color-deep: #1a1a2e;
  --color-gray: #333;
  --color-light: #f8f9fa;
  --font-headline: Impact, 'Arial Black', sans-serif;
  --font-body: 'Rubik', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --radius: 1rem;
  --shadow-pop: 6px 6px 0 rgba(0, 0, 0, 0.28);
  --content-max: 1180px;
  --rail-width: 2.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-body-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

#main-content {
  scroll-margin-top: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  color: inherit;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
}

.site-header :focus-visible {
  outline-color: var(--color-deep);
}

@media (min-width: 901px) {
  body {
    padding-left: var(--rail-width);
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 2000;
  background: var(--color-yellow);
  color: var(--color-deep);
  padding: 0.7rem 1rem;
  border-radius: 0 0 0.6rem 0.6rem;
  font-family: var(--font-headline);
  text-decoration: none;
  text-transform: uppercase;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 2100;
  pointer-events: none;
  --scroll-width: 0%;
}

.scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--scroll-width);
  background: linear-gradient(90deg, var(--color-pink), var(--color-yellow));
  transition: width 0.08s linear;
}

.site-rail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail-width);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-pink);
  color: var(--color-deep);
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.site-rail__text::before {
  content: "✦ ";
}

.site-rail__text::after {
  content: " ✦";
}

.site-header {
  position: relative;
  background: var(--color-yellow);
  color: var(--color-ink);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.header-shell {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
  padding-top: 0.6rem;
}

.masthead {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.7rem 0 0.8rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 2.3rem;
}

.brand-mark__cell {
  display: block;
  width: 0.6rem;
  border-radius: 2px 2px 0 0;
}

.brand-mark__cell--a {
  height: 1.4rem;
  background: var(--color-pink);
}

.brand-mark__cell--b {
  height: 0.9rem;
  background: var(--color-teal);
}

.brand-mark__cell--c {
  height: 2.2rem;
  background: var(--color-deep);
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--color-deep);
}

.brand-tagline {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.68);
}

.masthead__memo {
  margin-left: auto;
  padding: 0.3rem 0.7rem;
  background: var(--color-panel);
  color: var(--color-deep);
  font-family: var(--font-headline);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  text-transform: uppercase;
}

.masthead__side {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.masthead__edition {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.68);
}

.masthead__status {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--color-deep);
  color: var(--color-yellow);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-wrap {
  background: var(--color-deep);
  color: var(--color-body-text);
}

.nav-wrap__inner {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.2rem;
  padding-block: 0.25rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--color-body-text);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle__bar {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__text {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  min-width: 0;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  color: var(--color-body-text);
  text-decoration: none;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-list a:hover {
  background: var(--color-yellow);
  color: var(--color-deep);
}

.nav-list a[aria-current="page"] {
  background: var(--color-yellow);
  color: var(--color-deep);
}

@media (max-width: 900px) {
  .site-rail {
    display: none;
  }

  body {
    padding-left: 0;
  }
}

@media (max-width: 820px) {
  .nav-wrap__inner {
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    transition: grid-template-rows 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-nav[data-open] {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .nav-list a {
    border-radius: 0.6rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .masthead__memo,
  .masthead__edition {
    display: none;
  }
}

.site-footer {
  margin-top: auto;
  background: var(--color-deep);
  color: var(--color-body-text);
  border-top: 0.45rem solid var(--color-teal);
}

.footer-shell {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.footer-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-body-text);
  text-decoration: none;
}

.footer-brand__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  border-radius: 0.6rem 1rem 0.6rem 0.6rem;
  transform: rotate(-3deg);
}

.footer-brand__text {
  display: grid;
  gap: 0.15rem;
}

.footer-brand__text strong {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  line-height: 1;
}

.footer-brand__text span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-title {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(255, 209, 102, 0.35);
  margin-bottom: 0.75rem;
}

.footer-nav,
.footer-meta,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-nav__list,
.footer-meta__list,
.footer-contact__list {
  display: grid;
  gap: 0.35rem;
  list-style: none;
}

.footer-nav__list a,
.footer-meta__list a,
.footer-contact__list a {
  display: inline-block;
  padding: 0.2rem 0;
  color: var(--color-body-text);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav__list a:hover,
.footer-meta__list a:hover,
.footer-contact__list a:hover {
  color: var(--color-yellow);
  transform: translateX(2px);
}

.footer-contact__list li {
  font-size: 0.9rem;
  color: var(--color-body-text);
}

.footer-contact__email::before {
  content: "邮箱：";
  color: var(--color-yellow);
}

.footer-contact__tel::before {
  content: "电话：";
  color: var(--color-yellow);
}

.footer-contact__address::before {
  content: "地址：";
  color: var(--color-yellow);
}

.footer-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-bar {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 1rem 0 1.25rem;
}

.footer-bar__text,
.footer-icp {
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (max-width: 960px) {
  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bar {
    justify-content: center;
    text-align: center;
  }
}

.container {
  width: min(100% - 2rem, var(--content-max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.section--orange {
  background: var(--color-orange);
  color: var(--color-deep);
}

.section--pink {
  background: var(--color-pink);
  color: #fff;
}

.section--teal {
  background: var(--color-teal);
  color: var(--color-deep);
}

.section--yellow {
  background: var(--color-yellow);
  color: var(--color-deep);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 1.2rem;
}

.section-head__title {
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  line-height: 0.95;
}

.section-head__title::before {
  content: "#";
  color: var(--color-pink);
  margin-right: 0.25rem;
}

.section-head__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-band {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 1.5rem 0 1rem;
  border-bottom: 4px solid var(--color-yellow);
  margin-bottom: 2rem;
}

.hero-band__title {
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 0.9;
}

.hero-band__lead {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.panel {
  background: var(--color-panel);
  color: var(--color-ink);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.panel--deep {
  background: var(--color-bg-raised);
  color: var(--color-body-text);
}

.panel--orange {
  background: var(--color-orange);
  color: var(--color-deep);
}

.panel--pink {
  background: var(--color-pink);
  color: #fff;
}

.panel--teal {
  background: var(--color-teal);
  color: var(--color-deep);
}

.panel--yellow {
  background: var(--color-yellow);
  color: var(--color-deep);
}

.panel__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-deep);
  border: 2px solid transparent;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.btn--pink {
  background: var(--color-pink);
  color: #fff;
}

.btn--teal {
  background: var(--color-teal);
  color: var(--color-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--color-body-text);
  border-color: currentColor;
}

.btn--small {
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-yellow);
  text-decoration: none;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--color-muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr));
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--color-card);
  color: var(--color-ink);
  border-radius: calc(var(--radius) * 0.8);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-pop);
}

.card__cover {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-teal), var(--color-deep));
}

.card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 8px, transparent 8px 16px);
  pointer-events: none;
}

.card__cover--orange {
  background: linear-gradient(135deg, var(--color-orange), var(--color-pink));
}

.card__cover--pink {
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
}

.card__cover--teal {
  background: linear-gradient(135deg, var(--color-teal), var(--color-blue));
}

.card__cover--yellow {
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
}

.card__cover--purple {
  background: linear-gradient(135deg, var(--color-purple), var(--color-blue));
}

.card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
}

.card__meta {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
}

.card__title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.card__caption {
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.75);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
  gap: 1rem;
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 9rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--color-panel);
  color: var(--color-ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-pop);
}

.tile--orange {
  background: var(--color-orange);
  color: var(--color-deep);
}

.tile--pink {
  background: var(--color-pink);
  color: #fff;
}

.tile--teal {
  background: var(--color-teal);
  color: var(--color-deep);
}

.tile--purple {
  background: var(--color-purple);
  color: #fff;
}

.tile--yellow {
  background: var(--color-yellow);
  color: var(--color-deep);
}

.tile__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.tile__count {
  font-size: 0.9rem;
  font-weight: 700;
}

.entry-list {
  list-style: none;
}

.entry-row {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-line);
}

.entry-row:last-child {
  border-bottom: 0;
}

.entry-row__rank {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-orange);
}

.entry-row__main {
  min-width: 0;
}

.entry-row__title {
  display: block;
  font-weight: 700;
}

.entry-row__meta {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.entry-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: flex-end;
}

.entry-list--panel .entry-row {
  border-color: var(--color-line-soft);
}

.entry-list--panel .entry-row__meta {
  color: rgba(51, 51, 51, 0.7);
}

@media (max-width: 640px) {
  .entry-row {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.5rem 0.8rem;
  }

  .entry-row__tags {
    grid-column: 2;
    justify-content: flex-start;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--color-light);
  color: var(--color-gray);
}

.badge--done {
  background: var(--color-green);
  color: #000;
}

.badge--ongoing {
  background: var(--color-blue);
  color: #fff;
}

.badge--complete {
  background: var(--color-purple);
  color: #fff;
}

.badge--new {
  background: var(--color-pink);
  color: #fff;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  background: var(--color-panel);
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.tag--orange {
  background: var(--color-orange);
  color: var(--color-deep);
}

.tag--pink {
  background: var(--color-pink);
  color: #fff;
}

.tag--teal {
  background: var(--color-teal);
  color: var(--color-deep);
}

.tag--yellow {
  background: var(--color-yellow);
  color: var(--color-deep);
}

.tag--purple {
  background: var(--color-purple);
  color: #fff;
}

.tag--blue {
  background: var(--color-blue);
  color: #fff;
}

.tag--green {
  background: var(--color-green);
  color: #000;
}

.rank-no {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  line-height: 1;
  background: var(--color-yellow);
  color: var(--color-deep);
  border-radius: 0.6rem;
  transform: rotate(-3deg);
}

.rank-no--pink {
  background: var(--color-pink);
  color: #fff;
}

.rank-no--teal {
  background: var(--color-teal);
  color: var(--color-deep);
}

.meter__label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.meter {
  width: 100%;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.meter__fill {
  display: block;
  height: 100%;
  background: var(--color-yellow);
}

.meter--green .meter__fill {
  background: var(--color-green);
}

.meter--pink .meter__fill {
  background: var(--color-pink);
}

.meter--teal .meter__fill {
  background: var(--color-teal);
}

.meter--blue .meter__fill {
  background: var(--color-blue);
}

.index-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem;
  background: var(--color-bg-raised);
  border-radius: 999px;
}

.index-strip a {
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: var(--color-panel);
  color: var(--color-ink);
  font-family: var(--font-headline);
  font-size: 0.95rem;
  text-decoration: none;
}

.index-strip a:hover,
.index-strip a[aria-current="true"] {
  background: var(--color-yellow);
  color: var(--color-deep);
}

.index-strip--wide {
  border-radius: 1rem;
  justify-content: space-between;
}

.h-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.h-track > * {
  flex: 0 0 min(78%, 280px);
  scroll-snap-align: start;
}

.h-track--cards > * {
  flex-basis: min(72%, 220px);
}

.h-track::-webkit-scrollbar {
  height: 8px;
}

.h-track::-webkit-scrollbar-thumb {
  background: var(--color-yellow);
  border-radius: 999px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table caption {
  text-align: left;
  font-family: var(--font-headline);
  padding-bottom: 0.5rem;
  color: var(--color-yellow);
}

.spec-table th,
.spec-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  font-size: 0.9rem;
}

.spec-table th {
  font-family: var(--font-headline);
  letter-spacing: 0.04em;
  color: var(--color-yellow);
  white-space: nowrap;
}

.spec-table tbody tr:hover {
  background: rgba(255, 209, 102, 0.08);
}

.spec-table--panel th,
.spec-table--panel td {
  border-color: var(--color-line-soft);
}

.spec-table--panel th {
  color: var(--color-pink);
}

.fold-group {
  display: grid;
  gap: 0.75rem;
}

.fold {
  background: var(--color-bg-raised);
  border-radius: var(--radius);
  padding: 1rem;
}

.fold summary {
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: 1rem;
  list-style: none;
}

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

.fold[open] summary {
  margin-bottom: 0.5rem;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .card:hover,
  .tile:hover,
  .btn:hover {
    transform: none;
  }
}
