/* ==========================================================================
   Loanminty — pop culture villain rankings
   Dark cinematic design system
   ========================================================================== */

/* 1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #07070a;
  --ink-2: #0b0c10;
  --ink-3: #101218;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  --text: #eeecea;
  --text-2: #b6b4bd;
  --muted: #85838f;

  --crimson: #e5142f;
  --crimson-hi: #ff4256;
  --crimson-soft: rgba(229, 20, 47, 0.14);
  --gold: #e6b352;
  --cyan: #2fd4e0;
  --violet: #8b5cf6;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;

  --shadow-1: 0 2px 10px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 18px 44px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 14px 50px rgba(229, 20, 47, 0.22);

  --font-display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --header-h: 68px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 2px solid var(--crimson-hi);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--crimson); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--crimson); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* 3. Ambient background
   -------------------------------------------------------------------------- */
.bg-field {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% -6%, rgba(229, 20, 47, 0.20), transparent 62%),
    radial-gradient(820px 620px at 6% 12%, rgba(47, 92, 224, 0.10), transparent 60%),
    radial-gradient(1000px 700px at 50% 108%, rgba(139, 92, 246, 0.09), transparent 65%),
    var(--ink);
}
.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* 4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 800px); margin-inline: auto; }
.section { padding: 84px 0; position: relative; }
.section--tight { padding: 52px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--crimson-hi);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson-hi));
}

.display-1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.6vw, 5.4rem);
  line-height: 0.94; letter-spacing: -0.03em; text-transform: uppercase;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.02; letter-spacing: -0.025em; text-transform: uppercase;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.12; letter-spacing: -0.02em; text-transform: uppercase;
}
.lede { font-size: clamp(1rem, 1.5vw, 1.14rem); color: var(--text-2); max-width: 66ch; }
.muted { color: var(--muted); }
.text-crimson { color: var(--crimson-hi); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head p { margin: 10px 0 0; }

/* 5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  border: 1px solid var(--line-2); color: var(--text);
  transition: transform 0.22s var(--ease), background 0.22s, border-color 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); border-color: var(--line-2); background: var(--panel-2); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary {
  background: linear-gradient(180deg, var(--crimson-hi), var(--crimson));
  border-color: transparent; color: #fff;
  box-shadow: 0 10px 30px rgba(229, 20, 47, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--primary:hover { box-shadow: 0 16px 44px rgba(229, 20, 47, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.3); background: linear-gradient(180deg, #ff5566, var(--crimson-hi)); }

.btn--ghost { background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(8px); }
.btn--sm { padding: 9px 16px; font-size: 13px; }

/* Saved / selected states shared by text buttons and chips */
.btn.is-on, .chip.is-on {
  background: var(--crimson-soft); border-color: rgba(229, 20, 47, 0.55);
  color: var(--crimson-hi); box-shadow: none;
}
.btn.is-on svg, .chip.is-on svg { fill: currentColor; }
.btn.is-picked, .chip.is-picked {
  background: rgba(47, 212, 224, 0.13); border-color: rgba(47, 212, 224, 0.55);
  color: var(--cyan); box-shadow: none;
}

/* 6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 7, 10, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
/* Three tracks so the nav sits centred in the bar rather than crowding the logo. */
.header-inner {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: 22px; height: var(--header-h);
}

.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 32px; width: auto; }

.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav a {
  padding: 9px 13px; border-radius: 9px; font-size: 14px; font-weight: 600;
  color: var(--text-2); transition: color 0.18s, background 0.18s;
}
.nav a:hover { color: var(--text); background: var(--panel); }
.nav a[aria-current="page"] { color: var(--text); background: var(--crimson-soft); }

