:root {
  --ink: #080b0e;
  --ink-soft: #0d1317;
  --panel: #11191e;
  --panel-raised: #151f25;
  --line: rgba(225, 185, 98, 0.18);
  --line-bright: rgba(232, 195, 110, 0.38);
  --parchment: #eee8d8;
  --muted: #a7aaa7;
  --gold-pale: #f5dfa0;
  --gold: #d5a64b;
  --gold-deep: #815126;
  --bronze: #a96d31;
  --aether: #66c8bf;
  --aether-soft: #a7e2da;
  --fel: #8ed35e;
  --danger: #e47a6d;
  --success: #69d49a;
  --unknown: #94a0a5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--parchment);
  background:
    radial-gradient(circle at 76% 8%, rgba(30, 112, 105, 0.14), transparent 29rem),
    radial-gradient(circle at 18% 26%, rgba(127, 79, 34, 0.1), transparent 24rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: #0b0e10;
  background: var(--gold);
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: 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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-pale);
  border-radius: 4px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.ambient {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  width: 36rem;
  aspect-ratio: 1;
  border: 1px solid rgba(116, 211, 200, 0.06);
  border-radius: 50%;
  filter: blur(2px);
}

.ambient__orb::before,
.ambient__orb::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
  inset: 14%;
}

.ambient__orb::after {
  inset: 29%;
}

.ambient__orb--one {
  top: -18rem;
  right: -14rem;
}

.ambient__orb--two {
  bottom: -21rem;
  left: -17rem;
  border-color: rgba(225, 174, 76, 0.045);
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.022;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(222, 183, 93, 0.12);
  background: rgba(8, 11, 14, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__sigil {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 12px rgba(206, 164, 73, 0.18));
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__copy strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.045em;
}

.brand__copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #c2c4be;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.045em;
  transition: color 160ms ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--gold-pale);
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid var(--line);
  color: inherit;
  background: transparent;
  border-radius: 4px;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 1px;
  margin: 5px 0;
  background: var(--gold-pale);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease;
}

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

.button:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.button--primary {
  position: relative;
  overflow: hidden;
  color: #15100a;
  background: linear-gradient(135deg, #f0d27e, #b8752e 88%);
  border-color: #e5c26b;
  box-shadow: 0 10px 32px rgba(171, 107, 42, 0.2), inset 0 1px rgba(255, 255, 255, 0.45);
}

.button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.32), transparent 70%);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.button--primary:hover:not(:disabled)::before {
  transform: translateX(110%);
}

.button--primary > * {
  position: relative;
}

.button--outline {
  min-height: 40px;
  padding-inline: 17px;
  color: var(--gold-pale);
  border-color: var(--line-bright);
  background: rgba(213, 166, 75, 0.035);
}

.button--outline:hover {
  border-color: var(--gold);
  background: rgba(213, 166, 75, 0.1);
}

.button--ghost {
  color: #dadbd4;
  border-color: rgba(217, 220, 211, 0.2);
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost:hover {
  color: var(--gold-pale);
  border-color: var(--line-bright);
}

.hero {
  position: relative;
  display: grid;
  min-height: 810px;
  align-items: center;
  overflow: hidden;
  padding: 138px 0 100px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.98) 0%, rgba(8, 11, 14, 0.79) 43%, rgba(8, 11, 14, 0.28) 76%, rgba(8, 11, 14, 0.82) 100%),
    radial-gradient(ellipse at 79% 49%, rgba(55, 155, 146, 0.16), transparent 27rem),
    radial-gradient(ellipse at 80% 52%, rgba(204, 142, 60, 0.12), transparent 35rem);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 64%, rgba(245, 214, 140, 0.5) 0 1px, transparent 1.5px);
  background-size: 83px 83px, 127px 127px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.eyebrow > span:last-child:not(:first-child) {
  background: linear-gradient(90deg, currentColor, transparent);
}

