:root {
  color-scheme: dark;
  --ink: #f5ead2;
  --muted: #b9aa8d;
  --black: #080705;
  --coal: #14100c;
  --moss: #1c2119;
  --ember: #ff6b45;
  --amber: #f3bd58;
  --copper: #c9864a;
  --redstone: #d44b43;
  --amethyst: #a676ff;
  --violet: #6547bd;
  --water: #4dc7d6;
  --jade: #69d58f;
  --emerald: var(--amber);
  --emerald-deep: #7f4a22;
  --gold-glow: rgba(243, 189, 88, 0.36);
  --ember-glow: rgba(255, 107, 69, 0.28);
  --aura-glow: rgba(166, 118, 255, 0.28);
  --water-glow: rgba(77, 199, 214, 0.24);
  --line: rgba(244, 241, 220, 0.16);
  --line-strong: rgba(244, 241, 220, 0.28);
  --shadow: rgba(0, 0, 0, 0.5);
  --header-height: 76px;
  font-family: "Oxanium", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  min-width: 320px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(140deg, #070604, #17120d 46%, #21120f 100%);
}

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

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image:
    repeating-radial-gradient(circle at 18% 33%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1px 4px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  isolation: isolate;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 107, 69, 0.16), transparent 34%),
    radial-gradient(circle at 78% 0%, rgba(166, 118, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(6, 8, 10, 0.9), rgba(6, 8, 10, 0.58));
  border-bottom: 1px solid rgba(244, 241, 220, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 38px rgba(0, 0, 0, 0.32);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.site-header::before {
  inset: 10px 22px;
  z-index: -1;
  border: 1px solid rgba(244, 241, 220, 0.08);
  background:
    linear-gradient(90deg, transparent, rgba(77, 199, 214, 0.1), transparent),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    0 0 34px rgba(77, 199, 214, 0.08),
    inset 0 0 22px rgba(243, 189, 88, 0.05);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.site-header::after {
  left: 28px;
  right: 28px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--water), var(--amber), var(--amethyst), transparent);
  filter: drop-shadow(0 0 10px var(--aura-glow));
  animation: headerAura 8s linear infinite;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 107, 69, 0.14), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(77, 199, 214, 0.12), transparent 36%),
    rgba(5, 7, 8, 0.94);
  border-color: rgba(243, 189, 88, 0.3);
  box-shadow:
    0 0 34px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(166, 118, 255, 0.08);
}

.brand,
.nav-links,
.header-cta {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  flex-shrink: 0;
  transition: transform 180ms ease, color 180ms ease;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #140d07;
  background:
    linear-gradient(135deg, #f4d997, #d8a64a 46%, #8f5a24),
    var(--emerald);
  box-shadow: 0 0 22px rgba(216, 166, 74, 0.42);
  clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: #fff2cf;
  transform: translateY(-1px);
  outline: none;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(-6deg) translateY(-2px);
  box-shadow:
    0 0 22px rgba(243, 189, 88, 0.5),
    0 0 36px rgba(77, 199, 214, 0.22);
  filter: saturate(1.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--water), var(--amber), var(--amethyst));
  box-shadow: 0 0 12px var(--aura-glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(244, 241, 220, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
  padding: 11px 14px;
  font-size: 0.78rem;
  color: #140d07;
  background: linear-gradient(135deg, #f5dfa2, var(--amber) 52%, #dd7a42);
  box-shadow:
    0 0 18px rgba(243, 189, 88, 0.35),
    0 0 34px rgba(255, 107, 69, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.12);
  box-shadow:
    0 0 20px rgba(243, 189, 88, 0.5),
    0 0 42px rgba(166, 118, 255, 0.18);
  outline: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 112px 0 86px;
}

.hero-media,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(166, 118, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(77, 199, 214, 0.18), transparent 28%),
    radial-gradient(circle at 62% 78%, rgba(255, 107, 69, 0.2), transparent 34%),
    linear-gradient(120deg, #060606 0%, #12100d 44%, #110b13 100%);
}

.aura-stage::before,
.aura-stage::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.aura-stage::before {
  opacity: 0.58;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(243, 189, 88, 0.12) 29%, transparent 30% 100%),
    linear-gradient(62deg, transparent 0 50%, rgba(77, 199, 214, 0.09) 51%, transparent 52% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 54px);
  animation: auraSweep 14s ease-in-out infinite alternate;
}

.aura-stage::after {
  background:
    radial-gradient(circle at 74% 46%, rgba(243, 189, 88, 0.1), transparent 24%),
    radial-gradient(circle at 28% 28%, rgba(77, 199, 214, 0.06), transparent 28%);
  filter: blur(6px);
}

.aura-core {
  position: absolute;
  top: 50%;
  right: min(5vw, 62px);
  width: min(48vw, 620px);
  aspect-ratio: 1;
  transform: translate3d(calc(var(--cursor-x, 0px) * 0.25), calc(-50% + (var(--cursor-y, 0px) * 0.18)), 0);
  transition: transform 260ms ease;
  animation: auraFloat 9s ease-in-out infinite alternate;
}

.aura-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 241, 220, 0.18);
  box-shadow:
    inset 0 0 38px rgba(166, 118, 255, 0.18),
    0 0 54px rgba(77, 199, 214, 0.12);
}

.ring-one {
  inset: 5%;
  border-color: rgba(243, 189, 88, 0.38);
  border-radius: 50%;
  animation: ringPulse 6s ease-in-out infinite;
}

.ring-two {
  inset: 18%;
  border-color: rgba(77, 199, 214, 0.36);
  transform: rotate(45deg);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  animation: sigilSpin 18s linear infinite;
}

