/* ==========================================================================
   PROJECT LAZARUS — LANDING PAGE STYLES
   join.theprojectlazarus.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --green:        #9dff2b;
  --green-deep:   #5fc300;
  --green-soft:   rgba(157, 255, 43, 0.15);

  /* Gamemode accents */
  --gm-original:  #9dff2b;
  --gm-life:      #e6b84a;

  /* Backgrounds */
  --ink:          #0a0d0a;
  --ink-2:        #13181a;
  --ink-3:        #1b2124;
  --ink-4:        #2a3237;

  /* Text */
  --bone:         #e9e6dc;
  --bone-2:       #bdb8a8;
  --bone-3:       #8a8678;

  /* Borders */
  --hairline:     rgba(255, 255, 255, 0.08);
  --hairline-s:   rgba(255, 255, 255, 0.18);

  /* Danger */
  --red:          #ff2d2d;
  --gold:         #e6b84a;

  /* Shadows */
  --shadow-green:    0 0 0 1px rgba(157,255,43,0.5), 0 12px 36px rgba(157,255,43,0.22);
  --shadow-green-lg: 0 0 0 1px var(--green), 0 20px 60px rgba(157,255,43,0.35);
  --shadow-card:     0 12px 40px rgba(0,0,0,0.5);

  /* Typography */
  --font-display: 'Anton', 'Barlow Condensed', Impact, sans-serif;
  --font-hed:     'Barlow Condensed', Impact, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out:    cubic-bezier(.2, .8, .2, 1);
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    600ms;

  /* Layout */
  --wrap-max:    1280px;
}

/* --------------------------------------------------------------------------
   BASE RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

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

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

ul { list-style: none; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  z-index: 999;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-hed);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 20px;
}
.skip-link:focus { top: 0; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* Layout wrapper */
.wrap {
  width: min(var(--wrap-max), 92vw);
  margin: 0 auto;
  position: relative;
}

/* Typography helpers */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

.mono { font-family: var(--font-mono); }

/* --------------------------------------------------------------------------
   GRAIN / TEXTURE
   -------------------------------------------------------------------------- */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(180deg,
    rgba(10,13,10,0.92) 0%,
    rgba(10,13,10,0.6) 70%,
    rgba(10,13,10,0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nav__brand img { height: 42px; width: auto; }

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--bone-2);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--green);
  border-bottom-color: var(--green);
}

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

.nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast);
}

.nav__btn--primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 8px 24px rgba(157,255,43,0.15);
}
.nav__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-green-lg);
}

.nav__btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(255,255,255,0.22);
}
.nav__btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--bone);
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,13,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 80px;
}
.mobile-menu[aria-hidden="false"] { display: flex; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-menu li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  text-transform: uppercase;
  color: var(--bone);
  padding: 12px 24px;
  transition: color var(--dur-fast);
}
.mobile-menu li a:hover { color: var(--green); }

.mobile-menu__discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow-green);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}

.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--bone);
  border: 1px solid var(--hairline-s);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bone);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero-bank-heist.jpg') center / cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
  will-change: transform;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%),
    linear-gradient(180deg, rgba(10,13,10,0.55) 0%, rgba(10,13,10,0.2) 40%, rgba(10,13,10,0.95) 100%);
}

.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.02) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: min(var(--wrap-max), 92vw);
  padding: 140px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Eyebrow chip */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 13px;
  color: var(--green);
  padding: 8px 14px;
  border: 1px solid rgba(157,255,43,0.4);
  border-radius: 2px;
  background: rgba(157,255,43,0.06);
}

/* Pulse dot */
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(157,255,43,0.8); }
  100% { box-shadow: 0 0 0 14px rgba(157,255,43,0); }
}

/* Hero logo */
.hero__logo {
  width: 100%;
  max-width: 640px;
  margin: 22px 0 8px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* Tagline */
.hero__tag {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--bone);
  max-width: 560px;
  line-height: 1.3;
  border-left: 3px solid var(--green);
  padding-left: 16px;
  margin-top: 12px;
}
.hero__tag em {
  color: var(--green);
  font-style: normal;
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Live status panel */
.livepanel {
  justify-self: end;
  width: 340px;
  background: rgba(10,13,10,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(157,255,43,0.25);
  padding: 20px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.livepanel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 60%, transparent 60%);
}

.livepanel__head {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.livepanel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.livepanel__row:last-child { border-bottom: none; }

.livepanel__label {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--bone-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.livepanel__val {
  font-family: var(--font-hed);
  font-weight: 800;
  font-size: 20px;
  color: var(--bone);
}
.livepanel__val span { color: var(--green); }

.livepanel__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 10px 28px rgba(157,255,43,0.22);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
}
.livepanel__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-lg);
}
.livepanel__cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Status dots */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green { background: var(--green); }
.dot--gold  { background: var(--gold); }
.dot--red   { background: var(--red); }

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--bone-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--green), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   TICKER
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--green);
  color: var(--ink);
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  z-index: 5;
}