.header-tools { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; border-radius: 2px; transition: 0.2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* 7. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding: 96px 0 76px; overflow: hidden; isolation: isolate; }
.hero__art {
  position: absolute; inset: -12% -6% auto -6%; height: 132%; z-index: -1;
  background-size: cover; background-position: 62% 40%;
  opacity: 0.62;
  mask-image: linear-gradient(180deg, #000 8%, #000 45%, transparent 96%);
  -webkit-mask-image: linear-gradient(180deg, #000 8%, #000 45%, transparent 96%);
  transform: scale(1.04);
  animation: driftSlow 34s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--ink) 6%, rgba(7, 7, 10, 0.82) 38%, rgba(7, 7, 10, 0.18) 72%);
}
@keyframes driftSlow {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.6%, -1.2%, 0); }
}

.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 56px; align-items: center; }
.hero__copy { max-width: 640px; }
.hero__copy .display-1 { margin: 16px 0 20px; }
.hero__copy .display-1 em { font-style: normal; color: var(--crimson-hi); text-shadow: 0 0 44px rgba(229, 20, 47, 0.55); }
.hero__actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.hero__stat span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* Spotlight card in the hero: deliberately square to the grid, no tilt or hover shift */
.spotlight {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--line); background: rgba(10, 10, 14, 0.6);
  backdrop-filter: blur(14px); box-shadow: var(--shadow-2);
}
.spotlight__art { height: 190px; background-size: cover; background-position: center; position: relative; }
.spotlight__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 14, 0.94)); }
.spotlight__body { padding: 20px 22px 24px; margin-top: -54px; position: relative; }
.spotlight__rank {
  font-family: var(--font-display); font-size: 3.2rem; line-height: 0.8; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.34);
}
.spotlight__title { margin: 8px 0 4px; }
.spotlight__meta { font-size: 12.5px; color: var(--muted); }
.spotlight__note { margin-top: 14px; font-size: 14px; color: var(--text-2); }

/* 8. Ranking chips / rail
   -------------------------------------------------------------------------- */
.rail { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }

.chip {
  display: inline-flex; align-items: center; gap: 9px; flex: none; scroll-snap-align: start;
  padding: 11px 17px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--panel); font-size: 13.5px; font-weight: 600; color: var(--text-2);
  transition: 0.2s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--line-2); transform: translateY(-2px); }
.chip svg { width: 15px; height: 15px; opacity: 0.75; }
.chip.is-active {
  color: #fff; border-color: transparent;
  background: linear-gradient(180deg, var(--crimson-hi), var(--crimson));
  box-shadow: 0 8px 24px rgba(229, 20, 47, 0.34);
}
.chip.is-active svg { opacity: 1; }

/* 9. Category cards (home)
   -------------------------------------------------------------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 18px; }
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); min-height: 196px; padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.35s var(--ease), border-color 0.3s;
  isolation: isolate;
}
.cat-card__art { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.02); transition: transform 0.6s var(--ease); opacity: 0.68; }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 7, 10, 0.28) 10%, rgba(7, 7, 10, 0.9) 78%); }
.cat-card:hover { transform: translateY(-5px); border-color: rgba(229, 20, 47, 0.45); }
.cat-card:hover .cat-card__art { transform: scale(1.1); }
.cat-card__icon { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 10px; background: rgba(7, 7, 10, 0.6); border: 1px solid var(--line); display: grid; place-items: center; }
.cat-card__icon svg { width: 17px; height: 17px; color: var(--crimson-hi); }
.cat-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: -0.015em; }
.cat-card p { margin: 8px 0 0; font-size: 13.5px; color: var(--text-2); }
.cat-card__count { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--crimson-hi); font-weight: 700; margin-bottom: 8px; }

/* 10. Toolbar (filters)
   -------------------------------------------------------------------------- */
.toolbar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(9, 9, 13, 0.86); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; margin-bottom: 26px;
  display: grid; gap: 12px;
}
.toolbar__row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.toolbar__row--grow > * { flex: 1 1 150px; }

