:root {
  color-scheme: dark;
  --black: #050505;
  --black-soft: #0b0b0b;
  --charcoal: #121212;
  --panel: #171717;
  --panel-soft: #202020;
  --gold: #c9a24f;
  --gold-bright: #f1d27a;
  --gold-muted: #8d733c;
  --bronze: #5a4824;
  --ivory: #f4f4f1;
  --white-soft: #d9d9d2;
  --muted: #b8b8b0;
  --line: rgba(244, 244, 241, 0.16);
  --gold-line: rgba(241, 210, 122, 0.34);
  --shadow: rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(241, 210, 122, 0.035), transparent 360px),
    var(--black);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  animation: scanDrift 16s linear infinite;
  background:
    linear-gradient(90deg, transparent, rgba(241, 210, 122, 0.1), transparent),
    repeating-linear-gradient(180deg, transparent 0 26px, rgba(244, 244, 241, 0.025) 27px);
  content: "";
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  animation: logoPulse 4.5s ease-in-out infinite;
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(201, 162, 79, 0.2);
  height: 42px;
  object-fit: cover;
  object-position: center;
  width: 42px;
}

.menu-toggle {
  align-items: center;
  background: rgba(244, 244, 241, 0.055);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ivory);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 18px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.8vw, 24px);
  justify-content: flex-end;
}

nav a {
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 0;
  text-decoration: none;
}

nav a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

nav a[aria-current="page"] {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 24px);
}

.social-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  align-items: center;
  background: rgba(244, 244, 241, 0.045);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold-bright);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(241, 210, 122, 0.14);
  border-color: var(--gold-line);
  transform: translateY(-1px);
}

.social-links svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.social-links.compact a {
  height: 38px;
  min-height: 38px;
  padding: 8px;
  width: 38px;
}

.page-panel[hidden] {
  display: none;
}

.page-panel {
  min-height: calc(100vh - 76px);
}

.page-panel.section,
.page-panel.roadmap,
.page-panel.partnerships,
.page-panel.help-centre,
.page-panel.faq-page,
.page-panel.contact {
  padding-top: clamp(130px, 13vw, 168px);
}

.hero {
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 136px clamp(20px, 6vw, 78px) 34px;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, transparent, rgba(241, 210, 122, 0.55), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.85;
  position: absolute;
  right: 0;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  animation: heroDrift 18s ease-in-out infinite alternate;
  filter: grayscale(0.72) contrast(1.2) brightness(0.7);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  width: 100%;
  z-index: -3;
}

.hero-shade {
  background:
    radial-gradient(circle at 70% 28%, rgba(241, 210, 122, 0.24), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(72, 198, 190, 0.09), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 36%, rgba(5, 5, 5, 0.44) 78%),
    linear-gradient(0deg, var(--black) 0%, rgba(5, 5, 5, 0) 38%);
  z-index: -2;
}

.hero-glow {
  animation: goldSweep 6.8s ease-in-out infinite;
  background:
    linear-gradient(110deg, transparent 0%, rgba(241, 210, 122, 0.14) 42%, rgba(244, 244, 241, 0.2) 50%, rgba(241, 210, 122, 0.12) 58%, transparent 100%);
  height: 140%;
  left: -60%;
  position: absolute;
  top: -20%;
  transform: rotate(8deg);
  width: 64%;
  z-index: -1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  min-height: calc(100vh - 250px);
}

.hero-content {
  max-width: 820px;
}

.hero-logo {
  animation: heroEnter 650ms ease both, floatMark 6s ease-in-out 800ms infinite;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.56), 0 0 38px rgba(241, 210, 122, 0.22);
  display: block;
  height: clamp(118px, 16vw, 184px);
  margin-bottom: 22px;
  object-fit: cover;
  object-position: center;
  width: clamp(118px, 16vw, 184px);
}

.eyebrow {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(4.2rem, 10vw, 9.6rem);
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--white-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 700px;
}

.hero-kicker {
  color: var(--gold-bright);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 18px;
  max-width: 720px;
}

