:root {
  color-scheme: dark;
  --ink: #0b0d0d;
  --ink-soft: #101414;
  --forest: #13201c;
  --forest-light: #1d3028;
  --paper: #e8e3d7;
  --paper-dim: #b9b4a9;
  --gold: #d6ae58;
  --gold-bright: #f0d184;
  --ember: #9f4935;
  --line: rgba(232, 227, 215, 0.16);
  --line-gold: rgba(214, 174, 88, 0.42);
  --online: #69b47c;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

body,
button,
a {
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold-bright);
  color: var(--ink);
  padding: 10px 14px;
}

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

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(240, 209, 132, .35);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 9, .97);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font: 700 22px/1 var(--display);
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border: 1px solid var(--line-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.site-nav a {
  position: relative;
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="location"],
.site-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

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

.site-nav .nav-account-link {
  display: none;
}

.header-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-gold);
  padding: 0 17px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-login {
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.header-login:hover,
.header-login:focus-visible {
  color: var(--gold-bright);
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(860px, 92vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.035);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 7, 0.93) 0%, rgba(5, 8, 8, 0.67) 46%, rgba(5, 8, 8, 0.14) 74%),
    linear-gradient(0deg, rgba(6, 8, 8, 0.85), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1240px);
  margin: 0 auto;
  padding: 142px 0 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: #f3eee3;
  font: 700 clamp(68px, 10vw, 142px)/0.88 var(--display);
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
  margin: 25px 0 0;
  color: var(--gold-bright);
  font: 600 clamp(20px, 2.3vw, 32px)/1.2 var(--display);
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d8d4ca;
  font-size: clamp(16px, 1.3vw, 19px);
}

.launch-countdown-active .hero {
  min-height: min(950px, 96vh);
}

.launch-countdown {
  position: relative;
  width: min(100%, 1000px);
  margin-top: 30px;
  padding: 19px 0 17px;
  border-top: 1px solid rgba(211, 166, 65, 0.65);
  border-bottom: 1px solid rgba(211, 166, 65, 0.42);
  background: linear-gradient(90deg, rgba(6, 10, 9, 0.48), rgba(6, 10, 9, 0.12));
}

.launch-countdown::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 148px;
  height: 3px;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(229, 187, 86, 0.42);
}

.launch-countdown-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.launch-countdown-heading p,
.launch-countdown-heading time {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.launch-countdown-heading p {
  color: var(--gold-bright);
  font-size: 12px;
}

.launch-countdown-heading time {
  color: var(--paper);
  font-size: 12px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) 1px minmax(82px, 1fr) 1px minmax(82px, 1fr) 1px minmax(82px, 1fr);
  align-items: center;
  max-width: 860px;
  margin-top: 14px;
}

.countdown-unit {
  display: grid;
  justify-items: start;
}

.countdown-unit strong {
  color: #f3eee3;
  font-family: var(--display);
  font-size: 64px;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.48);
}

.countdown-unit span {
  margin-top: 9px;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-separator {
  width: 1px;
  height: 48px;
  background: rgba(229, 187, 86, 0.34);
}

.countdown-seconds strong {
  color: var(--gold-bright);
  animation: countdown-pulse 1s ease-out infinite;
}

.launch-countdown-note {
  margin: 15px 0 0;
  color: #d8d4ca;
  font-size: 14px;
}

@keyframes countdown-pulse {
  0% { opacity: 0.72; }
  36% { opacity: 1; }
  100% { opacity: 1; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #11100c;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-bright);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(7, 10, 10, 0.4);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--paper);
  background: rgba(7, 10, 10, 0.7);
}

.hero-next {
  position: absolute;
  right: 4vw;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.status-band {
  background: #111817;
  border-bottom: 1px solid var(--line);
}

.status-inner {
  width: min(92vw, 1240px);
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 48px;
}

.status-primary {
  display: flex;
  align-items: center;
  gap: 15px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper-dim);
  box-shadow: 0 0 0 5px rgba(185, 180, 169, 0.1);
}

.status-dot[data-tone="online"] {
  background: var(--online);
  box-shadow: 0 0 0 5px rgba(105, 180, 124, 0.1), 0 0 18px rgba(105, 180, 124, 0.35);
  animation: status-pulse 2.8s ease-out infinite;
}

@keyframes status-pulse {
  0%,
  35% {
    box-shadow: 0 0 0 5px rgba(105, 180, 124, .1), 0 0 18px rgba(105, 180, 124, .35);
  }

  70%,
  100% {
    box-shadow: 0 0 0 10px rgba(105, 180, 124, 0), 0 0 9px rgba(105, 180, 124, .2);
  }
}

.status-label,
.realm-facts dt,
.phase-state,
.news-type {
  display: block;
  color: #8f9892;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-primary strong {
  color: var(--paper);
  font-size: 18px;
}

.realm-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.realm-facts div {
  min-height: 48px;
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.realm-facts dd {
  margin: 3px 0 0;
  color: var(--paper);
  font-weight: 700;
}

.section {
  width: min(92vw, 1240px);
  margin: 0 auto;
  padding: 105px 0;
}

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

.section-heading h2,
.principles-copy h2,
.support-inner h2 {
  margin: 0;
  color: #eee9de;
  font: 600 clamp(38px, 5.4vw, 72px)/1.04 var(--display);
}

.section-heading > p:last-child {
  color: var(--paper-dim);
}

.intro-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9vw;
  align-items: start;
}

.intro-copy {
  border-left: 1px solid var(--line-gold);
  padding-left: 30px;
  color: var(--paper-dim);
  font-size: 17px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.method-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(214, 174, 88, .045), transparent 48%),
    #0e1110;
}

.method-inner {
  padding-top: 90px;
  padding-bottom: 90px;
}

.method-heading {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 9vw;
  align-items: end;
}

.method-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #eee9de;
  font: 600 clamp(38px, 5.2vw, 68px)/1.04 var(--display);
}

