/* ===================================================================
   RAP REDUX — light editorial theme (v2)
   =================================================================== */
:root {
  --paper:      #F6F2EA;   /* warm paper base            */
  --paper-2:    #EFE9DD;   /* slightly deeper paper      */
  --ink:        #17130E;   /* warm near-black            */
  --ink-2:      #4A4136;   /* secondary text             */
  --ink-3:      #8A8072;   /* muted / meta               */
  --orange:     #E4531B;   /* brand accent, editorial-tuned */
  --orange-deep:#B83F12;
  --gold:       #C9A24B;   /* archive / members accent   */
  --night:      #141019;   /* deep cinematic dark        */
  --night-2:    #0D0B12;
  --line:       #E1D8C9;   /* warm hairline              */
  --line-strong:#CDBFA9;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-script: "Caveat", cursive;
  --font-mark: "Anton", Impact, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  background: linear-gradient(135deg, #FCFAF5 0%, var(--paper) 35%, #E4D9BE 68%, var(--line-strong) 100%);
  background-attachment: fixed;
  background-size: 100vw 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.4s ease;
}
html[data-theme="dark"] body {
  background: linear-gradient(135deg, #2A2118 0%, var(--paper) 45%, var(--night-2) 100%);
  background-attachment: fixed;
  background-size: 100vw 100vh;
}

/* subtle paper grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* ===================== Landing gate ===================== */
.gate { position: relative; }
.gate__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* frosted glass panel housing the landing content (experimental) */
.gate__panel {
  position: relative;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.4);
  box-shadow: 0 40px 90px -40px rgba(23,19,14,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: clamp(1.75rem, 4.5vw, 3.25rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 3rem);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
html[data-theme="dark"] .gate__panel {
  border-color: rgba(255,255,255,0.14);
  background: rgba(20,17,12,0.35);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ---------- Shared-R brand mark ---------- */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.brand__logo {
  display: block;
  width: clamp(170px, 22vw, 268px);
  height: auto;
}
.brand__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.2rem;
}
.brand__social a {
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.brand__social a:hover,
.brand__social a:focus-visible { color: var(--orange); transform: translateY(-2px); outline: none; }
.brand__social a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 4px; }
.brand__social svg {
  width: clamp(20px, 2.4vw, 24px);
  height: clamp(20px, 2.4vw, 24px);
  display: block;
}

/* ---------- Choice cards ---------- */
.choices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
}
.card--magazine { background: linear-gradient(180deg, #FCFAF5, var(--paper-2)); color: var(--ink); }
.card--archive  { background: var(--night); color: #F4F1EA; border-color: #241D30; }

.card__media {
  position: relative;
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ----- Magazine: the cover as a physical book ----- */
.book {
  perspective: 1400px;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book__block {
  position: relative;
  transform: rotateY(-22deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
  filter: drop-shadow(-18px 26px 30px rgba(23, 19, 14, 0.32));
}
.book__cover {
  display: block;
  height: clamp(188px, 25vw, 300px);
  width: auto;
  border-radius: 2px 4px 4px 2px;
}
/* spine highlight + page edges */
.book__block::before {   /* pages (right edge) */
  content: "";
  position: absolute;
  top: 2%;
  right: -10px;
  height: 96%;
  width: 12px;
  background: repeating-linear-gradient(90deg, #efe9dc 0 1px, #d8cfbd 1px 2px);
  transform: rotateY(90deg) translateZ(6px);
  transform-origin: right center;
  border-radius: 1px;
}
.book__block::after {    /* glossy spine sheen (left) */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2px 4px 4px 2px;
  background: linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0) 14%, rgba(255,255,255,0.14) 30%, rgba(255,255,255,0) 46%);
  pointer-events: none;
}
.card--magazine:hover .book__block { transform: rotateY(-9deg) rotateX(1deg) translateY(-4px); }

/* ----- Archive: cinematic film panel with documentary still ----- */
.card__media--film { background: var(--night-2); }
.card__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease), filter 0.6s var(--ease);
}
.card__still.is-active {
  opacity: 1;
  animation: stillKenBurns 5s var(--ease) forwards;
}
@keyframes stillKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.card--archive:hover .card__still.is-active { transform: scale(1.1); }
@media (prefers-reduced-motion: reduce) {
  .card__still.is-active { animation: none; }
}
.card__media--film::after {  /* legibility + cinematic scrim */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,11,18,0.15) 0%, rgba(13,11,18,0.0) 30%, rgba(13,11,18,0.55) 100%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0 2px, transparent 2px 5px);
  pointer-events: none;
}
.playbtn {
  z-index: 2;
  position: relative;
  width: clamp(58px, 8vw, 80px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(244,241,234,0.9);
  background: rgba(13,11,18,0.4);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.playbtn::after { /* pulse ring */
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
}
.playbtn__tri {
  width: 0; height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #F4F1EA;
  transition: border-left-color 0.5s var(--ease);
}
.card--archive:hover .playbtn { transform: scale(1.08); border-color: var(--gold); background: rgba(201,162,75,0.12); }
.card--archive:hover .playbtn::after { animation: pulse 1.6s var(--ease) infinite; }
@keyframes pulse { 0% { opacity: 0.7; transform: scale(1);} 100% { opacity: 0; transform: scale(1.5);} }
.card__filmlabel {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(244,241,234,0.55);
}

/* ----- Card footer ----- */
.card__foot {
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.3rem, 2.8vw, 1.9rem) clamp(1.3rem, 2.6vw, 1.8rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--line);
}
.card--archive .card__foot { border-top-color: #241D30; }
.card__eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--orange);
}
.card__eyebrow--gold { color: var(--gold); }
.card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.card__sub {
  color: var(--ink-2);
  font-size: 0.98rem;
  font-weight: 400;
}
.card--archive .card__sub { color: rgba(244,241,234,0.6); }
.card__cta {
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.card--archive .card__cta { color: #F4F1EA; }
.card__cta .arrow { transition: transform 0.4s var(--ease); color: var(--orange); }
.card--archive .card__cta .arrow { color: var(--gold); }
.card:hover .card__cta .arrow { transform: translateX(6px); }

/* hover lift + glow */
.card--magazine:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 26px 60px -28px rgba(228,83,27,0.55), 0 8px 20px -12px rgba(23,19,14,0.25);
}
.card--archive:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 26px 60px -28px rgba(201,162,75,0.5);
}
.card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ---------- Footer ---------- */
.gate__foot {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--ink-3);
}
.gate__foot .dot { color: var(--line-strong); }

/* ---------- copyright mark (accompanies the logo/wordmark in each footer) ---------- */
.copyright-mark { opacity: 0.7; }
.reader__endmark .copyright-mark,
.archive__foot .copyright-mark {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--ink-3);
  margin-left: 0.4rem;
  vertical-align: text-bottom;
}

/* ===================== Load choreography ===================== */
@media (prefers-reduced-motion: no-preference) {
  .brand__logo { animation: markWipe 1s var(--ease) both; }
  .brand__social { animation: fadeUp 0.7s var(--ease) 0.85s both; }
  .card { opacity: 0; animation: cardReveal 0.9s var(--ease) both; }
  .card--magazine { animation-delay: 0.95s; }
  .card--archive  { animation-delay: 1.1s; }
  .gate__foot { animation: fadeUp 0.8s var(--ease) 1.4s both; }

  @keyframes markWipe {
    0%   { clip-path: inset(0 100% 0 0); opacity: 0; transform: translateY(6px); }
    55%  { opacity: 1; }
    100% { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cardReveal {
    from { opacity: 0; transform: translateY(34px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
}

/* ===================== Responsive ===================== */
@media (max-width: 720px) {
  .choices { grid-template-columns: 1fr; }
  .gate__inner { justify-content: flex-start; padding-top: clamp(3rem, 12vw, 5rem); }
}

/* ===================================================================
   MAGAZINE READER — light editorial (v2)
   =================================================================== */
.reader { /* background handled by the shared body gradient */ }

/* reading progress */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; z-index: 60;
}
.progress__bar {
  display: block; height: 100%; width: 0;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(228,83,27,0.6);
}

/* top bar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(246,242,234,0.92), rgba(246,242,234,0));
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar.is-solid {
  background: rgba(246,242,234,0.9);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom-color: var(--line);
}
.topbar__logo { display: block; height: clamp(22px, 3vw, 30px); width: auto; }
.topbar__issue {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em;
  font-size: 0.68rem; color: var(--ink-3);
}

/* ---------- cover hero ---------- */
.cover {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  padding: clamp(5rem, 10vh, 8rem) 1.25rem 3rem;
  overflow: hidden;
}
.cover::before { /* soft warm glow behind the book */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 45% at 50% 42%, rgba(228,83,27,0.10), transparent 70%);
  pointer-events: none;
}
.cover__img {
  position: relative;
  max-height: 74vh; width: auto; max-width: 88vw;
  border-radius: 2px;
  box-shadow: 0 40px 80px -30px rgba(23,19,14,0.55), 0 0 0 1px rgba(23,19,14,0.06);
  will-change: transform;
}
/* one-time orange glow triggered by the reader's first scroll, then settles back */
.cover__img.is-glowing { animation: coverScrollGlow 5s ease-in-out; }
@keyframes coverScrollGlow {
  0%   { filter: drop-shadow(0 0 0 rgba(228,83,27,0)); }
  25%  { filter: drop-shadow(0 0 50px rgba(228,83,27,0.9)) drop-shadow(0 0 100px rgba(228,83,27,0.5)); }
  60%  { filter: drop-shadow(0 0 42px rgba(228,83,27,0.7)) drop-shadow(0 0 85px rgba(228,83,27,0.35)); }
  100% { filter: drop-shadow(0 0 0 rgba(228,83,27,0)); }
}
.cover__meta {
  position: relative; margin-top: 1.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  text-align: center;
}
.cover__edition {
  font-family: var(--font-script); font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--orange); line-height: 1;
}
.cover__scroll {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.68rem; color: var(--ink-3);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ---------- shared column ---------- */
.contents, .story { max-width: 760px; margin: 0 auto; }
.story--feature { max-width: 820px; }

/* ---------- contents ---------- */
.contents {
  padding: clamp(3.5rem, 9vw, 6rem) 1.5rem;
  border-bottom: 1px solid var(--line);
}
.contents__kicker {
  text-align: center; margin-bottom: 2.25rem;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.72rem; color: var(--orange);
}
.contents__list { list-style: none; }
.contents__list li { border-top: 1px solid var(--line); }
.contents__list li:last-child { border-bottom: 1px solid var(--line); }
.contents__list a {
  display: flex; align-items: baseline; gap: 1.25rem;
  padding: 1.05rem 0.25rem; text-decoration: none; color: var(--ink);
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease), background 0.25s var(--ease);
}
.contents__list a:hover { color: var(--orange); padding-left: 0.85rem; }
.contents__no {
  font-family: var(--font-display); font-weight: 900;
  font-size: 0.95rem; color: var(--orange); min-width: 2.4ch;
}
.contents__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1rem, 2.2vw, 1.35rem); letter-spacing: -0.01em;
}

/* ---------- story blocks ---------- */
.story {
  padding: clamp(4rem, 9vw, 6.5rem) 1.5rem;
  border-bottom: 1px solid var(--line);
}
.story__head { margin-bottom: 2.75rem; }

/* framed section tag (Man City device) */
.story__eyebrow {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.68rem; color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0.4rem 0.75rem 0.34rem;
  margin-bottom: 1.25rem;
}
.story__title {
  font-family: var(--font-display); font-weight: 900;
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5.2vw, 3.5rem);
  line-height: 1.0; letter-spacing: -0.02em; color: var(--ink);
}
.story__title-glow {
  color: var(--orange);
  animation: titleGlow 2.2s ease-in-out infinite alternate;
}
@keyframes titleGlow {
  from { text-shadow: 0 0 6px rgba(228,83,27,0.35), 0 0 14px rgba(228,83,27,0.2); }
  to   { text-shadow: 0 0 18px rgba(228,83,27,0.9), 0 0 38px rgba(228,83,27,0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .story__title-glow { animation: none; text-shadow: 0 0 16px rgba(228,83,27,0.65); }
}
.story__script {
  font-family: var(--font-script); font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 0.9; color: var(--orange);
  margin-bottom: 0.1rem;
}
.story__standfirst {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem); line-height: 1.45;
  color: var(--ink-2); margin-top: 1.1rem; max-width: 42ch;
}
.story__byline {
  margin-top: 1.1rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; color: var(--ink-3);
}
.story__subhead {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 1.1;
  letter-spacing: -0.01em; color: var(--ink);
  margin: 2.75rem 0 1.2rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}

/* body copy */
.story__body {
  font-family: var(--font-body); font-weight: 400;
  font-size: 1.14rem; line-height: 1.75; color: var(--ink-2);
}
.story__body p { margin-bottom: 1.4rem; }
.story__body em { font-style: italic; color: var(--ink); }
.story__dropcap::first-letter {
  font-family: var(--font-display); font-weight: 900;
  float: left; font-size: 4.4rem; line-height: 0.78;
  padding: 0.28rem 0.7rem 0 0; color: var(--orange);
}
.pullquote {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.45rem, 3.6vw, 2.1rem); line-height: 1.22;
  color: var(--ink);
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem; margin: 2.5rem 0;
}