.ticker__track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  animation: marquee 60s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }

.ticker span {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.ticker span::after {
  content: "◆";
  color: rgba(0,0,0,0.3);
}

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

/* --------------------------------------------------------------------------
   SECTION SHARED
   -------------------------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.section-kicker {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-title em {
  color: var(--green);
  font-style: normal;
}

.section-sub {
  max-width: 420px;
  color: var(--bone-2);
  font-size: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   PILLARS
   -------------------------------------------------------------------------- */
.pillars {
  position: relative;
  padding: 120px 0 100px;
  background: var(--ink);
  overflow: hidden;
}
.pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(157,255,43,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar {
  position: relative;
  padding: 32px 28px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(157,255,43,0.35);
}
.pillar:hover::before { width: 100%; }

.pillar__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: rgba(157,255,43,0.15);
  margin-bottom: 12px;
}
.pillar__title {
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.pillar__body {
  color: var(--bone-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   GAMEMODES
   -------------------------------------------------------------------------- */
.gamemodes {
  padding: 40px 0 120px;
  position: relative;
}

.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.gm-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.1);
  isolation: isolate;
  transition: transform 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}

.gm-card--original:hover {
  transform: translateY(-6px);
  border-color: rgba(157,255,43,0.55);
  box-shadow: 0 24px 60px rgba(157,255,43,0.18), 0 0 0 1px rgba(157,255,43,0.25);
}
.gm-card--life:hover {
  transform: translateY(-6px);
  border-color: rgba(230,184,74,0.55);
  box-shadow: 0 24px 60px rgba(230,184,74,0.18), 0 0 0 1px rgba(230,184,74,0.25);
}

/* Corner bracket decorations via pseudo-elements */
.gm-card::before,
.gm-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  pointer-events: none;
}
.gm-card::before { top: 16px; left: 16px; }
.gm-card::after  { top: 16px; right: 16px; }

.gm-card--original::before {
  border-top: 2px solid var(--gm-original);
  border-left: 2px solid var(--gm-original);
}
.gm-card--original::after {
  border-top: 2px solid var(--gm-original);
  border-right: 2px solid var(--gm-original);
}
.gm-card--life::before {
  border-top: 2px solid var(--gm-life);
  border-left: 2px solid var(--gm-life);
}
.gm-card--life::after {
  border-top: 2px solid var(--gm-life);
  border-right: 2px solid var(--gm-life);
}

.gm-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.6s var(--ease-out);
}
.gm-card:hover .gm-card__bg { filter: saturate(1.15) brightness(1.05); }

.gm-card--original .gm-card__bg { background-image: url('assets/gm-original.jpg'); }
.gm-card--life .gm-card__bg     { background-image: url('assets/loadscreen-life.jpg'); }

.gm-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gm-card--original .gm-card__shade {
  background:
    linear-gradient(180deg, rgba(10,13,10,0.35) 0%, rgba(10,13,10,0.7) 40%, rgba(10,13,10,0.99) 85%),
    radial-gradient(ellipse at top right, rgba(157,255,43,0.15), transparent 60%);
}
.gm-card--life .gm-card__shade {
  background:
    linear-gradient(180deg, rgba(10,13,10,0.35) 0%, rgba(10,13,10,0.7) 40%, rgba(10,13,10,0.99) 85%),
    radial-gradient(ellipse at top right, rgba(230,184,74,0.2), transparent 60%);
}