.field { position: relative; display: flex; align-items: center; }
.field svg { position: absolute; left: 13px; width: 16px; height: 16px; color: var(--muted); pointer-events: none; }
.field input,
.select select {
  width: 100%; background: rgba(255, 255, 255, 0.045); border: 1px solid var(--line);
  border-radius: 10px; padding: 11px 14px; font-size: 14px; color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.field input { padding-left: 38px; }
.field input::placeholder { color: var(--muted); }
.field input:focus, .select select:focus { border-color: rgba(229, 20, 47, 0.6); background: rgba(255, 255, 255, 0.07); outline: none; }

.select { position: relative; }
.select select { appearance: none; padding-right: 34px; cursor: pointer; }
.select::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 7px; height: 7px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.select select option { background: #12131a; color: var(--text); }

.toolbar__meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

.seg { display: inline-flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.seg button { padding: 9px 14px; font-size: 13px; font-weight: 600; color: var(--muted); transition: 0.18s; }
.seg button:hover { color: var(--text); background: var(--panel); }
.seg button.is-active { background: var(--crimson-soft); color: var(--crimson-hi); }

/* 11. Villain card
   -------------------------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.vcard {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
  isolation: isolate;
}
.vcard:hover { transform: translateY(-6px); border-color: rgba(229, 20, 47, 0.42); box-shadow: var(--shadow-glow); }
.vcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; filter: saturate(0.85) contrast(1.06); }
.vcard:hover .vcard__media img { transform: scale(1.09); filter: saturate(1.05) contrast(1.1); }
.vcard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 7, 10, 0.1) 30%, rgba(11, 12, 16, 0.96)); }

.vcard__rank {
  position: absolute; left: 14px; top: 8px; z-index: 2;
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.4);
  transition: -webkit-text-stroke-color 0.3s;
}
.vcard:hover .vcard__rank { -webkit-text-stroke-color: var(--crimson-hi); }
.vcard--gold .vcard__rank { -webkit-text-stroke-color: var(--gold); color: rgba(230, 179, 82, 0.13); }

.vcard__tag {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  padding: 5px 10px; border-radius: 999px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(7, 7, 10, 0.74); border: 1px solid var(--line-2); backdrop-filter: blur(6px);
}
.vcard__body { padding: 0 18px 18px; margin-top: -46px; position: relative; z-index: 2; display: flex; flex-direction: column; flex: 1; }
.vcard__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.16rem; letter-spacing: -0.015em; }
.vcard__name a::after { content: ""; position: absolute; inset: 0; z-index: 3; }
.vcard__source { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.vcard__note { font-size: 13.5px; color: var(--text-2); margin-top: 12px; flex: 1; }

.vcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.vcard__score { display: flex; align-items: baseline; gap: 6px; font-size: 12px; color: var(--muted); }
.vcard__score b { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); }

.icon-btn {
  position: relative; z-index: 4;
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted);
  transition: 0.2s var(--ease);
}
.icon-btn:hover { color: var(--text); border-color: var(--line-2); background: var(--panel-2); transform: translateY(-2px); }
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn.is-on { color: var(--crimson-hi); border-color: rgba(229, 20, 47, 0.5); background: var(--crimson-soft); }
.icon-btn.is-on svg { fill: currentColor; }
.icon-btn.is-picked { color: var(--cyan); border-color: rgba(47, 212, 224, 0.5); background: rgba(47, 212, 224, 0.12); }

.vcard__actions { display: flex; gap: 7px; }

/* Compact list rows */
.row-list { display: flex; flex-direction: column; gap: 10px; }
.vrow {
  position: relative; display: grid; grid-template-columns: 62px 96px minmax(0, 1fr) auto;
  gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px 12px 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
  transition: 0.28s var(--ease);
}
.vrow:hover { border-color: rgba(229, 20, 47, 0.4); transform: translateX(4px); }
.vrow__rank { font-family: var(--font-display); font-size: 2rem; text-align: center; color: transparent; -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.4); }
.vrow--gold .vrow__rank { -webkit-text-stroke-color: var(--gold); }
.vrow__thumb { width: 96px; height: 62px; border-radius: 10px; overflow: hidden; flex: none; }
.vrow__thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.vrow__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; }
.vrow__name a::after { content: ""; position: absolute; inset: 0; }
.vrow__meta { font-size: 12.5px; color: var(--muted); }
.vrow__note { font-size: 13px; color: var(--text-2); margin-top: 6px; }
.vrow__side { display: flex; align-items: center; gap: 8px; }

/* 12. Podium
   -------------------------------------------------------------------------- */
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: end; margin-bottom: 30px; }
.podium .vcard { border-color: rgba(255, 255, 255, 0.14); }
.podium > *:nth-child(1) { order: 2; transform: translateY(-16px); }
.podium > *:nth-child(1) .vcard { border-color: rgba(230, 179, 82, 0.42); box-shadow: 0 20px 60px rgba(230, 179, 82, 0.14); }
.podium > *:nth-child(2) { order: 1; }
.podium > *:nth-child(3) { order: 3; }

