/* ============================================================
   VESTIGES — Homepage
   Near-black canvas, pale mint text, giant uppercase display,
   WebGL beam shaders, pixel motifs, arcade "memory card" theme.
   ============================================================ */

:root {
  --black-900: #000403;
  --black-600: #404944;
  --light-100: #d6ebe0;
  --light-200: #cae1d6;
  --light-300: #98aca0;
  --light-500: #5b655f;
  --accent: #3ecf8e;

  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  --hero-tagline: min(210px, 12.4vw);
  --footer-tagline: min(120px, 9vw);
  --nav-h: 76px;
  --radius-cell: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black-900);
  color: var(--light-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--black-900); }

/* ---------- Shared type ---------- */

.uppercase-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(36px, 4.5vw, 64px);
}

.dim { color: var(--light-500); }

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
  }
}

.section-label { color: var(--light-300); margin-bottom: 18px; }

.section-lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.35;
  max-width: 560px;
}

/* ---------- Pixel / triangle motifs ---------- */

.px { fill: var(--light-200); }
.tri { fill: var(--light-200); }

.pulse { animation: pulsing 1s linear infinite; }
.pulse.d2 { animation-delay: 0.5s; }

@keyframes pulsing {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.pixel-cluster { display: block; width: 28px; flex: 0 0 auto; }
.pixel-cluster svg { display: block; width: 100%; }

.tri-group { display: inline-flex; gap: 3px; vertical-align: middle; margin: 0 6px; }
.tri-group svg { width: 8px; height: 8px; display: block; }

.label-square { width: 8px; height: 8px; background: var(--light-100); display: inline-block; }
.li-square { width: 7px; height: 7px; background: var(--accent); display: inline-block; flex: 0 0 auto; margin-top: 7px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  padding: 15px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-outline { border-color: var(--light-300); color: var(--light-100); }
.btn-outline:hover { background: var(--light-100); color: var(--black-900); }

.btn-solid { background: var(--light-100); color: var(--black-900); }
.btn-solid:hover { background: var(--accent); color: var(--black-900); }

.btn-ghost { color: var(--light-300); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--light-100); }

.btn-lg { padding: 18px 28px; }

.btn-arrow { display: block; width: 6px; }
.btn-arrow svg { display: block; width: 100%; }

.btn-container { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- Boot overlay ---------- */

.boot {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--black-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.boot.done { opacity: 0; visibility: hidden; }

.boot-inner {
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.4vw, 15px);
  letter-spacing: 0.08em;
  color: var(--light-300);
  display: grid;
  gap: 10px;
  min-width: min(420px, 80vw);
}
.boot-line { opacity: 0; transform: translateY(4px); transition: opacity 0.12s, transform 0.12s; }
.boot-line.on { opacity: 1; transform: none; }
.boot-accent { color: var(--accent); }
.boot-cursor { color: var(--accent); animation: blink 1s steps(1) infinite; }

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  background: var(--accent);
  color: var(--black-900);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 4, 3, 0.82);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(91, 101, 95, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.nav-logo-img { width: 28px; height: 28px; }

.nav-links { display: flex; align-items: center; gap: 24px; }

.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-300);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--light-100); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.lang-sep { color: var(--light-500); }
.lang-btn {
  background: none;
  border: none;
  padding: 4px 2px;
  letter-spacing: inherit;
  text-transform: uppercase;
  color: var(--light-500);
  cursor: pointer;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--light-300); }
.lang-btn.active { color: var(--light-100); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 24px) 0 32px;
  overflow: hidden;
}

/* CSS fallback glow — also the paint before the WebGL shader boots */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% -12%, rgba(62, 207, 142, 0.32), transparent 70%),
    radial-gradient(ellipse 30% 40% at 42% -8%, rgba(62, 207, 142, 0.22), transparent 65%),
    radial-gradient(ellipse 26% 36% at 58% -8%, rgba(14, 255, 200, 0.10), transparent 60%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.16) 3px 4px
  );
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.hero-inner { position: relative; z-index: 3; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--light-200);
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--hero-tagline);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.hero-tagline .line { display: block; }
.line-left { text-align: left; }
.line-right { text-align: right; }

