/* ═══════════════════════════════════════════════════════════
   Pocket Cult — "Systema Obscura" · The evil wing of Nyxelium.
   Same spec-sheet grid DNA as the studio site, flipped to the
   game's palette: near-black purple, gold serif, cyan souls.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0812;
  --bg-raise: #120d1e;
  --bg-panel: #171126;
  --parchment: #f0e2c0;
  --body: #b9abce;
  --muted: #8d7ea6;
  --gold: #e0b45c;
  --gold-deep: #c2933b;
  --gold-ink: #1c1206;
  --cyan: #46e0d2;
  --soul: #9d6bff;
  --blood: #d05a45;
  --line: rgba(224, 180, 92, 0.34);
  --line-soft: rgba(224, 180, 92, 0.16);
  --line-faint: rgba(224, 180, 92, 0.09);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

::selection { background: var(--gold); color: var(--gold-ink); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 12px 20px;
  font: 500 12px 'JetBrains Mono', monospace;
}
.skip-link:focus { left: 0; }

/* ═══ Keyframes ═══ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spriteFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes spriteFloatAlt {
  0%, 100% { transform: translateY(-10px); }
  50%      { transform: translateY(6px); }
}
@keyframes torchPulse {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1; }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(70, 224, 210, 0.4); }
  60%      { box-shadow: 0 0 0 7px rgba(70, 224, 210, 0); }
}

/* Serif display */
.display {
  font-family: 'Cinzel', 'Space Grotesk', serif;
  font-weight: 700;
  color: var(--parchment);
}
.display .gilt {
  background: linear-gradient(178deg, #f6e7bb 12%, #e6bd66 46%, #b8852f 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══════════════════ HEADER ═══════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 8, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 0.9fr;
  border-bottom: 1px solid var(--line);
}
.site-header > * {
  padding: 20px 40px;
  border-right: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
}
.header-brand {
  gap: 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--parchment);
}
.header-brand img {
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line-soft);
}
.header-back {
  font: 500 12px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s var(--ease);
}
.header-back:hover { color: var(--cyan); }
.header-nav { gap: 26px; font-size: 14.5px; font-weight: 500; }
.header-nav a { transition: color 0.2s var(--ease); }
.header-nav a:hover { color: var(--gold); }
.header-cta {
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 700;
  font-size: 14px;
  justify-content: space-between;
  border-right: none;
  transition: background 0.2s var(--ease);
}
.header-cta:hover { background: var(--parchment); }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.hero-copy {
  padding: 104px 56px 92px;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(224, 180, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 180, 92, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 40%, #000 40%, transparent 100%);
}
.hero-inner { position: relative; }
.hero-eyebrow {
  font: 500 12px 'JetBrains Mono', monospace;
  color: var(--cyan);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  animation: riseIn 0.7s var(--ease) both;
}
.hero-title {
  font-size: clamp(58px, 6.6vw, 100px);
  line-height: 1.02;
  letter-spacing: 0.015em;
  margin-bottom: 34px;
  text-shadow: 0 6px 60px rgba(224, 180, 92, 0.18);
}
.hero-title span.line { display: block; }
.hero-title .l1 { animation: riseIn 0.8s var(--ease) 0.08s both; }
.hero-title .l2 { animation: riseIn 0.8s var(--ease) 0.18s both; }
.hero-lead {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--body);
  max-width: 48ch;
  margin-bottom: 42px;
  animation: riseIn 0.8s var(--ease) 0.32s both;
}
.hero-lead strong { color: var(--parchment); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  animation: riseIn 0.8s var(--ease) 0.44s both;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font: 500 11.5px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
  animation: riseIn 0.8s var(--ease) 0.54s both;
}
.hero-meta span::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-right: 9px;
  vertical-align: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 17px 32px;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow: 0 8px 34px rgba(224, 180, 92, 0.22);
}
.btn-gold:hover {
  background: var(--parchment);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(224, 180, 92, 0.32);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--parchment);
  font-weight: 600;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 14px 28px; font-size: 14px; }