/* 13. Stat bars
   -------------------------------------------------------------------------- */
.stats { display: grid; gap: 11px; }
.stat__top { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.stat__top b { color: var(--text); font-family: var(--font-display); font-size: 13px; letter-spacing: 0; }
.stat__track { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.stat__fill {
  height: 100%; border-radius: 99px; width: 0;
  background: linear-gradient(90deg, #7a0a18, var(--crimson-hi));
  box-shadow: 0 0 14px rgba(229, 20, 47, 0.5);
  transition: width 1s var(--ease);
}
.stat__fill--b { background: linear-gradient(90deg, #0d5c66, var(--cyan)); box-shadow: 0 0 14px rgba(47, 212, 224, 0.45); }

.mini-stats { display: flex; gap: 7px; flex-wrap: wrap; }
.pill {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px; border: 1px solid var(--line); color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
}
.pill--accent { color: var(--crimson-hi); border-color: rgba(229, 20, 47, 0.35); background: var(--crimson-soft); }

/* 14. Compare arena
   -------------------------------------------------------------------------- */
.arena {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--line); padding: 34px; isolation: isolate;
}
.arena__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: 0.4; }
.arena::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 90% at 50% 50%, rgba(7, 7, 10, 0.92), rgba(7, 7, 10, 0.66)); }

.arena__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; }
.arena__vs {
  font-family: var(--font-display); font-size: 2.2rem; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5); align-self: center; padding-top: 40px;
}
.fighter { text-align: center; }
.fighter__slot {
  border: 1px dashed var(--line-2); border-radius: var(--radius); min-height: 240px;
  display: grid; place-items: center; padding: 22px; color: var(--muted); font-size: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.fighter__card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(10, 10, 14, 0.7); }
.fighter__art { height: 132px; background-size: cover; background-position: center; }
.fighter__body { padding: 16px 18px 20px; }
.fighter__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.fighter__meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.fighter--a .fighter__card { border-color: rgba(229, 20, 47, 0.4); }
.fighter--b .fighter__card { border-color: rgba(47, 212, 224, 0.4); }

.verdict { margin-top: 26px; text-align: center; padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); }
.verdict b { color: var(--crimson-hi); }