.ring-three {
  inset: 31%;
  border-color: rgba(166, 118, 255, 0.42);
  border-radius: 50%;
  box-shadow:
    inset 0 0 34px rgba(255, 107, 69, 0.12),
    0 0 48px rgba(166, 118, 255, 0.26);
  animation: ringPulse 7s ease-in-out infinite reverse;
}

.duel-spark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff0bd, var(--ember), transparent);
  box-shadow:
    0 0 14px rgba(243, 189, 88, 0.45),
    0 0 28px rgba(255, 107, 69, 0.28);
  transform-origin: 0 50%;
  animation: sparkFlash 3.6s ease-in-out infinite;
}

.spark-one {
  transform: rotate(-18deg);
}

.spark-two {
  transform: rotate(28deg);
  animation-delay: -1.2s;
}

.spark-three {
  transform: rotate(84deg);
  animation-delay: -2.4s;
}

.voxel-field {
  position: absolute;
  inset: 0;
}

.voxel-field span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(77, 199, 214, 0.7), rgba(166, 118, 255, 0.36));
  border: 1px solid rgba(244, 241, 220, 0.2);
  box-shadow:
    0 0 16px rgba(77, 199, 214, 0.24),
    0 0 38px rgba(166, 118, 255, 0.16);
  transform: rotate(45deg);
  animation: voxelFloat 12s ease-in-out infinite;
  animation-delay: var(--d);
}

.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.96) 0%, rgba(7, 7, 8, 0.78) 45%, rgba(7, 7, 8, 0.25) 100%),
    linear-gradient(180deg, rgba(5, 6, 6, 0.18), #080705 93%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(77, 199, 214, 0.12) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 107, 69, 0.1) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
  animation: gridBreathe 12s ease-in-out infinite alternate;
}

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

.ambient-motes::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 22%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(216, 166, 74, 0.22);
  box-shadow:
    inset 0 0 34px rgba(119, 96, 168, 0.18),
    0 0 52px rgba(184, 107, 61, 0.16);
  transform: rotate(45deg);
  animation: sealFloat 13s ease-in-out infinite;
}

.ambient-motes span {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--emerald);
  box-shadow:
    0 0 14px var(--gold-glow),
    0 0 34px rgba(119, 96, 168, 0.18);
  opacity: 0.72;
  animation: moteDrift 9s linear infinite;
}

.ambient-motes span:nth-child(1) {
  left: 18%;
  top: 18%;
  animation-duration: 11s;
}

.ambient-motes span:nth-child(2) {
  left: 58%;
  top: 16%;
  background: var(--amethyst);
  animation-delay: -4s;
  animation-duration: 14s;
}

.ambient-motes span:nth-child(3) {
  left: 78%;
  top: 52%;
  background: var(--copper);
  animation-delay: -7s;
}

.ambient-motes span:nth-child(4) {
  left: 40%;
  top: 70%;
  width: 5px;
  height: 5px;
  animation-delay: -2s;
  animation-duration: 12s;
}

.ambient-motes span:nth-child(5) {
  left: 86%;
  top: 26%;
  width: 10px;
  height: 10px;
  background: var(--jade);
  animation-delay: -9s;
}

.ambient-motes span:nth-child(6) {
  left: 10%;
  top: 58%;
  background: var(--redstone);
  animation-delay: -5s;
  animation-duration: 16s;
}

.hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 44px;
}

.hero-copy,
.hero-text,
.profile-panel {
  max-width: 100%;
}

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

.hero-wordmark {
  margin: 0 0 14px;
  max-width: 820px;
  font-family: "Bungee", Impact, sans-serif;
  font-size: 3.1rem;
  line-height: 0.9;
  color: transparent;
  background:
    linear-gradient(180deg, #fff0bd 0%, #d8a64a 46%, #7d4a25 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.56),
    0 0 18px rgba(216, 166, 74, 0.5),
    0 0 42px rgba(184, 107, 61, 0.2);
  filter: drop-shadow(0 0 6px rgba(216, 166, 74, 0.22));
}

.profile-line,
.section-kicker,
.panel-topline,
.stats dt,
.signal-pillars span,
.signal-readouts span,
.discord-url {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-line,
.section-kicker {
  margin: 0 0 16px;
  color: var(--emerald);
  font-size: 0.78rem;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: "Bungee", Impact, sans-serif;
  font-size: 2.78rem;
  line-height: 0.98;
  font-weight: 400;
  text-wrap: balance;
  overflow-wrap: normal;
  text-shadow:
    0 8px 0 rgba(0, 0, 0, 0.42),
    0 0 34px rgba(216, 166, 74, 0.24);
}

.glow-heading {
  position: relative;
  color: #fff2cf;
  text-shadow:
    0 7px 0 rgba(0, 0, 0, 0.55),
    0 0 18px var(--gold-glow),
    0 0 46px rgba(184, 107, 61, 0.22);
}

.glow-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: min(260px, 48%);
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--copper), transparent);
  box-shadow: 0 0 18px var(--gold-glow);
}

h2 {
  font-size: 2.35rem;
  line-height: 1.04;
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-text {
  max-width: 620px;
  color: #ddd9bc;
  font-size: 1.15rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button,
.copy-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.button::before,
.copy-link::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(77, 199, 214, 0.32), transparent 36%),
    radial-gradient(circle at 80% 70%, rgba(166, 118, 255, 0.28), transparent 38%),
    radial-gradient(circle, rgba(243, 189, 88, 0.22), transparent 62%);
  filter: blur(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.button::after,
.copy-link::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  opacity: 0.5;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-120%);
  transition: transform 340ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button-primary {
  color: #140d07;
  border-color: rgba(216, 166, 74, 0.8);
  background: linear-gradient(135deg, #f5dfa2, #d8a64a 48%, #8f5a24);
  box-shadow: 0 0 28px rgba(216, 166, 74, 0.28);
}

.button-secondary,
.copy-link {
  background: rgba(8, 13, 9, 0.72);
}

.button:hover,
.copy-link:hover,
.button:focus-visible,
.copy-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--emerald);
  box-shadow: 0 0 30px rgba(216, 166, 74, 0.24);
  outline: none;
}