.method-heading > p:last-child {
  margin: 0 0 7px;
  color: var(--paper-dim);
  font-size: 16px;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 54px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-steps::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1000ms cubic-bezier(.2, .75, .2, 1) 180ms;
}

.method-steps.is-visible::before {
  transform: scaleX(1);
}

.method-steps li {
  min-height: 210px;
  padding: 28px 24px 12px 0;
}

.method-steps li + li {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.method-steps li > span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.method-steps strong {
  display: block;
  color: var(--paper);
  font: 600 21px/1.15 var(--display);
}

.method-steps p {
  margin: 9px 0 0;
  color: #939a96;
  font-size: 13px;
}

.timeline {
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.timeline-step.current {
  border-bottom-color: var(--line-gold);
}

.timeline-step:hover {
  background: rgba(255, 255, 255, .018);
}

.timeline-index {
  color: #59625e;
  font: 500 33px/1 var(--display);
}

.timeline-step.current .timeline-index,
.timeline-step.current .phase-state {
  color: var(--gold);
}

.timeline-step h3 {
  margin: 5px 0 7px;
  color: var(--paper);
  font: 600 28px/1.15 var(--display);
}

.timeline-step p {
  max-width: 760px;
  margin: 0;
  color: var(--paper-dim);
}

.feature-band {
  background:
    linear-gradient(125deg, rgba(159, 73, 53, 0.12), transparent 44%),
    #171313;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature {
  position: relative;
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background-color 220ms ease;
}

.feature::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.feature:hover {
  background: rgba(214, 174, 88, .035);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature-number {
  color: var(--gold);
  font: 600 13px/1 var(--display);
}

.feature h3 {
  margin: 38px 0 10px;
  color: var(--paper);
  font: 600 25px/1.15 var(--display);
}

.feature p {
  margin: 0;
  color: #adb7b0;
  font-size: 14px;
}

.news-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.text-link {
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--paper);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.news-item {
  min-height: 300px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.news-item:first-child {
  border-left: 1px solid var(--line);
}

.news-item:hover {
  background-color: rgba(214, 174, 88, .028);
}

.news-item time {
  display: block;
  margin-top: 8px;
  color: #777f7b;
  font-size: 12px;
}

.news-item h3 {
  margin: 40px 0 10px;
  color: var(--paper);
  font: 600 28px/1.15 var(--display);
}

.news-item p {
  color: var(--paper-dim);
  font-size: 14px;
}

.news-lead {
  background: linear-gradient(145deg, rgba(214, 174, 88, 0.1), transparent 62%);
}

.journal-state {
  color: #777f7b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.play-band {
  background: #141817;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.play-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.play-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 0 30px;
  border-left: 1px solid var(--line);
}

.play-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.play-steps > li > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  color: var(--gold-bright);
  font: 600 17px/1 var(--display);
}

.play-steps h3 {
  margin: 3px 0 8px;
  color: var(--paper);
  font: 600 23px/1.15 var(--display);
}

.play-steps p {
  color: var(--paper-dim);
  font-size: 14px;
}

.realmlist-command {
  width: min(100%, 300px);
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  margin-top: 16px;
  border: 1px solid var(--line);
  background: #0a0c0c;
}

.realmlist-command code {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 8px 10px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.realmlist-command button {
  width: 62px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.realmlist-command button:hover,
.realmlist-command button:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.copy-status {
  display: block;
  min-height: 20px;
  color: var(--online);
  font-size: 11px;
}

code {
  color: var(--gold-bright);
  font-family: Consolas, "Courier New", monospace;
}

.principles-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}

.principles-copy p:last-child {
  color: var(--paper-dim);
  font-size: 17px;
}

.principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.principles-list li {
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--gold) 0 8px, transparent 8px) no-repeat left center / 8px 1px;
  color: var(--paper);
  font-weight: 700;
}

.support-band {
  background: var(--ember);
}

.support-inner {
  width: min(92vw, 1240px);
  min-height: 330px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8vw;
}

.support-inner > div {
  max-width: 760px;
}

.support-inner .eyebrow,
.support-inner p {
  color: #f1d8cf;
}

.button-discord {
  min-width: 170px;
  border-color: rgba(255, 255, 255, 0.55);
  background: #f0e5d8;
  color: #4e1e15;
}

.button-discord:hover,
.button-discord:focus-visible {
  background: white;
}

.site-footer {
  width: min(92vw, 1240px);
  margin: 0 auto;
  padding: 52px 0 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand strong {
  display: block;
  font: 600 23px/1 var(--display);
}

.footer-brand span {
  color: #7f8783;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.site-footer nav a {
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.legal {
  max-width: 850px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #6f7773;
  font-size: 11px;
}

/* Server rules */
.rules-page {
  background:
    radial-gradient(circle at 15% 18%, rgba(214, 174, 88, .06), transparent 34%),
    var(--ink);
}

.rules-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-gold);
}

.rules-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.rules-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 9, .97) 0%, rgba(6, 9, 9, .78) 46%, rgba(6, 9, 9, .2) 100%), linear-gradient(0deg, rgba(6, 9, 9, .9), transparent 55%);
}

