:root {
  color-scheme: dark;
  --midnight: #070a12;
  --midnight-soft: #0d111d;
  --iron: #151a25;
  --iron-light: #252c3a;
  --gold: #c9a65b;
  --gold-bright: #ecd28f;
  --violet: #8057b7;
  --violet-bright: #b999e2;
  --red: #9e3438;
  --parchment: #f2e7ce;
  --parchment-muted: #c9bea8;
  --display: "Copperplate Gothic Light", Copperplate, "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --utility: Consolas, "Courier New", monospace;
  --cut: 12px;
  --page-gutter: clamp(1rem, 3vw, 3rem);
  --frame-shadow: 0 16px 36px rgb(0 0 0 / 46%);
}

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

html {
  min-height: 100%;
  background: var(--midnight);
  scroll-behavior: smooth;
}

html.dossier-open,
body.dossier-open {
  overflow: hidden;
}

body {
  min-width: 18rem;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--midnight);
  color: var(--parchment);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

body::before {
  z-index: 0;
  background-image: url("/assets/citadel-backdrop.webp");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(72%) brightness(64%);
  transform: scale(1.015);
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 34%, rgb(7 10 18 / 22%) 0 22%, rgb(7 10 18 / 72%) 78%),
    linear-gradient(180deg, rgb(5 7 13 / 55%) 0%, rgb(5 7 13 / 48%) 34%, rgb(5 7 13 / 82%) 100%);
}

a {
  color: var(--gold-bright);
}

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gold-bright);
  background: var(--midnight);
  color: var(--parchment);
  font-family: var(--utility);
  font-size: 0.78rem;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  isolation: isolate;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    112deg,
    transparent 0,
    transparent 4px,
    rgb(242 231 206 / 1.3%) 5px,
    transparent 6px
  );
  content: "";
  pointer-events: none;
}

.masthead {
  position: relative;
  z-index: 5;
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem var(--page-gutter);
  border-bottom: 1px solid rgb(201 166 91 / 38%);
  background: linear-gradient(180deg, rgb(7 10 18 / 94%), rgb(7 10 18 / 74%));
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
  backdrop-filter: blur(8px);
}