.hero h1,
.section-heading h2,
.register-copy h2 {
  margin: 0;
  color: #f0ecdf;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 6vw, 88px);
  letter-spacing: -0.045em;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.45);
}

.hero h1 em,
.register-copy h2 em {
  color: var(--gold-pale);
  font-weight: 400;
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #b7b9b5;
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: #9da39f;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--unknown);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.24;
}

.status-dot--online {
  color: var(--success);
  background: var(--success);
  box-shadow: 0 0 12px rgba(105, 212, 154, 0.65);
}

.status-dot--offline {
  color: var(--danger);
  background: var(--danger);
}

.status-dot--checking {
  color: var(--gold);
  background: var(--gold);
  animation: status-pulse 1.4s ease-in-out infinite;
}

.status-dot--unknown {
  color: var(--unknown);
  background: var(--unknown);
}

.hero-art {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  justify-self: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(90, 208, 197, 0.15), rgba(183, 113, 43, 0.06) 35%, transparent 69%);
  filter: blur(18px);
  animation: core-breathe 5s ease-in-out infinite;
}

.hero-art__halo,
.hero-art__ring,
.hero-art__ticks,
.hero-art__core {
  position: absolute;
  border-radius: 50%;
}

.hero-art__halo {
  inset: 2%;
  border: 1px solid rgba(104, 214, 202, 0.08);
  box-shadow: inset 0 0 70px rgba(63, 184, 173, 0.035), 0 0 80px rgba(53, 158, 149, 0.035);
}

.hero-art__ticks {
  inset: 6%;
  opacity: 0.24;
  background: repeating-conic-gradient(from 3deg, var(--gold) 0deg 0.4deg, transparent 0.4deg 9deg);
  -webkit-mask: radial-gradient(transparent 0 83%, black 83.5% 85%, transparent 85.5%);
  mask: radial-gradient(transparent 0 83%, black 83.5% 85%, transparent 85.5%);
  animation: slow-spin 100s linear infinite;
}

.hero-art__ring--outer {
  inset: 11%;
  border: 1px solid rgba(215, 169, 74, 0.24);
  box-shadow: 0 0 0 8px rgba(211, 166, 73, 0.012), inset 0 0 0 8px rgba(211, 166, 73, 0.012);
}

.hero-art__ring--outer::before,
.hero-art__ring--outer::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  background: var(--ink);
  transform: rotate(45deg);
}

.hero-art__ring--outer::before {
  top: -6px;
  left: calc(50% - 5px);
}

.hero-art__ring--outer::after {
  right: -6px;
  bottom: calc(50% - 5px);
}

.hero-art__ring--inner {
  inset: 20%;
  border: 1px dashed rgba(108, 211, 201, 0.26);
  animation: reverse-spin 50s linear infinite;
}

.hero-art__core {
  display: grid;
  inset: 23%;
  place-items: center;
  background: radial-gradient(circle, rgba(17, 34, 35, 0.92), rgba(7, 10, 12, 0.86) 65%);
  border: 1px solid rgba(224, 182, 90, 0.11);
  box-shadow: inset 0 0 60px rgba(88, 202, 191, 0.08), 0 0 80px rgba(0, 0, 0, 0.5);
}

.hero-art__core img {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 0 25px rgba(115, 212, 202, 0.12));
  animation: sigil-float 5s ease-in-out infinite;
}