.rules-hero-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1240px);
  margin: 0 auto;
  padding: 142px 0 72px;
}

.rules-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font: 700 clamp(58px, 8vw, 108px)/.92 var(--display);
}

.rules-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #d1cec5;
  font-size: clamp(17px, 2vw, 21px);
}

.rules-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.rules-priorities {
  width: min(92vw, 1240px);
  margin: 0 auto;
  padding: 86px 0 92px;
}

.rules-priorities-heading {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) 1.45fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.rules-priorities-heading h2 {
  max-width: 760px;
  margin: 0;
  font: 700 clamp(38px, 5vw, 68px)/1 var(--display);
}

.rules-priority-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rules-priority-grid article {
  min-width: 0;
  padding: 30px 28px 34px;
  border-left: 1px solid var(--line);
}

.rules-priority-grid article:first-child {
  border-left: 0;
}

.rules-priority-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.rules-priority-grid h3 {
  margin: 20px 0 10px;
  font: 700 24px/1.15 var(--display);
}

.rules-priority-grid p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 14px;
}

.rules-shell {
  width: min(92vw, 1240px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
  margin: 0 auto;
  padding: 0 0 110px;
}

#rules-content,
.rule-section {
  scroll-margin-top: 110px;
}

.rules-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 124px);
  overflow: auto;
  padding: 0 18px 28px 0;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}

.rules-search {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.rules-search label {
  display: block;
  margin-bottom: 9px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rules-search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line-gold);
  background: #080b0b;
}

.rules-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 13px;
  background: transparent;
  color: var(--paper);
}

.rules-search input::placeholder {
  color: #737b77;
}

.rules-search button {
  border: 0;
  border-left: 1px solid var(--line);
  padding: 0 12px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-search > p {
  margin: 8px 0 0;
  color: #7f8783;
  font-size: 11px;
}

.rules-sidebar nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.rules-sidebar ol {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: rules;
}

.rules-sidebar li {
  counter-increment: rules;
}

.rules-sidebar li + li {
  margin-top: 2px;
}

.rules-sidebar li a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  padding: 6px 0;
  color: #979d99;
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;
}

.rules-sidebar li a::before {
  color: var(--gold);
  content: counter(rules, decimal-leading-zero);
  font-size: 10px;
  font-weight: 800;
}