.cmp-row { display: grid; grid-template-columns: 1fr 118px 1fr; align-items: center; gap: 12px; margin-bottom: 12px; }
.cmp-label { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center; }
.cmp-bar { height: 8px; border-radius: 99px; background: rgba(255, 255, 255, 0.07); overflow: hidden; display: flex; }
.cmp-bar--a { justify-content: flex-end; }
.cmp-bar i { display: block; height: 100%; border-radius: 99px; }
.cmp-bar--a i { background: linear-gradient(270deg, var(--crimson-hi), #7a0a18); }
.cmp-bar--b i { background: linear-gradient(90deg, #0d5c66, var(--cyan)); }
.cmp-num { font-family: var(--font-display); font-size: 13px; }

/* 14b. Duel stage
   -------------------------------------------------------------------------- */
.duel-stage { position: relative; padding: 46px 0 64px; overflow: hidden; isolation: isolate; }
.duel-stage__bg {
  position: absolute; inset: -8% -4% auto -4%; height: 128%; z-index: -2;
  background-size: cover; background-position: center 52%; opacity: 0.5;
  mask-image: linear-gradient(180deg, #000 4%, #000 60%, transparent 99%);
  -webkit-mask-image: linear-gradient(180deg, #000 4%, #000 60%, transparent 99%);
}
.duel-stage::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(80% 70% at 50% 46%, rgba(7, 7, 10, 0.62), rgba(7, 7, 10, 0.94));
}
.duel-head { text-align: center; max-width: 720px; margin: 24px auto 34px; }
.duel-head .eyebrow { justify-content: center; }
.duel-head .lede { margin-inline: auto; }

.duel { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; }
.duel__vs {
  align-self: center; font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
}

.duelist {
  position: relative; overflow: hidden; isolation: isolate; text-align: left;
  border-radius: var(--radius-l); border: 1px solid var(--line-2);
  min-height: 340px; padding: 26px; width: 100%; display: flex;
  flex-direction: column; justify-content: flex-end; gap: 4px; cursor: pointer;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s var(--ease);
}
.duelist__art {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center;
  opacity: 0.62; transform: scale(1.03); transition: transform 0.7s var(--ease), opacity 0.4s;
}
.duelist::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.22) 6%, rgba(7, 7, 10, 0.93) 76%);
}
.duelist__tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.duelist__name {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.02em;
  font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.02; margin-top: 8px;
}
.duelist__work { font-size: 13px; color: var(--text-2); margin-top: 6px; }
.duelist__idx { font-size: 12px; color: var(--muted); margin-top: 12px; }
.duelist__idx b { font-family: var(--font-display); font-size: 15px; color: var(--text); }
.duelist__cta {
  margin-top: 18px; align-self: flex-start; padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; border: 1px solid var(--line-2); color: var(--text-2);
  transition: 0.25s var(--ease);
}
.duelist:hover { transform: translateY(-6px); }
.duelist:hover .duelist__art { transform: scale(1.09); opacity: 0.74; }

.duelist--a:hover, .duelist--a:focus-visible { border-color: rgba(229, 20, 47, 0.7); box-shadow: 0 22px 60px rgba(229, 20, 47, 0.24); }
.duelist--a:hover .duelist__cta { background: linear-gradient(180deg, var(--crimson-hi), var(--crimson)); border-color: transparent; color: #fff; }
.duelist--b:hover, .duelist--b:focus-visible { border-color: rgba(47, 212, 224, 0.7); box-shadow: 0 22px 60px rgba(47, 212, 224, 0.2); }
.duelist--b:hover .duelist__cta { background: linear-gradient(180deg, var(--cyan), #0d5c66); border-color: transparent; color: #05171a; }

/* Result flash between rounds */
.duel.is-resolving .duelist { pointer-events: none; }
.duelist.is-winner { transform: translateY(-6px) scale(1.015); }
.duelist.is-winner .duelist__art { opacity: 0.85; }
.duelist.is-loser { opacity: 0.32; transform: scale(0.975); }
.duelist__verdict {
  position: absolute; inset: auto 22px 22px auto; z-index: 1;
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.1em;
  padding: 7px 14px; border-radius: 999px; opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.duelist.is-winner .duelist__verdict { opacity: 1; transform: none; background: var(--crimson); color: #fff; }
.duelist--b.is-winner .duelist__verdict { background: var(--cyan); color: #05171a; }

.duel-actions { display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.duel-tally { font-size: 13px; color: var(--muted); }
.duel-tally b { color: var(--text); font-family: var(--font-display); font-size: 15px; }

.duel-progress {
  max-width: 460px; margin: 0 auto 30px; height: 5px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.08); overflow: hidden;
}
.duel-progress i {
  display: block; height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, #7a0a18, var(--crimson-hi));
  box-shadow: 0 0 14px rgba(229, 20, 47, 0.5); transition: width 0.45s var(--ease);
}
.duel-stagelabel { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson-hi); font-weight: 700; }

/* End-of-tournament podium */
.crowned { text-align: center; }
.crowned__title { margin: 12px 0 10px; }
.crowned .podium { margin-top: 34px; text-align: left; }

/* Champions table built from the visitor's own votes */
.board { display: grid; gap: 8px; }
.board__row {
  display: grid; grid-template-columns: 40px minmax(0, 1fr) auto auto;
  gap: 14px; align-items: center; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
}
.board__row--top { border-color: rgba(229, 20, 47, 0.4); background: var(--crimson-soft); }
.board__pos { font-family: var(--font-display); font-size: 1.1rem; color: var(--muted); }
.board__row--top .board__pos { color: var(--crimson-hi); }
.board__name { font-weight: 600; font-size: 14.5px; min-width: 0; }
.board__name span { display: block; font-size: 12px; color: var(--muted); font-weight: 400; }
.board__wl { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.board__pct { font-family: var(--font-display); font-size: 1rem; min-width: 52px; text-align: right; }

/* 14c. Draggable personal ranking
   -------------------------------------------------------------------------- */
.sortable { display: grid; gap: 10px; }
.sortable .vrow { margin: 0; }
.srow {
  display: grid; grid-template-columns: 44px 30px 64px minmax(0, 1fr) auto;
  gap: 14px; align-items: center; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel);
  transition: border-color 0.2s, box-shadow 0.25s, opacity 0.2s;
}
.srow--top { border-color: rgba(229, 20, 47, 0.4); }
.srow__grip {
  display: grid; place-items: center; width: 34px; height: 40px; border-radius: 9px;
  border: 1px solid var(--line); color: var(--muted); cursor: grab; touch-action: none;
  background: rgba(255, 255, 255, 0.02);
}
.srow__grip:hover { color: var(--text); border-color: var(--line-2); }
.srow__grip svg { width: 16px; height: 16px; }
.srow__pos { font-family: var(--font-display); font-size: 1.35rem; color: var(--muted); text-align: center; }
.srow--top .srow__pos { color: var(--crimson-hi); }
.srow__thumb { width: 64px; height: 44px; border-radius: 8px; overflow: hidden; flex: none; }
.srow__thumb img { width: 100%; height: 100%; object-fit: cover; }
.srow__main { min-width: 0; }
.srow__name { display: block; font-size: 15px; font-weight: 600; }
.srow__name:hover { color: var(--crimson-hi); }
.srow__meta { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.srow__side { display: flex; gap: 6px; align-items: center; }

.srow.is-dragging {
  opacity: 0.9; border-color: rgba(229, 20, 47, 0.55);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.6); cursor: grabbing;
  position: relative; z-index: 5;
}
.sortable.is-sorting .srow:not(.is-dragging) { transition: transform 0.18s var(--ease); }

/* 15. Villain profile page
   -------------------------------------------------------------------------- */
.profile-hero { position: relative; padding: 64px 0 44px; overflow: hidden; isolation: isolate; }
.profile-hero__art {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center 38%;
  opacity: 0.5; transform: scale(1.05);
  mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 94%);
}
.profile-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(96deg, var(--ink) 12%, rgba(7, 7, 10, 0.8) 46%, rgba(7, 7, 10, 0.28)); }
.profile-hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 44px; align-items: center; }
.profile-hero h1 { margin: 14px 0 12px; }
.profile-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.layout-2col { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 40px; align-items: start; }
.side-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--panel); }
.side-card + .side-card { margin-top: 18px; }
.side-card h3 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson-hi); margin-bottom: 16px; }
.side-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

