:root {
  --bg: #050607;
  --bg-2: #0b0d0e;
  --panel: #101214;
  --panel-2: #171b1e;
  --steel: #56616a;
  --steel-dim: #2a3238;
  --orange: #ff8a28;
  --orange-dark: #c95722;
  --red: #b3261e;
  --yellow: #ffd166;
  --green: #7cff6b;
  --white: #f3eee3;
  --muted: #b5aaa0;
  --dim: #80766d;
  --black: #000;
  --max: 1440px;
  --radius: 6px;
  --cut: 14px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .55);
  --metal-texture: url("../media/texture-metal.svg");
  --grunge-texture: url("../media/texture-grunge.svg");
  --plate-seams: url("../media/plate-seams.svg");
  --section-divider: url("../media/section-divider.svg");
  --console-scan: url("../media/console-scan.svg");
  --inner-line: rgba(243, 238, 227, .09);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 9%, rgba(255, 138, 40, .12), transparent 30%),
    radial-gradient(circle at 78% 0%, rgba(124, 255, 107, .07), transparent 25%),
    linear-gradient(180deg, rgba(5, 6, 7, .92), rgba(5, 6, 7, .98)),
    var(--metal-texture) center top / 320px repeat,
    url("../media/pattern-bg.png") center top / cover;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 138, 40, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 138, 40, .04) 1px, transparent 1px),
    var(--grunge-texture) center / 640px repeat;
  background-size: 96px 96px, 96px 96px, 640px 640px;
  opacity: .36;
  animation: background-drift 42s linear infinite;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.app-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}

.ambient-effects {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  contain: paint;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ember-particle {
  position: absolute;
  bottom: -12vh;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  opacity: 0;
  will-change: transform, opacity;
  animation: ember-float var(--duration) linear infinite;
  animation-delay: var(--delay);
}

.ember-particle::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 236, 177, .95) 0 18%, rgba(255, 138, 40, .9) 33%, rgba(255, 64, 10, .32) 62%, transparent 74%);
  filter: blur(var(--blur));
  box-shadow: 0 0 10px rgba(255, 138, 40, .68), 0 0 24px rgba(255, 70, 8, .26);
  animation: ember-twinkle var(--pulse) ease-in-out infinite;
}

.ember-particle.is-ash::before {
  background: radial-gradient(circle, rgba(243, 238, 227, .58), rgba(181, 170, 160, .32) 46%, transparent 72%);
  box-shadow: 0 0 8px rgba(243, 238, 227, .16);
}

.motion-ready .reveal-on-scroll {
  will-change: opacity, transform, filter;
}

.motion-ready .reveal-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(4px);
}

.motion-ready .reveal-on-scroll.reveal-left:not(.is-visible) {
  transform: translate3d(-38px, 0, 0);
}

.motion-ready .reveal-on-scroll.reveal-right:not(.is-visible) {
  transform: translate3d(38px, 0, 0);
}

.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
  animation: reveal-up .72s cubic-bezier(.2, .72, .18, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-on-scroll.reveal-left.is-visible {
  animation-name: reveal-left;
}

.motion-ready .reveal-on-scroll.reveal-right.is-visible {
  animation-name: reveal-right;
}

.app-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: url("../media/ember-flare-overlay.webp") center bottom / cover no-repeat;
  --ember-opacity-low: .18;
  --ember-opacity-high: .34;
  opacity: .22;
  mix-blend-mode: screen;
  animation: ember-wash 9s ease-in-out infinite;
}

.app-shell::after {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(0, 0, 0, .38) 100%),
    var(--grunge-texture) center / 640px repeat;
  opacity: .20;
  mix-blend-mode: soft-light;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 138, 40, .45);
  background:
    linear-gradient(180deg, rgba(31, 31, 29, .96), rgba(7, 8, 9, .98)),
    var(--plate-seams) center / 960px 128px repeat-x,
    var(--metal-texture) center / 320px repeat,
    url("../media/pattern-bg.png") center / cover,
    repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(255, 138, 40, .08) 19px, transparent 20px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .68), inset 0 -1px 0 rgba(255, 255, 255, .08);
}

.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 9%, rgba(255, 138, 40, .16) 9.2%, transparent 9.8% 29%, rgba(255, 255, 255, .08) 29.2%, transparent 29.8% 70%, rgba(255, 138, 40, .12) 70.2%, transparent 71%),
    radial-gradient(circle at 18px 72%, rgba(255, 138, 40, .6) 0 2px, transparent 3px),
    radial-gradient(circle at calc(100% - 18px) 72%, rgba(255, 138, 40, .6) 0 2px, transparent 3px),
    linear-gradient(90deg, rgba(0, 0, 0, .46), transparent 26%, transparent 74%, rgba(0, 0, 0, .46));
  opacity: .82;
  animation: header-sheen 12s ease-in-out infinite;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -18px;
  left: 0;
  height: 24px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 90, 12, .72), rgba(179, 38, 30, .62), transparent) center top / 100% 2px no-repeat,
    var(--section-divider) center top / auto 24px repeat-x;
  opacity: .82;
  animation: divider-glow 6.5s ease-in-out infinite;
}