.rules-sidebar li a:hover,
.rules-sidebar li a:focus-visible {
  color: var(--paper);
}

.rules-help {
  margin-top: 26px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.rules-help strong {
  font: 700 19px/1.2 var(--display);
}

.rules-help p {
  margin: 8px 0 12px;
  color: var(--paper-dim);
  font-size: 12px;
}

.rules-help a {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.rules-document {
  min-width: 0;
}

.rule-section {
  scroll-margin-top: 104px;
  padding: 54px 0 68px;
  border-top: 1px solid var(--line);
}

.rule-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.rule-section[hidden] {
  display: none;
}

.rule-section > h2 {
  max-width: 820px;
  margin: 0 0 30px;
  color: var(--paper);
  font: 700 clamp(36px, 4.5vw, 62px)/1 var(--display);
}

.rule-section > h2 .rule-number {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font: 800 12px/1 var(--sans);
  text-transform: uppercase;
}

.rule-section h3 {
  margin: 42px 0 14px;
  color: var(--paper);
  font: 700 29px/1.15 var(--display);
}

.rule-section h4 {
  margin: 32px 0 12px;
  color: var(--gold-bright);
  font: 700 21px/1.2 var(--display);
}

.rule-section p,
.rule-section ul,
.rule-section blockquote {
  max-width: 800px;
}

.rule-section p {
  margin: 0 0 18px;
  color: #c3c0b7;
}

.rule-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 28px;
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
}

.rule-section li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: #c9c6bd;
  font-size: 14px;
}

.rule-section li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.rule-section strong {
  color: var(--paper);
}

.rule-penalty,
.rule-emphasis {
  margin: 28px 0 !important;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(214, 174, 88, .075);
  color: var(--paper) !important;
}

.rule-penalty {
  border-left-color: #bd684f;
  background: rgba(159, 73, 53, .12);
}

.rule-section blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  color: var(--paper);
  font: 700 24px/1.4 var(--display);
}

.rules-updated {
  margin: 8px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #747c78;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .rules-priority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rules-priority-grid article:nth-child(3) {
    border-left: 0;
  }

  .rules-priority-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .rules-shell {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 44px;
  }

  .rule-section ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .rules-hero {
    min-height: 470px;
  }

  .rules-hero-shade {
    background: linear-gradient(0deg, rgba(6, 9, 9, .97) 0%, rgba(6, 9, 9, .72) 62%, rgba(6, 9, 9, .35) 100%);
  }

  .rules-hero-content {
    padding-top: 128px;
    padding-bottom: 54px;
  }

  .rules-priorities {
    padding: 66px 0 74px;
  }

  .rules-priorities-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rules-shell {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .rules-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .rules-sidebar ol {
    columns: 2;
    column-gap: 24px;
  }

  .rules-sidebar li {
    break-inside: avoid;
  }

  .rule-section {
    padding: 44px 0 54px;
  }
}

@media (max-width: 520px) {
  .rules-hero h1 {
    font-size: 54px;
  }

  .rules-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .rules-priority-grid {
    grid-template-columns: 1fr;
  }

  .rules-priority-grid article,
  .rules-priority-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .rules-priority-grid article:first-child {
    border-top: 0;
  }

  .rules-sidebar ol {
    columns: 1;
  }

  .rule-section > h2 {
    font-size: 37px;
  }

  .rule-section h3 {
    font-size: 25px;
  }
}

.journey-banner,
.arena-showcase {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.journey-banner > img,
.arena-showcase > img,
.journey-shade,
.arena-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-banner > img,
.arena-showcase > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.2, .75, .2, 1);
}

.journey-banner.is-visible > img,
.arena-showcase.is-visible > img {
  transform: scale(1.025);
}

.journey-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 8, 8, .92) 0%, rgba(5, 8, 8, .7) 38%, rgba(5, 8, 8, .08) 72%),
    linear-gradient(0deg, rgba(5, 8, 8, .62), transparent 55%);
}

.journey-content,
.arena-content {
  width: min(92vw, 1240px);
  margin: 0 auto;
  padding: 105px 0;
}

.journey-content {
  padding-right: min(46vw, 640px);
}

.journey-content h2,
.arena-content h2 {
  margin: 0;
  color: #f2ede2;
  font: 600 clamp(42px, 6.2vw, 82px)/1.02 var(--display);
  text-shadow: 0 5px 24px rgba(0, 0, 0, .52);
}

.journey-content > p:last-child,
.arena-content > p {
  max-width: 650px;
  color: #d4d0c7;
  font-size: 17px;
}