.dl { display: grid; gap: 11px; font-size: 14px; }
.dl > div { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.dl dt { color: var(--muted); flex: none; }
.dl dd { margin: 0; text-align: right; font-weight: 600; }

.block { margin-bottom: 40px; }
.block h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; margin-bottom: 16px; letter-spacing: -0.015em; }
.block h2 .bar { display: inline-block; width: 4px; height: 20px; background: var(--crimson); margin-right: 12px; vertical-align: -2px; border-radius: 2px; }

.trait-list { display: flex; flex-wrap: wrap; gap: 8px; }
.fact-list { display: grid; gap: 14px; }
.fact-list li { list-style: none; padding-left: 30px; position: relative; color: var(--text-2); font-size: 14.5px; }
.fact-list li::before {
  content: counter(fact); counter-increment: fact;
  position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 6px;
  background: var(--crimson-soft); color: var(--crimson-hi); border: 1px solid rgba(229, 20, 47, 0.3);
  display: grid; place-items: center; font-size: 11px; font-weight: 800;
}
.fact-list { counter-reset: fact; }

.callout { border-left: 3px solid var(--crimson); background: rgba(229, 20, 47, 0.07); padding: 16px 20px; border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.callout--cool { border-left-color: var(--cyan); background: rgba(47, 212, 224, 0.06); }

.appears-list { display: grid; gap: 10px; }
.appears-item { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; transition: 0.2s; }
.appears-item:hover { border-color: rgba(229, 20, 47, 0.4); background: var(--panel); }
.appears-item b { font-family: var(--font-display); font-size: 1rem; color: var(--crimson-hi); flex: none; min-width: 34px; }
.appears-item span { font-size: 13.5px; }

/* 16. Prose pages
   -------------------------------------------------------------------------- */
.prose { font-size: 16.5px; color: var(--text-2); }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--text); margin: 42px 0 14px; }
.prose h3 { font-size: 1.12rem; color: var(--text); margin: 30px 0 10px; font-weight: 700; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--crimson-hi); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.prose th { color: var(--text); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

.page-head { padding: 62px 0 30px; border-bottom: 1px solid var(--line); margin-bottom: 44px; }

/* Ranking pages carry their own key art, so the head becomes a real composition. */
.page-head--art { position: relative; overflow: hidden; isolation: isolate; padding-bottom: 52px; }
.page-head__art {
  position: absolute; inset: -10% -4% auto -4%; height: 130%; z-index: -2;
  background-size: cover; background-position: center 42%; opacity: 0.4;
  mask-image: linear-gradient(180deg, #000 6%, #000 52%, transparent 98%);
  -webkit-mask-image: linear-gradient(180deg, #000 6%, #000 52%, transparent 98%);
  transform: scale(1.05);
}
.page-head--art::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--ink) 8%, rgba(7, 7, 10, 0.86) 42%, rgba(7, 7, 10, 0.3) 78%);
}
.rank-head {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 48px; align-items: center; margin-top: 24px;
}
.rank-head__copy { max-width: 620px; }
.rank-head__plate {
  position: relative; margin: 0; border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow-2);
  transform: rotate(1deg); transition: transform 0.5s var(--ease);
}
.rank-head__plate:hover { transform: rotate(0deg) translateY(-4px); }
.rank-head__plate img { display: block; width: 100%; height: 300px; object-fit: cover; }
.rank-head__plate figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 10, 0.94));
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* 17. Breadcrumb
   -------------------------------------------------------------------------- */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.crumbs a:hover { color: var(--text); }
