:root {
  --ink: #10131c;
  --ink-soft: #1a2030;
  --paper: #f6f2e8;
  --paper-bright: #fffdf7;
  --red: #e44338;
  --red-dark: #ac282b;
  --gold: #f4b942;
  --blue: #38a5dc;
  --purple: #8f5bd5;
  --green: #5bbf76;
  --muted: #687083;
  --line: rgba(16, 19, 28, .14);
  --shadow: 0 18px 50px rgba(16, 19, 28, .14);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.public-site {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.public-site [hidden] {
  display: none !important;
}

.public-site img {
  max-width: 100%;
}

.public-site a {
  color: inherit;
}

.public-site h1,
.public-site h2,
.public-site h3,
.public-site p {
  margin-top: 0;
}

.public-site h1,
.public-site h2,
.public-site h3,
.public-brand,
.public-button,
.explore-tabs,
.catalog-count {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  letter-spacing: .025em;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.public-header {
  position: relative;
  z-index: 1000;
  height: 78px;
  color: #fff;
  background: rgba(13, 16, 24, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.public-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.public-nav-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 26px;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #fff;
  line-height: .95;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 50%, var(--green) 100%);
  border: 3px solid #fff;
  box-shadow: 4px 4px 0 var(--gold);
  font-size: 1rem;
  letter-spacing: .03em;
  transform: skew(-8deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy small {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .12em;
}

.public-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
}

.public-nav a {
  position: relative;
  color: rgba(255, 255, 255, .74);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .18s ease;
}

.public-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 3px;
  background: var(--gold);
  transition: right .18s ease;
}

.public-nav a:hover,
.public-nav a:focus,
.public-nav a.is-active {
  color: #fff;
}

.public-nav a:hover::after,
.public-nav a:focus::after,
.public-nav a.is-active::after {
  right: 0;
}

.public-nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.public-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
}

.public-nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.public-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(16, 19, 28, .22);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.public-button:hover,
.public-button:focus {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(16, 19, 28, .24);
}

.public-button-small {
  min-height: 38px;
  padding: 8px 15px;
  font-size: .78rem;
  box-shadow: none;
}

.public-button-large {
  min-height: 56px;
  padding: 15px 27px;
  font-size: 1.15rem;
}

.public-button-primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.public-button-primary:hover,
.public-button-primary:focus {
  color: #fff;
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.public-button-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .42);
  box-shadow: none;
}

.public-button-ghost:hover,
.public-button-ghost:focus {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.public-button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.public-button-outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
}

.public-hero {
  position: relative;
  min-height: 760px;
  padding: 82px 0 130px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(11, 14, 22, .98) 0%, rgba(16, 20, 31, .94) 48%, rgba(16, 20, 31, .65) 100%),
    var(--hero-art, url('/imgs/HVRSplash.jpg'));
  background-position: center, center top;
  background-repeat: no-repeat;
  background-size: cover, cover;
  isolation: isolate;
  overflow: hidden;
}

.public-hero-referral {
  background-position: center, right center;
  background-size: cover, contain;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.public-hero::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -170px;
  top: -230px;
  z-index: -1;
  background: var(--red);
  border: 40px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.public-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, .88fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.hero-copy .eyebrow {
  color: var(--gold);
}

.hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 7.8vw, 7.4rem);
  line-height: .83;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 rgba(0, 0, 0, .28);
}

.hero-copy h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy > p {
  max-width: 625px;
  color: rgba(255, 255, 255, .8);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 35px 0 17px;
}

.hero-copy .hero-note {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
}

.player-login-panel {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  color: var(--ink);
  background: rgba(255, 253, 247, .98);
  border: 1px solid rgba(255, 255, 255, .72);
  border-top: 7px solid var(--red);
  border-radius: 6px;
  box-shadow: 14px 16px 0 rgba(4, 7, 13, .34), 0 28px 70px rgba(0, 0, 0, .42);
  overflow: hidden;
}

.player-login-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  opacity: .08;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

.login-view,
.login-status {
  position: relative;
  padding: 30px 34px 26px;
}