.button:hover::before,
.copy-link:hover::before,
.button:focus-visible::before,
.copy-link:focus-visible::before {
  opacity: 1;
  transform: scale(1.04);
}

.button:hover::after,
.copy-link:hover::after,
.button:focus-visible::after,
.copy-link:focus-visible::after {
  transform: translateX(120%);
}

.profile-panel {
  border: 1px solid rgba(244, 241, 220, 0.18);
  background:
    radial-gradient(circle at 84% 18%, rgba(77, 199, 214, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(8, 12, 12, 0.84), rgba(28, 19, 33, 0.72)),
    rgba(8, 12, 12, 0.76);
  backdrop-filter: blur(16px);
  padding: 22px;
  box-shadow:
    10px 10px 0 rgba(0, 0, 0, 0.28),
    0 0 42px rgba(77, 199, 214, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.profile-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 199, 214, 0.34);
  box-shadow:
    10px 12px 0 rgba(0, 0, 0, 0.25),
    0 0 52px rgba(77, 199, 214, 0.18),
    0 0 34px rgba(166, 118, 255, 0.12);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.76rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--emerald);
  box-shadow: 0 0 16px var(--emerald);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 18px;
  background: rgba(244, 241, 220, 0.12);
}

.stats div {
  min-width: 0;
  background: rgba(6, 10, 7, 0.85);
  padding: 14px 10px;
}

.stats dt {
  color: var(--muted);
  font-size: 0.62rem;
}

.stats dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 800;
}

.profile-panel p {
  margin-bottom: 18px;
  color: #d2cfb4;
  line-height: 1.58;
}

.gauge-list {
  display: grid;
  gap: 12px;
}

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

.gauge-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.gauge-label strong {
  color: var(--ink);
}

.gauge-track,
.mini-gauge {
  position: relative;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 220, 0.16);
  background:
    linear-gradient(90deg, rgba(244, 241, 220, 0.08) 1px, transparent 1px) 0 0 / 12px 12px,
    rgba(0, 0, 0, 0.42);
}

.gauge-track span,
.mini-gauge span {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: var(--value);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 5px, transparent 5px 8px),
    linear-gradient(90deg, var(--jade), var(--emerald), var(--copper));
  box-shadow:
    0 0 12px var(--gold-glow),
    0 0 24px rgba(111, 167, 108, 0.24);
}

.profile-gauges {
  padding-top: 4px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 34px;
  height: 48px;
  border: 1px solid rgba(244, 241, 220, 0.34);
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--emerald);
  transform: translateX(-50%);
  animation: scrollPulse 1.65s infinite;
}

.forge-section,
.signal-section,
.partner-section,
.project-band,
.systems-section,
.roadmap-section,
.project-cta {
  position: relative;
  isolation: isolate;
}

.forge-section,
.signal-section,
.partner-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.forge-section {
  padding: 96px 0 72px;
}

.forge-section::before,
.signal-section::before,
.partner-section::before,
.project-band::before,
.systems-section::before,
.roadmap-section::before {
  content: "";
  position: absolute;
  inset: 28px -24px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.52;
  border: 1px solid rgba(244, 241, 220, 0.07);
  background:
    radial-gradient(circle at 16% 18%, rgba(77, 199, 214, 0.08), transparent 28%),
    radial-gradient(circle at 88% 64%, rgba(243, 189, 88, 0.08), transparent 30%);
  box-shadow:
    0 0 46px rgba(77, 199, 214, 0.06),
    inset 0 0 48px rgba(243, 189, 88, 0.035);
  clip-path: polygon(0 18px, 18px 18px, 18px 0, calc(100% - 18px) 0, calc(100% - 18px) 18px, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 18px calc(100% - 18px), 0 calc(100% - 18px));
  animation: sectionAura 9s ease-in-out infinite alternate;
}

.section-rail {
  display: grid;
  grid-template-columns: 180px minmax(0, 760px);
  gap: 34px;
  align-items: start;
  margin-bottom: 42px;
}

.section-rail h2,
.signal-copy h2,
.partner-shell h2 {
  margin-bottom: 0;
}

.forge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.flagship-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 220, 0.16);
  background:
    radial-gradient(circle at 68% 36%, rgba(255, 107, 69, 0.2), transparent 26%),
    radial-gradient(circle at 20% 82%, rgba(77, 199, 214, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(18, 14, 12, 0.96), rgba(12, 16, 18, 0.96));
  box-shadow:
    14px 14px 0 rgba(0, 0, 0, 0.34),
    0 0 58px rgba(255, 107, 69, 0.12);
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.flagship-card::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 30px 30px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 30px 30px;
  mask-image: radial-gradient(circle at 58% 44%, #000, transparent 72%);
}

.flagship-card::after {
  opacity: 0.62;
  background: linear-gradient(145deg, transparent 28%, rgba(243, 189, 88, 0.1), transparent 54%);
  animation: auraSweep 7s ease-in-out infinite alternate;
}

.flagship-card:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(255, 107, 69, 0.34);
  box-shadow:
    14px 18px 0 rgba(0, 0, 0, 0.28),
    0 0 70px rgba(255, 107, 69, 0.18),
    0 0 48px rgba(77, 199, 214, 0.12);
}

.flagship-card > * {
  position: relative;
  z-index: 1;
}