.crumbs span { opacity: 0.4; }

/* 18. Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 80px; padding: 56px 0 34px; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
.footer-grid h4 { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-grid li { list-style: none; margin-bottom: 9px; }
.footer-grid a { font-size: 14px; color: var(--text-2); transition: color 0.18s; }
.footer-grid a:hover { color: var(--crimson-hi); }
.footer-about p { font-size: 14px; color: var(--muted); margin-top: 14px; max-width: 40ch; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

/* 19. Utilities
   -------------------------------------------------------------------------- */
.empty-state { text-align: center; padding: 70px 20px; border: 1px dashed var(--line-2); border-radius: var(--radius); color: var(--muted); }
.empty-state strong { display: block; color: var(--text); font-family: var(--font-display); text-transform: uppercase; margin-bottom: 8px; font-size: 1.1rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 24px);
  background: rgba(18, 19, 26, 0.96); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 12px 20px; font-size: 14px; font-weight: 600; z-index: 300;
  opacity: 0; pointer-events: none; transition: 0.3s var(--ease); box-shadow: var(--shadow-2);
  backdrop-filter: blur(12px);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Scroll reveal is a progressive enhancement: without JS everything renders normally. */
.reveal { transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-in { opacity: 1; transform: none; }

.divider-glow { height: 1px; background: linear-gradient(90deg, transparent, rgba(229, 20, 47, 0.5), transparent); margin: 0; border: 0; }

/* 20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .layout-2col { grid-template-columns: 1fr; }
  .side-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero__grid, .profile-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .rank-head { grid-template-columns: 1fr; gap: 30px; }
  .rank-head__plate { transform: none; }
  .rank-head__plate img { height: 210px; }
  /* The duel keeps both contenders on screen together, so it stays side by side
     and the VS badge floats over the gap instead of taking its own column. */
  .duel { position: relative; grid-template-columns: 1fr 1fr; gap: 10px; }
  .duel__vs {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    z-index: 3; font-size: 1.3rem; width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center; background: rgba(7, 7, 10, 0.88);
    border: 1px solid var(--line-2);
  }
  .duelist { min-height: 260px; padding: 16px; border-radius: var(--radius); }
  .duelist__cta { padding: 8px 14px; font-size: 12px; }
  .duelist__verdict { inset: auto 12px 12px auto; font-size: 0.8rem; }
  .srow { grid-template-columns: 40px 26px minmax(0, 1fr) auto; gap: 10px; padding: 10px 12px; }
  .srow__thumb { display: none; }
  .board__row { grid-template-columns: 32px minmax(0, 1fr) auto; gap: 10px; }
  .board__wl { display: none; }
  .arena__grid { grid-template-columns: 1fr; }
  .arena__vs { padding-top: 0; text-align: center; }
  .podium { grid-template-columns: 1fr; }
  .podium > *:nth-child(1) { order: 0; transform: none; }
  .podium > *:nth-child(2) { order: 1; }
  .vrow {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-areas: "rank main" "side side";
    row-gap: 12px;
  }
  .vrow__thumb { display: none; }
  .vrow__rank { grid-area: rank; font-size: 1.6rem; align-self: start; }
  .vrow__main { grid-area: main; }
  .vrow__side { grid-area: side; justify-content: flex-end; padding-top: 12px; border-top: 1px solid var(--line); }
  .vrow:hover { transform: none; }
}

@media (max-width: 760px) {
  :root { --header-h: 60px; }
  .wrap, .wrap-narrow { width: min(100% - 28px, var(--wrap)); }
  .section { padding: 58px 0; }
  .hero { padding: 56px 0 48px; }
  .nav-toggle { display: flex; }
  /* The nav becomes a fixed drawer, so the bar only needs logo and toggle. */
  .header-inner { grid-template-columns: auto minmax(0, 1fr); }
  .brand img { height: 27px; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 2px; padding: 14px 20px 22px; margin: 0;
    background: rgba(9, 9, 13, 0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line); transform: translateY(-120%);
    transition: transform 0.32s var(--ease); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 13px 14px; font-size: 15px; }
  .header-tools .btn { display: none; }
  .hero__stats { gap: 22px; }
  .card-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .toolbar { position: static; }
  .arena { padding: 20px; }
  .cmp-row { grid-template-columns: 1fr 88px 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-head { padding: 40px 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  html.js .reveal { opacity: 1; transform: none; }
}