.hero-art__rune {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(230, 192, 101, 0.62);
  border: 1px solid rgba(218, 173, 76, 0.22);
  background: rgba(8, 12, 14, 0.84);
  font-family: var(--serif);
  font-size: 17px;
  transform: rotate(45deg);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.hero-art__rune::first-letter {
  transform: rotate(-45deg);
}

.hero-art__rune--one {
  top: 18%;
  left: 13%;
}

.hero-art__rune--two {
  top: 21%;
  right: 12%;
}

.hero-art__rune--three {
  right: 17%;
  bottom: 16%;
}

.hero-art__plaque {
  position: absolute;
  right: 50%;
  bottom: 3%;
  display: grid;
  width: max-content;
  min-width: 206px;
  padding: 12px 24px;
  text-align: center;
  background: linear-gradient(100deg, transparent, rgba(11, 16, 19, 0.95) 18% 82%, transparent);
  transform: translateX(50%);
}

.hero-art__plaque::before,
.hero-art__plaque::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-art__plaque::before {
  right: 100%;
}

.hero-art__plaque::after {
  left: 100%;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-art__plaque strong {
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero-art__plaque span {
  margin-top: 2px;
  color: #818b89;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  pointer-events: none;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.register-copy h2 {
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: -0.035em;
}

.section-heading > div > p:last-child,
.section-heading--center > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
}

.status-section {
  padding-top: 82px;
}

.status-refresh {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  color: #777f7d;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.icon-button:hover:not(:disabled) {
  border-color: var(--line-bright);
  background: rgba(213, 166, 75, 0.08);
  transform: rotate(20deg);
}

.icon-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.icon-button.is-loading svg {
  animation: slow-spin 800ms linear infinite;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.status-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 54px);
  margin-bottom: 22px;
  padding: 21px 30px;
  border: 1px solid rgba(211, 174, 90, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(18, 27, 31, 0.87), rgba(12, 18, 22, 0.82));
}

.summary-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.summary-item__icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--aether);
  border: 1px solid rgba(103, 201, 192, 0.15);
  border-radius: 50%;
  background: rgba(91, 190, 180, 0.055);
}

.summary-item__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.summary-item > span:last-child {
  display: grid;
}

.summary-item small {
  color: #777f7e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-item strong {
  margin-top: 1px;
  color: #d7d8d1;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.summary-item strong.is-online {
  color: var(--success);
}

.summary-item strong.is-offline {
  color: var(--danger);
}

.summary-item strong.is-pending {
  color: var(--gold);
}

.summary-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.realm-catalog {
  display: grid;
  gap: 54px;
}

.realm-family {
  position: relative;
}

.realm-family__heading {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 0 4px 17px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(215, 177, 91, 0.16);
}

.realm-family__heading::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52%, 410px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--family-accent));
  box-shadow: 0 0 15px color-mix(in srgb, var(--family-accent), transparent 55%);
}

.realm-family--vanilla {
  --family-accent: var(--gold);
}

.realm-family--tbc {
  --family-accent: var(--fel);
}

.realm-family__chapter {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--family-accent);
  border: 1px solid color-mix(in srgb, var(--family-accent), transparent 60%);
  background: color-mix(in srgb, var(--family-accent), transparent 94%);
  font-family: var(--serif);
  font-size: 14px;
  transform: rotate(45deg);
}

.realm-family__chapter i {
  font-style: normal;
  transform: rotate(-45deg);
}

.realm-family__heading > div {
  display: grid;
  gap: 1px;
}

.realm-family__heading small {
  color: #79817f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.realm-family__heading h3 {
  margin: 0;
  color: #e8e4d7;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.15;
}