/* Hero art */
.hero-art {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  animation: torchPulse 5s ease-in-out infinite;
}
.hero-glow.g1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(157, 107, 255, 0.32), transparent 70%);
  top: 4%; right: -10%;
}
.hero-glow.g2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(224, 140, 60, 0.24), transparent 70%);
  bottom: -6%; left: -12%;
  animation-delay: 2.4s;
}
.hero-sprite { position: absolute; }
.hero-sprite img {
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.55));
}
.hero-sprite.lich {
  width: min(58%, 300px);
  top: 12%; left: 8%;
  animation: spriteFloat 7s ease-in-out infinite;
  z-index: 2;
}
.hero-sprite.demon {
  width: min(52%, 270px);
  bottom: 7%; right: 5%;
  animation: spriteFloatAlt 8s ease-in-out infinite;
}
.hero-caption {
  position: absolute;
  left: 24px; bottom: 18px;
  font: 500 10.5px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ═══════════════════ MARQUEE ═══════════════════ */
.marquee {
  border-bottom: 1px solid var(--line);
  background: var(--gold);
  color: var(--gold-ink);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font: 700 13px 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}
.marquee-track span { white-space: nowrap; padding-right: 48px; }

/* ═══════════════════ STATS ═══════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  font: 500 12px 'JetBrains Mono', monospace;
  color: var(--muted);
}
.stats > div {
  padding: 24px 40px;
  border-right: 1px solid var(--line-soft);
}
.stats > div:last-child { border-right: none; }
.stats .num {
  color: var(--gold);
  font-size: 26px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
}

/* ═══════════════════ SECTION SCAFFOLD ═══════════════════ */
.section-eyebrow {
  font: 500 12px 'JetBrains Mono', monospace;
  color: var(--cyan);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
}
.section-h2 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.section-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
}

/* ═══════════════════ THE DARK LOOP ═══════════════════ */
.loop {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--line);
}
.loop-intro {
  padding: 76px 56px;
  border-right: 1px solid var(--line-soft);
}
.loop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.loop-cell {
  padding: 36px 30px 40px;
  border-right: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  transition: background 0.25s var(--ease);
  position: relative;
}
.loop-cell:hover { background: var(--bg-raise); }
.loop-grid { margin-bottom: -1px; }
.loop-num {
  font: 500 11px 'JetBrains Mono', monospace;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.loop-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--parchment);
  margin-bottom: 9px;
  letter-spacing: 0.03em;
}
.loop-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}
.loop-desc em {
  font-style: normal;
  color: var(--cyan);
}

/* ═══════════════════ MINION ROSTER ═══════════════════ */
.roster { border-bottom: 1px solid var(--line); }
.roster-head {
  padding: 76px 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}
.roster-note {
  font: 500 11.5px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.9;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-soft);
}
.minion-card {
  border-right: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  padding: 26px 22px 24px;
  position: relative;
  transition: background 0.25s var(--ease);
  overflow: hidden;
}
.minion-card:nth-child(5n) { border-right: none; }
.roster-grid { margin-bottom: -1px; }
.minion-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 30%, rgba(157, 107, 255, 0.14), transparent 75%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.minion-card:hover { background: var(--bg-raise); }
.minion-card:hover::after { opacity: 1; }
.minion-card img {
  width: 78%;
  max-width: 168px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease);
}
.minion-card:hover img { transform: translateY(-7px) scale(1.04); }
.minion-tier {
  font: 500 10px 'JetBrains Mono', monospace;
  color: var(--soul);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.minion-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--parchment);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.minion-role {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════ BUILDINGS / ESCALATION ═══════════════════ */
.lair {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--line);
  background: var(--bg-raise);
}
.lair-intro {
  padding: 76px 56px;
  border-right: 1px solid var(--line-soft);
}
.lair-intro .section-lead { margin-bottom: 30px; }
.lair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lair-card {
  padding: 40px 36px;
  border-right: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  display: flex;
  gap: 24px;
  align-items: center;
  transition: background 0.25s var(--ease);
}
.lair-card:nth-child(2n) { border-right: none; }
.lair-card:nth-child(n+3) { border-bottom: none; }
.lair-card:hover { background: var(--bg-panel); }
.lair-card img {
  width: 108px;
  flex: none;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s var(--ease);
}
.lair-card:hover img { transform: scale(1.07); }
.lair-tier {
  font: 500 10px 'JetBrains Mono', monospace;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.lair-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--parchment);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.lair-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ═══════════════════ SCREENSHOTS ═══════════════════ */
.shots { border-bottom: 1px solid var(--line); }
.shots-head {
  padding: 76px 56px 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.shots-hint {
  font: 500 11.5px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-bottom: 30px;
}
.shots-strip {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 26px 56px 64px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(224, 180, 92, 0.3) transparent;
}
.shots-strip::-webkit-scrollbar { height: 6px; }
.shots-strip::-webkit-scrollbar-track { background: transparent; }
.shots-strip::-webkit-scrollbar-thumb {
  background: rgba(224, 180, 92, 0.3);
  border-radius: 3px;
}
.shot {
  flex: none;
  width: 264px;
  scroll-snap-align: center;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.shot:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.65), 0 0 44px rgba(224, 180, 92, 0.14);
}