.login-kicker {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--red-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.player-login-panel h2 {
  margin-bottom: 9px;
  font-size: 2.15rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.login-intro,
.login-view-returning p {
  margin-bottom: 22px;
  color: #5f6674;
  font-size: .92rem;
  line-height: 1.5;
}

.returning-player-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.returning-player-summary .login-kicker {
  margin-bottom: 5px;
}

.returning-player-summary h2 {
  margin: 0;
  overflow-wrap: anywhere;
}

.returning-player-avatar {
  position: relative;
  display: grid;
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red) 52%, var(--green));
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--ink), 5px 6px 0 var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1rem;
  letter-spacing: .05em;
}

.returning-player-avatar img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #d9e2ec;
  object-fit: contain;
  object-position: center top;
}

.returning-player-avatar.image-failed img {
  display: none;
}

.returning-login-options {
  display: grid;
  gap: 13px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.returning-login-label {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.linked-account-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 17px;
  padding: 9px 12px;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.linked-account-toggle:hover,
.linked-account-toggle:focus-visible {
  color: var(--blue);
}

.linked-account-arrow {
  font-size: 1.1rem;
  transition: transform .18s ease;
}

.linked-account-toggle:hover .linked-account-arrow,
.linked-account-toggle:focus-visible .linked-account-arrow {
  transform: translateX(4px);
}

.linked-account-view h2 {
  margin-bottom: 8px;
}

.linked-account-intro {
  margin-bottom: 18px;
  color: #5f6674;
  font-size: .86rem;
  line-height: 1.45;
}

.linked-character-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  max-height: 330px;
  padding: 3px;
  overflow-y: auto;
}

.linked-character-card {
  appearance: none;
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 7px;
  padding: 15px 9px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9ced8;
  border-radius: 5px;
  box-shadow: 3px 4px 0 rgba(16, 19, 28, .1);
  font: inherit;
  text-align: center;
}

button.linked-character-card {
  cursor: pointer;
}

button.linked-character-card:hover,
button.linked-character-card:focus-visible {
  border-color: var(--blue);
  box-shadow: 3px 4px 0 rgba(31, 103, 209, .24);
  outline: 0;
  transform: translateY(-1px);
}

button.linked-character-card:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.linked-character-card.is-current {
  background: #f2f4f7;
  border-color: #b8bec9;
  box-shadow: none;
}

.linked-character-avatar {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red) 52%, var(--green));
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: .8rem;
  letter-spacing: .04em;
}

.linked-character-avatar img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #d9e2ec;
  object-fit: contain;
  object-position: center top;
}

.linked-character-avatar.image-failed img {
  display: none;
}

.linked-character-card strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: .9rem;
  line-height: 1.1;
}

.linked-character-card small {
  color: #646c7c;
  font-size: .69rem;
  font-weight: 700;
}

.linked-account-error {
  margin: 14px 0 0;
  padding: 9px 11px;
  color: #8b2027;
  background: #fff0f0;
  border-left: 4px solid var(--red);
  font-size: .82rem;
  line-height: 1.45;
}

.login-provider-list,
#login_with_email_section {
  display: grid;
  justify-items: center;
  gap: 12px;
}

#login_with_email_section {
  width: 100%;
}

.facebook-login-wrap {
  min-height: 40px;
}

.login-method-button,
.password-field-wrap button {
  appearance: none;
  border-radius: 3px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.login-method-button {
  width: 244px;
  min-height: 42px;
  padding: 8px 13px;
  color: #fff;
  background: #202a3d;
  border: 0;
  box-shadow: 3px 3px 0 rgba(16, 19, 28, .18);
}

.login-method-button:hover,
.login-method-button:focus {
  background: var(--red-dark);
}

.login-new-player {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.login-new-player > span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.login-primary-action {
  width: 100%;
  min-height: 48px;
}

.login-back-button,
.login-text-button {
  padding: 0;
  color: var(--red-dark);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}

.login-back-button {
  margin-bottom: 18px;
}

.login-field {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
  color: #343b4a;
  font-size: .82rem;
  font-weight: 800;
}

.login-field input {
  width: 100%;
  min-height: 46px;
  padding: 9px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #b8bec9;
  border-radius: 3px;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
}

.login-field input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 67, 56, .15);
  outline: 0;
}

.password-field-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
}

.password-field-wrap input {
  border-radius: 3px 0 0 3px;
}

.password-field-wrap button {
  padding: 0 13px;
  color: #fff;
  background: #465066;
  border: 0;
  border-radius: 0 3px 3px 0;
  font-size: .76rem;
}

.remember-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 10px;
  color: #4e5668;
  font-size: .84rem;
}

.remember-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.login-text-button {
  display: block;
  margin-bottom: 17px;
}