.flagship-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.flagship-topline span {
  color: var(--ember);
}

.flagship-topline strong {
  color: #fff0bd;
}

.finisher-diagram {
  position: relative;
  min-height: 210px;
  margin: 38px 0 28px;
  border: 1px solid rgba(244, 241, 220, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 189, 88, 0.16), transparent 18%),
    radial-gradient(circle at 28% 48%, rgba(77, 199, 214, 0.14), transparent 18%),
    radial-gradient(circle at 72% 52%, rgba(255, 107, 69, 0.14), transparent 18%),
    rgba(4, 6, 7, 0.42);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.finisher-diagram::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(244, 241, 220, 0.12);
  transform: rotate(45deg);
  box-shadow:
    inset 0 0 28px rgba(166, 118, 255, 0.12),
    0 0 32px rgba(77, 199, 214, 0.12);
  animation: sigilSpin 18s linear infinite;
}

.duel-node,
.rune-mark,
.strike-line {
  position: absolute;
}

.duel-node {
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 241, 220, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    rgba(8, 12, 14, 0.92);
  box-shadow: 0 0 26px rgba(77, 199, 214, 0.2);
  transform: translateY(-50%) rotate(45deg);
}

.player-node {
  left: 22%;
  border-color: rgba(77, 199, 214, 0.42);
}

.target-node {
  right: 22%;
  border-color: rgba(255, 107, 69, 0.44);
  box-shadow: 0 0 26px rgba(255, 107, 69, 0.2);
}

.strike-line {
  left: 28%;
  right: 28%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--water), #fff0bd, var(--ember));
  box-shadow:
    0 0 14px rgba(243, 189, 88, 0.5),
    0 0 28px rgba(255, 107, 69, 0.28);
  transform-origin: 50% 50%;
  animation: strikePulse 2.8s ease-in-out infinite;
}

.strike-two {
  transform: rotate(18deg);
  animation-delay: -0.9s;
}

.strike-three {
  transform: rotate(-20deg);
  animation-delay: -1.8s;
}

.rune-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(243, 189, 88, 0.58);
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(243, 189, 88, 0.34);
  animation: runeBlink 3.8s ease-in-out infinite;
}

.rune-one {
  left: 48%;
  top: 16%;
}

.rune-two {
  left: 16%;
  bottom: 20%;
  border-color: rgba(77, 199, 214, 0.48);
  animation-delay: -1.3s;
}

.rune-three {
  right: 16%;
  bottom: 18%;
  border-color: rgba(166, 118, 255, 0.52);
  animation-delay: -2.6s;
}

.flagship-card h3 {
  margin-bottom: 12px;
  color: #fff0bd;
  font-size: 1.58rem;
}

.flagship-card p {
  max-width: 620px;
  color: #d8cfb2;
  line-height: 1.66;
}

.flagship-gauges {
  max-width: 420px;
  margin-top: 24px;
}

.forge-list {
  display: grid;
  gap: 14px;
}

.forge-item {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 22px 78px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 220, 0.16);
  background:
    radial-gradient(circle at 84% 20%, rgba(77, 199, 214, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(14, 18, 18, 0.86);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.forge-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--emerald);
  box-shadow: 0 0 24px currentColor;
}

.forge-item.copper::before {
  background: var(--copper);
}

.forge-item.redstone::before {
  background: var(--redstone);
}

.forge-item.amethyst::before {
  background: var(--amethyst);
}

.forge-item:hover {
  transform: translateX(8px) translateY(-2px);
  border-color: rgba(244, 241, 220, 0.28);
  background:
    radial-gradient(circle at 84% 20%, rgba(166, 118, 255, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    rgba(18, 22, 23, 0.92);
  box-shadow:
    0 0 32px rgba(77, 199, 214, 0.08),
    8px 8px 0 rgba(0, 0, 0, 0.18);
}

.ore-chip {
  position: absolute;
  left: 20px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: rgba(244, 241, 220, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
}

.forge-item h3 {
  margin-bottom: 9px;
}

.forge-item p {
  margin-bottom: 0;
  color: #c8c5a5;
  line-height: 1.56;
}

.mini-gauge {
  margin-top: 16px;
  max-width: 220px;
}

.forge-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--emerald);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.forge-link:hover,
.forge-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.signal-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 30px;
  align-items: center;
  padding: 72px 0;
}

.signal-section::before {
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 107, 69, 0.12), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(243, 189, 88, 0.08), transparent 30%);
  box-shadow:
    0 0 50px rgba(255, 107, 69, 0.08),
    inset 0 0 48px rgba(243, 189, 88, 0.035);
}

.signal-section .section-kicker {
  color: var(--ember);
}

.signal-copy p:not(.section-kicker) {
  color: #d0ccb0;
  line-height: 1.72;
  max-width: 520px;
}

.signal-compass {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(244, 241, 220, 0.18);
  background:
    radial-gradient(circle at 18% 22%, rgba(77, 199, 214, 0.14), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 107, 69, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(8, 13, 14, 0.96), rgba(17, 10, 10, 0.96));
  box-shadow:
    0 0 52px rgba(77, 199, 214, 0.09),
    12px 12px 0 rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.signal-compass::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px;
  mask-image: radial-gradient(circle at 28% 38%, #000, transparent 75%);
}

.signal-compass::after {
  inset: -20%;
  background: linear-gradient(115deg, transparent 30%, rgba(243, 189, 88, 0.12), transparent 56%);
  animation: auraSweep 9s ease-in-out infinite alternate;
}

.signal-compass:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 199, 214, 0.34);
  box-shadow:
    0 0 66px rgba(77, 199, 214, 0.13),
    12px 16px 0 rgba(0, 0, 0, 0.28);
}