.header-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(96px, 122px) minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
}

.brand {
  position: relative;
  z-index: 2;
  height: 92px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand::before {
  position: absolute;
  top: 17px;
  left: -9px;
  width: 102px;
  height: 64px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255, 138, 40, .22), transparent 64%),
    radial-gradient(ellipse at 50% 76%, rgba(0, 0, 0, .58), transparent 72%);
  filter: blur(7px);
  opacity: .62;
}

.brand img {
  position: relative;
  width: 82px;
  max-width: 100%;
  height: auto;
  filter:
    drop-shadow(0 8px 12px rgba(0, 0, 0, .64))
    drop-shadow(0 0 12px rgba(255, 138, 40, .22));
  transition: filter .16s ease, transform .16s ease;
}

.brand:focus-visible {
  outline: none;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px);
  filter:
    drop-shadow(0 9px 13px rgba(0, 0, 0, .68))
    drop-shadow(0 0 18px rgba(255, 138, 40, .44));
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 44px;
  padding: 13px 17px 10px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(243, 238, 227, .10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), transparent 38%, rgba(0, 0, 0, .24)),
    var(--metal-texture) center / 240px repeat,
    rgba(0, 0, 0, .20);
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .36);
  text-shadow: 0 2px 0 rgba(0, 0, 0, .85);
}

.nav-link::before {
  position: absolute;
  inset: 2px;
  z-index: -1;
  content: "";
  border: 1px solid transparent;
  background:
    linear-gradient(110deg, transparent 0 23%, rgba(255, 138, 40, .10) 23.5%, transparent 24.2% 78%, rgba(255, 255, 255, .06) 78.6%, transparent 79.4%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 60%);
  clip-path: inherit;
  opacity: .68;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--white);
  border-color: rgba(255, 138, 40, .54);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 90, 12, .20), transparent 65%),
    linear-gradient(180deg, rgba(255, 138, 40, .11), rgba(0, 0, 0, .24)),
    var(--metal-texture) center / 240px repeat,
    rgba(0, 0, 0, .28);
  outline: none;
}

.nav-link.is-active::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255, 138, 40, .85);
}

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

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 138, 40, .45);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--white);
}

.mobile-toggle span {
  position: relative;
}

.mobile-toggle span::before {
  position: absolute;
  top: -7px;
}

.mobile-toggle span::after {
  position: absolute;
  top: 7px;
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 54px;
  padding: 14px 24px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 138, 40, .68);
  border-radius: 3px;
  background:
    radial-gradient(circle at 13px 50%, rgba(0, 0, 0, .88) 0 2px, rgba(255, 190, 117, .32) 2px 3px, transparent 4px),
    radial-gradient(circle at calc(100% - 13px) 50%, rgba(0, 0, 0, .88) 0 2px, rgba(255, 190, 117, .32) 2px 3px, transparent 4px),
    linear-gradient(180deg, rgba(255, 255, 255, .15), transparent 33%, rgba(0, 0, 0, .44)),
    var(--metal-texture) center / 260px repeat,
    linear-gradient(180deg, rgba(50, 52, 52, .98), rgba(10, 10, 10, .98));
  color: var(--white);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .78), 0 0 12px rgba(255, 138, 40, .12);
  cursor: pointer;
  clip-path: polygon(18px 0, calc(100% - 18px) 0, calc(100% - 5px) 5px, 100% 18px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 18px 100%, 0 calc(100% - 18px), 0 12px, 12px 0);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .92),
    0 12px 24px rgba(0, 0, 0, .45),
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    inset 0 0 0 4px rgba(0, 0, 0, .32),
    inset 0 -13px 22px rgba(0, 0, 0, .42);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn::before {
  position: absolute;
  inset: 4px 5px;
  z-index: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(243, 238, 227, .13);
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 243, 214, .28) 44%, rgba(255, 138, 40, .16) 50%, transparent 60%) -170% 0 / 240% 100% no-repeat,
    linear-gradient(110deg, transparent 0 18%, rgba(255, 138, 40, .17) 18.4%, transparent 19.2% 80%, rgba(255, 255, 255, .10) 80.6%, transparent 81.5%),
    linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 42%, rgba(0, 0, 0, .30));
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 14px 100%, 0 calc(100% - 14px), 0 8px);
  opacity: .88;
  transition: opacity .16s ease, border-color .16s ease, background .16s ease;
  animation: button-glare 7.5s ease-in-out infinite;
}

.btn::after {
  position: absolute;
  right: 9px;
  bottom: 0;
  left: 9px;
  z-index: 0;
  height: 12px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(255, 85, 10, .68), rgba(255, 85, 10, .20) 42%, transparent 72%),
    linear-gradient(90deg, transparent, rgba(255, 138, 40, .60), transparent);
  filter: blur(2px);
  opacity: .48;
  transition: opacity .16s ease, filter .16s ease;
  animation: lower-glow 4.8s ease-in-out infinite;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--orange);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .92),
    0 0 28px rgba(255, 90, 12, .24),
    0 14px 32px rgba(0, 0, 0, .52),
    inset 0 0 0 1px rgba(255, 255, 255, .10),
    inset 0 0 0 4px rgba(0, 0, 0, .28),
    inset 0 -13px 24px rgba(0, 0, 0, .36);
  outline: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  border-color: rgba(255, 138, 40, .32);
  opacity: 1;
}