.gm-card__content {
  position: relative;
  z-index: 2;
  padding: 36px 36px 32px;
  background: linear-gradient(180deg,
    rgba(10,13,10,0) 0%,
    rgba(10,13,10,0.55) 30%,
    rgba(10,13,10,0.88) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.gm-card__label {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.gm-card__label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}
.gm-card--original .gm-card__label { color: var(--gm-original); }
.gm-card--life .gm-card__label     { color: var(--gm-life); }

.gm-card__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.accent-o { color: var(--gm-original); }
.accent-l { color: var(--gm-life); }

.gm-card__mash {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 16px;
  color: var(--bone-2);
  margin-bottom: 22px;
}
.gm-card__mash strong { color: var(--bone); }
.gm-card__times { opacity: 0.6; }

.gm-card__blurb {
  font-size: 15px;
  line-height: 1.65;
  color: var(--bone);
  max-width: 540px;
  margin-bottom: 22px;
}

.gm-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 28px;
}

.gm-feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--bone);
}
.gm-feat::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 12h16M12 4l8 8-8 8' stroke='black' stroke-width='3' fill='none' stroke-linecap='square'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 12h16M12 4l8 8-8 8' stroke='black' stroke-width='3' fill='none' stroke-linecap='square'/></svg>") no-repeat center / contain;
}
.gm-card--original .gm-feat::before { color: var(--gm-original); }
.gm-card--life .gm-feat::before     { color: var(--gm-life); }

.gm-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.gm-card__stats {
  display: flex;
  gap: 20px;
}

.gm-stat__val {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}
.gm-card--original .gm-stat__val { color: var(--gm-original); }
.gm-card--life .gm-stat__val     { color: var(--gm-life); }

.gm-stat__lbl {
  font-family: var(--font-hed);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--bone-2);
  margin-top: 2px;
}

.gm-card__connect {
  padding: 12px 22px;
  border: 1px solid currentColor;
  color: var(--bone);
  font-family: var(--font-hed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  border-radius: 2px;
  background: rgba(0,0,0,0.35);
  transition: background var(--dur-base), color var(--dur-base), border-color var(--dur-base);
}
.gm-card--original .gm-card__connect:hover {
  background: var(--gm-original);
  color: #000;
  border-color: var(--gm-original);
}
.gm-card--life .gm-card__connect:hover {
  background: var(--gm-life);
  color: #000;
  border-color: var(--gm-life);
}

/* --------------------------------------------------------------------------
   STATS BAND
   -------------------------------------------------------------------------- */
.band {
  background: var(--ink-2);
  border-top: 1px solid rgba(157,255,43,0.2);
  border-bottom: 1px solid rgba(157,255,43,0.2);
  padding: 60px 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.band-stat__val {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  color: var(--green);
}
.band-stat__lbl {
  font-family: var(--font-hed);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--bone-2);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   COMMUNITY / CTA
   -------------------------------------------------------------------------- */
.community {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.community__bg {
  position: absolute;
  inset: 0;
  background: url('assets/community-hellman.jpg') center / cover no-repeat;
  filter: saturate(1.1) brightness(0.65);
}
.community__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,13,10,0.85) 0%,
    rgba(10,13,10,0.6) 50%,
    rgba(10,13,10,0.95) 100%
  );
}

.community__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.community__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 900px;
}
.community__title em {
  color: var(--green);
  font-style: normal;
}

.community__sub {
  font-size: 18px;
  color: var(--bone);
  max-width: 620px;
  line-height: 1.6;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 22px;
  padding: 22px 44px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 20px 60px rgba(157,255,43,0.3);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green-lg);
}

.community__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.community__meta-item {
  font-family: var(--font-hed);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--bone-2);
}
.community__meta-item strong {
  color: var(--green);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: #050605;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.foot {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.foot__brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
}
.foot__brand p {
  color: var(--bone-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.foot__col h4 {
  font-family: var(--font-hed);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 14px;
}

.foot__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot__col a {
  color: var(--bone-2);
  font-size: 14px;
  transition: color var(--dur-fast);
}
.foot__col a:hover { color: var(--green); }

.foot-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--bone-2);
  font-family: var(--font-hed);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grids */
.pillar-grid .reveal-item:nth-child(1) { transition-delay: 0ms; }
.pillar-grid .reveal-item:nth-child(2) { transition-delay: 80ms; }
.pillar-grid .reveal-item:nth-child(3) { transition-delay: 160ms; }
.pillar-grid .reveal-item:nth-child(4) { transition-delay: 240ms; }

.gm-grid .reveal-item:nth-child(1) { transition-delay: 0ms; }
.gm-grid .reveal-item:nth-child(2) { transition-delay: 100ms; }

.band-grid .reveal-item:nth-child(1) { transition-delay: 0ms; }
.band-grid .reveal-item:nth-child(2) { transition-delay: 80ms; }
.band-grid .reveal-item:nth-child(3) { transition-delay: 160ms; }
.band-grid .reveal-item:nth-child(4) { transition-delay: 240ms; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .nav__btn--ghost { display: none; }
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
    gap: 40px;
  }
  .livepanel {
    justify-self: start;
    width: 100%;
    max-width: 520px;
  }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .gm-grid { grid-template-columns: 1fr; }
  .gm-card { min-height: 620px; }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .foot {
    grid-template-columns: 1fr 1fr;
  }
  .foot__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .community__meta { flex-direction: column; align-items: center; gap: 12px; }
  .foot__brand { grid-column: auto; }
  .foot-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   STICKY MOBILE CTA
   Hidden on desktop. Appears on mobile after scrolling past the hero.
   -------------------------------------------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 14px 36px rgba(157,255,43,0.35);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  pointer-events: none;
}
.sticky-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 780px) {
  .sticky-cta { display: inline-flex; }
  /* Give mobile body a bit of bottom padding so footer isn't hidden behind CTA */
  body { padding-bottom: 80px; }
}