.hero-actions {
  animation: heroEnter 650ms ease 240ms both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-social {
  animation: heroEnter 650ms ease 420ms both;
  margin-top: 18px;
}

.launch-strip {
  align-items: center;
  animation: heroEnter 650ms ease 340ms both;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(244, 244, 241, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 22px;
  max-width: 680px;
  padding: 16px;
}

.launch-strip a {
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 11px;
  text-decoration: none;
}

.launch-strip a:hover {
  background: rgba(241, 210, 122, 0.12);
  border-color: var(--gold-line);
}

.launch-strip span,
.card-countdown span {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-strip strong {
  color: var(--ivory);
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.countdown,
.card-countdown {
  align-items: center;
  display: flex;
  gap: 10px;
}

.countdown strong,
.card-countdown strong {
  color: var(--gold-bright);
  font-size: 2rem;
  line-height: 1;
}

.hero-feature {
  animation: heroPanelIn 760ms ease 300ms both;
  background:
    linear-gradient(145deg, rgba(241, 210, 122, 0.14), rgba(244, 244, 241, 0.045) 34%, rgba(0, 0, 0, 0.28)),
    rgba(5, 5, 5, 0.64);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.72), inset 0 0 0 1px rgba(244, 244, 241, 0.06);
  overflow: hidden;
  padding: clamp(22px, 3.8vw, 34px);
  position: relative;
}

.hero-feature::before {
  background: radial-gradient(circle, rgba(241, 210, 122, 0.34), transparent 58%);
  content: "";
  height: 220px;
  opacity: 0.58;
  position: absolute;
  right: -84px;
  top: -92px;
  width: 220px;
}

.hero-feature img {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(72, 198, 190, 0.22);
  border-radius: 8px;
  display: block;
  margin-bottom: 22px;
  padding: 14px;
  position: relative;
  width: 100%;
}

.hero-feature h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  margin-bottom: 12px;
  position: relative;
}

.hero-feature p {
  color: var(--muted);
  position: relative;
}

.hero-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  position: relative;
}

.hero-feature-actions a {
  background: rgba(244, 244, 241, 0.06);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold-bright);
  font-weight: 900;
  padding: 10px 12px;
  text-decoration: none;
}

.hero-feature-actions a:hover {
  border-color: var(--gold-line);
}

.hero-rail {
  animation: heroEnter 650ms ease 520ms both;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(24px, 4vw, 48px);
}

.hero-rail article {
  align-items: center;
  background: rgba(5, 5, 5, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px 12px;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 88px;
  padding: 12px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.hero-rail article:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.hero-rail img {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 7px;
  grid-row: span 2;
  height: 58px;
  object-fit: contain;
  padding: 6px;
  width: 58px;
}

.hero-rail span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-rail strong {
  overflow-wrap: anywhere;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--ivory), var(--gold-bright));
  border-color: rgba(244, 244, 241, 0.58);
  color: #080704;
}

.button:hover,
.project-card a:hover,
.trailer-panel a:hover,
.partner-mod-card a:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(244, 244, 241, 0.055);
  color: var(--ivory);
}

.section,
.roadmap,
.partnerships,
.help-centre,
.faq-page,
.contact {
  padding: clamp(54px, 8vw, 100px) clamp(20px, 6vw, 78px);
}

