:root {
  color-scheme: dark;
  --bg: #04050a;
  --bg-raised: #080b13;
  --surface: rgba(14, 17, 30, 0.9);
  --surface-solid: #0e111e;
  --surface-soft: rgba(19, 24, 41, 0.76);
  --line: rgba(255, 109, 0, 0.28);
  --line-strong: rgba(255, 140, 44, 0.62);
  --accent: #ff6d00;
  --accent-light: #ffad4d;
  --violet: #9667ff;
  --violet-soft: rgba(150, 103, 255, 0.2);
  --cyan: #57d9ff;
  --green: #55e7a5;
  --text: #f7f8fc;
  --text-soft: #cad1df;
  --muted: #98a4b8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --shell: 1180px;
  --header-height: 78px;
  --radius: 24px;
  --font-display: "Arial Black", "Segoe UI Black", "Segoe UI", system-ui, sans-serif;
  --font-body: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(107, 66, 181, 0.2), transparent 30rem),
    radial-gradient(circle at 12% 25%, rgba(255, 109, 0, 0.12), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

::selection {
  background: var(--accent);
  color: #080808;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 10px;
  background: #fff;
  color: #050505;
  font-weight: 800;
  transition: transform 160ms ease;
}

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

.page-noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.24) 4px
  );
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 5, 10, 0.76);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 5, 10, 0.94);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.35);
}

.site-nav {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.wordmark {
  width: max-content;
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.wordmark-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 196, 123, 0.45), transparent 26%),
    rgba(255, 109, 0, 0.08);
  color: var(--accent-light);
  font-size: 1rem;
  box-shadow: inset 0 0 18px rgba(255, 109, 0, 0.18);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a,