.btn:hover::after,
.btn:focus-visible::after {
  filter: blur(1px);
  opacity: .80;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  border-color: rgba(255, 138, 40, .9);
  background:
    radial-gradient(circle at 13px 50%, rgba(60, 15, 4, .9) 0 2px, rgba(255, 197, 130, .42) 2px 3px, transparent 4px),
    radial-gradient(circle at calc(100% - 13px) 50%, rgba(60, 15, 4, .9) 0 2px, rgba(255, 197, 130, .42) 2px 3px, transparent 4px),
    linear-gradient(180deg, rgba(255, 238, 198, .32), rgba(255, 138, 40, .05) 32%, rgba(67, 7, 0, .40)),
    var(--metal-texture) center / 260px repeat,
    linear-gradient(180deg, #f7892b 0%, #c94d18 48%, #7c1b0b 100%);
  color: #fff6eb;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .70), 0 0 12px rgba(255, 220, 175, .24);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .95),
    0 0 18px rgba(255, 90, 12, .24),
    0 12px 24px rgba(0, 0, 0, .48),
    inset 0 0 0 1px rgba(255, 239, 204, .18),
    inset 0 0 0 4px rgba(72, 13, 2, .34),
    inset 0 -13px 22px rgba(73, 8, 0, .38);
}

.btn-secondary {
  border-color: rgba(243, 238, 227, .38);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 44%, rgba(0, 0, 0, .36)),
    var(--metal-texture) center / 260px repeat,
    linear-gradient(180deg, rgba(56, 61, 64, .98), rgba(15, 16, 17, .98));
}

.btn-ghost {
  border-color: rgba(181, 170, 160, .32);
  background: rgba(0, 0, 0, .2);
}

.btn-discord {
  border-color: rgba(243, 238, 227, .38);
  background:
    radial-gradient(circle at 13px 50%, rgba(0, 0, 0, .88) 0 2px, rgba(255, 190, 117, .26) 2px 3px, transparent 4px),
    radial-gradient(circle at calc(100% - 13px) 50%, rgba(0, 0, 0, .88) 0 2px, rgba(255, 190, 117, .26) 2px 3px, transparent 4px),
    linear-gradient(180deg, rgba(255, 255, 255, .09), transparent 38%, rgba(0, 0, 0, .44)),
    var(--metal-texture) center / 260px repeat,
    linear-gradient(180deg, rgba(45, 48, 48, .98), rgba(10, 10, 10, .98));
}

.btn-steam {
  border-color: rgba(255, 209, 102, .45);
}

.btn-icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, .58));
}

.btn-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary .btn-icon {
  width: 28px;
  height: 28px;
}

.btn-primary .btn-icon svg {
  width: 28px;
  height: 28px;
}

.hero-actions .btn {
  flex: 0 0 auto;
  min-height: 64px;
  padding: 17px 23px 14px;
  gap: 11px;
  font-size: 1.03rem;
  white-space: nowrap;
}

.hero-actions .btn-secondary {
  flex-basis: 318px;
  min-width: 0;
}

.hero-actions .btn-primary {
  flex-basis: 244px;
  min-width: 0;
}

.hero-actions .btn-discord {
  flex-basis: 220px;
  min-width: 0;
}

.header-actions .btn {
  min-width: 218px;
  min-height: 58px;
  padding-right: 30px;
  padding-left: 30px;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 34px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 138, 40, .28);
  background-image:
    radial-gradient(ellipse at 72% 42%, rgba(255, 138, 40, .18), transparent 42%),
    linear-gradient(90deg, rgba(5, 6, 7, .46) 0%, rgba(7, 7, 7, .06) 47%, rgba(5, 6, 7, .18) 100%),
    url("../media/website-hero-raid-overlook-v4.webp");
  background-position:
    center,
    center,
    center top;
  background-size:
    auto,
    auto,
    cover;
  background-repeat: no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .42) 90%),
    linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 34%, transparent 72%, rgba(0, 0, 0, .10)),
    repeating-linear-gradient(116deg, rgba(255, 138, 40, .032) 0, rgba(255, 138, 40, .032) 1px, transparent 1px, transparent 48px);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: 0;
  left: -10%;
  height: 185px;
  content: "";
  background:
    linear-gradient(180deg, transparent 0, rgba(5, 6, 7, .52) 42%, rgba(5, 6, 7, .92) 100%),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .32) 0 10px, transparent 10px 28px);
  opacity: .24;
  transform: skewY(-2deg);
  transform-origin: bottom left;
  pointer-events: none;
}

.hero-inner,
.section-inner,
.footer-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  isolation: isolate;
}

.hero-brand-mark {
  position: relative;
  z-index: 2;
  width: clamp(198px, 14.2vw, 246px);
  margin: 0 0 -8px -10px;
  pointer-events: none;
  filter:
    drop-shadow(0 18px 20px rgba(0, 0, 0, .70))
    drop-shadow(0 0 18px rgba(255, 138, 40, .28));
}