/* ═══════════════════ ASCEND ═══════════════════ */
.ascend {
  position: relative;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 82% 50%, rgba(157, 107, 255, 0.16), transparent 65%),
    var(--bg-raise);
}
.ascend-copy { padding: 90px 56px; position: relative; }
.ascend-copy .section-lead { max-width: 52ch; margin-bottom: 34px; }
.ascend-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.ascend-art img {
  width: min(66%, 380px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: spriteFloat 9s ease-in-out infinite;
}
.ascend-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.ascend-stat .k {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--soul);
}
.ascend-stat .v {
  font: 500 11px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ═══════════════════ FINAL CTA / FOOTER ═══════════════════ */
.finale {
  padding: 120px 56px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.finale::before {
  content: '';
  position: absolute;
  left: 50%; top: 58%;
  width: 780px; height: 780px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(224, 180, 92, 0.13), transparent 62%);
  pointer-events: none;
}
.finale-eyebrow {
  font: 500 12px 'JetBrains Mono', monospace;
  color: var(--cyan);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.finale-title {
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1.04;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
  position: relative;
}
.finale-sub {
  font-size: 16.5px;
  color: var(--body);
  max-width: 52ch;
  margin: 0 auto 44px;
  line-height: 1.7;
  position: relative;
}
.finale .btn { position: relative; }
.finale-foot {
  margin-top: 26px;
  font: 500 11px 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.06em;
  position: relative;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 56px;
  font: 500 11px 'JetBrains Mono', monospace;
  color: var(--muted);
}
.footer-copy { display: flex; align-items: center; gap: 10px; }
.footer-copy .mark { width: 8px; height: 8px; background: var(--gold); flex: none; }
.footer-legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-legal a { transition: color 0.2s var(--ease); }
.footer-legal a:hover { color: var(--parchment); }

/* ═══════════════════ REVEAL ═══════════════════ */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1180px) {
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
  .minion-card:nth-child(5n) { border-right: 1px solid var(--line-faint); }
  .minion-card:nth-child(3n) { border-right: none; }
}

@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-back, .header-nav { display: none; }
  .header-brand { border-right: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 40px 60px; border-right: none; }
  .hero-art { min-height: 460px; border-top: 1px solid var(--line-soft); }

  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div:nth-child(2) { border-right: none; }
  .stats > div:nth-child(1), .stats > div:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .loop { grid-template-columns: 1fr; }
  .loop-intro { border-right: none; padding: 56px 40px; }
  .loop-grid { grid-template-columns: 1fr 1fr; }

  .roster-head { grid-template-columns: 1fr; padding: 56px 40px 36px; }
  .roster-note { text-align: left; }

  .lair { grid-template-columns: 1fr; }
  .lair-intro { border-right: none; padding: 56px 40px; }

  .shots-head { padding: 56px 40px 8px; }
  .shots-strip { padding: 22px 40px 56px; }

  .ascend { grid-template-columns: 1fr; }
  .ascend-copy { padding: 64px 40px; }
  .ascend-art { min-height: 340px; padding-bottom: 44px; }

  .finale { padding: 90px 40px 84px; }
  .footer-bottom { padding: 20px 40px; }
}

@media (max-width: 620px) {
  .hero-copy { padding: 56px 24px 48px; }
  .hero-lead { font-size: 16.5px; }
  .hero-art { min-height: 380px; }
  .hero-sprite.lich { width: 56%; left: 4%; }
  .hero-sprite.demon { width: 50%; right: 2%; }

  .stats { grid-template-columns: 1fr; }
  .stats > div { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .stats > div:last-child { border-bottom: none; }

  .loop-grid { grid-template-columns: 1fr; }
  .loop-cell { border-right: none; }
  .loop-intro { padding: 48px 24px; }

  .roster-grid { grid-template-columns: 1fr 1fr; }
  .minion-card:nth-child(3n) { border-right: 1px solid var(--line-faint); }
  .minion-card:nth-child(2n) { border-right: none; }
  .roster-head { padding: 48px 24px 28px; }

  .lair-intro { padding: 48px 24px; }
  .lair-grid { grid-template-columns: 1fr; }
  .lair-card { border-right: none; padding: 30px 24px; }
  .lair-card:nth-child(3) { border-bottom: 1px solid var(--line-faint); }

  .shots-head { padding: 48px 24px 8px; }
  .shots-strip { padding: 18px 24px 48px; gap: 18px; }
  .shot { width: 224px; }

  .ascend-copy { padding: 52px 24px; }
  .finale { padding: 72px 24px 64px; }
  .footer-bottom { padding: 20px 24px; }
}

/* ═══════════════════ REDUCED MOTION ═══════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero-sprite.lich, .hero-sprite.demon, .ascend-art img { animation: none; }
  .hero-glow { animation: none; opacity: 0.8; }
}