.fw { transition: color 0.15s linear; }
.fw.flash { color: var(--accent); }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-intro { max-width: 420px; }

.hero-sub {
  color: var(--light-300);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.hero-meta {
  color: var(--light-300);
  text-align: right;
  max-width: 240px;
}

/* ---------- Game ticker ---------- */

.logo-strip-wrapper {
  border-top: 1px solid rgba(91, 101, 95, 0.5);
  border-bottom: 1px solid rgba(91, 101, 95, 0.5);
  padding: 22px 0;
  overflow: hidden;
}

.logo-strip { overflow: hidden; }

.logo-strip-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.logo-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-300);
  white-space: nowrap;
}

.chip-sep {
  width: 6px; height: 6px;
  background: var(--accent);
  flex: 0 0 auto;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Graveyard / memory cards ---------- */

.graveyard { padding: 130px 0 40px; }

.grave-hint {
  color: var(--light-500);
  margin-top: 18px;
}

.mem-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .mem-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .mem-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.mem-card {
  position: relative;
  border: 1px solid rgba(91, 101, 95, 0.5);
  border-radius: 0 22px 0 22px;
  background: #01080a;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.mem-card.alive {
  border-color: rgba(62, 207, 142, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 18px 50px -18px rgba(62, 207, 142, 0.35);
}
.mem-card:focus-visible { border-color: var(--accent); }

.mem-art { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.mem-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.5) contrast(0.9);
  transform: scale(1.02);
  transition: filter 0.5s, transform 0.5s;
}
.mem-card.alive .mem-art img {
  filter: grayscale(0) brightness(1) contrast(1);
  transform: scale(1.06);
}

.mem-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.28) 2px 3px
  );
  opacity: 0.9;
  transition: opacity 0.5s;
}
.mem-card.alive .mem-scan { opacity: 0.25; }

.mem-meta {
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(91, 101, 95, 0.4);
}

.mem-status {
  position: relative;
  height: 16px;
  font-size: 9.5px;
  letter-spacing: 0.07em;
  overflow: hidden;
}
.mem-status .status-off,
.mem-status .status-on {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.status-off { color: var(--light-500); }
.status-on { color: var(--accent); opacity: 0; }
.mem-card.alive .status-off { opacity: 0; }
.mem-card.alive .status-on { opacity: 1; }

.mem-status .dot {
  width: 6px; height: 6px;
  background: currentColor;
  display: inline-block;
  flex: 0 0 auto;
}
.mem-card.alive .status-on .dot { animation: pulsing 1s linear infinite; }

.mem-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.mem-sub { color: var(--light-500); }

/* ---------- Sticky text reveal ---------- */

.sticky-reveal { position: relative; }

.sticky-track { height: 220vh; min-height: 900px; }

.sticky-panel {
  position: sticky;
  top: 0;
  padding-top: var(--nav-h);
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.progress-rail {
  height: 1px;
  width: 100%;
  background: rgba(152, 172, 160, 0.3);
}
.scroll-progress {
  height: 1px;
  width: 100%;
  background: var(--light-100);
  transform: scaleX(0);
  transform-origin: top left;
}

.sticky-body {
  min-height: calc(100vh - var(--nav-h) - 1px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 0 32px;
}

.sticky-top {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
}

.split-stage {
  position: relative;
  min-height: 9em;
  font-size: clamp(26px, 4vw, 54px);
  line-height: 1.12;
  font-weight: 400;
  max-width: 1080px;
}

.split {
  position: absolute;
  inset: 0 0 auto 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s, transform 0.4s;
}
.split.active { opacity: 1; transform: translateY(0); }
.split .w { display: inline-block; opacity: 0.3; transition: opacity 0.2s linear; }

.sticky-label { display: flex; align-items: center; gap: 12px; }

.sticky-foot { display: flex; justify-content: flex-end; }

.sticky-stat {
  color: var(--light-300);
  text-align: right;
  max-width: 220px;
}
.stat-strong { color: var(--light-100); font-size: 13px; }

/* ---------- Save slots ---------- */

.slots { padding: 130px 0 40px; }

.slots-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--light-500);
}
@media (min-width: 980px) {
  .slots-grid { grid-template-columns: 5fr 7fr; }
}

.slot-tabs {
  background: var(--black-900);
  border-radius: 0 var(--radius-cell) 0 0;
  display: flex;
  flex-direction: column;
}

.slot-tab {
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(91, 101, 95, 0.4);
  padding: 26px 28px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  transition: background 0.25s;
}
.slot-tab:last-child { border-bottom: none; }
.slot-tab:hover { background: rgba(62, 207, 142, 0.04); }

.slot-no { color: var(--light-500); transition: color 0.25s; }
.slot-tab.active .slot-no { color: var(--accent); }

.slot-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--light-300);
  transition: color 0.25s;
}
.slot-tab.active .slot-name { color: var(--light-100); }