.realm-family__availability {
  padding: 7px 11px;
  color: var(--success);
  border: 1px solid color-mix(in srgb, var(--success), transparent 72%);
  background: color-mix(in srgb, var(--success), transparent 94%);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.realm-family__availability--pending {
  color: var(--gold);
  border-color: color-mix(in srgb, var(--gold), transparent 72%);
  background: color-mix(in srgb, var(--gold), transparent 94%);
}

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

.realm-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(215, 177, 91, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(23, 34, 39, 0.95), rgba(10, 15, 18, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  isolation: isolate;
}

.realm-card::before,
.realm-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.realm-card::before {
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  opacity: 0.055;
  background: repeating-conic-gradient(from 0deg, currentColor 0 1deg, transparent 1deg 15deg);
  border-radius: 50%;
  transform: translate(45%, -45%);
  -webkit-mask: radial-gradient(transparent 52%, black 53% 57%, transparent 58% 65%, black 66% 68%, transparent 69%);
  mask: radial-gradient(transparent 52%, black 53% 57%, transparent 58% 65%, black 66% 68%, transparent 69%);
}

.realm-card::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
}

.realm-card:hover {
  border-color: rgba(216, 178, 90, 0.29);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 42px color-mix(in srgb, var(--card-accent), transparent 91%);
  transform: translateY(-4px);
}

.realm-card--solo {
  --card-accent: var(--aether);
  color: var(--aether);
}

.realm-card--standard {
  --card-accent: var(--gold);
  color: var(--gold);
}

.realm-family--tbc .realm-card--solo {
  --card-accent: var(--fel);
}

.realm-family--tbc .realm-card--standard {
  --card-accent: #e7a856;
}

.realm-card--tbc {
  background:
    radial-gradient(circle at 88% 8%, rgba(115, 185, 73, 0.07), transparent 15rem),
    linear-gradient(145deg, rgba(20, 34, 31, 0.97), rgba(10, 15, 18, 0.99)),
    var(--panel);
}

.realm-card.is-pending {
  border-color: color-mix(in srgb, var(--card-accent), transparent 76%);
}

.realm-card__glow {
  position: absolute;
  z-index: -1;
  top: -140px;
  left: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent), transparent 89%), transparent 67%);
  pointer-events: none;
}

.realm-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.realm-card__type {
  color: var(--card-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.realm-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--unknown);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
}

.realm-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.realm-state--online {
  color: var(--success);
}

.realm-state--offline {
  color: var(--danger);
}

.realm-state--checking {
  color: var(--gold);
}

.realm-state--pending {
  color: var(--gold);
}

.realm-state--checking i {
  animation: status-pulse 1.4s ease-in-out infinite;
}

.realm-state--unknown {
  color: var(--unknown);
}

.realm-card__crest {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 30px 0 20px;
  place-items: center;
  color: var(--card-accent);
  border: 1px solid color-mix(in srgb, var(--card-accent), transparent 70%);
  background: color-mix(in srgb, var(--card-accent), transparent 94%);
  transform: rotate(45deg);
}

.realm-card__crest::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid color-mix(in srgb, var(--card-accent), transparent 84%);
}

.realm-card__crest svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: rotate(-45deg);
}

.realm-card h3 {
  margin: 0;
  color: #a7aaa7;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.realm-card h3 strong {
  color: #eeeadc;
  font-size: 1.16em;
  font-weight: 500;
}

.realm-card > p {
  min-height: 76px;
  margin: 18px 0 22px;
  color: #919793;
  font-size: 13px;
  line-height: 1.75;
}

.realm-features {
  display: grid;
  gap: 9px;
  min-height: 85px;
  padding: 0;
  margin: 0 0 28px;
  color: #b5b7b1;
  font-size: 12px;
  list-style: none;
}

.realm-features li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.realm-features svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--card-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.realm-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 16px 0;
  border-top: 1px solid rgba(222, 187, 105, 0.09);
  border-bottom: 1px solid rgba(222, 187, 105, 0.09);
  background: rgba(255, 255, 255, 0.01);
}

.realm-card__stats > div {
  display: grid;
  padding: 0 12px;
  text-align: center;
}

.realm-card__stats > div + div {
  border-left: 1px solid rgba(222, 187, 105, 0.08);
}

.realm-card__stats small {
  color: #737c7a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.realm-card__stats strong {
  margin-top: 2px;
  color: #d8d8d0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.population {
  margin-top: 18px;
}

.population__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #707876;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.population__track {
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 3px;
}

.population__track i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent), #fff 15%), var(--card-accent));
  border-radius: inherit;
  box-shadow: 0 0 9px var(--card-accent);
  transition: width 550ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.population__track i.is-online {
  width: 100%;
}

.population__track i.is-pending {
  width: 34%;
  background: linear-gradient(90deg, rgba(213, 166, 75, 0.35), var(--gold));
  box-shadow: 0 0 9px rgba(213, 166, 75, 0.6);
}