/* ---------- battles of the month ---------- */
.botm { display: grid; gap: 1.75rem; }
.botm__label {
  font-family: var(--font-display); font-weight: 900;
  text-transform: uppercase; font-size: 1.5rem; color: var(--orange);
  margin-bottom: 0.6rem;
}
.botm__list { list-style: none; }
.botm__list li {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.2rem; padding: 0.55rem 0;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.botm__list span { color: var(--orange); font-style: italic; margin: 0 0.5rem; font-weight: 400; }
.botm__list--tbd li { color: var(--ink-3); font-style: italic; font-weight: 400; }
.botm__battle {
  color: inherit; text-decoration: none;
  display: inline-flex; align-items: baseline;
  transition: color 0.25s var(--ease);
}
.botm__battle:hover, .botm__battle:focus-visible { color: var(--orange); outline: none; }
.botm__go {
  margin-left: 0.55rem; color: var(--orange); font-style: normal;
  opacity: 0; transform: translateX(-5px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.botm__battle:hover .botm__go, .botm__battle:focus-visible .botm__go { opacity: 1; transform: translateX(0); }
.botm__battle:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- interviews ---------- */
.interview__note {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange-deep);
  border: 1px dashed rgba(228,83,27,0.5);
  padding: 0.7rem 1rem; margin-bottom: 2rem; border-radius: 2px;
}
.interview { list-style: none; counter-reset: q; }
.interview > .interview__q {
  counter-increment: q; position: relative;
  padding: 1.2rem 0 1.2rem 3rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.18rem; line-height: 1.4; color: var(--ink);
}
.interview > .interview__q::before {
  content: counter(q, decimal-leading-zero);
  position: absolute; left: 0; top: 1.35rem;
  font-family: var(--font-display); font-weight: 900;
  font-size: 0.9rem; color: var(--orange);
}
.interview--count { counter-reset: none; margin-top: 1rem; }
.interview--count > .interview__q { padding-left: 3.25rem; }
.interview--count > .interview__q::before { content: none; }
.interview--count .count {
  position: absolute; left: 0; top: 1rem;
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; color: var(--orange);
}

/* ---------- ranking ---------- */
.ranking { list-style: none; margin-top: 1rem; }
.rank {
  display: flex; gap: clamp(1rem, 3vw, 1.75rem);
  padding: 2rem 0; border-top: 1px solid var(--line);
}
.rank__no {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 4.2rem); line-height: 0.82;
  color: var(--ink); opacity: 0.16; min-width: 2.2ch;
}
.rank--one .rank__no { color: var(--orange); opacity: 1; }
.rank__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.35rem, 3.6vw, 2rem); line-height: 1.02;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 1rem;
}
.rank__meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem; margin-bottom: 1.1rem;
}
.rank__meta dt {
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.62rem; color: var(--orange-deep); margin-bottom: 0.15rem;
}
.rank__meta dd { font-family: var(--font-body); font-weight: 400; font-size: 0.95rem; color: var(--ink); }
.rank__why { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6; color: var(--ink-2); }