.page-home .hero-brand-mark {
  filter: none;
}

.hero-inner::before {
  position: absolute;
  inset: -34px calc((100vw - 100%) / -2) -120px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: url("../media/ember-flare-overlay.webp") center bottom / cover no-repeat;
  --ember-opacity-low: .46;
  --ember-opacity-high: .64;
  opacity: .52;
  mix-blend-mode: screen;
  animation: ember-wash 7.8s ease-in-out infinite;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .74fr);
  align-items: start;
  gap: 42px;
}

.hero-copy {
  min-width: 0;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: .98rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 138, 40, .9);
}

h1,
h2,
h3,
.display-title {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  font-size: 4.75rem;
  line-height: .96;
  color: var(--white);
  text-shadow: 0 8px 0 rgba(0, 0, 0, .72), 0 0 26px rgba(255, 138, 40, .25);
}

.hero-subtitle {
  max-width: 680px;
  margin: 14px 0 22px;
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.25;
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .85);
  overflow-wrap: anywhere;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.status-panel,
.metal-panel,
.metal-card,
.route-card {
  border: 1px solid rgba(255, 138, 40, .34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16px 16px, rgba(243, 238, 227, .26) 0 2px, transparent 3px),
    radial-gradient(circle at calc(100% - 16px) 16px, rgba(243, 238, 227, .22) 0 2px, transparent 3px),
    radial-gradient(circle at 16px calc(100% - 16px), rgba(255, 138, 40, .18) 0 2px, transparent 3px),
    radial-gradient(circle at calc(100% - 16px) calc(100% - 16px), rgba(255, 138, 40, .18) 0 2px, transparent 3px),
    linear-gradient(110deg, rgba(255, 138, 40, .09), transparent 16% 84%, rgba(255, 138, 40, .08)),
    var(--metal-texture) center / 320px repeat,
    linear-gradient(180deg, rgba(28, 31, 33, .94), rgba(10, 11, 12, .96)),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .05) 0 1px, transparent 1px 24px);
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .06), inset 0 0 0 7px rgba(0, 0, 0, .20);
}

.status-panel {
  position: relative;
  overflow: hidden;
  margin-top: 58px;
}

.status-panel::before,
.metal-panel::before,
.metal-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), transparent 42%, var(--red));
  opacity: .7;
}

.status-panel::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 138, 40, .38), transparent 30%, transparent 70%, rgba(255, 138, 40, .38)),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .7) 0 8px, rgba(12, 13, 14, .9) 8px 18px);
  opacity: .34;
}

.status-head {
  position: relative;
  overflow: hidden;
  padding: 28px 30px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 138, 40, .22);
  background:
    radial-gradient(circle at 22% 52%, rgba(124, 255, 107, .24), transparent 34%),
    var(--console-scan) center / 260px repeat,
    linear-gradient(90deg, rgba(3, 34, 12, .82), rgba(10, 14, 12, .88) 58%, rgba(3, 21, 10, .86));
  box-shadow: inset 0 -1px 0 rgba(124, 255, 107, .12), inset 0 0 34px rgba(0, 0, 0, .52);
}

.status-head::before {
  position: absolute;
  inset: 8px 12px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(124, 255, 107, .20);
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
}

.status-head::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0 48%, rgba(124, 255, 107, .10) 49%, transparent 52%);
  background-size: 100% 6px;
  opacity: .42;
  animation: scanline-drift 2.8s linear infinite;
}

.status-head > * {
  position: relative;
  z-index: 1;
}

.online-light {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(124, 255, 107, .9), 0 0 42px rgba(124, 255, 107, .4);
  animation: online-pulse 2.6s ease-in-out infinite;
}

.status-title {
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(124, 255, 107, .45);
}

.status-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .26)),
    var(--grunge-texture) center / 520px repeat;
}

.status-list::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 138, 40, .08), transparent 20% 80%, rgba(255, 138, 40, .08)),
    repeating-linear-gradient(0deg, transparent 0 56px, rgba(243, 238, 227, .05) 57px, transparent 58px);
  opacity: .54;
}

.status-row {
  position: relative;
  z-index: 1;
  min-height: 58px;
  padding: 14px 30px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid rgba(181, 170, 160, .16);
}

.status-row:nth-child(odd) {
  background: rgba(255, 255, 255, .018);
}

.status-row:last-child {
  border-bottom: none;
}

.row-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 238, 227, .18);
  border-radius: 4px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(0, 0, 0, .24)),
    var(--metal-texture) center / 160px repeat,
    rgba(0, 0, 0, .42);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .45), 0 0 12px rgba(255, 138, 40, .08);
}

.row-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 138, 40, .30));
}

.status-label {
  display: block;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: .98rem;
  font-weight: 800;
}

.status-value {
  color: var(--orange);
  font-weight: 900;
}

.status-command {
  word-break: break-word;
}

.quick-feature-wrap {
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 170px;
  isolation: isolate;
  z-index: 2;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(255, 138, 40, .28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 138, 40, .10), transparent 22% 78%, rgba(255, 138, 40, .10)),
    var(--metal-texture) center / 320px repeat,
    linear-gradient(180deg, rgba(14, 15, 15, .86), rgba(5, 6, 7, .88)),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .12) 0 1px, transparent 1px 28px);
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .05);
}