.slot-desc {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--light-500);
  max-width: 420px;
  transition: color 0.25s;
}
.slot-tab.active .slot-desc { color: var(--light-300); }

.slot-panels {
  position: relative;
  background: var(--black-900);
  border-radius: 0 0 0 var(--radius-cell);
  min-height: 420px;
}

.slot-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s, transform 0.35s, visibility 0.35s;
}
.slot-panel.active { opacity: 1; visibility: visible; transform: none; }

/* panel 2 — network */
.net-wrap { width: 100%; max-width: 460px; display: grid; gap: 24px; }
.net-diagram { width: 100%; height: auto; }
.net-hub { fill: var(--accent); }
.net-node { fill: var(--light-300); animation: pulsing 1.6s linear infinite; }
.net-node.d2 { animation-delay: 0.5s; }
.net-node.d3 { animation-delay: 1s; }
.net-link {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.55;
  stroke-dasharray: 5 7;
  animation: dashflow 1.4s linear infinite;
}
.net-link.d2 { animation-delay: 0.4s; }
.net-link.d3 { animation-delay: 0.8s; }

@keyframes dashflow {
  to { stroke-dashoffset: -12; }
}

.net-legend { display: grid; gap: 12px; }
.net-legend li {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--light-300);
}
.net-legend .li-square { margin-top: 5px; }

/* panel 3 — world status */
.world-status { text-align: center; display: grid; gap: 14px; }
.world-line { color: var(--light-300); display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.world-line.dim2 { color: var(--light-500); }
.dot-on {
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
  animation: pulsing 1s linear infinite;
}
.slot-big-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ---------- Terminal ---------- */

.hero-terminal {
  border: 1px solid var(--light-500);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 520px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(91, 101, 95, 0.5);
}
.terminal-dot { width: 8px; height: 8px; background: var(--light-500); display: block; }
.terminal-dot:first-child { background: var(--accent); }
.terminal-title {
  margin-left: auto;
  color: var(--light-500);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terminal-body { padding: 18px 16px; display: grid; gap: 8px; }
.terminal-line { line-height: 1.5; }
.t-prompt { color: var(--light-500); }
.t-cmd { color: var(--light-100); }
.t-muted { color: var(--light-300); }
.t-accent { color: var(--accent); }
.t-cursor { color: var(--accent); animation: blink 1s steps(1) infinite; }

@keyframes blink { 50% { opacity: 0; } }

/* ---------- Waitlist ---------- */

.section-waitlist { padding: 140px 0 40px; }

.waitlist-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--light-500);
}
@media (min-width: 900px) {
  .waitlist-grid { grid-template-columns: 7fr 5fr; }
}

.waitlist-form {
  position: relative;
  background: var(--black-900);
  border-radius: 0 var(--radius-cell) 0 var(--radius-cell);
  padding: 48px 40px;
  display: grid;
  gap: 24px;
  align-content: start;
}

.wl-field { display: grid; gap: 10px; }
.wl-field label { color: var(--light-300); }