.register-section {
  overflow: hidden;
  margin-top: 55px;
  padding: 130px 0;
  border-top: 1px solid rgba(210, 173, 87, 0.1);
  border-bottom: 1px solid rgba(210, 173, 87, 0.08);
  background:
    radial-gradient(ellipse at 15% 42%, rgba(61, 154, 145, 0.1), transparent 30rem),
    radial-gradient(ellipse at 88% 50%, rgba(156, 95, 40, 0.1), transparent 35rem),
    linear-gradient(130deg, #0a1013, #0d1418 52%, #0b0f12);
}

.register-section__texture {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 19px, rgba(255, 255, 255, 0.28) 20px),
    repeating-linear-gradient(-45deg, transparent 0 19px, rgba(255, 255, 255, 0.2) 20px);
  -webkit-mask: linear-gradient(90deg, black, transparent 42%, transparent 58%, black);
  mask: linear-gradient(90deg, black, transparent 42%, transparent 58%, black);
  pointer-events: none;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
}

.register-copy {
  max-width: 540px;
}

.register-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #a8ada9;
  font-size: 15px;
  line-height: 1.8;
}

.benefit-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid rgba(214, 175, 85, 0.1);
}

.benefit-list li:last-child {
  border-bottom: 1px solid rgba(214, 175, 85, 0.1);
}

.benefit-list > li > span {
  padding-top: 2px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.benefit-list div {
  display: grid;
}

.benefit-list strong {
  color: #dbd9cf;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.benefit-list small {
  margin-top: 3px;
  color: #7f8885;
  font-size: 12px;
}

.register-panel {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(219, 180, 91, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(22, 32, 37, 0.98), rgba(10, 15, 18, 0.99)),
    var(--panel);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 255, 255, 0.025);
}

.register-panel::before,
.register-panel::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 31px;
  pointer-events: none;
}

.register-panel::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.register-panel::after {
  right: 9px;
  bottom: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.register-panel__ornament {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: -64px 0 17px;
}

.register-panel__ornament img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  padding: 3px;
  background: #11191d;
  border-radius: 50%;
}

.register-panel__ornament span {
  width: 50%;
  height: 1px;
}

.register-panel__ornament span:first-child {
  background: linear-gradient(90deg, transparent, rgba(220, 179, 83, 0.33));
}

.register-panel__ornament span:last-child {
  background: linear-gradient(90deg, rgba(220, 179, 83, 0.33), transparent);
}

.register-panel__heading {
  margin-bottom: 27px;
  text-align: center;
}

.register-panel__heading h3 {
  margin: 0;
  color: #eee9dc;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.register-panel__heading p {
  margin: 4px 0 0;
  color: #747d7b;
  font-size: 11px;
}

.register-form {
  display: grid;
  gap: 18px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field {
  display: grid;
  gap: 7px;
}

.field > label {
  color: #b9bbb5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.input-shell {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(214, 176, 90, 0.14);
  border-radius: 3px;
  background: rgba(5, 9, 11, 0.72);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.input-shell:focus-within {
  border-color: rgba(107, 204, 194, 0.57);
  background: rgba(7, 12, 14, 0.9);
  box-shadow: 0 0 0 3px rgba(104, 204, 194, 0.06);
}

.input-shell > svg {
  width: 17px;
  height: 17px;
  margin-left: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: #697674;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: stroke 160ms ease;
}

.input-shell:focus-within > svg {
  stroke: var(--aether);
}

.input-shell input,
.input-shell select {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 13px;
  color: #e2e1d8;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.input-shell input::placeholder {
  color: #555f5e;
  opacity: 1;
}

.input-shell select {
  padding-right: 38px;
  color: #bec2bd;
  -webkit-appearance: none;
  appearance: none;
}

.input-shell--select::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
  transform: translateY(-3px) rotate(45deg);
}

.input-shell select option {
  color: var(--parchment);
  background: #11191d;
}

.password-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  color: #697674;
  border: 0;
  background: transparent;
  transition: color 160ms ease;
}