.arena-showcase {
  min-height: 760px;
  align-items: flex-end;
}

.arena-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 6, 6, .94) 0%, rgba(4, 6, 6, .68) 42%, rgba(4, 6, 6, .1) 75%),
    linear-gradient(0deg, rgba(5, 7, 7, .9), transparent 58%);
}

.arena-content {
  padding-right: min(43vw, 590px);
}

.arena-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin: 32px 0 26px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.arena-facts div {
  padding: 15px 18px 15px 0;
}

.arena-facts div + div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.arena-facts dt {
  color: #9a958a;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.arena-facts dd {
  margin: 3px 0 0;
  color: var(--paper);
  font: 600 17px/1.2 var(--display);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms cubic-bezier(.2, .75, .2, 1),
    transform 650ms cubic-bezier(.2, .75, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1320px) {
  .site-header {
    gap: 18px;
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .site-nav {
    gap: clamp(12px, 1.5vw, 22px);
  }

  .header-login {
    display: none;
  }
}

@media (max-width: 980px) {
  .countdown-unit strong {
    font-size: 54px;
  }

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

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 14px 4vw 22px;
    background: #090c0c;
    border-bottom: 1px solid var(--line);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav .nav-account-link {
    display: block;
  }

  .status-inner,
  .intro-section,
  .principles-section,
  .method-heading {
    grid-template-columns: 1fr;
  }

  .status-inner {
    padding: 25px 0;
    gap: 24px;
  }

  .journey-content,
  .arena-content {
    padding-right: 38vw;
  }

  .feature-grid,
  .play-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps li:nth-child(3) {
    border-left: 0;
  }

  .method-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .news-lead {
    grid-column: 1 / -1;
  }

  .play-steps li:nth-child(3) {
    margin-top: 35px;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    gap: 10px;
  }

  .site-nav {
    top: 64px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-action {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-login {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .launch-countdown-active .hero {
    min-height: 920px;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 7, 7, 0.97) 0%, rgba(5, 8, 8, 0.56) 68%, rgba(5, 8, 8, 0.22) 100%);
  }

  .hero-content {
    padding: 120px 0 105px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 14vw, 60px);
  }

  .hero-tagline {
    max-width: 100%;
    font-size: clamp(20px, 6.5vw, 25px);
  }

  .hero h1,
  .hero-tagline,
  .hero-copy {
    overflow-wrap: anywhere;
  }

  .hero-next {
    left: 4vw;
    right: auto;
  }

  .launch-countdown-active .hero-next {
    display: none;
  }

  .launch-countdown {
    margin-top: 24px;
    padding-top: 17px;
  }

  .launch-countdown-heading {
    display: grid;
    gap: 5px;
  }

  .countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .countdown-separator {
    display: none;
  }

  .countdown-unit strong {
    font-size: 42px;
  }

  .journey-banner,
  .arena-showcase {
    min-height: 680px;
    align-items: flex-end;
  }

  .journey-banner > img {
    object-position: 66% center;
  }

  .arena-showcase > img {
    object-position: 62% center;
  }

  .journey-shade,
  .arena-shade {
    background:
      linear-gradient(0deg, rgba(4, 7, 7, .98) 0%, rgba(5, 8, 8, .7) 55%, rgba(5, 8, 8, .18) 100%);
  }

  .journey-content,
  .arena-content {
    padding: 210px 0 72px;
  }

  .journey-content h2,
  .arena-content h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .arena-facts {
    grid-template-columns: 1fr;
  }

  .arena-facts div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .realm-facts {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .principles-copy h2,
  .support-inner h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .feature-grid,
  .news-grid,
  .play-steps,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .method-heading {
    gap: 20px;
  }

  .method-steps li,
  .method-steps li + li,
  .method-steps li:nth-child(3) {
    min-height: 0;
    padding: 24px 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-steps li > span {
    margin-bottom: 12px;
  }

  .feature {
    min-height: 230px;
  }

  .news-lead {
    grid-column: auto;
  }

  .news-heading {
    align-items: start;
    gap: 20px;
  }

  .play-steps li,
  .play-steps li:nth-child(3) {
    margin-top: 0;
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-inner {
    min-height: 430px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 20px;
  }

  .button-discord {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .countdown-grid {
    gap: 7px;
  }

  .countdown-unit strong {
    font-size: 36px;
  }

  .countdown-unit span {
    font-size: 9px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

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

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