/* honourable mentions */
.hm {
  margin-top: 3rem; padding: 1.75rem;
  border: 1px solid var(--line-strong); background: var(--paper-2);
}
.hm__label {
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.85rem; color: var(--orange-deep); margin-bottom: 0.75rem;
}
.hm p { font-family: var(--font-body); font-weight: 400; line-height: 1.9; color: var(--ink-2); }

/* factbox */
.factbox {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.75rem; padding: 1.75rem; margin-bottom: 2.5rem;
  border: 1px solid var(--line-strong); border-left: 3px solid var(--orange);
  background: var(--paper-2);
}
.factbox__wide { grid-column: 1 / -1; }
.factbox dt {
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.62rem; color: var(--orange-deep); margin-bottom: 0.2rem;
}
.factbox dd { font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--ink); }

/* next issue */
.nextissue { list-style: none; margin: 0.5rem 0 1.5rem; }
.nextissue li {
  font-family: var(--font-display); font-weight: 500;
  padding: 0.5rem 0 0.5rem 1.6rem; position: relative;
  border-bottom: 1px solid var(--line); color: var(--ink);
}
.nextissue li::before {
  content: "+"; position: absolute; left: 0;
  color: var(--orange); font-family: var(--font-display); font-weight: 900;
}

/* ---------- end ---------- */
.reader__end { text-align: center; padding: clamp(4rem, 10vw, 7rem) 1.5rem; }
.reader__endmark { display: inline-block; }
.reader__endmark img { height: clamp(40px, 7vw, 64px); width: auto; }
.reader__endnote {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.72rem; color: var(--ink-3); margin: 1.25rem 0 2rem;
}
.reader__back {
  font-family: var(--font-body); font-weight: 700;
  color: var(--orange); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.85rem;
}
.reader__back:hover { color: var(--orange-deep); }

/* ---------- reveal-on-scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- reader responsive ---------- */
@media (max-width: 560px) {
  .rank { flex-direction: column; gap: 0.5rem; }
  .rank__meta { grid-template-columns: 1fr; }
  .factbox { grid-template-columns: 1fr; }
}

/* ===================================================================
   DOCUMENTARY ARCHIVE — dark cinematic (under construction)
   =================================================================== */
.archive {
  /* page background handled by the shared body gradient */
  color: var(--ink);
  min-height: 100vh;
}
.topbar__link {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; color: var(--ink-3);
  text-decoration: none; transition: color 0.3s var(--ease);
}
.topbar__link:hover { color: var(--orange-deep); }