.password-toggle:hover {
  color: var(--gold-pale);
}

.password-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.password-toggle .eye-closed,
.password-toggle[aria-pressed="true"] .eye-open {
  display: none;
}

.password-toggle[aria-pressed="true"] .eye-closed {
  display: block;
}

.field__help,
.field__error {
  min-height: 15px;
  color: #727b79;
  font-size: 10px;
  line-height: 1.45;
}

.field__error {
  display: none;
  color: var(--danger);
}

.field--invalid .input-shell {
  border-color: rgba(228, 122, 109, 0.67);
  box-shadow: 0 0 0 3px rgba(228, 122, 109, 0.055);
}

.field--invalid .field__help {
  display: none;
}

.field--invalid .field__error {
  display: block;
}

.password-strength {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 3px;
}

.password-strength i {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.password-strength[data-score="1"] i:nth-child(-n + 1) {
  background: var(--danger);
}

.password-strength[data-score="2"] i:nth-child(-n + 2) {
  background: #e0a24d;
}

.password-strength[data-score="3"] i:nth-child(-n + 3) {
  background: var(--gold);
}

.password-strength[data-score="4"] i:nth-child(-n + 4) {
  background: var(--success);
  box-shadow: 0 0 7px rgba(105, 212, 154, 0.28);
}

.check-field {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #878f8c;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.55;
}

.check-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-field__box {
  display: grid;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid rgba(216, 178, 90, 0.3);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.24);
  transition: background 160ms ease, border-color 160ms ease;
}

.check-field__box svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #15100a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transform: scale(0);
  transition: transform 140ms ease;
}

.check-field input:checked + .check-field__box {
  border-color: var(--gold);
  background: var(--gold);
}

.check-field input:checked + .check-field__box svg {
  transform: scale(1);
}

.check-field input:focus-visible + .check-field__box {
  outline: 3px solid var(--aether-soft);
  outline-offset: 3px;
}

.check-field.field--invalid .check-field__box {
  border-color: var(--danger);
}

.field__error--check {
  margin-top: -13px;
}

.field__error--check:not(:empty) {
  display: block;
}

.form-notice {
  padding: 11px 13px;
  color: #b9dfd8;
  border: 1px solid rgba(103, 200, 190, 0.25);
  border-radius: 3px;
  background: rgba(81, 176, 166, 0.075);
  font-size: 11px;
  line-height: 1.55;
}

.form-notice--success {
  color: #b8e8ca;
  border-color: rgba(105, 212, 154, 0.3);
  background: rgba(105, 212, 154, 0.08);
}

.form-notice--error {
  color: #f0b0a9;
  border-color: rgba(228, 122, 109, 0.3);
  background: rgba(228, 122, 109, 0.08);
}

.button--submit {
  width: 100%;
  margin-top: 1px;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.button__loader {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(16, 12, 7, 0.28);
  border-top-color: #191108;
  border-radius: 50%;
  animation: slow-spin 700ms linear infinite;
}

.button--submit.is-loading .button__loader {
  display: block;
}

.button--submit.is-loading > svg {
  display: none;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -7px 0 0;
  color: #65706e;
  font-size: 9px;
}

.form-security svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--aether);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-section {
  overflow: hidden;
  padding: 125px 0 95px;
  background:
    radial-gradient(circle at 18% 48%, rgba(87, 194, 184, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(204, 150, 59, 0.08), transparent 30rem);
}

.download-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 400px;
  border: 1px solid rgba(211, 171, 80, 0.055);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  pointer-events: none;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
  padding: clamp(38px, 5vw, 66px);
  overflow: hidden;
  border: 1px solid rgba(218, 179, 90, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(19, 29, 34, 0.97), rgba(9, 14, 17, 0.99)),
    var(--panel);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.44);
}