/* --------------------------------------------------------------------------
   MOBILE POLISH
   -------------------------------------------------------------------------- */
@media (max-width: 780px) {
  /* Hero: center everything on mobile for a cleaner vertical-video flow */
  .hero__inner {
    padding: 104px 0 60px;
    gap: 26px;
    text-align: center;
    justify-items: center;
  }
  .hero__eyebrow { margin: 0 auto; }
  .hero__logo {
    max-width: 340px;
    margin: 10px auto 4px;
  }
  .hero__tag {
    font-size: 17px;
    line-height: 1.4;
    padding: 10px 14px;
    border-left: none;
    border-top: 2px solid var(--green);
    max-width: 420px;
    margin: 10px auto 0;
    background: linear-gradient(180deg,
      rgba(10,13,10,0.3) 0%,
      rgba(10,13,10,0.65) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .hero__cta-row {
    margin-top: 18px;
    gap: 10px;
    justify-content: center;
  }

  /* Give the bottom third of the hero a darker stage for the text + panel
     without blurring the whole background image. */
  .hero__vignette {
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 100%),
      linear-gradient(180deg,
        rgba(10,13,10,0.45) 0%,
        rgba(10,13,10,0.25) 35%,
        rgba(10,13,10,0.92) 100%);
  }

  /* Scroll hint collides with the Discord CTA inside the livepanel on
     mobile — hide it so the CTA reads cleanly. */
  .hero__scroll { display: none; }

  /* Livepanel becomes a compact 2-column grid on mobile */
  .livepanel {
    width: 100%;
    padding: 16px;
  }
  .livepanel__head { font-size: 11px; }
  .livepanel__row { padding: 10px 0; }
  .livepanel__val { font-size: 17px; }

  /* Gamemode card tightening */
  .gm-card { min-height: 540px; }
  .gm-card__content { padding: 28px 24px 24px; }
  .gm-card__title { font-size: clamp(32px, 8vw, 42px); }
  .gm-card__blurb { font-size: 14px; }
  .gm-card__features { grid-template-columns: 1fr; gap: 8px; margin-bottom: 22px; }
  .gm-card__foot { gap: 14px; }
  .gm-stat__val { font-size: 24px; }

  /* Section spacing */
  .pillars { padding: 80px 0 70px; }
  .section-head { margin-bottom: 40px; }
  .band { padding: 44px 0; }
  .community { padding: 90px 0; }
  .discord-btn {
    font-size: 18px;
    padding: 18px 32px;
    width: 100%;
    justify-content: center;
  }

  /* Footer collapses to a single centered column on mobile */
  .foot {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    justify-items: center;
  }
  .foot__brand img { margin: 0 auto 16px; }
  .foot__brand p { margin: 0 auto; }
  .foot__col ul { align-items: center; }
  .foot-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  footer { padding: 48px 0 28px; }
}

@media (max-width: 600px) {
  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn { justify-content: center; width: 100%; }
  .ticker span { font-size: 13px; letter-spacing: 0.15em; }
}

/* Reduced motion
   Respect `prefers-reduced-motion` by disabling SPECIFIC decorative
   animations, not every animation globally. A blanket
   `animation-duration: 0.01ms !important` rule breaks looping animations
   like the ticker because it makes them loop 100,000× per second instead
   of stopping — so we handle each case individually below. */
@media (prefers-reduced-motion: reduce) {
  /* Pulsing dot + scroll-line stop animating */
  .pulse,
  .hero__scroll::after {
    animation: none;
  }
  /* Parallax shift on the hero background is disabled in JS already,
     but force it here too in case transform was left mid-tween */
  .hero__bg { transform: none !important; }
  /* Scroll-reveal items appear immediately instead of fading in */
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  /* Keep the ticker running — it's a slow informational crawl that
     does not cause motion sensitivity issues at 220s. */
}