.intro-band {
  background: var(--black-soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 0;
  padding-top: 0;
}

.stat {
  background: linear-gradient(180deg, #171717, #0b0b0b);
  min-height: 136px;
  padding: 30px;
}

.stat strong {
  color: var(--gold-bright);
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stat span,
.section-heading p,
.project-card p,
.roadmap p,
.showcase p,
.home-slate p,
.home-spotlight p,
.home-updates p,
.why-alpha p,
.contact p,
footer {
  color: var(--muted);
}

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

.home-slate {
  background:
    linear-gradient(180deg, rgba(244, 244, 241, 0.035), rgba(5, 5, 5, 0.32)),
    var(--black);
}

.slate-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.slate-grid article,
.home-update-card,
.why-grid article {
  background:
    linear-gradient(180deg, rgba(244, 244, 241, 0.055), rgba(244, 244, 241, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
  padding: 22px;
}

.slate-grid article {
  transition: border-color 180ms ease, transform 180ms ease;
}

.slate-grid article:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.slate-grid img {
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: block;
  height: 96px;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 10px;
  width: 100%;
}

.slate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-spotlight {
  align-items: center;
  background:
    radial-gradient(circle at 82% 24%, rgba(241, 210, 122, 0.17), transparent 34%),
    linear-gradient(135deg, rgba(241, 210, 122, 0.1), rgba(244, 244, 241, 0.035) 42%, rgba(0, 0, 0, 0.25)),
    #101010;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.spotlight-copy {
  max-width: 760px;
}

.spotlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.spotlight-points span {
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 8px 11px;
}

.spotlight-art {
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 28px 70px var(--shadow), inset 0 0 0 1px rgba(244, 244, 241, 0.05);
  padding: clamp(22px, 4vw, 34px);
}

.spotlight-art img {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(72, 198, 190, 0.22);
  border-radius: 8px;
  display: block;
  margin-bottom: 22px;
  padding: 14px;
  width: 100%;
}

.spotlight-art p {
  color: var(--gold-bright);
  font-weight: 900;
  margin: 12px 0 0;
  text-transform: uppercase;
}

.home-updates {
  background: var(--black-soft);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-update-card span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.why-alpha {
  background:
    linear-gradient(135deg, rgba(244, 244, 241, 0.06), rgba(241, 210, 122, 0.08)),
    var(--panel);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid article {
  box-shadow: none;
}

.why-grid h3 {
  color: var(--gold-bright);
}

.project-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.project-card {
  background:
    linear-gradient(180deg, rgba(244, 244, 241, 0.055), rgba(244, 244, 241, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px var(--shadow);
  min-height: 286px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.project-card::before {
  background: linear-gradient(135deg, rgba(241, 210, 122, 0.26), transparent 42%);
  content: "";
  height: 160px;
  opacity: 0;
  position: absolute;
  right: -64px;
  top: -64px;
  transform: rotate(12deg);
  transition: opacity 180ms ease;
  width: 160px;
}

.project-card:hover {
  border-color: var(--gold-line);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.72), inset 0 0 0 1px rgba(241, 210, 122, 0.09);
  transform: translateY(-5px);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card.featured {
  border-color: var(--gold-line);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.68), inset 0 0 0 1px rgba(241, 210, 122, 0.12);
}

.project-logo {
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(72, 198, 190, 0.22);
  border-radius: 8px;
  display: block;
  margin: 0 0 20px;
  max-width: 210px;
  padding: 10px;
  width: 100%;
}

.project-card:hover .project-logo {
  animation: logoLift 900ms ease both;
}

.project-card a {
  color: var(--gold-bright);
  display: inline-flex;
  font-weight: 900;
  margin-top: 20px;
  text-decoration: none;
}

.progress-meter {
  background: rgba(244, 244, 241, 0.08);
  border-radius: 999px;
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
}

.progress-meter span {
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-bright));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.card-countdown {
  background: rgba(5, 5, 5, 0.34);
  border: 1px solid var(--line);
  border-radius: 7px;
  margin-top: 14px;
  padding: 10px;
}

.card-countdown strong {
  font-size: 1.45rem;
}

.release-date {
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.project-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  margin: 0 0 12px;
  padding: 5px 9px;
  text-transform: uppercase;
}

.project-status.testing {
  background: rgba(241, 210, 122, 0.12);
  border-color: var(--gold-line);
  color: var(--gold-bright);
}

.project-status.development {
  background: rgba(72, 198, 190, 0.12);
  border-color: rgba(72, 198, 190, 0.28);
  color: #92fff7;
}

.project-status.trailer {
  background: rgba(244, 244, 241, 0.1);
  color: var(--ivory);
}

.project-status.planned {
  background: rgba(141, 115, 60, 0.18);
  color: var(--white-soft);
}

.tag {
  background: rgba(241, 210, 122, 0.1);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold-bright);
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 900;
  margin-bottom: 24px;
  padding: 6px 10px;
}

.gallery-lab,
.discord-banner,
.updates-faq,
.trailer-grid {
  margin-top: clamp(42px, 7vw, 78px);
}

.gallery-shell {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  margin-top: 26px;
}

.gallery-stage {
  background:
    linear-gradient(135deg, rgba(241, 210, 122, 0.1), rgba(244, 244, 241, 0.04)),
    var(--panel);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr);
  min-height: 360px;
  padding: 18px;
}

.gallery-stage img {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  width: 100%;
}

.gallery-stage div {
  align-self: end;
}

.gallery-stage span,
.waitlist-form > span,
.creator-kit > span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.gallery-controls {
  display: grid;
  gap: 10px;
}

.gallery-controls button {
  background: rgba(244, 244, 241, 0.045);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 56px;
  padding: 12px;
  text-align: left;
}

.gallery-controls button:hover,
.gallery-controls button.is-selected {
  background: rgba(241, 210, 122, 0.12);
  border-color: var(--gold-line);
  color: var(--gold-bright);
}

.discord-banner {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.16), rgba(241, 210, 122, 0.1)),
    #101010;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(22px, 4vw, 34px);
}

.discord-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.updates-faq {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.changelog,
.faq {
  background: rgba(5, 5, 5, 0.46);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
}

.changelog article {
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
}

.changelog article + article {
  margin-top: 18px;
}

.changelog article span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  color: var(--ivory);
  cursor: pointer;
  font-weight: 950;
}

.faq details p {
  margin: 12px 0 0;
}

.help-centre {
  background:
    radial-gradient(circle at 78% 16%, rgba(72, 198, 190, 0.1), transparent 34%),
    linear-gradient(180deg, #111111, #070707);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.page-panel.help-centre {
  min-height: calc(100vh - 76px);
}

.help-hero {
  max-width: 900px;
}

.help-hero p,
.help-panel p,
.help-panel li {
  color: var(--muted);
}

.help-layout {
  align-items: start;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  margin-top: 34px;
}

.help-sidebar {
  background: rgba(5, 5, 5, 0.46);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 12px;
  position: sticky;
  top: 112px;
}

.help-sidebar a {
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 900;
  padding: 10px 12px;
  text-decoration: none;
}

.help-sidebar a:hover {
  background: rgba(241, 210, 122, 0.1);
  border-color: var(--gold-line);
  color: var(--gold-bright);
}

.help-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.help-panel {
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42);
  min-width: 0;
  padding: clamp(20px, 4vw, 32px);
  scroll-margin-top: 96px;
}

.help-panel > span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.help-panel h3 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.help-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mod-id-strip {
  background: rgba(241, 210, 122, 0.08);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
  padding: 14px;
}

.mod-id-strip strong,
.mod-id-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.mod-id-strip strong {
  background: linear-gradient(135deg, var(--ivory), var(--gold-bright));
  color: #080704;
}

.mod-id-strip span {
  color: var(--white-soft);
}

.help-steps article {
  align-items: start;
  background: rgba(244, 244, 241, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 16px;
}

.help-steps strong {
  align-items: center;
  background: linear-gradient(135deg, var(--ivory), var(--gold-bright));
  border-radius: 999px;
  color: #080704;
  display: inline-flex;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.help-steps h4,
.resource-list h4,
.whitelist-box h4,
.code-helper h4 {
  color: var(--ivory);
  margin: 0 0 6px;
}

.resource-list,
.compatibility-grid,
.troubleshoot-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.resource-list article,
.compatibility-grid article,
.whitelist-box,
.code-helper,
.troubleshoot-grid details {
  background: rgba(244, 244, 241, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.compatibility-grid + .whitelist-box,
.code-helper + .whitelist-box,
.tool-list + .whitelist-box,
.whitelist-box + .whitelist-box {
  margin-top: 18px;
}

.compatibility-grid h4 {
  color: var(--gold-bright);
  margin: 0 0 8px;
}

.resource-list ol,
.whitelist-box ul {
  margin: 0;
  padding-left: 20px;
}

.resource-list li + li,
.whitelist-box li + li {
  margin-top: 7px;
}

.whitelist-box pre {
  background: #070707;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--gold-bright);
  margin: 14px 0 0;
  overflow-x: auto;
  padding: 14px;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-helper {
  display: grid;
  gap: 14px;
  margin: 14px 0;
}

.tool-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.tool-list a {
  background: rgba(244, 244, 241, 0.055);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold-bright);
  font-weight: 900;
  padding: 12px;
  text-decoration: none;
}

.tool-list a:hover {
  border-color: var(--gold-line);
}

.code-helper pre {
  background: #070707;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  color: var(--gold-bright);
  margin: 0;
  overflow-x: auto;
  padding: 14px;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-helper code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.code-helper button {
  background: rgba(241, 210, 122, 0.12);
  border: 1px solid var(--gold-line);
  border-radius: 7px;
  color: var(--gold-bright);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  justify-self: start;
  min-height: 42px;
  padding: 9px 12px;
}

.troubleshoot-grid summary {
  color: var(--ivory);
  cursor: pointer;
  font-weight: 950;
}

.troubleshoot-grid p {
  margin: 12px 0 0;
}

.support-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.support-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.support-form input,
.support-form select,
.support-form textarea {
  background: rgba(244, 244, 241, 0.07);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ivory);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  text-transform: none;
}

.support-form select option {
  background: var(--ivory);
  color: #080704;
}

.support-form textarea {
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--gold-line);
  outline: 2px solid rgba(241, 210, 122, 0.14);
}

.faq-page {
  background:
    radial-gradient(circle at 80% 14%, rgba(241, 210, 122, 0.12), transparent 32%),
    linear-gradient(180deg, #111111, #070707);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.page-panel.faq-page {
  min-height: calc(100vh - 76px);
}

.faq-hero {
  max-width: 860px;
}

.faq-hero p {
  color: var(--muted);
}

.faq-page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.faq-category {
  background: rgba(5, 5, 5, 0.48);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.42);
  padding: clamp(20px, 3vw, 28px);
}

.faq-category > span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.faq-category details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq-category details:last-child {
  padding-bottom: 0;
}

.faq-category summary {
  color: var(--ivory);
  cursor: pointer;
  font-weight: 950;
}

.faq-category summary:hover {
  color: var(--gold-bright);
}

.faq-category p {
  color: var(--muted);
  margin: 12px 0 0;
}

.faq-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(241, 210, 122, 0.12), rgba(244, 244, 241, 0.04)),
    #101010;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 30px);
}

.faq-cta p {
  color: var(--muted);
}

.faq-cta h3 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.roadmap {
  align-items: start;
  background:
    linear-gradient(180deg, #111111, #070707);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
}

.page-panel.roadmap {
  min-height: calc(100vh - 76px);
}

.roadmap-intro {
  position: sticky;
  top: 112px;
}

.roadmap-controls {
  align-self: start;
  display: grid;
  gap: 10px;
  position: sticky;
  top: 332px;
}

.roadmap-controls button {
  background: rgba(244, 244, 241, 0.045);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 46px;
  padding: 10px 12px;
  text-align: left;
}

.roadmap-controls button:hover,
.roadmap-controls button.is-selected {
  background: rgba(241, 210, 122, 0.12);
  border-color: var(--gold-line);
  color: var(--gold-bright);
}

.roadmap-content {
  display: grid;
  gap: 18px;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.necro-roadmap {
  animation: panelIn 260ms ease both;
  background:
    linear-gradient(135deg, rgba(241, 210, 122, 0.11), rgba(244, 244, 241, 0.045) 32%, rgba(0, 0, 0, 0.26)),
    #101010;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 28px 70px var(--shadow), inset 0 0 0 1px rgba(244, 244, 241, 0.06);
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  padding: clamp(22px, 4vw, 34px);
}

.necro-roadmap:not(.is-selected) {
  display: none;
}

.roadmap-logo {
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(72, 198, 190, 0.24);
  border-radius: 8px;
  display: block;
  margin-bottom: 22px;
  max-width: min(390px, 100%);
  padding: 12px;
  width: 62%;
}

.mod-name {
  color: var(--ivory);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.88;
  margin-bottom: 14px;
  max-width: 100%;
  overflow-wrap: anywhere;
  position: relative;
}

.mod-name-long {
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.mod-name::after {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  content: "";
  display: block;
  height: 3px;
  margin-top: 16px;
  max-width: 240px;
  width: 45%;
}

.mod-subtitle {
  color: var(--gold-bright);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
}

.project-roadmap-copy > p:not(.mod-subtitle) {
  color: var(--muted);
}

.feature-groups {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.feature-group,
.official-note {
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.feature-group h3,
.official-note h3 {
  color: var(--gold-bright);
}

.feature-group ul {
  color: var(--muted);
  margin: 0;
  padding-left: 19px;
}

.feature-group li + li {
  margin-top: 6px;
}

.official-note {
  margin-top: 14px;
}

.official-note p {
  margin-bottom: 0;
}

.trailer-panel {
  align-self: start;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(244, 244, 241, 0.04);
  padding: 20px;
}

.video-placeholder {
  align-items: center;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(244, 244, 241, 0.08), rgba(5, 5, 5, 0.86)),
    #080808;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  width: 100%;
}

.video-placeholder svg {
  background: linear-gradient(135deg, var(--ivory), var(--gold-bright));
  border-radius: 999px;
  fill: #070707;
  height: 62px;
  padding: 18px;
  width: 62px;
}

.trailer-panel p {
  color: var(--muted);
}

.trailer-panel a {
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: none;
}

.trailer-grid {
  grid-column: 1 / -1;
}

.trailer-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.embed-card {
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.embed-card img,
.embed-card iframe {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.embed-card iframe {
  padding: 0;
}

.embed-card button {
  background: rgba(241, 210, 122, 0.12);
  border: 1px solid var(--gold-line);
  border-radius: 7px;
  color: var(--gold-bright);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 42px;
  padding: 9px 12px;
}

.showcase {
  background:
    radial-gradient(circle at 80% 20%, rgba(241, 210, 122, 0.12), transparent 34%),
    var(--black);
}

.showcase {
  display: grid;
  gap: clamp(24px, 5vw, 52px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.showcase-panel {
  border-left: 3px solid var(--gold);
  max-width: 880px;
  padding-left: clamp(18px, 3vw, 34px);
}

.studio-pipeline {
  display: grid;
  gap: 14px;
}

.studio-pipeline div {
  background: rgba(244, 244, 241, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.studio-pipeline span {
  color: var(--gold-bright);
  display: block;
  font-weight: 950;
  margin-bottom: 10px;
}

.studio-pipeline strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.showcase-panel p {
  font-size: 1.12rem;
  max-width: 740px;
}

.contact {
  align-items: start;
  background: var(--panel);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.partnerships {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(241, 210, 122, 0.1), rgba(244, 244, 241, 0.035) 36%, rgba(0, 0, 0, 0.18)),
    var(--panel);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.page-panel.partnerships {
  min-height: calc(100vh - 76px);
}

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

.partnership-card {
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 24px 62px var(--shadow), inset 0 0 0 1px rgba(244, 244, 241, 0.05);
  padding: clamp(24px, 4vw, 36px);
}

.partner-logo-lockup {
  align-items: center;
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.partner-logo {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  height: 92px;
  object-fit: contain;
  padding: 12px;
  width: 92px;
}

.partner-logo-lockup .tag {
  margin-bottom: 12px;
}

.partnership-card h3 {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.partnership-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.partner-mods {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-feed-heading {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  grid-column: 1 / -1;
  justify-content: space-between;
}

.partner-feed-heading h3 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  margin-bottom: 0;
}

.partner-feed-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 11px;
  text-transform: uppercase;
}

.partner-mod-card {
  background: rgba(5, 5, 5, 0.44);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.partner-mod-logo {
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: block;
  height: 76px;
  margin-bottom: 18px;
  object-fit: contain;
  padding: 8px;
  width: 76px;
}

.partner-mod-card:hover {
  border-color: var(--gold-line);
}

.partner-mod-card span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.partner-mod-card p {
  color: var(--muted);
}

.partner-mod-card a {
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: none;
}

.page-panel.contact {
  min-height: calc(100vh - 76px);
}

.contact-copy {
  max-width: 560px;
}

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

.community-callout {
  background: rgba(5, 5, 5, 0.44);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  margin-top: 28px;
  padding: 22px;
}

.community-callout .tag {
  margin-bottom: 16px;
}

.community-callout p {
  margin-bottom: 0;
}

.contact-card {
  background: rgba(5, 5, 5, 0.44);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 20px;
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--gold-line);
}

.contact-card span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.social-card {
  min-height: 100px;
}

.contact-form {
  background: rgba(5, 5, 5, 0.56);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  padding: 22px;
}

.waitlist-form,
.creator-kit {
  background: rgba(5, 5, 5, 0.56);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  padding: 22px;
}

.waitlist-form {
  border-color: var(--gold-line);
}

.waitlist-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select {
  background: rgba(244, 244, 241, 0.07);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ivory);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  text-transform: none;
}

.waitlist-form select option {
  background: var(--ivory);
  color: #080704;
}

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

.kit-grid a {
  background: rgba(244, 244, 241, 0.055);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--gold-bright);
  font-weight: 900;
  padding: 12px;
  text-decoration: none;
}

.contact-form > span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(244, 244, 241, 0.07);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ivory);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  text-transform: none;
}

.hidden-field {
  display: none;
}

.contact-form select option {
  background: var(--ivory);
  color: #080704;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-line);
  outline: 2px solid rgba(241, 210, 122, 0.14);
}

.form-status {
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  margin: 0;
  min-height: 22px;
  padding: 0;
}

.form-status[data-state="pending"],
.form-status[data-state="success"],
.form-status[data-state="error"] {
  padding: 10px 12px;
}

.form-status[data-state="pending"] {
  background: rgba(244, 244, 241, 0.06);
  border-color: var(--line);
  color: var(--white-soft);
}

.form-status[data-state="success"] {
  background: rgba(241, 210, 122, 0.12);
  border-color: var(--gold-line);
  color: var(--gold-bright);
}

.form-status[data-state="error"] {
  background: rgba(255, 96, 96, 0.12);
  border-color: rgba(255, 96, 96, 0.32);
  color: #ffb5b5;
}

.support-form button:disabled,
.contact-form button:disabled,
.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.62;
}

footer {
  align-items: flex-start;
  background: var(--black-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 78px);
}

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

.footer-brand > span {
  color: var(--ivory);
  font-weight: 950;
}

.footer-copy {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.footer-copy small {
  color: rgba(217, 217, 210, 0.68);
  display: block;
  font-size: 0.74rem;
  line-height: 1.45;
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(201, 162, 79, 0.2);
  }

  50% {
    box-shadow: 0 0 34px rgba(241, 210, 122, 0.36);
  }
}

@keyframes floatMark {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes logoLift {
  0% {
    transform: translateY(0) scale(1);
  }

  55% {
    transform: translateY(-5px) scale(1.025);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes goldSweep {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(8deg);
  }

  24%,
  62% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(260%) rotate(8deg);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.8%, -1%, 0);
  }
}

@keyframes scanDrift {
  from {
    transform: translateY(-80px);
  }

  to {
    transform: translateY(80px);
  }
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }

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

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

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

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

  .gallery-shell,
  .gallery-stage,
  .updates-faq,
  .help-layout,
  .resource-list,
  .compatibility-grid,
  .troubleshoot-grid,
  .tool-list,
  .faq-page-grid,
  .trailer-cards {
    grid-template-columns: 1fr;
  }

  .help-sidebar {
    position: static;
  }

  .necro-roadmap {
    grid-template-columns: 1fr;
  }

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

  .roadmap-controls,
  .roadmap-content {
    grid-column: auto;
    grid-row: auto;
  }

  .roadmap-controls {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    min-height: 68px;
  }

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

  .header-actions {
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    left: 0;
    opacity: 0;
    padding: 14px 20px 20px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 68px;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .header-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  nav a {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 10px 12px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-feature {
    max-width: 620px;
  }

  .intro-band,
  .slate-grid,
  .project-grid,
  .roadmap,
  .partnerships,
  .contact,
  .contact-grid,
  .showcase,
  .home-spotlight,
  .home-updates,
  .why-alpha,
  .faq-cta,
  .discord-banner {
    grid-template-columns: 1fr;
  }

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

  .partner-mods {
    grid-template-columns: 1fr;
  }

  .roadmap-intro {
    position: static;
  }

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

  .discord-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    gap: 8px 14px;
  }

  nav a {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 94vh;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5rem);
  }

  .hero-logo {
    height: 112px;
    width: 112px;
  }

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

  .launch-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .slate-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-social a {
    flex: 1 1 100%;
  }

  .button {
    width: 100%;
  }

  .partner-logo-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-controls {
    grid-template-columns: 1fr;
  }

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

}