.download-card::before,
.download-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.download-card::before {
  top: 0;
  right: 0;
  width: 360px;
  height: 360px;
  opacity: 0.075;
  background: repeating-conic-gradient(from 4deg, var(--gold) 0 0.7deg, transparent 0.7deg 12deg);
  border-radius: 50%;
  transform: translate(44%, -48%);
  -webkit-mask: radial-gradient(transparent 56%, black 57% 60%, transparent 61% 69%, black 70% 71%, transparent 72%);
  mask: radial-gradient(transparent 56%, black 57% 60%, transparent 61% 69%, black 70% 71%, transparent 72%);
}

.download-card::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aether), var(--gold), transparent);
  opacity: 0.52;
}

.download-copy {
  position: relative;
  z-index: 1;
}

.download-copy h2 {
  margin: 17px 0 0;
  color: var(--parchment);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.download-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.download-copy > p:not(.eyebrow, .download-disclaimer) {
  max-width: 590px;
  margin: 24px 0 0;
  color: #9da4a1;
  font-size: 14px;
  line-height: 1.8;
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.button--download svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.download-version {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #a0a7a4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-version i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.download-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0 0;
  color: #a0a7a4;
  font-size: 12px;
  line-height: 1.55;
}

.download-disclaimer svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: none;
  stroke: var(--aether);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-console {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(108, 207, 197, 0.17);
  border-radius: 8px;
  background: rgba(6, 10, 12, 0.76);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.38), inset 0 0 50px rgba(71, 176, 166, 0.025);
}

.download-console__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(108, 207, 197, 0.1);
  background: rgba(255, 255, 255, 0.018);
}

.download-console__bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #80502d;
}

.download-console__bar > span:nth-child(2) {
  background: #aa8339;
}

.download-console__bar > span:nth-child(3) {
  background: #3d827b;
}

.download-console__bar strong {
  margin-left: auto;
  color: #939c99;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-console__body {
  padding: 24px;
}

.download-steps {
  display: grid;
  gap: 17px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.download-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
}

.download-steps > li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-pale);
  border: 1px solid rgba(218, 177, 82, 0.22);
  background: rgba(211, 166, 75, 0.055);
  font-family: var(--serif);
  font-size: 11px;
  transform: rotate(45deg);
}

.download-steps > li > span b {
  display: block;
  font-weight: 500;
  transform: rotate(-45deg);
}

.download-steps li div {
  display: grid;
}

.download-steps strong {
  color: #cfd0c9;
  font-size: 11px;
  font-weight: 700;
}

.download-steps small {
  margin-top: 2px;
  color: #929b98;
  font-size: 10px;
}

.download-command {
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  margin-top: 23px;
  border-left: 2px solid var(--aether);
  background: rgba(76, 180, 170, 0.045);
}

.download-command small {
  color: #929b98;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.download-command code {
  color: var(--aether-soft);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
}

.steps-section {
  padding-top: 125px;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  max-width: 970px;
  padding: 0;
  margin: 60px auto 0;
  list-style: none;
  counter-reset: steps;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 14%;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 176, 82, 0.25) 12% 88%, transparent);
}

.steps li {
  position: relative;
  text-align: center;
}

.steps__number {
  position: absolute;
  top: -20px;
  right: calc(50% - 65px);
  color: rgba(217, 176, 82, 0.18);
  font-family: var(--serif);
  font-size: 46px;
  font-style: italic;
  line-height: 1;
}

.steps__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(217, 176, 82, 0.3);
  background: #0c1114;
  transform: rotate(45deg);
}

.steps__icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(217, 176, 82, 0.08);
}

.steps__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transform: rotate(-45deg);
}

.steps h3 {
  margin: 0;
  color: #dedbd0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.steps p {
  margin: 8px 0 0;
  color: #7f8784;
  font-size: 12px;
  line-height: 1.7;
}

.site-footer {
  margin-top: 40px;
  padding: 32px 0 40px;
  border-top: 1px solid rgba(217, 176, 82, 0.09);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, 430px);
  align-items: center;
  gap: 30px;
}

.site-footer__inner > p {
  margin: 0;
  color: #69716f;
  font-size: 10px;
}