.quick-feature-wrap::before {
  position: absolute;
  inset: -50% -8% -30%;
  z-index: -1;
  content: "";
  background: url("../media/ember-flare-overlay.webp") center bottom / cover no-repeat;
  opacity: .5;
  mix-blend-mode: screen;
}

.quick-feature-wrap::after {
  position: absolute;
  inset: 6px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(243, 238, 227, .1);
  background:
    var(--plate-seams) center / 960px 128px repeat-x,
    linear-gradient(90deg, rgba(255, 138, 40, .16), transparent 16% 84%, rgba(255, 138, 40, .16));
  opacity: .46;
  clip-path: inherit;
}

.quick-feature-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.quick-feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 116px;
  padding: 16px 10px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(181, 170, 160, .25);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 79%, rgba(255, 90, 12, .36), transparent 47%),
    var(--grunge-texture) center / 420px repeat,
    var(--metal-texture) center / 260px repeat,
    linear-gradient(180deg, rgba(35, 33, 30, .94), rgba(10, 10, 10, .97)),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .07) 0 1px, transparent 1px 18px);
  clip-path: polygon(11px 0, calc(100% - 11px) 0, 100% 11px, 100% calc(100% - 11px), calc(100% - 11px) 100%, 11px 100%, 0 calc(100% - 11px), 0 11px);
  text-align: center;
  box-shadow: inset 0 -10px 26px rgba(255, 90, 12, .13), inset 0 0 0 1px rgba(255, 255, 255, .04);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.quick-feature::before {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  z-index: -1;
  height: 20px;
  content: "";
  background: radial-gradient(ellipse, rgba(255, 90, 12, .72), transparent 70%);
  filter: blur(5px);
  animation: feature-ember-pulse 3.8s ease-in-out infinite;
}

.quick-feature::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(243, 238, 227, .24), rgba(255, 138, 40, .7), transparent);
  opacity: .75;
  animation: edge-glint 5.6s ease-in-out infinite;
}

.quick-feature:hover,
.quick-feature:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 40, .6);
  box-shadow: 0 0 24px rgba(255, 90, 12, .18), inset 0 -12px 30px rgba(255, 90, 12, .18), inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.feature-symbol {
  position: relative;
  width: 68px;
  min-width: 68px;
  height: 54px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(255, 138, 40, .45);
}

.feature-symbol::before {
  position: absolute;
  right: 7px;
  bottom: 1px;
  left: 7px;
  height: 10px;
  content: "";
  background: radial-gradient(ellipse, rgba(255, 90, 12, .78), transparent 72%);
  filter: blur(4px);
}

.feature-symbol svg {
  position: relative;
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 3px 0 rgba(0, 0, 0, .65))
    drop-shadow(0 0 10px rgba(255, 138, 40, .34));
}

.feature-symbol-label {
  position: relative;
}

.quick-feature span:last-child {
  color: var(--white);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wipe-bar {
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 110px;
  isolation: isolate;
  z-index: 2;
  margin: 16px 0 0;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 138, 40, .38);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 138, 40, .12), transparent 16%, transparent 82%, rgba(179, 38, 30, .24)),
    var(--grunge-texture) center / 560px repeat,
    var(--metal-texture) center / 320px repeat,
    linear-gradient(90deg, rgba(112, 24, 16, .54), rgba(9, 9, 9, .92) 42%, rgba(145, 42, 12, .5)),
    repeating-linear-gradient(135deg, rgba(255, 209, 102, .12) 0 8px, transparent 8px 22px);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  box-shadow: 0 0 34px rgba(179, 38, 30, .28), inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.wipe-bar::before {
  position: absolute;
  inset: -80% -10% -30%;
  z-index: -1;
  content: "";
  background: url("../media/ember-flare-overlay.webp") center bottom / cover no-repeat;
  opacity: .58;
  mix-blend-mode: screen;
}

.wipe-bar::after {
  position: absolute;
  inset: 8px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 138, 40, .25);
  background:
    linear-gradient(90deg, rgba(255, 90, 12, .34), transparent 15%, transparent 85%, rgba(255, 90, 12, .34)),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .38) 0 8px, transparent 8px 20px) left / 88px 100% no-repeat,
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .38) 0 8px, transparent 8px 20px) right / 88px 100% no-repeat;
  opacity: .32;
  clip-path: inherit;
}

.wipe-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.warning-mark {
  position: relative;
  width: 70px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  color: var(--yellow);
  background:
    radial-gradient(circle at 50% 66%, rgba(255, 90, 12, .42), rgba(0, 0, 0, .36) 62%),
    var(--metal-texture) center / 180px repeat,
    linear-gradient(180deg, rgba(255, 138, 40, .72), rgba(93, 20, 10, .92));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  font-size: 2.2rem;
  font-weight: 900;
  padding-top: 11px;
  text-shadow: 0 0 16px rgba(255, 209, 102, .72);
  box-shadow: 0 0 22px rgba(255, 138, 40, .32), inset 0 0 18px rgba(255, 90, 12, .18);
}