/* ---------- hero ---------- */
.archero {
  max-width: 780px; margin: 0 auto;
  padding: clamp(7rem, 16vh, 11rem) 1.5rem clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  background: radial-gradient(90% 55% at 50% -8%, rgba(228,83,27,0.10), transparent 60%);
}
.archero__badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem;
  color: var(--orange-deep);
  border: 1px solid rgba(228,83,27,0.35);
  border-radius: 100px; padding: 0.45rem 1rem;
  background: rgba(228,83,27,0.06);
}
.archero__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.archero__script {
  font-family: var(--font-script); font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--orange);
  line-height: 1; margin-top: 1.5rem;
}
.archero__title {
  font-family: var(--font-display); font-weight: 900; font-optical-sizing: auto;
  font-size: clamp(3rem, 10vw, 6rem); line-height: 0.9;
  letter-spacing: -0.02em; color: var(--ink); margin-top: 0.1rem;
}
.archero__lede {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.05rem, 2.3vw, 1.25rem); line-height: 1.7;
  color: var(--ink-2);
  max-width: 44ch; margin: 1.75rem auto 0;
}
.archero__status {
  max-width: 340px; margin: 2.5rem auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.archero__bar {
  width: 100%; height: 4px; border-radius: 100px;
  background: var(--line-strong); overflow: hidden;
}
.archero__bar span {
  display: block; height: 100%; width: 38%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 100px;
  animation: fill 3.5s var(--ease) infinite alternate;
}
@keyframes fill { from { width: 24%; } to { width: 62%; } }
.archero__statusnote {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.66rem; color: var(--ink-3);
}

/* ---------- docs grid ---------- */
.docs { max-width: 1180px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) 4rem; }
.docs__head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.docs__kicker {
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.26em;
  font-size: 0.7rem; color: var(--orange);
}
.docs__heading {
  font-family: var(--font-display); font-weight: 900; font-optical-sizing: auto;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); line-height: 1.0;
  letter-spacing: -0.015em; color: var(--ink); margin-top: 0.75rem;
}

.docgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2.2vw, 1.5rem);
}
.doc {
  border: 1px solid var(--line-strong);
  background: var(--paper-2);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.doc__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.doc__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02);
  transition: transform 0.6s var(--ease), filter 0.5s var(--ease);
}
.doc__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,14,0) 62%, rgba(23,19,14,0.28) 100%);
}
.doc__soon {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.6rem;
  color: #0d0b12; background: var(--gold);
  padding: 0.28rem 0.55rem; border-radius: 3px;
}
.doc__meta { padding: 1rem 1.15rem 1.25rem; }
.doc__name {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.35rem; line-height: 1.05; color: var(--ink);
  letter-spacing: -0.01em;
}
.doc__sub {
  display: block; margin-top: 0.3rem;
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.9rem; color: var(--ink-3);
}
.doc:hover {
  transform: translateY(-6px);
  border-color: rgba(228,83,27,0.6);
  box-shadow: 0 24px 50px -24px rgba(228,83,27,0.45);
}
.doc:hover .doc__media img { transform: scale(1.06); filter: saturate(1.05) brightness(1.03); }

.docs__note {
  text-align: center; margin-top: clamp(2rem, 5vw, 3rem);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--ink-2);
}
.docs__social { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.75rem; }
.docs__social a { color: var(--ink-3); transition: color 0.3s var(--ease), transform 0.3s var(--ease); display: grid; place-items: center; }
.docs__social a:hover { color: var(--gold); transform: translateY(-2px); }
.docs__social svg { width: 22px; height: 22px; display: block; }

/* ---------- footer ---------- */
.archive__foot {
  text-align: center; padding: clamp(3rem, 7vw, 5rem) 1.5rem;
  border-top: 1px solid var(--line);
}
.archive__foot img { height: clamp(30px, 5vw, 42px); width: auto; opacity: 1; }
.archive__foot p {
  margin-top: 1rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em;
  font-size: 0.7rem; color: var(--ink-3);
}

/* dark-page reveal offset */
@media (prefers-reduced-motion: no-preference) {
  .archive .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .archive .reveal.is-in { opacity: 1; transform: none; }
}

@media (max-width: 520px) {
  .docgrid { grid-template-columns: 1fr; }
}

/* ---------- archive hero: blended thumbnail collage (fades on scroll) ---------- */
.archero { position: relative; overflow: hidden; }
.archero__inner { position: relative; z-index: 2; }
.archero__bg {
  position: absolute; inset: 0; z-index: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  gap: 5px;
  opacity: 0.6;
  pointer-events: none;
  will-change: opacity;
}
.archero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.42) grayscale(0.4) contrast(1.03);
}
.archero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(65% 60% at 50% 42%, rgba(20,16,25,0.35), rgba(13,11,18,0.82) 100%),
    linear-gradient(180deg, rgba(23,19,28,0.55) 0%, rgba(10,8,16,0.96) 100%);
}
@media (prefers-reduced-motion: reduce) { .archero__bg { opacity: 0.35; } }

/* ---------- editorial figures (in-article images) ---------- */
.figure { margin: 2.75rem 0; }
.figure img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
}
/* wrapper injected by reader.js around each in-article figure image,
   so it can host a one-time hover shimmer (excludes writer passport
   photos and the magazine cover, which are never wrapped this way) */
.shimmer-frame {
  position: relative; display: block; overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 18px 40px -24px rgba(23,19,14,0.5);
}
.shimmer-frame::after {
  content: ""; position: absolute; top: 0; left: -160%; width: 55%; height: 100%;
  z-index: 2; pointer-events: none; transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
}
.shimmer-frame.is-shimmering::after { animation: imgShimmer 0.9s var(--ease); }
@keyframes imgShimmer { to { left: 175%; } }
@media (prefers-reduced-motion: reduce) { .shimmer-frame::after { display: none; } }
.figure figcaption {
  margin-top: 0.85rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--orange);
  font-family: var(--font-body);
  font-size: 0.85rem; line-height: 1.55; font-style: italic;
  color: var(--ink-3);
}