.signal-compass > * {
  position: relative;
  z-index: 1;
}

.signal-orbit {
  position: relative;
  min-height: 270px;
}

.orbit-ring,
.orbit-node {
  position: absolute;
}

.orbit-ring {
  border: 1px solid rgba(244, 241, 220, 0.13);
  box-shadow:
    inset 0 0 26px rgba(77, 199, 214, 0.1),
    0 0 28px rgba(255, 107, 69, 0.08);
}

.orbit-one {
  inset: 7%;
  border-radius: 50%;
  border-color: rgba(77, 199, 214, 0.34);
  animation: ringPulse 6.6s ease-in-out infinite;
}

.orbit-two {
  inset: 18%;
  transform: rotate(45deg);
  border-color: rgba(243, 189, 88, 0.3);
  animation: sigilSpin 24s linear infinite;
}

.orbit-three {
  inset: 31%;
  border-radius: 50%;
  border-color: rgba(255, 107, 69, 0.32);
  animation: ringPulse 7.6s ease-in-out infinite reverse;
}

.orbit-node {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    var(--water);
  border: 1px solid rgba(244, 241, 220, 0.28);
  box-shadow: 0 0 22px rgba(77, 199, 214, 0.38);
  transform: rotate(45deg);
  animation: runeBlink 3.4s ease-in-out infinite;
}

.node-combat {
  right: 18%;
  top: 24%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    var(--ember);
  box-shadow: 0 0 22px rgba(255, 107, 69, 0.4);
}

.node-qol {
  left: 12%;
  top: 55%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    var(--jade);
  box-shadow: 0 0 22px rgba(105, 213, 143, 0.35);
  animation-delay: -1.1s;
}

.node-community {
  right: 24%;
  bottom: 14%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    var(--amethyst);
  box-shadow: 0 0 22px rgba(166, 118, 255, 0.38);
  animation-delay: -2.2s;
}

.signal-core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: #120d08;
  background:
    linear-gradient(135deg, #fff0bd, var(--amber) 52%, var(--ember));
  box-shadow:
    0 0 26px rgba(243, 189, 88, 0.36),
    0 0 52px rgba(77, 199, 214, 0.14);
  transform: translate(-50%, -50%) rotate(45deg);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.signal-core span,
.signal-core strong {
  transform: rotate(-45deg);
}

.signal-core span {
  font-family: "Bungee", Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.signal-core strong {
  margin-top: -16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.signal-pillars {
  display: grid;
  gap: 10px;
}

.signal-pillars article {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px 16px;
  padding: 18px;
  border: 1px solid rgba(244, 241, 220, 0.13);
  background:
    radial-gradient(circle at 94% 16%, rgba(77, 199, 214, 0.08), transparent 34%),
    rgba(5, 8, 9, 0.66);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-pillars article:hover {
  transform: translateX(8px);
  border-color: rgba(243, 189, 88, 0.3);
  background:
    radial-gradient(circle at 94% 16%, rgba(255, 107, 69, 0.12), transparent 34%),
    rgba(8, 11, 12, 0.78);
}

.signal-pillars span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ember);
  border: 1px solid rgba(244, 241, 220, 0.14);
  background: rgba(244, 241, 220, 0.05);
  font-size: 0.72rem;
}

.signal-pillars h3 {
  margin-bottom: 0;
  color: #fff0bd;
}

.signal-pillars p {
  margin-bottom: 0;
  color: #d2ccb0;
  line-height: 1.5;
}

.signal-readouts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2px;
  border: 1px solid rgba(244, 241, 220, 0.12);
  background: rgba(244, 241, 220, 0.08);
}

.signal-readouts div {
  min-width: 0;
  padding: 14px;
  background: rgba(5, 7, 8, 0.82);
}

.signal-readouts span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.66rem;
}

.signal-readouts strong {
  color: #fff0bd;
  font-size: 0.9rem;
}

.partner-section {
  position: relative;
  padding: 70px 0 100px;
}

.partner-section::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(166, 118, 255, 0.14), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(77, 199, 214, 0.1), transparent 32%);
  box-shadow:
    0 0 52px rgba(166, 118, 255, 0.1),
    inset 0 0 48px rgba(77, 199, 214, 0.035);
}

.partner-section .section-kicker {
  color: #c3a7ff;
}

.partner-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(244, 241, 220, 0.2);
  background:
    radial-gradient(circle at 78% 20%, rgba(136, 101, 255, 0.24), transparent 34%),
    radial-gradient(circle at 12% 84%, rgba(61, 168, 232, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(18, 24, 18, 0.96), rgba(11, 17, 12, 0.96));
  box-shadow:
    0 0 60px rgba(136, 101, 255, 0.12),
    14px 14px 0 rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 32px 32px;
  mask-image: linear-gradient(90deg, transparent, #000 36%, #000 72%, transparent);
}

.partner-shell > * {
  position: relative;
}

.partner-shell:hover {
  transform: translateY(-5px);
  border-color: rgba(166, 118, 255, 0.42);
  box-shadow:
    0 0 72px rgba(166, 118, 255, 0.18),
    14px 18px 0 rgba(0, 0, 0, 0.25);
}

.partner-shell p:not(.section-kicker):not(.discord-url) {
  max-width: 680px;
  color: #d7d3b6;
  font-size: 1.05rem;
  line-height: 1.7;
}

.partner-actions {
  justify-content: flex-start;
  align-content: center;
  margin-top: 0;
}

.copy-link {
  color: var(--ink);
}

.copy-link.is-copied {
  color: #140d07;
  background: var(--water);
  border-color: var(--water);
}

.discord-url {
  width: 100%;
  margin: 2px 0 0;
  color: #aaa6e8;
  font-size: 0.74rem;
  word-break: break-word;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
  color: #9f9b80;
  border-top: 1px solid rgba(244, 241, 220, 0.1);
  background: #050705;
  font-size: 0.84rem;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.project-page {
  background:
    linear-gradient(90deg, rgba(216, 166, 74, 0.032) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(244, 241, 220, 0.025) 1px, transparent 1px) 0 0 / 56px 56px,
    #070907;
}

.project-hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 72px;
  isolation: isolate;
}

.project-bg {
  position: absolute;
  inset: 0;
}

.project-bg {
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 107, 69, 0.22), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(77, 199, 214, 0.13), transparent 34%),
    radial-gradient(circle at 28% 18%, rgba(166, 118, 255, 0.14), transparent 28%),
    linear-gradient(125deg, #060707, #11100b 46%, #120909);
}