.wipe-title h2 {
  color: var(--orange);
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 90, 12, .38);
}

.wipe-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(82px, 1fr));
  gap: 12px;
}

.count-box {
  position: relative;
  overflow: hidden;
  min-width: 82px;
  min-height: 82px;
  padding: 10px 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 138, 40, .45);
  border-radius: var(--radius);
  background:
    var(--grunge-texture) center / 420px repeat,
    var(--metal-texture) center / 240px repeat,
    linear-gradient(180deg, rgba(62, 18, 10, .5), rgba(0, 0, 0, .58)),
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .08) 0 1px, transparent 1px 18px);
  box-shadow: inset 0 0 24px rgba(255, 90, 12, .12);
}

.count-box::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 138, 40, .22), transparent);
  opacity: .32;
}

.count-box strong {
  position: relative;
  color: var(--orange);
  font-size: 2.5rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 138, 40, .45);
}

.count-box span {
  position: relative;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 138, 40, .07), transparent 34%),
    radial-gradient(circle at 94% 18%, rgba(86, 97, 106, .12), transparent 34%),
    var(--grunge-texture) center / 640px repeat,
    linear-gradient(180deg, rgba(5, 6, 7, .82), rgba(8, 9, 10, .94));
}

.section::before {
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 36px;
  content: "";
  pointer-events: none;
  background: var(--section-divider) center top / auto 36px repeat-x;
  opacity: .68;
  animation: divider-drift 28s linear infinite;
}

.section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 1px;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 40, .35), rgba(243, 238, 227, .12), transparent);
  animation: lower-glow 5.8s ease-in-out infinite;
}

.section.alt {
  border-top: 1px solid rgba(255, 138, 40, .16);
  border-bottom: 1px solid rgba(255, 138, 40, .16);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .38), transparent 20% 80%, rgba(0, 0, 0, .38)),
    var(--plate-seams) center top / 960px 128px repeat-x,
    var(--grunge-texture) center / 640px repeat,
    rgba(10, 11, 12, .88);
}

.section-header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 0 28px;
}

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

.section-kicker {
  margin: 0 0 9px;
  color: var(--orange);
  font-size: .96rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.page-hero h1 {
  color: var(--white);
  font-size: 3.35rem;
  line-height: 1;
  text-shadow: 0 6px 0 rgba(0, 0, 0, .75);
}

.section-lede,
.page-lede,
.card-copy,
.body-copy,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1.03rem;
  line-height: 1.58;
}

.section-lede {
  max-width: 820px;
  margin: 14px 0 0;
}

.grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metal-card,
.metal-panel,
.route-card {
  position: relative;
  overflow: hidden;
}

.metal-card::after,
.metal-panel::after,
.route-card::after {
  position: absolute;
  inset: 7px;
  content: "";
  pointer-events: none;
  border: 1px solid var(--inner-line);
  background:
    linear-gradient(116deg, transparent 0 37%, rgba(255, 241, 205, .20) 45%, rgba(255, 138, 40, .10) 51%, transparent 61%),
    linear-gradient(120deg, rgba(255, 255, 255, .05), transparent 22% 72%, rgba(255, 138, 40, .06)),
    var(--grunge-texture) center / 520px repeat;
  background-size: 230% 100%, 100% 100%, 520px 520px;
  background-position: -170% 0, 0 0, center;
  opacity: var(--surface-glare-opacity, .38);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  animation: surface-glare var(--surface-glare-duration, 9s) ease-in-out infinite;
  animation-delay: var(--surface-glare-delay, 0s);
}

.metal-card > *,
.metal-panel > *,
.route-card > * {
  position: relative;
  z-index: 1;
}

.metal-card {
  min-height: 180px;
  padding: 24px;
}

.metal-card h3,
.route-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.08;
}

.metal-card .feature-symbol {
  margin: 0 0 16px;
}

.card-copy {
  margin: 0;
}

.tag-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.status-tag {
  min-height: 28px;
  padding: 6px 9px 5px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 138, 40, .3);
  border-radius: 4px;
  color: var(--orange);
  background:
    var(--metal-texture) center / 180px repeat,
    rgba(255, 138, 40, .08);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-tag.live {
  color: var(--green);
  border-color: rgba(124, 255, 107, .36);
  background: rgba(124, 255, 107, .08);
}

.status-tag.planned {
  color: var(--yellow);
  border-color: rgba(255, 209, 102, .36);
  background: rgba(255, 209, 102, .08);
}

.status-tag.review {
  color: var(--muted);
  border-color: rgba(181, 170, 160, .36);
  background: rgba(181, 170, 160, .08);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 24px;
  align-items: stretch;
}

.metal-panel {
  padding: 28px;
}

.image-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  border: 1px solid rgba(255, 138, 40, .32);
  border-radius: var(--radius);
  background: #0b0d0e center / cover no-repeat;
  box-shadow: var(--shadow), inset 0 0 0 7px rgba(0, 0, 0, .28), inset 0 0 0 8px rgba(243, 238, 227, .08);
  clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}