/* ---------- "This Month in Battle Rap History" image ticker ---------- */
.historyticker__hint {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.66rem; color: var(--ink-3); margin: 0 0 0.7rem;
}
.historyticker {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  border-radius: 2px;
}
.historyticker::-webkit-scrollbar { display: none; }
.historyticker.is-dragging { cursor: grabbing; }
.historyticker__track {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  padding: 0.2rem 0.1rem 0.6rem;
}
.historyticker__item {
  flex: 0 0 auto;
  width: clamp(210px, 30vw, 300px);
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-2);
  box-shadow: 0 14px 30px -20px rgba(23,19,14,0.5);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.historyticker__item img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  user-select: none; -webkit-user-drag: none; pointer-events: none;
}
.historyticker__item:hover, .historyticker__item.is-active {
  border-color: var(--orange); transform: translateY(-3px);
}
.historyticker__item:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.historyticker__caption {
  margin-top: 0.6rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--orange);
  background: var(--paper-2);
  border-radius: 2px;
}
.historyticker__captiontitle {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--ink); margin-bottom: 0.35rem;
}
.historyticker__caption p {
  font-family: var(--font-body); font-size: 0.92rem; line-height: 1.6;
  color: var(--ink-2); margin: 0;
}
.historyticker__caption p + p { margin-top: 0.85rem; }
@media (prefers-reduced-motion: reduce) {
  .historyticker__item { transition: none; }
}

/* ---------- BOTM hints, placeholders & Cam B follow ---------- */
.botm__hint {
  display: block; margin-top: 0.28rem;
  font-family: var(--font-body); font-weight: 400;
  text-transform: none; letter-spacing: normal;
  font-size: 0.72rem; color: var(--ink-3);
}
.botm__ph { color: var(--ink-3); font-style: italic; opacity: 0.7; letter-spacing: 0.06em; }
.botm__ph span { color: var(--ink-3); }

/* glowing-orange follow row (My Corner) */
.follow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.25rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.follow__label {
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; color: var(--ink-2);
}
.follow__icons { display: flex; gap: 0.9rem; }
.follow__icon {
  color: var(--orange);
  display: grid; place-items: center;
  filter: drop-shadow(0 0 6px rgba(228,83,27,0.55));
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
  animation: followGlow 2.4s ease-in-out infinite;
}
.follow__icon:hover, .follow__icon:focus-visible {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 12px rgba(228,83,27,0.9));
  outline: none;
}
.follow__icon svg { width: 22px; height: 22px; display: block; }
@keyframes followGlow {
  0%,100% { filter: drop-shadow(0 0 5px rgba(228,83,27,0.45)); }
  50%     { filter: drop-shadow(0 0 12px rgba(228,83,27,0.85)); }
}
@media (prefers-reduced-motion: reduce) { .follow__icon { animation: none; } }

/* ---------- 2-on-2 team portraits (passport boxes + shine) ---------- */
.rank__faces { display: flex; gap: 0.6rem; margin: 0.1rem 0 1.15rem; }
.face { width: clamp(72px, 12vw, 96px); }
.face__pic {
  position: relative; display: block; overflow: hidden;
  border-radius: 3px; border: 1px solid var(--line-strong);
  box-shadow: 0 6px 16px -8px rgba(23,19,14,0.4);
}
.face__pic img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.face__pic::before {                    /* static gloss */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 42%);
}
.face__pic::after {                     /* moving shine */
  content: ""; position: absolute; top: 0; left: -160%; width: 70%; height: 100%;
  z-index: 2; pointer-events: none; transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.7), transparent);
}
.rank.is-in .face__pic::after { animation: faceShine 1.1s var(--ease) 0.45s; }
.face:hover .face__pic::after { animation: faceShine 0.85s var(--ease); }
@keyframes faceShine { to { left: 175%; } }
.face figcaption {
  margin-top: 0.35rem; text-align: center;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-2);
}
@media (prefers-reduced-motion: reduce) { .face__pic::after { display: none; } }

/* ---------- ranking poll ---------- */
.poll {
  margin-top: 3rem; padding: clamp(1.4rem, 3vw, 1.9rem);
  border: 1px solid var(--line-strong); border-left: 3px solid var(--orange);
  background: var(--paper-2);
}
.poll__q {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.1;
  color: var(--ink); margin-bottom: 1.25rem;
}
.poll__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.poll__opt {
  position: relative; overflow: hidden; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  color: var(--ink); background: #FFFDF9; border: 1.5px solid var(--ink);
  padding: 0.95rem 1.1rem; border-radius: 2px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.poll__opt:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.poll__opt::before {                    /* result fill */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--pct, 0%);
  z-index: 0; background: rgba(228,83,27,0.18); transition: width 0.8s var(--ease);
}
.poll__label, .poll__pct { position: relative; z-index: 1; }
.poll__pct { font-variant-numeric: tabular-nums; opacity: 0; transition: opacity 0.35s ease; }
.poll.is-voted .poll__opt { cursor: default; }
.poll.is-voted .poll__opt:hover { background: #FFFDF9; color: var(--ink); transform: none; }
.poll.is-voted .poll__pct { opacity: 1; }
.poll.is-voted .poll__opt.is-mine { border-color: var(--orange); }
.poll.is-voted .poll__opt.is-mine::before { background: rgba(228,83,27,0.30); }
.poll__total {
  margin-top: 1rem; font-family: var(--font-body); font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3);
}
@media (max-width: 480px) { .poll__opts { grid-template-columns: 1fr; } }

/* ---------- landing mailing-list (compact, centered) ---------- */
.signup {
  position: relative; z-index: 2;
  width: 100%; max-width: 420px; margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--orange);
  background: linear-gradient(180deg, #FCFAF5, var(--paper-2));
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.5rem;
  box-shadow: 0 20px 50px -34px rgba(23,19,14,0.5);
}
.signup__text { display: flex; flex-direction: column; align-items: center; }
.signup__eyebrow {
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.64rem;
  color: var(--orange);
}
.signup__title {
  font-family: var(--font-display); font-weight: 900; font-optical-sizing: auto;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink); margin: 0.35rem 0 0.3rem;
}
.signup__sub { color: var(--ink-2); font-size: 0.82rem; max-width: 32ch; line-height: 1.4; }
.signup__form { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; margin-top: 0.6rem; }
.signup__label {
  align-self: flex-start;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.66rem;
  color: var(--ink-2);
}
.signup__input {
  width: 100%; font-family: var(--font-body); font-size: 0.92rem;
  padding: 0.6rem 0.8rem; border: 1.5px solid var(--line-strong); border-radius: 2px;
  background: #fff; color: var(--ink);
}
.signup__input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,83,27,0.15); }
.signup__input[aria-invalid="true"] { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.15); }
.signup__btn {
  width: 100%; font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer;
  padding: 0.65rem 1.1rem; border: 0; border-radius: 2px;
  background: var(--orange); color: #fff;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.signup__btn:hover { background: var(--orange-deep); transform: translateY(-1px); }
.signup__done {
  font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--ink);
  margin-top: 0.4rem;
}
.signup__error {
  font-family: var(--font-body); font-size: 0.8rem; color: #c0392b;
  margin-top: 0.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .signup { animation: fadeUp 0.8s var(--ease) 1.3s both; }
}