.site-footer__legal {
  text-align: right;
}

.reveal {
  animation: reveal-in 750ms both cubic-bezier(0.2, 0.72, 0.23, 1);
}

.reveal--late {
  animation-delay: 120ms;
}

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

@keyframes status-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1); }
}

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

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

@keyframes core-breathe {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes sigil-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 920px);
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 15px;
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 72px);
  }

  .hero-art {
    width: 430px;
    max-width: 100%;
    transform: translateX(5%);
  }

  .register-layout {
    gap: 65px;
  }

  .download-card {
    gap: 48px;
  }

  .site-footer__inner {
    grid-template-columns: auto 1fr;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    visibility: hidden;
    background: rgba(8, 11, 14, 0.97);
    opacity: 0;
    transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    max-height: 360px;
    padding: 22px 18px 26px;
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    width: 100%;
    padding: 7px 0;
  }

  .site-nav .button {
    margin-top: 6px;
  }

  .hero {
    padding-bottom: 90px;
  }

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

  .hero__content {
    max-width: 680px;
    margin-inline: auto;
  }

  .hero .eyebrow,
  .hero__actions,
  .hero__status {
    justify-content: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero-art {
    width: min(500px, 85vw);
    margin-top: 35px;
    transform: none;
  }

  .realm-grid,
  .register-layout,
  .download-card {
    grid-template-columns: 1fr;
  }

  .realm-card > p,
  .realm-features {
    min-height: 0;
  }

  .register-layout {
    gap: 105px;
  }

  .register-copy {
    max-width: 620px;
  }

  .download-copy {
    max-width: 650px;
  }

  .steps {
    gap: 34px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__sigil {
    width: 42px;
    height: 42px;
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .hero {
    padding: 125px 0 74px;
  }

  .hero h1 {
    font-size: clamp(45px, 13.5vw, 64px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    display: grid;
  }

  .hero-art {
    width: min(410px, 94vw);
  }

  .hero-art__rune {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-art__plaque::before,
  .hero-art__plaque::after {
    width: 40px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading--split {
    display: block;
  }

  .section-heading h2,
  .register-copy h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .status-refresh {
    margin-top: 20px;
    padding: 0;
  }

  .status-summary {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 15px;
    padding: 20px;
  }

  .summary-item {
    justify-content: start;
  }

  .summary-divider {
    width: 100%;
    height: 1px;
  }

  .realm-catalog {
    gap: 42px;
  }

  .realm-family__heading {
    grid-template-columns: auto 1fr;
  }

  .realm-family__availability {
    grid-column: 2;
    justify-self: start;
  }

  .realm-card {
    padding: 27px 22px;
  }

  .realm-card__crest {
    width: 62px;
    height: 62px;
  }

  .realm-card__crest svg {
    width: 38px;
    height: 38px;
  }

  .realm-card__stats > div {
    padding-inline: 5px;
  }

  .register-section {
    margin-top: 25px;
    padding: 100px 0 90px;
  }

  .register-panel {
    padding: 35px 20px 30px;
  }

  .download-section {
    padding: 88px 0 70px;
  }

  .download-card {
    gap: 45px;
    padding: 34px 22px;
  }

  .download-actions {
    display: grid;
    align-items: start;
  }

  .button--download {
    width: 100%;
  }

  .download-console__body {
    padding: 21px 17px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 55px;
    max-width: 350px;
  }

  .steps::before {
    top: 45px;
    bottom: 45px;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(217, 176, 82, 0.25) 12% 88%, transparent);
  }

  .steps li {
    padding: 0 12px 8px;
    background: var(--ink);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .site-footer .brand {
    justify-self: center;
  }

  .site-footer__legal {
    text-align: center;
  }
}

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

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

@media (forced-colors: active) {
  .status-dot,
  .realm-state i,
  .password-strength i {
    forced-color-adjust: none;
  }

  .button,
  .input-shell,
  .realm-card,
  .register-panel {
    border: 1px solid ButtonText;
  }
}