.image-panel::before,
.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.image-panel::before {
  z-index: 1;
  background:
    linear-gradient(112deg, transparent 0 32%, rgba(255, 244, 214, .24) 43%, rgba(255, 138, 40, .14) 50%, transparent 62%);
  opacity: .72;
  mix-blend-mode: screen;
  transform: translateX(-130%) skewX(-17deg);
  animation: image-glare 8.8s ease-in-out infinite;
}

.image-panel::after {
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 86%, rgba(255, 90, 12, .28), transparent 42%),
    radial-gradient(ellipse at 88% 12%, rgba(255, 209, 102, .12), transparent 38%);
  --ember-opacity-low: .48;
  --ember-opacity-high: .68;
  opacity: .62;
  animation: ember-wash 7.4s ease-in-out infinite;
}

.image-panel.discord {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .62)), url("../media/discord-banner-rust-v2.png");
}

.image-panel.wipe {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .62)), url("../media/wipe-day-rust-v2.png");
}

.steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.steps li {
  position: relative;
  min-height: 74px;
  padding: 17px 18px 15px 72px;
  border: 1px solid rgba(181, 170, 160, .2);
  border-radius: var(--radius);
  background:
    var(--metal-texture) center / 260px repeat,
    rgba(0, 0, 0, .26);
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.steps li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  width: 36px;
  height: 36px;
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 138, 40, .55);
  border-radius: 4px;
  color: var(--orange);
  font-weight: 900;
}

.command-box {
  margin: 16px 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 138, 40, .35);
  border-radius: var(--radius);
  background:
    var(--console-scan) center / 220px repeat,
    linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(3, 18, 9, .42));
  box-shadow: inset 0 0 24px rgba(0, 0, 0, .52), inset 0 0 0 1px rgba(124, 255, 107, .06);
}

.command-box code {
  min-width: 0;
  color: var(--orange);
  font-family: Consolas, "Courier New", monospace;
  font-size: .98rem;
  overflow-wrap: anywhere;
}

.copy-small {
  min-height: 38px;
  padding: 9px 13px 8px;
  font-size: .82rem;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 10px 100%, 0 calc(100% - 10px), 0 8px);
}

.page-hero {
  position: relative;
  padding: 82px 0 54px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 138, 40, .24);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, .96), rgba(5, 6, 7, .76), rgba(5, 6, 7, .96)),
    var(--grunge-texture) center / 640px repeat,
    url("../media/header-bg-rust-v2.png") center / cover no-repeat;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    var(--plate-seams) center top / 960px 128px repeat-x,
    repeating-linear-gradient(116deg, rgba(255, 138, 40, .09) 0, rgba(255, 138, 40, .09) 1px, transparent 1px, transparent 46px);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.page-hero-logo {
  width: clamp(112px, 9vw, 150px);
  filter:
    drop-shadow(0 16px 18px rgba(0, 0, 0, .68))
    drop-shadow(0 0 16px rgba(255, 138, 40, .22));
}

.page-hero-copy {
  min-width: 0;
}

.page-lede {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--white);
}

.route-card {
  min-height: 150px;
  padding: 22px;
}

.list-clean {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-clean li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.list-clean li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid var(--orange);
  background: rgba(255, 138, 40, .2);
  transform: rotate(45deg);
}

.rule-block {
  padding: 22px;
  border: 1px solid rgba(181, 170, 160, .2);
  border-radius: var(--radius);
  background:
    var(--metal-texture) center / 280px repeat,
    rgba(0, 0, 0, .25);
}

.rule-block h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 1.45rem;
}

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

.auth-card {
  min-height: 300px;
}

.auth-status {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(181, 170, 160, .25);
  border-radius: var(--radius);
  background:
    var(--console-scan) center / 220px repeat,
    rgba(0, 0, 0, .34);
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.45;
}

.auth-status strong {
  color: var(--white);
}

.roadmap-card {
  min-height: 150px;
}

.legal-copy {
  max-width: 980px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 2.2rem;
}

.site-footer {
  position: relative;
  padding: 46px 0;
  border-top: 1px solid rgba(255, 138, 40, .28);
  background:
    linear-gradient(180deg, rgba(8, 9, 10, .96), rgba(0, 0, 0, .98)),
    var(--plate-seams) center top / 960px 128px repeat-x,
    var(--metal-texture) center / 320px repeat,
    repeating-linear-gradient(135deg, rgba(255, 138, 40, .06) 0 1px, transparent 1px 22px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr) auto;
  gap: 30px;
  align-items: start;
}

.footer-logo {
  width: 210px;
  margin-bottom: 12px;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
}

.footer-nav a {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange);
  outline: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(420px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 138, 40, .48);
  border-radius: var(--radius);
  background: rgba(9, 10, 11, .96);
  color: var(--white);
  font-family: Arial, sans-serif;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

@keyframes ember-float {
  0% {
    opacity: 0;
    transform: translate3d(0, 10vh, 0) scale(.72);
  }

  12% {
    opacity: var(--opacity);
  }

  58% {
    opacity: var(--opacity);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift), -112vh, 0) scale(1.18);
  }
}