.murim-aura::before,
.murim-aura::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.murim-aura::before {
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(255, 107, 69, 0.12) 33%, transparent 34% 100%),
    linear-gradient(58deg, transparent 0 54%, rgba(77, 199, 214, 0.08) 55%, transparent 56% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 76px);
  opacity: 0.58;
  animation: auraSweep 16s ease-in-out infinite alternate;
}

.murim-aura::after {
  background:
    radial-gradient(circle at 72% 46%, rgba(243, 189, 88, 0.11), transparent 25%),
    radial-gradient(circle at 50% 74%, rgba(105, 213, 143, 0.08), transparent 28%);
  filter: blur(8px);
}

.martial-sigil {
  position: absolute;
  right: min(7vw, 86px);
  top: 50%;
  width: min(46vw, 610px);
  aspect-ratio: 1;
  transform: translate3d(calc(var(--cursor-x, 0px) * 0.18), calc(-50% + (var(--cursor-y, 0px) * 0.14)), 0);
  animation: auraFloat 10s ease-in-out infinite alternate;
}

.sigil-ring,
.sigil-stroke {
  position: absolute;
}

.sigil-ring {
  border: 1px solid rgba(244, 241, 220, 0.18);
  box-shadow:
    inset 0 0 42px rgba(255, 107, 69, 0.12),
    0 0 54px rgba(243, 189, 88, 0.1);
}

.sigil-one {
  inset: 3%;
  border-radius: 50%;
  border-color: rgba(255, 107, 69, 0.38);
  animation: ringPulse 6.4s ease-in-out infinite;
}

.sigil-two {
  inset: 19%;
  border-color: rgba(243, 189, 88, 0.34);
  transform: rotate(45deg);
  animation: sigilSpin 22s linear infinite reverse;
}

.sigil-three {
  inset: 34%;
  border-radius: 50%;
  border-color: rgba(105, 213, 143, 0.32);
  animation: ringPulse 7.2s ease-in-out infinite reverse;
}

.sigil-stroke {
  left: 50%;
  top: 50%;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff0bd, var(--ember), transparent);
  box-shadow: 0 0 22px rgba(255, 107, 69, 0.34);
  transform-origin: 0 50%;
  animation: sparkFlash 4.2s ease-in-out infinite;
}

.stroke-a {
  transform: rotate(-28deg);
}

.stroke-b {
  transform: rotate(34deg);
  animation-delay: -1.4s;
}

.stroke-c {
  transform: rotate(92deg);
  animation-delay: -2.8s;
}

.bamboo-lines {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.bamboo-lines span {
  position: absolute;
  bottom: -12%;
  width: 2px;
  height: 76%;
  background: linear-gradient(transparent, rgba(105, 213, 143, 0.32), transparent);
  box-shadow: 0 0 16px rgba(105, 213, 143, 0.16);
  transform: rotate(8deg);
  animation: bambooDrift 8s ease-in-out infinite alternate;
}

.bamboo-lines span:nth-child(1) {
  left: 58%;
}

.bamboo-lines span:nth-child(2) {
  left: 66%;
  height: 62%;
  animation-delay: -2s;
}

.bamboo-lines span:nth-child(3) {
  left: 76%;
  height: 82%;
  animation-delay: -4s;
}

.bamboo-lines span:nth-child(4) {
  left: 86%;
  height: 58%;
  animation-delay: -1s;
}

.bamboo-lines span:nth-child(5) {
  left: 94%;
  height: 72%;
  animation-delay: -3s;
}

.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 68% 34%, rgba(220, 56, 50, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(7, 9, 7, 0.96), rgba(7, 9, 7, 0.7) 54%, rgba(7, 9, 7, 0.32)),
    linear-gradient(180deg, transparent 50%, #070907 100%);
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(216, 166, 74, 0.13) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(164, 58, 53, 0.1) 1px, transparent 1px) 0 0 / 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.project-shell,
.project-band,
.systems-section,
.roadmap-section,
.project-cta {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.project-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: end;
}

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

.project-copy h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: #f8f3d7;
}

.project-lede {
  max-width: 720px;
  color: #ddd6ba;
  font-size: 1.15rem;
  line-height: 1.72;
}

.system-card {
  border: 1px solid rgba(244, 241, 220, 0.18);
  background:
    linear-gradient(135deg, rgba(26, 11, 10, 0.78), rgba(8, 15, 9, 0.9)),
    rgba(7, 9, 7, 0.82);
  box-shadow:
    12px 12px 0 rgba(0, 0, 0, 0.36),
    0 0 44px rgba(220, 56, 50, 0.13);
  padding: 24px;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 69, 0.34);
  box-shadow:
    12px 16px 0 rgba(0, 0, 0, 0.3),
    0 0 56px rgba(255, 107, 69, 0.18);
}

.system-metrics {
  display: grid;
  gap: 1px;
  margin: 0 0 18px;
  background: rgba(244, 241, 220, 0.12);
}