/* Documentary card (landing) — light variant to match the light archive.
   Keeps gold accents to distinguish it from the orange magazine card. */
.card--archive { background: linear-gradient(180deg, #FCFAF5, var(--paper-2)); color: var(--ink); border-color: var(--line-strong); }
.card--archive .card__foot { border-top-color: var(--line); }
.card--archive .card__sub { color: var(--ink-2); }
.card--archive .card__cta { color: var(--ink); }

/* ---------- guest-writer header (My Corner) ---------- */
.story__head--writer { display: flex; gap: clamp(1.25rem, 3vw, 2rem); align-items: center; }
.writer { flex-shrink: 0; margin: 0; }
.writer__pic {
  display: block; width: clamp(112px, 16vw, 150px); position: relative; overflow: hidden;
  border-radius: 4px; border: 1px solid var(--line-strong);
  box-shadow: 0 10px 26px -12px rgba(23,19,14,0.45);
}
.writer__pic img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.writer__pic::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 45%);
}
.writer__pic::after {                   /* moving shine */
  content: ""; position: absolute; top: 0; left: -160%; width: 70%; height: 100%;
  z-index: 2; pointer-events: none; transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.7), transparent);
}
.story__head.is-in .writer__pic::after { animation: faceShine 1.1s var(--ease) 0.45s; }
.writer:hover .writer__pic::after { animation: faceShine 0.85s var(--ease); }
@media (prefers-reduced-motion: reduce) { .writer__pic::after { display: none; } }
.writer__tag {
  margin-top: 0.5rem; text-align: center;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.62rem; color: var(--orange);
}
.writer__meta { flex: 1; min-width: 0; }
.writer__meta .story__eyebrow { margin-bottom: 0.75rem; }
.writer__meta .story__byline { margin-top: 0.9rem; }
.writer__bio {
  margin-top: 0.6rem;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.08rem); line-height: 1.45;
  color: var(--ink-2); max-width: 46ch;
}
.writer__tagline {
  margin-top: 0.55rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.68rem; color: var(--ink-3);
}
.writer__meta .follow { margin: 1rem 0 0; padding: 0; border: 0; }
@media (max-width: 560px) {
  .story__head--writer { flex-direction: column; align-items: flex-start; }
}

/* ---------- locked magazine card ---------- */
.card__lock {
  position: absolute; top: clamp(0.8rem, 2vw, 1.1rem); right: clamp(0.8rem, 2vw, 1.1rem);
  z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(23,19,14,0.92); color: var(--gold);
  border: 1px solid rgba(201,162,75,0.5);
  box-shadow: 0 6px 18px -6px rgba(23,19,14,0.55);
  transition: transform 0.4s var(--ease);
}
.card__lock svg { width: 21px; height: 21px; }
.card--locked .card__media::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 0%, transparent 52%, rgba(23,19,14,0.12));
}
.card--locked:hover .card__lock { transform: scale(1.08); }

/* ===================================================================
   DARK / LIGHT THEME  (default = light; toggle sets data-theme="dark")
   =================================================================== */