@keyframes reveal-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes reveal-left {
  0% {
    opacity: 0;
    transform: translate3d(-38px, 0, 0);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes reveal-right {
  0% {
    opacity: 0;
    transform: translate3d(38px, 0, 0);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes ember-twinkle {
  0%,
  100% {
    transform: scale(.76);
    opacity: .62;
  }

  48% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes ember-wash {
  0%,
  100% {
    opacity: var(--ember-opacity-low, .22);
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: var(--ember-opacity-high, .38);
    transform: translate3d(0, -8px, 0) scale(1.015);
  }
}

@keyframes background-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 96px 48px, -96px 96px, 180px 120px;
  }
}

@keyframes button-glare {
  0%,
  22% {
    background-position: -170% 0, 0 0, 0 0;
  }

  44% {
    background-position: 170% 0, 0 0, 0 0;
  }

  100% {
    background-position: 170% 0, 0 0, 0 0;
  }
}

@keyframes surface-glare {
  0%,
  18% {
    background-position: -170% 0, 0 0, center;
  }

  46% {
    background-position: 170% 0, 0 0, center;
  }

  100% {
    background-position: 170% 0, 0 0, center;
  }
}

@keyframes image-glare {
  0%,
  24% {
    opacity: 0;
    transform: translateX(-130%) skewX(-17deg);
  }

  42% {
    opacity: .74;
  }

  58% {
    opacity: .18;
    transform: translateX(130%) skewX(-17deg);
  }

  100% {
    opacity: 0;
    transform: translateX(130%) skewX(-17deg);
  }
}

@keyframes lower-glow {
  0%,
  100% {
    opacity: .42;
  }

  50% {
    opacity: .78;
  }
}

@keyframes online-pulse {
  0%,
  100% {
    transform: scale(.92);
    box-shadow: 0 0 14px rgba(124, 255, 107, .82), 0 0 34px rgba(124, 255, 107, .32);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 22px rgba(124, 255, 107, 1), 0 0 54px rgba(124, 255, 107, .52);
  }
}

@keyframes scanline-drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 18px;
  }
}

@keyframes feature-ember-pulse {
  0%,
  100% {
    opacity: .55;
    transform: scaleX(.78);
  }

  50% {
    opacity: .95;
    transform: scaleX(1.04);
  }
}

@keyframes edge-glint {
  0%,
  100% {
    opacity: .42;
    transform: translateX(-22%);
  }

  48% {
    opacity: .9;
    transform: translateX(22%);
  }
}

@keyframes header-sheen {
  0%,
  100% {
    opacity: .72;
  }

  42% {
    opacity: .92;
  }
}

@keyframes divider-glow {
  0%,
  100% {
    opacity: .64;
  }

  50% {
    opacity: .95;
  }
}

@keyframes divider-drift {
  0% {
    background-position: center top;
  }

  100% {
    background-position: 280px top;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    min-height: 88px;
    grid-template-columns: minmax(94px, 112px) 1fr auto;
  }

  .brand {
    height: 88px;
    display: flex;
    align-items: center;
  }

  .brand::before {
    display: none;
  }

  .brand img {
    position: relative;
    top: auto;
    left: auto;
    width: 88px;
    max-width: 100%;
    filter:
      drop-shadow(0 8px 12px rgba(0, 0, 0, .64))
      drop-shadow(0 0 12px rgba(255, 138, 40, .22));
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 138, 40, .38);
    border-radius: var(--radius);
    background: rgba(7, 8, 9, .98);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .status-panel {
    max-width: 720px;
    margin-top: 0;
  }

  .quick-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wipe-bar {
    grid-template-columns: 1fr;
  }

  .split-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    width: min(var(--max), calc(100% - 20px));
    grid-template-columns: minmax(76px, 1fr) auto auto;
    gap: 10px;
    min-height: 76px;
  }

  .brand {
    height: 76px;
  }

  .brand img {
    width: 76px;
  }

  .header-actions .btn {
    display: none;
  }

  body.nav-open .nav-menu {
    grid-template-columns: 1fr;
  }

  .nav-link {
    justify-content: center;
  }

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

  .hero-inner,
  .section-inner,
  .footer-inner,
  .page-hero-content {
    width: min(var(--max), calc(100% - 20px));
  }

  .hero h1 {
    font-size: 3.15rem;
    line-height: .95;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-actions .btn,
  .button-row .btn {
    flex: 0 1 auto;
    min-width: 0;
    width: 100%;
  }

  .status-title {
    font-size: 1.7rem;
  }

  .status-head,
  .status-row {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .quick-feature {
    min-height: 104px;
  }

  .wipe-title {
    align-items: flex-start;
  }

  .wipe-title h2 {
    font-size: 1.8rem;
  }

  .warning-mark {
    width: 56px;
    height: 52px;
    font-size: 1.8rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 64px;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .hero-subtitle {
    max-width: 32ch;
    font-size: .94rem;
    line-height: 1.22;
  }

  .status-row {
    grid-template-columns: 1fr;
  }

  .row-icon {
    display: none;
  }

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

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

  .command-box {
    grid-template-columns: 1fr;
  }

  .copy-small {
    width: 100%;
  }

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

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

  .ambient-effects {
    display: none;
  }

  .motion-ready .reveal-on-scroll:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