.system-metrics div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
  align-items: center;
  background: rgba(7, 10, 7, 0.88);
  padding: 14px;
}

.system-metrics dt {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.system-metrics dd {
  margin: 0;
  color: #f8f3d7;
  font-size: 1.42rem;
  font-weight: 800;
}

.system-card p {
  margin-bottom: 18px;
  color: #d3cdb2;
  line-height: 1.62;
}

.system-gauges {
  border-top: 1px solid rgba(244, 241, 220, 0.12);
  padding-top: 18px;
}

.project-band,
.systems-section,
.roadmap-section {
  position: relative;
  padding: 88px 0;
}

.project-band::before,
.systems-section::before,
.roadmap-section::before {
  inset: 34px -22px;
}

.band-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 820px);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.band-heading h2,
.systems-copy h2,
.project-cta h2 {
  margin-bottom: 0;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(244, 241, 220, 0.16);
  background: rgba(244, 241, 220, 0.08);
  gap: 1px;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.28);
}

.world-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(216, 166, 74, 0.06), transparent),
    rgba(10, 16, 10, 0.95);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.world-grid article:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 107, 69, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(216, 166, 74, 0.08), transparent),
    rgba(12, 16, 13, 0.98);
  box-shadow: 0 0 38px rgba(255, 107, 69, 0.1);
}

.world-grid span,
.roadmap-row span {
  color: var(--copper);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.world-grid h3 {
  margin: 34px 0 12px;
}

.world-grid p,
.systems-copy p,
.roadmap-row p,
.project-cta p {
  color: #cfc9ad;
  line-height: 1.64;
}

.systems-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
  gap: 42px;
  align-items: center;
}

.systems-copy p {
  max-width: 520px;
}

.stack-map {
  display: grid;
  gap: 10px;
  position: relative;
}

.stack-map::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 18px;
  width: 2px;
  background: linear-gradient(var(--emerald), var(--redstone), var(--amethyst));
  box-shadow: 0 0 22px rgba(216, 166, 74, 0.3);
}

.stack-map div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  margin-left: 38px;
  padding: 18px 20px;
  border: 1px solid rgba(244, 241, 220, 0.16);
  background:
    linear-gradient(90deg, rgba(216, 166, 74, 0.06), transparent 42%),
    rgba(9, 14, 9, 0.92);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stack-map div::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 23px;
  width: 13px;
  height: 13px;
  background: #f8f3d7;
  border: 3px solid var(--emerald);
  box-shadow: 0 0 18px rgba(216, 166, 74, 0.46);
}

.stack-map div:hover {
  transform: translateX(8px);
  border-color: rgba(105, 213, 143, 0.34);
  box-shadow: 0 0 34px rgba(105, 213, 143, 0.1);
}

.stack-map strong {
  color: #f8f3d7;
  font-weight: 800;
}

.stack-map span {
  color: #c9c3a8;
}

.roadmap-table {
  border-top: 1px solid rgba(244, 241, 220, 0.18);
}

.roadmap-row {
  display: grid;
  grid-template-columns: 120px minmax(180px, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(244, 241, 220, 0.14);
  transition: transform 180ms ease, color 180ms ease;
}

.roadmap-row:hover {
  transform: translateX(8px);
}

.roadmap-row strong {
  color: #f8f3d7;
  font-size: 1.1rem;
}

.roadmap-row p {
  margin-bottom: 0;
}

.project-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 96px;
  padding: 32px;
  border: 1px solid rgba(244, 241, 220, 0.18);
  background:
    linear-gradient(135deg, rgba(216, 166, 74, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(220, 56, 50, 0.18), transparent 38%),
    rgba(12, 17, 12, 0.94);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-cta:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 189, 88, 0.34);
  box-shadow:
    12px 16px 0 rgba(0, 0, 0, 0.22),
    0 0 48px rgba(243, 189, 88, 0.12);
}

.project-cta p {
  margin: 10px 0 0;
  max-width: 690px;
}

.not-found-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 68% 28%, rgba(166, 118, 255, 0.16), transparent 32%),
    radial-gradient(circle at 18% 76%, rgba(77, 199, 214, 0.12), transparent 36%),
    #080705;
}

.not-found-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: 130px 0 72px;
  isolation: isolate;
}

.not-found-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(77, 199, 214, 0.11) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 107, 69, 0.09) 1px, transparent 1px) 0 0 / 64px 64px;
  mask-image: radial-gradient(circle at 54% 52%, #000, transparent 78%);
}

.not-found-hero {
  position: relative;
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(244, 241, 220, 0.16);
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 107, 69, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(8, 13, 14, 0.88), rgba(17, 10, 10, 0.88));
  box-shadow:
    14px 14px 0 rgba(0, 0, 0, 0.32),
    0 0 60px rgba(166, 118, 255, 0.1);
}

.not-found-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.not-found-hero > * {
  position: relative;
  z-index: 1;
}

.not-found-aura {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.not-found-aura span {
  position: absolute;
  border: 1px solid rgba(244, 241, 220, 0.12);
  box-shadow:
    inset 0 0 30px rgba(77, 199, 214, 0.08),
    0 0 34px rgba(255, 107, 69, 0.08);
}

.not-found-aura span:nth-child(1) {
  right: 12%;
  top: 18%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  animation: ringPulse 7s ease-in-out infinite;
}

.not-found-aura span:nth-child(2) {
  right: 18%;
  top: 28%;
  width: 130px;
  height: 130px;
  transform: rotate(45deg);
  animation: sigilSpin 22s linear infinite;
}

.not-found-aura span:nth-child(3) {
  right: 26%;
  top: 39%;
  width: 54px;
  height: 54px;
  border-color: rgba(243, 189, 88, 0.3);
  transform: rotate(45deg);
  animation: runeBlink 3.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  32% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 18px);
    opacity: 0;
  }
}