html[data-theme="dark"] {
  --paper:      #15120D;
  --paper-2:    #1E1A14;
  --ink:        #F3EFE7;
  --ink-2:      #C6BEB0;
  --ink-3:      #8E8677;
  --orange:     #F5691E;
  --orange-deep:#E4531B;
  --gold:       #D6B45E;
  --line:       #2C2620;
  --line-strong:#3B342A;
}
/* patches for spots that used hard-coded light colours */
html[data-theme="dark"] .card--magazine { background: linear-gradient(180deg, #221D16, var(--paper-2)); }
html[data-theme="dark"] .card--archive  { background: linear-gradient(180deg, #221D16, var(--paper-2)); }
html[data-theme="dark"] .signup         { background: linear-gradient(180deg, #221D16, var(--paper-2)); }
html[data-theme="dark"] .signup__input  { background: #12100B; color: var(--ink); border-color: var(--line-strong); }
html[data-theme="dark"] .poll__opt      { background: #12100B; }
html[data-theme="dark"] .poll.is-voted .poll__opt:hover { background: #12100B; color: var(--ink); }
html[data-theme="dark"] .topbar         { background: linear-gradient(180deg, rgba(21,18,13,0.9), rgba(21,18,13,0)); }
html[data-theme="dark"] .topbar.is-solid{ background: rgba(21,18,13,0.92); border-bottom-color: var(--line); }
html[data-theme="dark"] .grain          { mix-blend-mode: overlay; opacity: 0.3; }
/* invert the ink logo so it reads on dark */
html[data-theme="dark"] .brand__logo,
html[data-theme="dark"] .topbar__logo,
html[data-theme="dark"] .reader__endmark img,
html[data-theme="dark"] .archive__foot img { filter: invert(1) brightness(1.05); }

/* ---------- theme toggle button ---------- */
.themetoggle {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center; cursor: pointer;
  border-radius: 50%; border: 1px solid var(--line-strong);
  background: var(--paper-2); color: var(--ink);
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.themetoggle:hover, .themetoggle:focus-visible { color: var(--orange); border-color: var(--orange); transform: translateY(-1px); outline: none; }
.themetoggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.themetoggle svg { width: 19px; height: 19px; display: block; }
.themetoggle__sun { display: none; }
[data-theme="dark"] .themetoggle__moon { display: none; }
[data-theme="dark"] .themetoggle__sun { display: block; }
.topbar__right { display: flex; align-items: center; gap: clamp(0.75rem, 2vw, 1.25rem); }

/* toggle + its "switch to X mode" caption */
.themetoggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.32rem; }
.themetoggle-wrap--fixed { position: absolute; top: clamp(1rem, 3vw, 1.75rem); right: clamp(1rem, 3vw, 1.75rem); z-index: 60; }
.themetoggle__caption {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.6rem; color: var(--ink-3);
  white-space: nowrap; pointer-events: none;
}

/* ---------- share button (under each article) ---------- */
.share { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.share__btn {
  display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink); background: transparent;
  border: 1.5px solid var(--line-strong); border-radius: 100px;
  padding: 0.6rem 1.15rem;
  transition: color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.share__btn:hover, .share__btn:focus-visible { color: var(--orange); border-color: var(--orange); transform: translateY(-1px); outline: none; }
.share__btn svg { width: 17px; height: 17px; }
.share__btn.is-copied { color: var(--orange); border-color: var(--orange); }

/* follow row used directly under a feature/cover-story head (no divider) */
.follow--header { margin: 1.1rem 0 0; padding: 0; border: 0; }

/* follow row centered at the very end of the magazine */
.follow--end { justify-content: center; margin: 1.5rem auto 0; padding: 0; border: 0; width: fit-content; }

/* ---------- prominent in-article cover feature (Complex-style) ---------- */
.coverfeature { margin: 0 0 3rem; }
.coverfeature img {
  display: block; width: 100%; max-width: 480px; margin: 0 auto;
  border: 1px solid var(--line-strong); border-radius: 2px;
  box-shadow: 0 30px 60px -28px rgba(23,19,14,0.55);
}
.coverfeature figcaption {
  max-width: 480px; margin: 1.1rem auto 0;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.05rem; line-height: 1.55; color: var(--ink-2);
}
.coverfeature figcaption em { font-style: italic; font-weight: 600; color: var(--ink); }
.coverfeature__credit {
  display: block; margin-top: 0.6rem;
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.68rem; color: var(--ink-3);
}

/* ---------- ranking vote: perfect-or-rebuild + reader rank builder ---------- */
.rankvote {
  margin-top: 3rem; padding: clamp(1.4rem, 3vw, 1.9rem);
  border: 1px solid var(--line-strong); border-left: 3px solid var(--orange);
  background: var(--paper-2);
}
.rankvote__q {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.1; color: var(--ink);
  margin-bottom: 0.5rem;
}
.rankvote__sub { font-family: var(--font-body); font-size: 0.9rem; color: var(--ink-2); max-width: 56ch; margin-bottom: 1.4rem; }
.rankvote__cta {
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
  padding: 0.85rem 1.6rem; border: 1.5px solid var(--ink); border-radius: 2px;
  background: #FFFDF9; color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
}
html[data-theme="dark"] .rankvote__cta { color: #17130E; }
.rankvote__cta:hover, .rankvote__cta:focus-visible {
  background: var(--ink); color: var(--paper); transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--orange), 0 0 24px rgba(228,83,27,0.45);
  outline: none;
}

/* builder */
.rankbuilder { margin-top: 2rem; padding-top: 2rem; border-top: 1px dashed var(--line-strong); }
.rankbuilder__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2.6vw, 1.4rem); color: var(--ink); margin-bottom: 0.4rem; }
.rankbuilder__hint { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-2); max-width: 60ch; margin-bottom: 1.4rem; }
.rankbuilder__body { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: start; }
.rankbuilder__label {
  display: block; font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem; color: var(--orange-deep);
  margin-bottom: 0.75rem;
}
.rankbuilder__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.rankbuilder__chip {
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; cursor: pointer;
  padding: 0.45rem 0.85rem; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: #FFFDF9; color: var(--ink);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
}
html[data-theme="dark"] .rankbuilder__chip { color: #17130E; }
.rankbuilder__chip:hover, .rankbuilder__chip:focus-visible {
  border-color: var(--orange); color: var(--orange-deep);
  box-shadow: 0 0 0 1px var(--orange), 0 0 18px rgba(228,83,27,0.55);
  transform: translateY(-1px); outline: none;
}
.rankbuilder__slots { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.rankbuilder__slot {
  display: flex; align-items: center; gap: 0.7rem;
  border: 1.5px dashed var(--line-strong); border-radius: 2px; padding: 0.5rem 0.6rem;
  background: #FFFDF9;
}
.rankbuilder__slot:not(.is-empty) { border-style: solid; }
.rankbuilder__slotno { font-family: var(--font-display); font-weight: 900; color: var(--orange); min-width: 1.7ch; }
.rankbuilder__slotname { flex: 1; font-family: var(--font-body); font-weight: 600; font-size: 0.86rem; }
.rankbuilder__slotname--placeholder { color: var(--ink-3); font-weight: 400; font-style: italic; }
html[data-theme="dark"] .rankbuilder__slotname:not(.rankbuilder__slotname--placeholder) { color: #17130E; }
.rankbuilder__slotctrls { display: flex; gap: 0.3rem; flex-shrink: 0; }
.rankbuilder__ctrl {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent;
  color: var(--ink-2); font-size: 0.78rem; cursor: pointer; display: grid; place-items: center; line-height: 1;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.rankbuilder__ctrl:hover:not(:disabled) { color: var(--orange); border-color: var(--orange); }
.rankbuilder__ctrl:disabled { opacity: 0.3; cursor: not-allowed; }
.rankbuilder__ctrl--rm:hover:not(:disabled) { color: #c0392b; border-color: #c0392b; }
.rankbuilder__submit {
  margin-top: 1.5rem; font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
  padding: 0.8rem 1.5rem; border: 0; border-radius: 2px; background: var(--orange); color: #fff;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.rankbuilder__submit:hover:not(:disabled) { background: var(--orange-deep); transform: translateY(-1px); }
.rankbuilder__submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* the reader's own submitted top 10 */
.rankresult { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.rankresult__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--ink); margin-bottom: 1rem; }
.rankresult__list { list-style: none; display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 1.25rem; }
.rankresult__item { display: flex; align-items: baseline; gap: 0.9rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.rankresult__no { font-family: var(--font-display); font-weight: 900; color: var(--orange); min-width: 2ch; }
.rankresult__name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.rankresult__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.rankresult__edit, .rankresult__reset {
  font-family: var(--font-body); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; background: transparent; border: 1.5px solid var(--line-strong); border-radius: 100px;
  padding: 0.5rem 1rem; color: var(--ink); transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.rankresult__edit:hover { border-color: var(--orange); color: var(--orange); }
.rankresult__reset:hover { border-color: #c0392b; color: #c0392b; }

@media (max-width: 640px) {
  .rankbuilder__body { grid-template-columns: 1fr; }
}

/* ---------- OSBL "Starting 5" roster puzzle ---------- */
.starting5 {
  position: relative;
  margin: 2.75rem 0 0;
  padding: 1.4rem clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--orange);
  background: var(--paper-2);
  border-radius: 2px;
}
.starting5__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.5rem); color: var(--ink);
  margin-bottom: 0.3rem;
}
.starting5__hint {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-2);
  max-width: 62ch; margin-bottom: 1.1rem;
}
.starting5__glow100 {
  font-size: 1.2em; font-weight: 700; color: var(--orange);
  animation: titleGlow 2.2s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .starting5__glow100 { animation: none; text-shadow: 0 0 16px rgba(228,83,27,0.65); }
}
.starting5__board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 760px) {
  .starting5__board { grid-template-columns: repeat(5, 1fr); }
}
.starting5__slot {
  border: 1.5px dashed var(--line-strong);
  border-radius: 2px;
  padding: 0.65rem 0.7rem;
  cursor: pointer;
  background: var(--paper);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.2s var(--ease);
}
.starting5__slot:hover { border-color: var(--orange); }
.starting5__slot.is-filled { border-style: solid; }
.starting5__slot.is-correct { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange), 0 0 16px rgba(228,83,27,0.35); }
.starting5__slotlabel {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; color: var(--ink); margin-bottom: 0.2rem;
}
.starting5__slottagline {
  display: block; font-family: var(--font-body); font-size: 0.66rem;
  color: var(--ink-3); line-height: 1.35; margin-bottom: 0.45rem;
}
.starting5__slotname {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  color: var(--ink-3); font-style: italic;
  min-height: 1.2em;
}
.starting5__slot.is-filled .starting5__slotname { color: var(--ink); font-style: normal; }
.starting5__slot.is-correct .starting5__slotname { color: var(--orange-deep); font-weight: 700; }

.starting5__score {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px dashed var(--line-strong);
}
.starting5__scorelabel {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.7rem; color: var(--ink-3);
}
.starting5__scorepct {
  display: inline-block;
  font-family: var(--font-display); font-weight: 900; font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--orange);
  animation: titleGlow 2.2s ease-in-out infinite alternate;
}
.starting5__scorepct.is-idle { color: var(--ink-3); animation: none; }
.starting5__scorepct.is-scrambling {
  animation: titleGlow 2.2s ease-in-out infinite alternate, scoreShake 0.4s ease-in-out infinite;
}
@keyframes scoreShake {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(-3px) rotate(-2deg); }
  75% { transform: translateX(3px) rotate(2deg); }
}
/* brief "drumroll" on submit: number stays hidden while the glow builds,
   then the real value (and its final colour) is revealed */
.starting5__scorepct.is-revealing {
  color: transparent;
  animation: scoreRevealPulse 0.65s ease-in-out;
}
@keyframes scoreRevealPulse {
  0% { text-shadow: 0 0 6px rgba(228,83,27,0.35); transform: scale(1); }
  60% { text-shadow: 0 0 40px rgba(228,83,27,1), 0 0 70px rgba(228,83,27,0.65); transform: scale(1.18); }
  100% { text-shadow: 0 0 40px rgba(228,83,27,1), 0 0 70px rgba(228,83,27,0.65); transform: scale(1.18); }
}
/* the perfect five glows gold instead of orange, to feel distinct */
.starting5__scorepct.is-gold {
  color: #D4AF37;
  animation: titleGlowGold 2.2s ease-in-out infinite alternate;
}
@keyframes titleGlowGold {
  from { text-shadow: 0 0 6px rgba(212,175,55,0.35), 0 0 14px rgba(212,175,55,0.2); }
  to   { text-shadow: 0 0 18px rgba(212,175,55,0.9), 0 0 38px rgba(212,175,55,0.55); }
}
.starting5__thumb {
  position: absolute;
  font-size: 1.7rem;
  pointer-events: none;
  z-index: 5;
  animation: thumbPop 1.4s ease-out forwards;
}
@keyframes thumbPop {
  0% { opacity: 0; transform: scale(0.4) translateY(8px); }
  15% { opacity: 1; transform: scale(1.15) translateY(0); }
  30% { transform: scale(1) translateY(0); }
  80% { opacity: 1; transform: scale(1) translateY(-16px); }
  100% { opacity: 0; transform: scale(0.9) translateY(-30px); }
}
@media (prefers-reduced-motion: reduce) {
  .starting5__scorepct.is-revealing { animation: none; color: var(--orange); }
  .starting5__scorepct.is-gold { animation: none; text-shadow: 0 0 16px rgba(212,175,55,0.65); }
  .starting5__thumb { display: none; }
}

.starting5__pool { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.starting5__chip {
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; cursor: pointer;
  padding: 0.4rem 0.75rem; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: #FFFDF9; color: var(--ink);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
}
.starting5__chip:hover, .starting5__chip:focus-visible {
  border-color: var(--orange); color: var(--orange-deep);
  box-shadow: 0 0 0 1px var(--orange), 0 0 18px rgba(228,83,27,0.55);
  transform: translateY(-1px); outline: none;
}
.starting5__chip.is-selected {
  border-color: var(--orange); background: var(--orange); color: #fff;
  box-shadow: 0 0 0 1px var(--orange), 0 0 18px rgba(228,83,27,0.55);
}
html[data-theme="dark"] .starting5__chip:not(.is-selected) { color: #17130E; }
@media (prefers-reduced-motion: reduce) {
  .starting5__scorepct { animation: none; text-shadow: 0 0 16px rgba(228,83,27,0.65); }
  .starting5__scorepct.is-scrambling { animation: none; }
  .starting5__scorepct.is-idle { text-shadow: none; }
}
/* condensed spacing for this widget's own submit/share/reset controls */
.starting5 [data-starting5-submit] { margin-top: 1rem; }
.starting5 [data-starting5-share] { margin-top: 1.1rem; }
.starting5 [data-starting5-actions] { margin-top: 0.75rem; }

/* ---------- share your submitted top 10 ---------- */
.rankresult__share {
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.rankresult__sharelabel {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.7rem; color: var(--ink-2);
}
.rankresult__shareicons { display: flex; gap: 0.85rem; }
.rankresult__shareicon {
  cursor: pointer; background: transparent; border: 0; padding: 0; color: var(--orange);
  display: grid; place-items: center;
  filter: drop-shadow(0 0 6px rgba(228,83,27,0.5));
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.rankresult__shareicon:hover, .rankresult__shareicon:focus-visible {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 12px rgba(228,83,27,0.9));
  outline: none;
}
.rankresult__shareicon svg { width: 21px; height: 21px; display: block; }
.rankresult__sharenote {
  font-family: var(--font-body); font-size: 0.78rem; font-style: italic; color: var(--orange-deep);
}