.wl-field input {
  background: transparent;
  border: 1px solid var(--light-500);
  border-radius: 6px;
  padding: 15px 16px;
  color: var(--light-100);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: border-color 0.2s;
}
.wl-field input::placeholder { color: var(--light-500); }
.wl-field input:focus { outline: none; border-color: var(--accent); }

.wl-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--light-300);
}
.wl-check input {
  accent-color: var(--accent);
  width: 16px; height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.wl-submit { justify-content: center; }

.wl-benefits {
  background: var(--black-900);
  border-radius: 0 var(--radius-cell) 0 var(--radius-cell);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wl-benefits-title { color: var(--light-300); }

.wl-benefits-list { display: grid; gap: 18px; }
.wl-benefits-list li {
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--light-100);
}

/* ---------- Stats ---------- */

.stats { padding: 100px 0 24px; }

.stats-grid {
  display: grid;
  border-top: 1px solid rgba(91, 101, 95, 0.5);
}
@media (min-width: 760px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
  padding: 40px 0;
  display: grid;
  gap: 12px;
  border-bottom: 1px solid rgba(91, 101, 95, 0.5);
}
@media (min-width: 760px) {
  .stat-card { padding: 48px 32px; border-bottom: none; }
  .stat-card + .stat-card { border-left: 1px solid rgba(91, 101, 95, 0.5); }
  .stat-card:first-child { padding-left: 0; }
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.stat-label { color: var(--light-300); }

/* ---------- FAQ ---------- */

.faq { padding: 120px 0 40px; }

.faq-list { border-top: 1px solid rgba(91, 101, 95, 0.5); }

.faq-item { border-bottom: 1px solid rgba(91, 101, 95, 0.5); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-plus {
  position: relative;
  width: 14px; height: 14px;
  flex: 0 0 auto;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--light-300);
  transition: transform 0.25s, background 0.25s;
}
.faq-plus::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-plus::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-item[open] .faq-plus::before { background: var(--accent); }

.faq-answer {
  color: var(--light-300);
  font-size: 16px;
  line-height: 1.5;
  max-width: 720px;
  padding: 0 0 26px;
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  padding: 150px 0 24px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 112%, rgba(62, 207, 142, 0.20), transparent 70%);
}

.footer-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.footer-inner { position: relative; z-index: 2; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  margin-bottom: 100px;
}
@media (min-width: 860px) {
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
}

.footer-col { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-col a { font-size: 15px; color: var(--light-100); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-col-title { color: var(--light-300); margin-bottom: 8px; }

.footer-logo .nav-logo-img { width: 36px; height: 36px; }
.footer-tagline-sm { color: var(--light-300); font-size: 14px; max-width: 200px; }

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--footer-tagline);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.footer-tagline .line-left { text-align: left; }
.footer-tagline .line-right { text-align: right; }

.footer-bottom { display: flex; }
.footer-bottom .uppercase-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--light-100);
}
.footer-mark path { fill: var(--light-100); }

/* ---------- Responsive tweaks ---------- */

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav-logo span { display: none; }
  .nav-links { gap: 14px; }
  .nav-links .nav-link { display: none; }
  .btn { padding: 12px 16px; }
  .hero-tagline { font-size: min(64px, 13.5vw); }
  .hero-meta { text-align: left; max-width: none; }
  .graveyard, .slots { padding-top: 90px; }
  .section-head { margin-bottom: 40px; }
  .slot-panels { min-height: 360px; }
  .slot-panel { padding: 24px 18px; }
  .waitlist-form, .wl-benefits { padding: 32px 22px; }
  .split-stage { min-height: 12em; }
  .footer { padding-top: 100px; }
}

@media (max-width: 560px) {
  /* narrow cards: "EN LIGNE · 42 000" is enough */
  .status-on [data-i18n="grave.players"] { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pulse, .t-cursor, .boot-cursor, .logo-strip-track,
  .net-link, .net-node, .dot-on,
  .mem-card.alive .status-on .dot { animation: none; }
  .split .w { opacity: 1 !important; }
  .mem-card, .mem-art img, .mem-scan, .slot-panel { transition: none; }
}