.masthead::after {
  position: absolute;
  right: var(--page-gutter);
  bottom: -2px;
  left: var(--page-gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0.55;
}

.brand {
  color: var(--parchment);
  font-family: var(--display);
  font-size: clamp(0.88rem, 1.5vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 2px 12px rgb(0 0 0 / 80%);
}

.brand::first-letter {
  color: var(--gold-bright);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 1.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid transparent;
  color: var(--parchment-muted);
  font-family: var(--utility);
  font-size: clamp(0.64rem, 1vw, 0.76rem);
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, text-shadow 160ms ease;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible,
.primary-nav__item[data-active="true"] .primary-nav__link {
  border-color: var(--gold);
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgb(201 166 91 / 35%);
}

.primary-nav__link:focus-visible,
.brand:focus-visible,
.collection-link:focus-visible,
.collection-external-link:focus-visible,
.voicepack-card__download:focus-visible,
.voicepack-guide__summary:focus-visible,
.voicepack-external-link:focus-visible,
.links-card__link:focus-visible,
.weidu-log__summary:focus-visible,
.weidu-log__download:focus-visible,
.dossier-download__link:focus-visible,
.recovery-panel__link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.page-main {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 5vh, 4.5rem) var(--page-gutter) clamp(3rem, 7vh, 6rem);
}

.page {
  animation: page-arrive 440ms cubic-bezier(0.22, 0.75, 0.18, 1) both;
}

.page-header {
  position: relative;
  max-width: 68rem;
  margin: 0 auto clamp(1.6rem, 4vh, 3.2rem);
  text-align: center;
}

.page-header::after {
  display: block;
  width: min(18rem, 58vw);
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, rgb(201 166 91 / 88%), transparent);
  content: "";
}

.page-header__eyebrow,
.dossier__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: clamp(0.66rem, 1.2vw, 0.82rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-header__title {
  margin: 0;
  color: var(--parchment);
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.4vw, 6.6rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow:
    0 3px 0 rgb(82 54 28 / 85%),
    0 7px 24px rgb(0 0 0 / 92%),
    0 0 34px rgb(128 87 183 / 16%);
  text-transform: uppercase;
}

.page-header__introduction {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--parchment-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  letter-spacing: 0.025em;
  text-wrap: balance;
}

.fighter-roster {
  display: grid;
  width: min(100%, 78rem);
  align-items: stretch;
  justify-content: center;
  grid-template-columns: repeat(7, minmax(7rem, 10rem));
  gap: clamp(0.5rem, 0.9vw, 0.85rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.fighter-card {
  position: relative;
  min-width: 0;
  padding: 2px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--gold-bright), #6f5831 42%, #302817 72%, var(--gold));
  box-shadow: var(--frame-shadow);
  clip-path: polygon(
    var(--cut) 0,
    calc(100% - var(--cut)) 0,
    100% var(--cut),
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    var(--cut) 100%,
    0 calc(100% - var(--cut)),
    0 var(--cut)
  );
  transform: translateY(0);
  transition: filter 180ms ease, transform 180ms ease;
  animation: roster-arrive 520ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.fighter-card:nth-child(2) { animation-delay: 35ms; }
.fighter-card:nth-child(3) { animation-delay: 70ms; }
.fighter-card:nth-child(4) { animation-delay: 105ms; }
.fighter-card:nth-child(5) { animation-delay: 140ms; }
.fighter-card:nth-child(6) { animation-delay: 175ms; }
.fighter-card:nth-child(7) { animation-delay: 210ms; }

.fighter-card::after {
  position: absolute;
  inset: 5px;
  z-index: 2;
  border: 1px solid rgb(242 231 206 / 15%);
  content: "";
  clip-path: inherit;
  pointer-events: none;
}

.fighter-card__button,
.fighter-card__locked {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  grid-template-rows: auto minmax(3.55rem, auto) minmax(2.5rem, auto);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--iron);
  color: var(--parchment);
  clip-path: inherit;
}

.fighter-card__button {
  cursor: pointer;
  text-align: left;
}

.fighter-card__button:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: -6px;
}

.fighter-card__portrait {
  width: 100%;
  aspect-ratio: 7 / 11;
  background: var(--midnight-soft);
  filter: brightness(84%) saturate(82%);
  object-fit: cover;
  object-position: center top;
  transition: filter 180ms ease, transform 220ms ease;
}

.fighter-card__name {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.42rem 0.42rem;
  border-top: 1px solid rgb(201 166 91 / 48%);
  background: linear-gradient(180deg, rgb(30 36 48 / 98%), rgb(12 15 23));
  color: var(--parchment);
  font-family: var(--display);
  font-size: clamp(0.69rem, 0.95vw, 0.91rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 8px #000;
  text-transform: uppercase;
}

.fighter-card__builds {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 2.5rem;
  align-items: flex-start;
  justify-content: center;
  padding: 0.38rem 0.4rem 0.52rem;
  background: #0c0f17;
  color: var(--parchment-muted);
  font-family: var(--utility);
  font-size: clamp(0.52rem, 0.72vw, 0.65rem);
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.fighter-card--available::before {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(circle, rgb(128 87 183 / 48%), transparent 62%);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

@media (hover: hover) {
  .fighter-card--available:hover {
    z-index: 3;
    filter: drop-shadow(0 0 12px rgb(201 166 91 / 50%));
    transform: translateY(-0.65rem) scale(1.025);
  }

  .fighter-card--available:hover::before,
  .fighter-card--available:focus-within::before {
    opacity: 1;
  }

  .fighter-card--available:hover .fighter-card__portrait,
  .fighter-card--available:focus-within .fighter-card__portrait {
    filter: brightness(103%) saturate(104%);
    transform: scale(1.018);
  }
}

.fighter-card--available:focus-within {
  z-index: 3;
  filter: drop-shadow(0 0 13px rgb(236 210 143 / 58%));
}

.fighter-card--dead {
  background: linear-gradient(145deg, #756d61, #423d38 46%, #271d1e 78%, #765052);
  box-shadow: 0 12px 30px rgb(0 0 0 / 58%);
}

.fighter-card--dead .fighter-card__portrait {
  filter: grayscale(100%) brightness(46%) contrast(108%);
}

.fighter-card--dead .fighter-card__name,
.fighter-card--dead .fighter-card__builds {
  border-color: rgb(154 142 126 / 35%);
  color: #a9a397;
}

.fighter-card--dead:focus-within {
  z-index: 3;
  filter: drop-shadow(0 0 10px rgb(158 52 56 / 48%));
}

.fighter-card--locked {
  background: repeating-linear-gradient(135deg, #111620 0 9px, #0b0f17 9px 18px);
  filter: grayscale(35%);
  opacity: 0.84;
}

.fighter-card__locked {
  grid-template-rows: 1fr minmax(3.55rem, auto);
  cursor: not-allowed;
}

.fighter-card__locked::before {
  display: grid;
  min-height: 0;
  aspect-ratio: 7 / 11;
  place-items: center;
  background:
    radial-gradient(circle, rgb(201 166 91 / 11%), transparent 40%),
    linear-gradient(135deg, rgb(255 255 255 / 3%), transparent 48%);
  color: rgb(201 166 91 / 35%);
  content: "?";
  font-family: var(--display);
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 1;
  text-shadow: 0 0 30px rgb(128 87 183 / 28%);
}

.fighter-card__locked .fighter-card__name {
  grid-row: 2;
}

.fighter-card__status {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  z-index: 1;
  padding: 0.24rem 0.55rem;
  border: 1px solid rgb(201 166 91 / 30%);
  background: rgb(7 10 18 / 86%);
  color: var(--gold);
  font-family: var(--utility);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.fighter-card__status--dead {
  z-index: 4;
  border-color: rgb(242 231 206 / 48%);
  background: rgb(92 24 28 / 92%);
  color: #fff4df;
  font-weight: 700;
  text-transform: uppercase;
}

.dossier {
  width: min(94vw, 61rem);
  max-width: none;
  max-height: min(90dvh, 48rem);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--parchment);
}

.dossier::backdrop {
  background: radial-gradient(circle at center, rgb(22 17 32 / 45%), rgb(2 3 7 / 92%));
  backdrop-filter: blur(5px);
}

.dossier[open] {
  animation: dossier-arrive 240ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.dossier__panel {
  position: relative;
  display: grid;
  max-height: min(90dvh, 48rem);
  overflow: hidden;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgb(37 44 58 / 97%), rgb(9 12 19 / 99%) 46%);
  box-shadow: 0 28px 80px rgb(0 0 0 / 82%), 0 0 0 5px rgb(5 7 12 / 86%), 0 0 36px rgb(128 87 183 / 22%);
  clip-path: polygon(1.2rem 0, calc(100% - 1.2rem) 0, 100% 1.2rem, 100% calc(100% - 1.2rem), calc(100% - 1.2rem) 100%, 1.2rem 100%, 0 calc(100% - 1.2rem), 0 1.2rem);
  grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
}

.dossier__panel::after {
  position: absolute;
  inset: 0;
  border: 7px solid rgb(7 10 18 / 42%);
  content: "";
  pointer-events: none;
}

.dossier__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgb(201 166 91 / 60%);
  background: rgb(7 10 18 / 88%);
  color: var(--parchment);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  place-items: center;
}

.dossier__close:hover,
.dossier__close:focus-visible {
  border-color: var(--gold-bright);
  background: var(--red);
  color: #fff;
  outline: none;
}

.dossier__close:focus-visible {
  box-shadow: 0 0 0 3px var(--parchment);
}

.dossier__portrait-frame {
  display: flex;
  min-height: 0;
  align-items: center;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.8rem);
  border-right: 1px solid rgb(201 166 91 / 40%);
  background: radial-gradient(circle at 50% 36%, rgb(128 87 183 / 23%), transparent 55%), #090d15;
}

.dossier__portrait {
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 7 / 11;
  margin: auto;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 5px #080b12, 0 18px 38px rgb(0 0 0 / 65%);
  object-fit: cover;
  object-position: center top;
}

.dossier__copy {
  min-width: 0;
  padding: clamp(2.8rem, 5vw, 4.2rem) clamp(1.4rem, 4vw, 3.6rem) clamp(1.7rem, 4vw, 3.2rem);
  overflow-y: auto;
  scrollbar-color: var(--gold) var(--midnight);
}

.dossier__copy h2 {
  max-width: 12ch;
  margin: 0 0 1.4rem;
  color: var(--parchment);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.4rem);
  letter-spacing: 0.02em;
  line-height: 0.96;
  text-shadow: 0 4px 18px #000;
  text-transform: uppercase;
}

.dossier__details {
  display: grid;
  gap: 1.15rem;
}

.dossier-section {
  padding-top: 1rem;
  border-top: 1px solid rgb(201 166 91 / 28%);
}

.dossier-section__title {
  margin: 0 0 0.65rem;
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dossier-section__list {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dossier-section--builds .dossier-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.dossier-section--builds .dossier-section__item {
  padding: 0.34rem 0.62rem;
  border: 1px solid rgb(128 87 183 / 72%);
  background: rgb(128 87 183 / 13%);
  font-family: var(--utility);
  font-size: 0.75rem;
}

.dossier-section--rules .dossier-section__item {
  position: relative;
  padding-left: 1.15rem;
}

.dossier-section--rules .dossier-section__item::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.dossier-section__copy {
  margin: 0;
  color: var(--parchment-muted);
}

.dossier-downloads__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dossier-download {
  min-width: 0;
}

.dossier-download__link {
  display: grid;
  min-height: 4.2rem;
  align-content: center;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgb(201 166 91 / 62%);
  background: linear-gradient(135deg, rgb(201 166 91 / 12%), rgb(128 87 183 / 9%));
  color: var(--parchment);
  text-decoration: none;
}

.dossier-download__link:hover {
  border-color: var(--gold-bright);
  background: rgb(201 166 91 / 18%);
}

.dossier-download__kind {
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-download__label {
  margin-top: 0.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.dossier-download__note {
  margin: 0.5rem 0 0;
  color: var(--parchment-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.page--rules,
.page--collection,
.page--voicepacks,
.page--weidulog,
.page--links,
.recovery-panel {
  position: relative;
  width: min(100%, 52rem);
  margin: clamp(1rem, 6vh, 4.5rem) auto 0;
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgb(201 166 91 / 55%);
  background: linear-gradient(135deg, rgb(27 33 45 / 94%), rgb(7 10 18 / 96%));
  box-shadow: 0 24px 60px rgb(0 0 0 / 55%), inset 0 0 0 5px rgb(7 10 18 / 48%);
  clip-path: polygon(1rem 0, calc(100% - 1rem) 0, 100% 1rem, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 1rem 100%, 0 calc(100% - 1rem), 0 1rem);
}

.page--collection {
  width: min(100%, 72rem);
}

.page--voicepacks {
  width: min(100%, 60rem);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.page--weidulog {
  width: min(100%, 78rem);
}

.page--rules .page-header,
.page--collection .page-header,
.page--voicepacks .page-header,
.page--weidulog .page-header,
.page--links .page-header {
  margin-bottom: 2rem;
  text-align: left;
}

.page--rules .page-header::after,
.page--collection .page-header::after,
.page--voicepacks .page-header::after,
.page--weidulog .page-header::after,
.page--links .page-header::after {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.page--rules .page-header__title,
.page--collection .page-header__title,
.page--voicepacks .page-header__title,
.page--weidulog .page-header__title,
.page--links .page-header__title {
  font-size: clamp(2.35rem, 6vw, 4.9rem);
}

.page--rules .page-header__introduction,
.page--collection .page-header__introduction,
.page--voicepacks .page-header__introduction,
.page--weidulog .page-header__introduction,
.page--links .page-header__introduction {
  margin-left: 0;
  text-wrap: pretty;
}

.content-status {
  padding: 1.2rem 1.35rem;
  border: 1px solid rgb(128 87 183 / 42%);
  border-left: 3px solid var(--violet);
  background: rgb(7 10 18 / 48%);
}

.content-status__message {
  margin: 0;
  color: var(--parchment-muted);
}

.page--voicepacks .page-header {
  margin-bottom: 0.75rem;
}

.page--voicepacks .page-header::after {
  display: none;
}

.page--voicepacks .page-header__title {
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}

.page--voicepacks .page-header__introduction {
  max-width: 65ch;
  margin-top: 0.6rem;
  font-size: 1rem;
}

.voicepack-external-link {
  color: var(--gold-bright);
  text-underline-offset: 0.22em;
}

.voicepack-guide {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.voicepack-guide__summary {
  width: fit-content;
  min-height: 2.75rem;
  padding: 0.5rem 0;
  color: var(--gold-bright);
  cursor: pointer;
}

.voicepack-guide__copy,
.voicepack-guide__steps {
  max-width: 75ch;
  margin: 0.5rem 0 0;
  color: var(--parchment-muted);
}

.voicepack-guide__steps {
  padding-left: 1.4rem;
}

.voicepack-guide__steps li + li {
  margin-top: 0.3rem;
}

.voicepack-guide[open] {
  padding-bottom: 0.75rem;
}

.voicepack-external-link:hover {
  color: var(--parchment);
}

.voicepack-section__title {
  margin: 0;
  color: var(--parchment);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.7rem;
}

.voicepack-external-projects {
  margin-top: 2.5rem;
}

.voicepack-grid,
.voicepack-external-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.voicepack-card,
.voicepack-card__copy,
.voicepack-external-card {
  min-width: 0;
}

.voicepack-card__body,
.voicepack-external-card__body {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(201 166 91 / 20%);
}

.voicepack-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 2rem;
}

.voicepack-card__title,
.voicepack-external-card__title {
  margin: 0;
  color: var(--parchment);
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.voicepack-card__description,
.voicepack-external-card__description {
  max-width: 70ch;
  margin: 0.3rem 0 0;
  color: var(--parchment-muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.voicepack-card__download {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  justify-self: start;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgb(201 166 91 / 65%);
  border-radius: 3px;
  background: rgb(201 166 91 / 7%);
  color: var(--gold-bright);
  font-size: 0.9rem;
  text-decoration: none;
}

.voicepack-card__download:hover {
  background: var(--gold);
  color: var(--midnight);
}

.voicepack-rights {
  margin-top: 1.5rem;
}

.voicepack-rights__copy,
.voicepack-section__introduction {
  max-width: 72ch;
  margin: 0.5rem 0 0;
  color: var(--parchment-muted);
  font-size: 0.9rem;
}

.voicepack-rights__copy {
  font-size: 0.8rem;
}

.voicepack-external-card__credit {
  max-width: 80ch;
  margin: 0.6rem 0 0;
  color: var(--gold-bright);
  font-size: 0.82rem;
}

.voicepack-external-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.voicepack-external-card__link-item {
  display: inline-flex;
  font-size: 0.85rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.links-card {
  min-width: 0;
}

.links-card__body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid rgb(201 166 91 / 34%);
  background: rgb(7 10 18 / 48%);
}

.links-card__title {
  margin: 0;
  color: var(--parchment);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.links-card__description {
  flex: 1;
  margin: 0.55rem 0 1rem;
  color: var(--parchment-muted);
}

.links-card__link,
.links-card__pending {
  display: inline-flex;
  min-height: 2.65rem;
  align-items: center;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.links-card__link:hover {
  background: rgb(201 166 91 / 10%);
}

.links-card__pending {
  border-color: rgb(201 166 91 / 28%);
  color: var(--parchment-muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.links-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: -0.25rem 0 0.85rem;
  color: var(--parchment-muted);
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.links-live__dot {
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  border: 1px solid currentcolor;
  border-radius: 50%;
  background: transparent;
}

.links-live--live {
  color: #ff5a64;
  font-weight: 700;
}

.links-live--live .links-live__dot {
  border-color: #ff5a64;
  background: #ff3040;
  box-shadow: 0 0 0 0 rgb(255 48 64 / 55%);
  animation: live-pulse 1.8s ease-out infinite;
}

.links-live--offline .links-live__dot,
.links-live--unavailable .links-live__dot {
  color: #7e8490;
}

.weidu-snapshot {
  margin: 0 0 1.25rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--violet);
  background: rgb(7 10 18 / 44%);
  color: var(--parchment-muted);
  font-size: 0.9rem;
}

.weidu-log-list {
  display: grid;
  gap: 1rem;
}

.weidu-log {
  border: 1px solid rgb(201 166 91 / 34%);
  background: rgb(7 10 18 / 58%);
}

.weidu-log__summary {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  color: var(--gold-bright);
  cursor: pointer;
  list-style-position: inside;
}

.weidu-log__summary:hover {
  background: rgb(201 166 91 / 8%);
}

.weidu-log__title {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.035em;
}

.weidu-log__meta {
  color: var(--parchment-muted);
  font-family: var(--utility);
  font-size: 0.7rem;
  letter-spacing: 0.035em;
}

.weidu-log__description {
  margin: 0;
  padding: 0 1.15rem 0.75rem;
  color: var(--parchment-muted);
}

.weidu-log__download {
  display: inline-flex;
  margin: 0 1.15rem 1rem;
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.74rem;
  text-underline-offset: 0.22em;
}

.weidu-log__source {
  max-height: min(58vh, 38rem);
  margin: 0;
  padding: 1rem;
  overflow: auto;
  border-top: 1px solid rgb(201 166 91 / 24%);
  background: rgb(2 4 9 / 88%);
  color: #d8d1c1;
  font-family: var(--utility);
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  line-height: 1.55;
  white-space: pre;
}

.rules-list,
.instruction-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
}

.rules-list__item::marker,
.instruction-list__item::marker {
  color: var(--gold);
  font-family: var(--utility);
}

.collection-link,
.recovery-panel__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.62rem 1rem;
  border: 1px solid var(--gold);
  background: rgb(201 166 91 / 10%);
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.collection-alpha {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.28fr) minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid rgb(158 52 56 / 82%);
  border-left-width: 0.4rem;
  background:
    linear-gradient(90deg, rgb(158 52 56 / 22%), transparent 70%),
    rgb(7 10 18 / 56%);
  box-shadow: inset 0 0 20px rgb(158 52 56 / 8%);
}

.collection-alpha__title,
.collection-section__title,
.collection-subsection__title,
.roadmap-group__title,
.roadmap-item__title,
.collection-track__title,
.collection-credit__name,
.collection-credit-group__title {
  margin: 0;
  font-family: var(--display);
  line-height: 1.15;
}

.collection-alpha__title {
  color: #f0b7aa;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  letter-spacing: 0.055em;
}

.collection-alpha__copy,
.collection-profile__summary,
.collection-section__introduction,
.collection-track__copy,
.roadmap-group__introduction,
.roadmap-item__summary,
.collection-credit__copy,
.collection-credits__notice,
.collection-credits__scope,
.collection-credit-group__description,
.collection-credit__creators {
  margin: 0;
  color: var(--parchment-muted);
}

.collection-start,
.collection-highlights,
.collection-update-tracks,
.collection-roadmap,
.collection-credits {
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(201 166 91 / 32%);
}

.collection-start {
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
}

.collection-section__title {
  color: var(--gold-bright);
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.035em;
}

.collection-subsection__title {
  color: var(--parchment);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  letter-spacing: 0.025em;
}

.collection-section__introduction {
  max-width: 68ch;
  margin-top: 0.65rem;
}

.collection-start__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: start;
  margin-top: 1.2rem;
}

.collection-profile__summary {
  max-width: 65ch;
}

.collection-requirements {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.collection-requirements__item::marker {
  color: var(--gold);
}

.collection-release {
  padding: 1.05rem;
  border: 1px solid rgb(201 166 91 / 50%);
  background:
    linear-gradient(145deg, rgb(201 166 91 / 10%), transparent 55%),
    rgb(7 10 18 / 62%);
  box-shadow: inset 0 0 0 3px rgb(7 10 18 / 34%);
  clip-path: polygon(0.55rem 0, 100% 0, 100% calc(100% - 0.55rem), calc(100% - 0.55rem) 100%, 0 100%, 0 0.55rem);
}

.collection-release .collection-link {
  width: 100%;
  margin-top: 0;
}

.collection-link--pending {
  border-color: rgb(201 190 168 / 36%);
  background: rgb(13 17 29 / 76%);
  color: var(--parchment-muted);
  cursor: not-allowed;
}

.collection-release__status {
  margin: 0.75rem 0 0;
  color: var(--parchment-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.collection-release__metadata {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.3rem 0.75rem;
  margin: 1rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgb(201 166 91 / 22%);
  font-size: 0.76rem;
}

.collection-release__term {
  color: var(--parchment-muted);
  font-family: var(--utility);
}

.collection-release__value {
  min-width: 0;
  margin: 0;
  color: var(--parchment);
}

.collection-release__value--hash {
  overflow-wrap: anywhere;
  font-family: var(--utility);
}

.collection-quick-start {
  margin-top: 1.65rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgb(201 166 91 / 22%);
}

.collection-highlights__list,
.collection-track-list,
.roadmap-list,
.roadmap-links,
.collection-credit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-highlights__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.15rem;
  border-top: 1px solid rgb(201 166 91 / 24%);
}

.collection-highlights__item {
  position: relative;
  min-height: 4.5rem;
  padding: 1rem 1.1rem 1rem 1.45rem;
  border-bottom: 1px solid rgb(201 166 91 / 24%);
  color: var(--parchment);
}

.collection-highlights__item::before {
  position: absolute;
  top: 1.45rem;
  left: 0.25rem;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.collection-highlights__item:nth-child(odd) {
  border-right: 1px solid rgb(201 166 91 / 24%);
}

.collection-track-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
  margin-top: 1.2rem;
}

.collection-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 0.6rem 1rem;
  padding: 1.1rem 0;
  border-top: 2px solid var(--violet);
}

.collection-track__title {
  color: var(--parchment);
  font-size: 1.05rem;
}

.collection-track__status {
  align-self: start;
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.72rem;
}

.collection-track__copy {
  grid-column: 1 / -1;
}

.roadmap-group {
  --roadmap-accent: var(--parchment-muted);
  display: grid;
  grid-template-columns: minmax(9rem, 0.27fr) minmax(0, 1fr);
  gap: 0.45rem clamp(1.25rem, 4vw, 2.5rem);
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 3px solid var(--roadmap-accent);
}

.roadmap-group[data-status="available"] { --roadmap-accent: var(--gold); }
.roadmap-group[data-status="in-progress"] { --roadmap-accent: var(--violet); }

.roadmap-group[data-status="in-progress"] .roadmap-group__title {
  color: var(--violet-bright);
}

.roadmap-group__title {
  color: var(--roadmap-accent);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  letter-spacing: 0.03em;
}

.roadmap-group__introduction {
  font-size: 0.9rem;
}

.roadmap-list {
  grid-column: 2;
  margin-top: 0.35rem;
}

.roadmap-item {
  padding: 1.15rem 0;
  border-top: 1px solid rgb(201 166 91 / 22%);
}

.roadmap-item:first-child {
  border-top: 0;
}

.roadmap-item__title {
  color: var(--parchment);
  font-size: 1.05rem;
}

.roadmap-item__summary {
  max-width: 68ch;
  margin-top: 0.45rem;
}

.roadmap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  margin-top: 0.75rem;
}

.collection-external-link {
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.76rem;
  text-underline-offset: 0.22em;
}

.collection-external-link:hover {
  color: var(--parchment);
}

.collection-credits__notice {
  max-width: 68ch;
  margin-top: 0.75rem;
  padding-left: 0.8rem;
  border-left: 2px solid var(--violet);
  font-size: 0.9rem;
}

.collection-credits__scope {
  max-width: 72ch;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.collection-credit-group {
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
}

.collection-credit-group__title {
  color: var(--gold-bright);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.collection-credit-group__description {
  max-width: 72ch;
  margin-top: 0.45rem;
  font-size: 0.9rem;
}

.collection-credit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(1rem, 3vw, 2rem);
  margin-top: 1.2rem;
  border-top: 1px solid rgb(201 166 91 / 24%);
}

.collection-credit {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(201 166 91 / 24%);
}

.collection-credit__name {
  color: var(--parchment);
  font-size: 1rem;
}

.collection-credit__creators {
  margin-top: 0.35rem;
  font-size: 0.88rem;
}

.collection-credit__label {
  color: var(--gold-bright);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.collection-credit__copy {
  margin: 0.35rem 0 0.6rem;
  font-size: 0.9rem;
}

.collection-credit-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.collection-credit-links__item {
  display: inline-flex;
}

.collection-link:hover,
.recovery-panel__link:hover {
  background: var(--gold);
  color: var(--midnight);
}

.collection-link--pending:hover {
  background: rgb(13 17 29 / 76%);
  color: var(--parchment-muted);
}

.recovery-panel {
  text-align: center;
}

.recovery-panel__title,
.recovery-panel h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.recovery-panel__message,
.recovery-panel p {
  margin: 0 auto;
  color: var(--parchment-muted);
}

.recovery-panel--loading::before {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 1.2rem;
  border: 2px solid rgb(201 166 91 / 22%);
  border-top-color: var(--gold);
  border-radius: 50%;
  content: "";
  animation: loading-turn 900ms linear infinite;
}

.app-status {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.75rem 1rem;
  border: 1px solid var(--gold);
  background: rgb(7 10 18 / 96%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 48%);
  font-family: var(--utility);
  font-size: 0.72rem;
}

.app-status[data-state="error"] {
  border-color: var(--red);
}

.app-status[hidden] {
  display: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@keyframes page-arrive {
  from { opacity: 0; transform: translateY(0.7rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes roster-arrive {
  from { opacity: 0; transform: translateY(1.2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dossier-arrive {
  from { opacity: 0; transform: scale(0.975) translateY(0.5rem); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes loading-turn {
  to { transform: rotate(360deg); }
}

@keyframes live-pulse {
  70%, 100% { box-shadow: 0 0 0 0.45rem rgb(255 48 64 / 0%); }
}

@media (max-width: 74rem) {
  .fighter-roster {
    width: min(100%, 48rem);
    grid-template-columns: repeat(4, minmax(8rem, 10.75rem));
    gap: clamp(0.7rem, 1.8vw, 1.1rem);
  }
}

@media (max-width: 50rem) {
  .masthead {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.85rem;
    padding-bottom: 0.65rem;
  }

  .primary-nav,
  .primary-nav__list {
    width: 100%;
  }

  .primary-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .primary-nav__link {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
  }

  .dossier {
    width: min(96vw, 42rem);
    max-height: 94dvh;
  }

  .dossier__panel {
    max-height: 94dvh;
    grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
  }

  .dossier__copy h2 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .collection-start__summary,
  .roadmap-group {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-track-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-list {
    grid-column: 1;
  }
}

@media (max-width: 43.75rem) {
  :root { --cut: 9px; }

  body::before { background-position: 68% top; }

  .page-main { padding-top: 1.65rem; }

  .page-header { margin-bottom: 1.5rem; }

  .page-header__title { font-size: clamp(2.35rem, 13.5vw, 4.5rem); }

  .fighter-roster {
    width: min(100%, 25rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .fighter-card__name { font-size: clamp(0.7rem, 3.2vw, 0.9rem); }
  .fighter-card__builds { font-size: clamp(0.54rem, 2.45vw, 0.66rem); }

  .dossier {
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
  }

  .dossier__panel {
    display: block;
    min-height: 100%;
    max-height: none;
    overflow-y: auto;
    border: 0;
    clip-path: none;
  }

  .dossier__portrait-frame {
    min-height: auto;
    padding: 3.9rem 1rem 1.1rem;
    border-right: 0;
    border-bottom: 1px solid rgb(201 166 91 / 40%);
  }

  .dossier__portrait { width: min(56vw, 13.5rem); }

  .dossier__copy {
    padding: 1.4rem max(1.2rem, env(safe-area-inset-left)) max(2.2rem, env(safe-area-inset-bottom));
    overflow: visible;
  }

  .dossier__copy h2 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .dossier__close {
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
  }

  .dossier-downloads__grid {
    grid-template-columns: 1fr;
  }

  .collection-alpha,
  .collection-highlights__list,
  .collection-track-list,
  .collection-credit-list,
  .voicepack-card__body,
  .links-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-alpha {
    gap: 0.45rem;
  }

  .collection-highlights__item:nth-child(odd) {
    border-right: 0;
  }

  .collection-start,
  .collection-highlights,
  .collection-update-tracks,
  .collection-roadmap,
  .collection-credits {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .collection-start {
    margin-top: 1.5rem;
    padding-top: 0;
  }

  .page--rules,
  .page--collection,
  .page--voicepacks,
  .page--weidulog,
  .page--links,
  .recovery-panel {
    margin-top: 0.5rem;
    padding: 1.5rem 1.2rem;
  }
}

@media (max-width: 25rem) {
  .brand { font-size: 0.78rem; }

  .primary-nav__link {
    font-size: 0.56rem;
    letter-spacing: 0.04em;
  }

  .fighter-roster { gap: 0.55rem; }

  .collection-release__metadata {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-release__value + .collection-release__term {
    margin-top: 0.35rem;
  }

  .collection-track {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-track__status,
  .collection-track__copy {
    grid-column: 1;
  }
}

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

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

@media (forced-colors: active) {
  .fighter-card,
  .dossier__panel,
  .page--rules,
  .page--collection,
  .page--voicepacks,
  .page--weidulog,
  .page--links,
  .collection-alpha,
  .collection-release,
  .voicepack-card__body,
  .voicepack-external-card__body,
  .weidu-log,
  .roadmap-group,
  .recovery-panel {
    border: 2px solid CanvasText;
    clip-path: none;
  }

  .fighter-card__button:focus-visible,
  .primary-nav__link:focus-visible,
  .dossier__close:focus-visible,
  .collection-link:focus-visible,
  .collection-external-link:focus-visible,
  .voicepack-card__download:focus-visible,
  .voicepack-guide__summary:focus-visible,
  .voicepack-external-link:focus-visible,
  .links-card__link:focus-visible,
  .weidu-log__summary:focus-visible,
  .weidu-log__download:focus-visible,
  .dossier-download__link:focus-visible {
    outline: 3px solid Highlight;
  }

  .collection-link--pending {
    border: 1px solid GrayText;
    color: GrayText;
  }
}