.login-error {
  margin: 12px 0;
  padding: 9px 11px;
  color: #8b2027;
  background: #fff0f0;
  border-left: 4px solid var(--red);
  font-size: .82rem;
  line-height: 1.45;
}

.login-inline-loader,
.login-status {
  text-align: center;
}

.login-inline-loader img,
.login-status img {
  width: 46px;
  height: 46px;
}

.login-status {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 260px;
  align-content: center;
}

.login-panel-footer {
  padding: 18px 24px 20px;
  background: #eef0f4;
  border-top: 1px solid rgba(16, 19, 28, .1);
}

.store-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.store-badges img {
  display: block;
  width: auto;
  height: 35px;
}

.login-help-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-top: 12px;
  color: #596174;
  font-size: .73rem;
}

.login-help-links a,
.login-help a {
  color: inherit;
}

.login-help {
  font-size: .8rem;
}

.ios-login-note {
  margin: 0;
  padding: 0 30px 18px;
  color: #666f80;
  font-size: .76rem;
  line-height: 1.45;
}

.hero-slant {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -65px;
  height: 130px;
  background: var(--paper);
  transform: rotate(-3deg);
  transform-origin: left center;
}

.public-section {
  padding: 105px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 48px;
}

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

.section-heading h2,
.world-intro h2,
.final-cta h2,
.systems-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: .98;
  text-transform: uppercase;
}

.section-heading p,
.world-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.alignment-section {
  padding-top: 80px;
}

.alignment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alignment-card {
  position: relative;
  min-height: 330px;
  padding: 36px 32px 30px;
  color: #fff;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.alignment-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 24px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.alignment-card img {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin-bottom: 36px;
  object-fit: contain;
}

.alignment-letter {
  display: none;
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  margin-bottom: 36px;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  border: 2px solid #fff;
  font-family: Impact, sans-serif;
  font-size: 2.5rem;
}

.alignment-card.image-failed .alignment-letter {
  display: grid;
}

.alignment-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 11px;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.alignment-card p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .72);
}

.heroes-card { border-top: 7px solid var(--blue); }
.renegades-card { border-top: 7px solid var(--gold); }
.villains-card { border-top: 7px solid var(--red); }

.public-section-dark {
  position: relative;
  color: #fff;
  background: var(--ink);
}

.public-section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 11px 11px;
}

.public-section-dark .public-shell {
  position: relative;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  max-width: none;
  gap: 70px;
}

.split-heading p {
  color: rgba(255, 255, 255, .62);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 275px;
  padding: 34px;
  background: #171c29;
  border: 1px solid rgba(255, 255, 255, .09);
  overflow: hidden;
}

.feature-card-wide {
  display: flex;
  align-items: center;
  grid-column: span 2;
  min-height: 210px;
  padding-right: 10%;
  background: linear-gradient(120deg, var(--red-dark), var(--red));
}

.feature-number {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: Impact, sans-serif;
  font-size: 1.3rem;
}