.footer-links a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--violet));
  content: "";
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="location"],
.footer-links a:hover {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.site-nav > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0.64rem 1rem;
  font-size: 0.68rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #080808;
  box-shadow: 0 12px 32px rgba(255, 109, 0, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 44px rgba(255, 109, 0, 0.38);
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(255, 109, 0, 0.07);
  color: #fff;
}

.button-outline:hover {
  background: rgba(255, 109, 0, 0.14);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.button-discord {
  flex: 0 0 auto;
  background: #7467ef;
  color: #fff;
  box-shadow: 0 12px 34px rgba(116, 103, 239, 0.25);
}

.button-discord:hover {
  background: #8579ff;
  box-shadow: 0 16px 46px rgba(116, 103, 239, 0.38);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 6rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-number,
.panel-kicker {
  margin: 0 0 1rem;
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-number::before {
  width: 38px;
  height: 1px;
  display: inline-block;
  margin: 0 0.7rem 0.22rem 0;
  background: currentColor;
  content: "";
}

.hero h1,
.section-heading h2,
.resurrection-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

.hero h1 span,
.section-heading h2 span,
.resurrection-copy h2 span {
  background: linear-gradient(110deg, #fff 4%, var(--accent-light) 44%, var(--accent) 72%, var(--violet) 112%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin: 1.8rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-facts {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.6rem 0 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts div {
  padding-inline: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-facts div:first-child {
  padding-left: 0;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
}

.hero-facts dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: end;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(255, 153, 68, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 109, 0, 0.18), transparent 58%),
    rgba(8, 10, 18, 0.78);
  box-shadow:
    0 0 0 12px rgba(255, 109, 0, 0.025),
    0 0 80px rgba(255, 109, 0, 0.18),
    var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(150, 103, 255, 0.35);
  border-radius: 50%;
}

.visual-orbit-one {
  inset: -7%;
  animation: orbit-pulse 4s ease-in-out infinite;
}

.visual-orbit-two {
  inset: -13%;
  border-color: rgba(255, 109, 0, 0.16);
  animation: orbit-pulse 4s 1.2s ease-in-out infinite;
}

.visual-caption {
  position: absolute;
  right: 3%;
  bottom: 7%;
  min-width: 170px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(5, 6, 11, 0.92);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.42);
}

.visual-caption strong,
.visual-caption span {
  display: block;
}

.visual-caption strong {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

.visual-caption span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.product-section {
  position: relative;
  padding: clamp(6rem, 10vw, 9rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 3rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.resurrection-copy h2 {
  font-size: clamp(2.65rem, 6vw, 5.8rem);
}

.section-heading > p:last-child,
.resurrection-lead {
  margin: 1.35rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.section-heading-centered > p:last-child {
  max-width: 760px;
  margin-inline: auto;
}

.product-vision {
  background:
    linear-gradient(180deg, rgba(255, 109, 0, 0.03), transparent 26%),
    radial-gradient(circle at 15% 55%, rgba(255, 109, 0, 0.08), transparent 30rem);
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}

.vision-art {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.vision-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 5, 10, 0.9), transparent 38%);
  content: "";
  pointer-events: none;
}

.vision-art img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.vision-art figcaption {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.78rem;
}

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

.feature-card {
  position: relative;
  min-height: 240px;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.feature-index {
  display: block;
  margin-bottom: 3.2rem;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.feature-card h3,
.discord-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.feature-card p,
.discord-panel p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.compatibility-note {
  max-width: 780px;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.anchor-alias {
  position: relative;
  top: calc(-1 * var(--header-height));
  display: block;
  width: 0;
  height: 0;
  visibility: hidden;
}

.product-revelations {
  background:
    radial-gradient(circle at 50% 13%, rgba(150, 103, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 70%, rgba(255, 109, 0, 0.08), transparent 30rem),
    #060711;
}

.revelations-sigil {
  position: relative;
  width: 180px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}

.sigil-core {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 174, 90, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 126, 35, 0.28), transparent 64%),
    #090a12;
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 1.8rem;
  box-shadow: 0 0 40px rgba(255, 109, 0, 0.2);
}

.sigil-wing {
  position: absolute;
  top: 27px;
  width: 72px;
  height: 34px;
  border-top: 2px solid var(--violet);
  opacity: 0.8;
}

.sigil-wing::before,
.sigil-wing::after {
  position: absolute;
  width: 54px;
  height: 20px;
  border-top: 1px solid var(--accent);
  content: "";
}

.sigil-wing-left {
  left: 4px;
  transform: skewY(-20deg);
}

.sigil-wing-right {
  right: 4px;
  transform: scaleX(-1) skewY(-20deg);
}

.sigil-wing::before {
  top: 9px;
  left: 8px;
}

.sigil-wing::after {
  top: 19px;
  left: 18px;
}

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

.game-card {
  position: relative;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 22%, hsla(var(--game-hue, 25), 92%, 64%, 0.26), transparent 25%),
    linear-gradient(145deg, hsla(var(--game-hue, 25), 70%, 35%, 0.25), rgba(9, 10, 18, 0.94) 58%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease;
}

.game-card:nth-child(2n) { --game-hue: 278; }
.game-card:nth-child(3n) { --game-hue: 42; }
.game-card:nth-child(4n) { --game-hue: 205; }
.game-card:nth-child(5n) { --game-hue: 252; }

.game-card::before {
  position: absolute;
  z-index: -1;
  inset: 14px;
  border: 1px solid hsla(var(--game-hue, 25), 85%, 65%, 0.18);
  border-radius: 12px;
  content: "";
  clip-path: polygon(0 0, 76% 0, 100% 23%, 100% 100%, 22% 100%, 0 78%);
}

.game-card::after {
  position: absolute;
  z-index: -1;
  top: -35%;
  left: 48%;
  width: 2px;
  height: 120%;
  transform: rotate(31deg);
  background: linear-gradient(transparent, hsla(var(--game-hue, 25), 90%, 70%, 0.7), transparent);
  box-shadow:
    -28px 0 0 hsla(var(--game-hue, 25), 90%, 70%, 0.07),
    28px 0 0 hsla(var(--game-hue, 25), 90%, 70%, 0.07);
  content: "";
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: hsla(var(--game-hue, 25), 85%, 66%, 0.65);
}

.game-mark {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: hsla(var(--game-hue, 25), 95%, 72%, 0.76);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.game-card strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.game-card small {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.discord-panel {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid rgba(139, 124, 255, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(116, 103, 239, 0.17), rgba(255, 109, 0, 0.08)),
    var(--surface);
  box-shadow: var(--shadow);
}

.discord-panel > div {
  max-width: 700px;
}

.discord-panel .panel-kicker {
  margin-bottom: 0.7rem;
  color: #bcb5ff;
}

.product-resurrection {
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 89, 0, 0.15), transparent 27rem),
    linear-gradient(180deg, #07070d, #030408);
}

.resurrection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.resurrection-copy {
  min-width: 0;
}

.resurrection-lead {
  max-width: 680px;
}

.download-facts {
  max-width: 680px;
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.download-facts li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-facts strong {
  color: var(--accent-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-facts span {
  color: var(--text-soft);
}

.section-actions-left {
  justify-content: flex-start;
}

.resurrection-emblem {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: end;
}

.resurrection-emblem::before {
  position: absolute;
  inset: 19%;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 109, 0, 0.24);
  content: "";
}

.resurrection-ring {
  position: absolute;
  border: 1px solid rgba(255, 109, 0, 0.42);
  border-radius: 50%;
}

.ring-one { inset: 4%; }
.ring-two {
  inset: 14%;
  border-color: rgba(150, 103, 255, 0.4);
  border-style: dashed;
  animation: ring-rotate 24s linear infinite;
}
.ring-three {
  inset: 27%;
  border-width: 2px;
  box-shadow: inset 0 0 40px rgba(255, 109, 0, 0.1);
}

.resurrection-r {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #fff, var(--accent-light) 42%, var(--accent) 72%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(7rem, 17vw, 12rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 50px rgba(255, 109, 0, 0.18);
}

.resurrection-flare {
  position: absolute;
  z-index: 1;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-light), #fff, var(--accent), transparent);
  box-shadow: 0 0 24px var(--accent);
}

.site-footer {
  padding: 3.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030408;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-wordmark {
  margin-bottom: 0.8rem;
}

.footer-layout > div > p,
.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
}

.copyright {
  text-align: right;
}

.reveal.is-visible {
  animation: reveal-up 600ms both;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: scale(0.99); opacity: 0.45; }
  50% { transform: scale(1.015); opacity: 0.9; }
}

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

@media (max-width: 1000px) {
  :root {
    --header-height: 72px;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    padding: 0.65rem 0 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header {
    position: absolute;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 10rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-facts {
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    width: min(82vw, 520px);
    justify-self: center;
  }

  .vision-layout {
    grid-template-columns: 1fr;
  }

  .vision-art img {
    max-height: 650px;
  }

  .game-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resurrection-layout {
    grid-template-columns: 1fr;
  }

  .resurrection-copy {
    text-align: center;
  }

  .resurrection-lead,
  .download-facts {
    margin-inline: auto;
  }

  .section-actions-left {
    justify-content: center;
  }

  .resurrection-emblem {
    width: min(78vw, 440px);
    grid-row: 1;
    justify-self: center;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-nav {
    padding-top: 0.7rem;
  }

  .wordmark {
    font-size: 0.82rem;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
  }

  .site-nav > .button {
    min-height: 38px;
    padding: 0.58rem 0.78rem;
    font-size: 0.62rem;
  }

  .nav-links {
    gap: clamp(0.8rem, 6vw, 1.7rem);
  }

  .nav-links a {
    font-size: 0.66rem;
  }

  .hero {
    min-height: auto;
    gap: 4rem;
    padding-top: 11rem;
    padding-bottom: 5rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.8rem);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-facts div,
  .hero-facts div:first-child {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .hero-facts dd {
    margin: 0;
  }

  .visual-caption {
    right: 50%;
    bottom: -1.8rem;
    transform: translateX(50%);
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2,
  .resurrection-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 215px;
  }

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

  .game-card {
    min-height: 180px;
    padding: 1rem;
  }

  .game-mark {
    top: 1rem;
    left: 1rem;
  }

  .discord-panel {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .discord-panel .button {
    width: 100%;
  }

  .download-facts li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    text-align: left;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-wordmark {
    margin-inline: auto;
  }

  .footer-links {
    justify-content: center;
  }

  .copyright {
    grid-column: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .resurrection-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 10.5vw, 3.2rem);
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .game-card strong {
    font-size: 0.86rem;
  }

  .game-card small {
    font-size: 0.6rem;
  }

  .product-section {
    padding-block: 5.5rem;
  }
}

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

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

@media print {
  .site-header,
  .page-noise,
  .hero-actions,
  .section-actions,
  .discord-panel .button {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .product-section {
    break-inside: avoid;
  }
}