@keyframes headerAura {
  from {
    background-position: 0 0;
    opacity: 0.66;
  }
  to {
    background-position: 260px 0;
    opacity: 1;
  }
}

@keyframes auraSweep {
  from {
    transform: translate3d(-16px, -8px, 0);
    opacity: 0.38;
  }
  to {
    transform: translate3d(18px, 10px, 0);
    opacity: 0.72;
  }
}

@keyframes auraFloat {
  from {
    filter: saturate(0.94);
  }
  to {
    filter: saturate(1.12);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes sigilSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes sparkFlash {
  0%,
  100% {
    opacity: 0.22;
    filter: saturate(0.9);
  }
  45%,
  58% {
    opacity: 1;
    filter: saturate(1.28);
  }
}

@keyframes voxelFloat {
  0%,
  100% {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  50% {
    opacity: 0.84;
    transform: translate3d(18px, -28px, 0) rotate(64deg);
  }
}

@keyframes strikePulse {
  0%,
  100% {
    opacity: 0.36;
    filter: brightness(0.9);
  }
  48%,
  58% {
    opacity: 1;
    filter: brightness(1.28);
  }
}

@keyframes runeBlink {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(45deg) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) scale(1.08);
  }
}

@keyframes sectionAura {
  from {
    opacity: 0.34;
    transform: translateY(0);
  }
  to {
    opacity: 0.7;
    transform: translateY(-6px);
  }
}

@keyframes bambooDrift {
  from {
    transform: translateX(0) rotate(8deg);
    opacity: 0.3;
  }
  to {
    transform: translateX(-10px) rotate(5deg);
    opacity: 0.58;
  }
}

@keyframes gridBreathe {
  from {
    opacity: 0.18;
    background-position: 0 0, 0 0;
  }
  to {
    opacity: 0.38;
    background-position: 32px 18px, -20px 24px;
  }
}

@keyframes moteDrift {
  from {
    transform: translate3d(0, 20px, 0) rotate(0deg);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 0.76;
  }
  to {
    transform: translate3d(32px, -120px, 0) rotate(180deg);
    opacity: 0;
  }
}

@keyframes sealFloat {
  from {
    transform: rotate(45deg) translate3d(0, 0, 0) scale(0.92);
    opacity: 0.26;
  }
  to {
    transform: rotate(45deg) translate3d(-18px, 18px, 0) scale(1.08);
    opacity: 0.5;
  }
}

@media (min-width: 780px) {
  .hero-wordmark {
    font-size: 4.45rem;
  }

  h1 {
    font-size: 4.55rem;
  }
}

@media (min-width: 1180px) {
  .hero-wordmark {
    font-size: 5.85rem;
  }

  h1 {
    font-size: 5.7rem;
  }

  h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding-inline: 18px;
  }

  .nav-links {
    order: 3;
    flex: 1 0 100%;
    min-width: 0;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-content,
  .forge-layout,
  .signal-section,
  .partner-shell,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .hero-content {
    align-items: start;
  }

  .profile-panel {
    max-width: 520px;
  }

  .section-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signal-section {
    padding-block: 42px;
  }

  .signal-compass {
    grid-template-columns: 1fr;
  }

  .signal-orbit {
    min-height: 220px;
  }

  .partner-actions {
    margin-top: 18px;
  }

  .project-shell,
  .systems-section,
  .project-cta {
    grid-template-columns: 1fr;
  }

  .system-card {
    max-width: 560px;
  }

  .band-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .roadmap-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-cta .button {
    width: max-content;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 9px 8px;
    font-size: 0.72rem;
  }

  .forge-section::before,
  .signal-section::before,
  .partner-section::before,
  .project-band::before,
  .systems-section::before,
  .roadmap-section::before {
    inset-inline: 0;
  }

  .hero-content,
  .forge-section,
  .signal-section,
  .partner-section {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .hero-text {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  h1 {
    max-width: 100%;
    font-size: 1.42rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .hero-wordmark {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .partner-actions {
    align-items: stretch;
  }

  .button,
  .copy-link {
    width: 100%;
  }

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

  .flagship-card,
  .finisher-diagram {
    min-height: 300px;
  }

  .flagship-topline {
    display: grid;
    gap: 6px;
  }

  .forge-item {
    padding-left: 20px;
    padding-top: 74px;
  }

  .partner-shell {
    padding: 24px;
  }

  .project-shell,
  .project-band,
  .systems-section,
  .roadmap-section,
  .project-cta {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

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

  .not-found-shell {
    min-height: auto;
    padding-top: 144px;
  }

  .project-copy h1 {
    font-size: 2.35rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .signal-compass {
    padding: 18px;
  }

  .signal-pillars article,
  .signal-readouts {
    grid-template-columns: 1fr;
  }

  .signal-pillars span {
    grid-row: auto;
  }

  .project-lede {
    font-size: 1rem;
  }

  .system-metrics div,
  .stack-map div {
    grid-template-columns: 1fr;
  }

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

  .world-grid article {
    min-height: auto;
  }

  .project-band,
  .systems-section,
  .roadmap-section {
    padding: 58px 0;
  }

  .project-cta {
    padding: 24px;
    margin-bottom: 62px;
  }

  .project-cta .button {
    width: 100%;
  }

  .not-found-hero {
    width: calc(100% - 28px);
    padding: 24px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.32rem;
  }

  .hero-wordmark {
    font-size: 1.95rem;
  }

  .project-copy h1 {
    font-size: 2.08rem;
  }

  .header-cta {
    font-size: 0.7rem;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