.feature-card-wide .feature-number {
  flex: 0 0 150px;
  margin: 0;
  color: rgba(255, 255, 255, .16);
  font-size: 7rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.feature-card p {
  color: rgba(255, 255, 255, .66);
}

.feature-card a {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-heading-action {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}

.section-heading-action > div {
  max-width: 720px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(16, 19, 28, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 19px 38px rgba(16, 19, 28, .15);
}

.catalog-card-art {
  position: relative;
  height: 230px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), transparent 50%),
    var(--ink-soft);
  border-bottom: 6px solid var(--red);
  overflow: hidden;
}

.type-2 .catalog-card-art { border-bottom-color: var(--blue); }
.type-3 .catalog-card-art { border-bottom-color: var(--green); }
.element-2 .catalog-card-art { border-bottom-color: #d661d2; }
.element-3 .catalog-card-art { border-bottom-color: var(--blue); }
.element-4 .catalog-card-art { border-bottom-color: #d5c846; }
.element-5 .catalog-card-art { border-bottom-color: var(--green); }
.element-6 .catalog-card-art { border-bottom-color: #e68e28; }
.element-7 .catalog-card-art { border-bottom-color: #ddd; }

.catalog-card-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.equip-card .catalog-card-art img {
  object-fit: contain;
  padding: 18px;
}

.catalog-card:hover .catalog-card-art img {
  transform: scale(1.035);
}

.catalog-card-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  color: rgba(255, 255, 255, .12);
  font-family: Impact, sans-serif;
  font-size: 10rem;
}

.catalog-card-art.image-failed img {
  display: none;
}

.catalog-rarity {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 5px 9px;
  color: #fff;
  background: rgba(13, 16, 24, .88);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.catalog-type {
  color: var(--red-dark);
}

.catalog-card h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.catalog-card p {
  color: #61697a;
  font-size: .91rem;
  line-height: 1.55;
}

.power-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.power-stats span {
  padding: 8px 4px;
  color: var(--muted);
  font-size: .62rem;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.power-stats span + span {
  border-left: 1px solid var(--line);
}

.power-stats b {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.effect-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.effect-list span {
  padding: 4px 7px;
  color: #39404e;
  background: #e8e4da;
  font-size: .67rem;
  font-weight: 700;
}

.catalog-card small {
  display: block;
  margin-top: auto;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.equipment-showcase {
  color: #fff;
  background: linear-gradient(135deg, #351f45, #151a29 65%);
}

.equipment-showcase .section-heading p {
  color: rgba(255, 255, 255, .65);
}

.catalog-grid-equipment {
  grid-template-columns: repeat(4, 1fr);
}

.world-section {
  background: var(--paper-bright);
}

.world-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
}

.world-intro {
  align-self: start;
  position: sticky;
  top: 35px;
}

.world-list {
  border-top: 1px solid var(--line);
}

.world-list article {
  position: relative;
  padding: 30px 0 30px 145px;
  border-bottom: 1px solid var(--line);
}

.world-list article > span {
  position: absolute;
  left: 0;
  top: 35px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.world-list h3 {
  margin-bottom: 7px;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.world-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 80px;
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-family: Impact, sans-serif;
  font-size: 1.45rem;
  letter-spacing: .025em;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 770px;
  margin: 15px 40px 0 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: 85px 0;
  color: #fff;
  background: var(--red-dark);
  overflow: hidden;
}

.final-cta::after {
  content: "HVR";
  position: absolute;
  right: -25px;
  top: -75px;
  color: rgba(255, 255, 255, .07);
  font-family: Impact, sans-serif;
  font-size: 18rem;
  line-height: 1;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.final-cta .public-button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.public-footer {
  padding: 65px 0 24px;
  color: rgba(255, 255, 255, .66);
  background: #0c0f16;
}

.public-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
}

.public-brand-footer {
  margin-bottom: 18px;
}

.public-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-family: "Trebuchet MS", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.public-footer-grid > div > a:not(.public-brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  text-decoration: none;
}

.public-footer-grid > div > a:hover,
.public-footer-grid > div > a:focus {
  color: var(--gold);
}

.public-footer-grid p {
  max-width: 300px;
  font-size: .86rem;
}

.public-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .72rem;
}

/* Explore pages */
.explore-hero,
.legal-hero {
  padding: 92px 0 78px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(12, 15, 23, .98), rgba(32, 38, 55, .84)),
    url('/imgs/common/homeBG.png') center/cover;
}

.explore-hero h1,
.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: .9;
  text-transform: uppercase;
}

.explore-hero p,
.legal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.12rem;
}

.explore-hero .eyebrow,
.legal-hero .eyebrow {
  color: var(--gold);
}

.explore-tabs {
  color: #fff;
  background: var(--ink-soft);
}

.explore-tabs .public-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.explore-tabs a {
  padding: 24px 28px;
  color: rgba(255, 255, 255, .58);
  border-left: 1px solid rgba(255, 255, 255, .08);
  font-size: 1.2rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.explore-tabs a:last-child {
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.explore-tabs a span {
  margin-right: 8px;
  color: rgba(255, 255, 255, .22);
}

.explore-tabs a:hover,
.explore-tabs a:focus,
.explore-tabs a.is-active {
  color: #fff;
  background: var(--red);
}

.catalog-page-section {
  min-height: 700px;
  padding-top: 80px;
}

.catalog-page-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}

.catalog-page-heading > div:first-child {
  max-width: 760px;
}

.catalog-page-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: .95;
  text-transform: uppercase;
}

.catalog-page-heading p {
  margin: 0;
  color: var(--muted);
}

.catalog-count {
  flex: 0 0 150px;
  padding-left: 20px;
  border-left: 5px solid var(--red);
  line-height: 1;
  text-transform: uppercase;
}

.catalog-count b {
  display: block;
  font-size: 2.5rem;
}

.catalog-count span {
  color: var(--muted);
  font-family: "Trebuchet MS", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
}

.catalog-filter {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) minmax(190px, .7fr) auto auto;
  align-items: end;
  gap: 14px;
  padding: 24px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(16, 19, 28, .06);
}

.catalog-filter-equipment {
  grid-template-columns: minmax(240px, 1.4fr) minmax(170px, .7fr) minmax(160px, .65fr) auto auto;
}

.catalog-filter label span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.catalog-filter input,
.catalog-filter select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c7c3b9;
  border-radius: 2px;
  font: inherit;
}

.catalog-filter input:focus,
.catalog-filter select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 67, 56, .14);
  outline: none;
}

.filter-clear {
  align-self: center;
  color: var(--red-dark);
  font-size: .77rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 38px;
}

.filter-chips a {
  padding: 7px 13px;
  color: #4e5666;
  background: transparent;
  border: 1px solid #c9c5bc;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.filter-chips a:hover,
.filter-chips a:focus,
.filter-chips a.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.filter-chips-elements .element-chip-1.is-active { background: #af393b; border-color: #af393b; }
.filter-chips-elements .element-chip-2.is-active { background: #b649ad; border-color: #b649ad; }
.filter-chips-elements .element-chip-3.is-active { background: #278ebd; border-color: #278ebd; }
.filter-chips-elements .element-chip-4.is-active { color: var(--ink); background: #dacb40; border-color: #dacb40; }
.filter-chips-elements .element-chip-5.is-active { background: #36934e; border-color: #36934e; }
.filter-chips-elements .element-chip-6.is-active { background: #ca711d; border-color: #ca711d; }

.catalog-grid-page {
  grid-template-columns: repeat(4, 1fr);
}

.catalog-grid-page .catalog-card-art {
  height: 205px;
}

.catalog-grid-page .catalog-card-body {
  padding: 20px;
}

.catalog-grid-page .catalog-card h3 {
  font-size: 1.48rem;
}

.catalog-empty {
  padding: 70px 25px;
  text-align: center;
  background: var(--paper-bright);
  border: 1px dashed #b9b4a9;
}

.catalog-empty > span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-family: Impact, sans-serif;
  font-size: 2.5rem;
}

.catalog-empty h3 {
  font-size: 2rem;
  text-transform: uppercase;
}

.catalog-empty p {
  color: var(--muted);
}

.catalog-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.pagination-direction {
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.pagination-direction:last-child {
  text-align: right;
}

.pagination-direction.is-disabled {
  color: #aaa59b;
}

.pagination-pages {
  display: flex;
  gap: 6px;
}

.pagination-pages a,
.pagination-pages span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #c7c2b8;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.pagination-pages .is-current {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.systems-intro {
  padding: 85px 0 115px;
}

.systems-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 85px;
}

.systems-sticky {
  align-self: start;
  position: sticky;
  top: 32px;
}

.systems-sticky h2 {
  font-size: 3.2rem;
  line-height: .96;
  text-transform: uppercase;
}

.systems-sticky > p {
  color: var(--muted);
}

.systems-sticky nav {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.systems-sticky nav a {
  display: block;
  padding: 10px 0;
  color: #4e5666;
  border-bottom: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.systems-sticky nav a:hover,
.systems-sticky nav a:focus {
  color: var(--red);
}

.systems-content article {
  scroll-margin-top: 30px;
  padding: 10px 0 55px;
  border-bottom: 1px solid var(--line);
}

.systems-content article + article {
  padding-top: 55px;
}

.system-index {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.systems-content h3 {
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.systems-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.systems-cta {
  padding: 70px 0;
  color: #fff;
  background: var(--ink-soft);
}

.systems-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.systems-cta h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.systems-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

/* Privacy */
.legal-section {
  background: var(--paper-bright);
}

.public-legal-copy {
  max-width: 900px;
}

.public-legal-copy > .container {
  width: auto;
  margin: 0;
}

.public-legal-copy h1 {
  margin: 48px 0 12px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
  font-size: 2rem;
  line-height: 1.1;
}

.public-legal-copy h2 {
  margin: 28px 0 8px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.public-legal-copy p,
.public-legal-copy li {
  color: #505869;
  font-size: .94rem;
  line-height: 1.75;
}

.public-legal-copy a {
  color: var(--red-dark);
}

@media (max-width: 1080px) {
  .public-nav { gap: 14px; }
  .public-nav a { font-size: .7rem; }
  .public-nav-actions .public-button-ghost { display: none; }
  .catalog-grid-page { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid-equipment { grid-template-columns: repeat(2, 1fr); }
  .catalog-filter-equipment { grid-template-columns: 1fr 1fr 1fr; }
  .catalog-filter-equipment .public-button { width: 100%; }
  .public-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); gap: 34px; }
  .hero-copy h1 { font-size: clamp(4rem, 7vw, 6rem); }
}

@media (max-width: 860px) {
  .public-header { height: 70px; }
  .public-nav-wrap { justify-content: space-between; }
  .brand-copy { display: none; }
  .public-nav-toggle { display: block; order: 3; }
  .public-nav-actions { margin-left: auto; }
  .public-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: #0d1018;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .32);
  }
  .public-nav.is-open { display: flex; }
  .public-nav a { padding: 12px 4px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .public-nav a::after { display: none; }
  .public-hero { min-height: 0; padding: 48px 0 118px; }
  .public-hero-grid { grid-template-columns: 1fr; }
  .player-login-panel { order: -1; max-width: 560px; margin: 0 auto; }
  .hero-copy { max-width: 700px; margin: 12px auto 0; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-copy h1 { font-size: clamp(4rem, 13vw, 6.2rem); }
  .alignment-grid { grid-template-columns: 1fr; }
  .alignment-card { min-height: 260px; }
  .split-heading,
  .world-layout,
  .faq-layout,
  .systems-layout { grid-template-columns: 1fr; gap: 45px; }
  .world-intro,
  .systems-sticky { position: static; }
  .feature-card-wide { padding-right: 34px; }
  .feature-card-wide .feature-number { flex-basis: 110px; font-size: 5rem; }
  .catalog-grid,
  .catalog-grid-page { grid-template-columns: repeat(2, 1fr); }
  .section-heading-action,
  .catalog-page-heading,
  .final-cta-inner,
  .systems-cta-inner { align-items: flex-start; flex-direction: column; }
  .public-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-filter { grid-template-columns: 1fr 1fr; }
  .catalog-filter-equipment { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .public-shell { width: min(calc(100% - 28px), var(--shell)); }
  .public-nav-actions .public-button { padding: 8px 12px; }
  .public-nav-actions .public-button-ghost { display: none; }
  .public-hero { min-height: 0; padding: 28px 0 100px; }
  .hero-copy h1 { font-size: 3.6rem; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .player-login-panel { box-shadow: 7px 9px 0 rgba(4, 7, 13, .34), 0 20px 50px rgba(0, 0, 0, .38); }
  .login-view { padding: 25px 22px 22px; }
  .player-login-panel h2 { font-size: 1.82rem; }
  .login-panel-footer { padding-right: 15px; padding-left: 15px; }
  .public-section { padding: 75px 0; }
  .section-heading h2,
  .world-intro h2,
  .final-cta h2 { font-size: 2.7rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-wide { display: block; grid-column: auto; }
  .feature-card-wide .feature-number { font-size: 3rem; }
  .catalog-grid,
  .catalog-grid-page,
  .catalog-grid-equipment { grid-template-columns: 1fr; }
  .catalog-card-art,
  .catalog-grid-page .catalog-card-art { height: 250px; }
  .world-list article { padding-left: 0; padding-top: 60px; }
  .world-list article > span { top: 28px; }
  .faq-layout { gap: 10px; }
  .final-cta::after { font-size: 11rem; }
  .public-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .public-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .explore-hero,
  .legal-hero { padding: 70px 0 58px; }
  .explore-hero h1,
  .legal-hero h1 { font-size: 3.7rem; }
  .explore-tabs .public-shell { width: 100%; }
  .explore-tabs a { padding: 18px 5px; font-size: .92rem; }
  .explore-tabs a span { display: none; }
  .catalog-page-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .catalog-count { flex-basis: auto; }
  .catalog-filter,
  .catalog-filter-equipment { grid-template-columns: 1fr; }
  .catalog-pagination { grid-template-columns: 1fr 1fr; }
  .pagination-pages { grid-column: 1 / -1; grid-row: 1; justify-content: center; }
  .systems-content h3 { font-size: 2rem; }
  .systems-cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
