/* ==========================================================================
   PROJECT LAZARUS — LANDING PAGE  (join.theprojectlazarus.com)
   AAA-cinematic Discord ad funnel. Mobile-first. All ad tracking preserved.
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --green:      #9dff2b;
  --green-deep: #5fc300;
  --gold:       #e6b84a;
  --gold-deep:  #c9962f;

  --gm-original: var(--green);
  --gm-life:     var(--gold);

  --ink:   #0a0d0a;
  --ink-2: #0e120f;
  --ink-3: #141a16;

  --white:  #ffffff;
  --bone:   #f3f1ea;
  --bone-2: rgba(255,255,255,0.72);
  --bone-3: rgba(255,255,255,0.46);

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

  --font-display: 'Anton', Impact, sans-serif;
  --font-hed:     'Barlow Condensed', Impact, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(.2, .8, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;

  --wrap: 1200px;
}

/* --------------------------------------------------------------------------
   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;
  background: radial-gradient(ellipse at 50% 26%, #0b100d 0%, #080b09 48%, #060809 100%);
}

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

.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-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

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

/* Accent helpers + utilities */
.accent { color: var(--green); font-style: normal; }
.tnum { font-variant-numeric: tabular-nums; font-family: var(--font-hed); }
.ico { flex: 0 0 auto; }
.microcopy {
  color: var(--bone-3);
  font-family: var(--font-hed);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}

/* Section accent cascade (color-code discipline) */
.section--original { --accent: var(--gm-original); }
.section--life     { --accent: var(--gm-life); }

/* --------------------------------------------------------------------------
   GRAIN / TEXTURE
   -------------------------------------------------------------------------- */
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  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.32 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.32;
  mix-blend-mode: overlay;
}

/* Sitewide fixed atmosphere — one continuous ember-glow field so every
   transparent section floats on the same fog (matches main/og/life). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 46% at 50% -6%, rgba(157,255,43,0.11), transparent 60%),
    radial-gradient(ellipse 54% 44% at 90% 86%, rgba(255,45,45,0.05), transparent 64%),
    radial-gradient(ellipse 48% 40% at 5% 70%, rgba(230,184,74,0.08), transparent 66%);
}
/* Sitewide fixed grain + faint engineering grid */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='150' height='150'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' 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.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>"),
    linear-gradient(rgba(157,255,43,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,255,43,0.022) 1px, transparent 1px);
  background-size: 150px 150px, 62px 62px, 62px 62px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  line-height: 1;
  min-height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast),
              border-color var(--dur-fast),
              color var(--dur-fast);
}
.btn--lg { min-height: 58px; font-size: 17px; padding: 0 32px; }

/* Idle shimmer sweep on filled CTAs */
.btn--primary::after,
.btn--original::after,
.btn--life::after {
  content: "";
  position: absolute;
  top: 0; left: -60px;
  width: 46px; height: 100%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
  transform: skewX(-12deg);
  animation: btnShimmer 5s ease-in-out 2.5s infinite;
}

.btn--primary {
  background: var(--green);
  color: #06080a;
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 12px 34px rgba(157,255,43,0.22);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--green), 0 18px 48px rgba(157,255,43,0.36); }

.btn--original {
  background: var(--gm-original);
  color: #06080a;
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 12px 34px rgba(157,255,43,0.22);
}
.btn--original:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--gm-original), 0 18px 48px rgba(157,255,43,0.36); }

.btn--life {
  background: var(--gm-life);
  color: #16100a;
  box-shadow: 0 0 0 1px rgba(230,184,74,0.5), 0 12px 34px rgba(230,184,74,0.22);
}
.btn--life:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px var(--gm-life), 0 18px 48px rgba(230,184,74,0.36); }

.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--ghost:hover { background: rgba(157,255,43,0.10); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 34px;
  background: transparent;
  transition: background var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base),
              border-color var(--dur-base);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10,13,10,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(157,255,43,0.16);
}
.nav__brand { display: inline-flex; align-items: center; min-height: 44px; }
.nav__brand img { height: 42px; width: auto; display: block; }

.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;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 3px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.nav__btn--primary {
  background: var(--green);
  color: #06080a;
  box-shadow: 0 0 0 1px rgba(157,255,43,0.5), 0 8px 22px rgba(157,255,43,0.18);
}
.nav__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px var(--green), 0 14px 34px rgba(157,255,43,0.32);
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/join-hero.webp') center center / cover no-repeat;
  filter: saturate(1.05) contrast(1.03) brightness(0.86);
  transform: scale(1.02);
  transform-origin: 60% 40%;
  will-change: transform;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(8,10,8,0.78) 0%, rgba(8,10,8,0.30) 42%, transparent 70%),
    linear-gradient(to top, var(--ink) 0%, rgba(10,13,10,0.72) 26%, transparent 64%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: min(var(--wrap), 92vw);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: clamp(14px, 1.8vw, 20px);
  padding: 116px 0 92px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 12.5px;
  color: var(--green);
}

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

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(157,255,43,0.8); }
  100% { box-shadow: 0 0 0 13px rgba(157,255,43,0); }
}
@keyframes pulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(230,184,74,0.8); }
  100% { box-shadow: 0 0 0 13px rgba(230,184,74,0); }
}

.hero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(58px, 11.5vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
}
.hero__line { display: block; }
.hero__line--accent {
  color: var(--green);
  text-shadow: 0 0 38px rgba(157,255,43,0.42);
}
.hero__title .char { display: inline-block; }
.hero--staggered .char {
  opacity: 0;
  transform: translateY(0.42em);
  will-change: transform, opacity;
  animation: heroChar 0.5s var(--ease-out) forwards;
}

.hero__sub {
  font-family: var(--font-hed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--bone-2);
  max-width: 620px;
}

.conversion-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 640px;
}
.flow-step {
  position: relative;
  min-height: 84px;
  padding: 13px 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(157,255,43,0.20);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012)),
    rgba(8,10,8,0.66);
}
.flow-step::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.7;
}
.flow-step__num {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--font-hed);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.24em;
}
.flow-step strong {
  display: block;
  color: var(--white);
  font-family: var(--font-hed);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.flow-step small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.72);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85);
  font-size: 12px;
  line-height: 1.3;
}

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

.hero__microcopy {
  color: rgba(255,255,255,0.74);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85);
  font-family: var(--font-hed);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Wipe countdown pill (shared: hero + final CTA) */
.wipe-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(230,184,74,0.13);
  border: 1px solid rgba(230,184,74,0.40);
  font-family: var(--font-hed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  color: var(--bone-2);
  animation: wipePulse 2.6s ease-in-out infinite;
}
.wipe-pill .tnum { color: var(--gold); font-weight: 800; }

@keyframes wipePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,184,74,0); }
  50%      { box-shadow: 0 0 14px 3px rgba(230,184,74,0.28); }
}

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--bone-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 38px;
  background: linear-gradient(var(--green), transparent);
  animation: scrollLine 1.9s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   TICKER
   -------------------------------------------------------------------------- */
.ticker {
  background: #0e120f;
  color: var(--bone-2);
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(157,255,43,0.18);
  border-bottom: 1px solid rgba(157,255,43,0.18);
}
.ticker__track {
  display: flex;
  gap: 40px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 58s linear infinite;
}
.ticker span {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.ticker span::after { content: "›"; color: var(--green); font-weight: 800; }

/* --------------------------------------------------------------------------
   SHARED SECTION HEADINGS
   -------------------------------------------------------------------------- */
.section-kicker {
  font-family: var(--font-hed);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--green);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
}
.section-title em { color: var(--green); font-style: normal; }
.section-sub {
  max-width: 430px;
  color: var(--bone-2);
  font-size: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   WHY LAZARUS — poster band
   -------------------------------------------------------------------------- */
.why {
  position: relative;
  padding: clamp(72px, 10vw, 116px) 0;
  overflow: hidden;
  scroll-margin-top: 90px;
  border-top: 1px solid rgba(157,255,43,0.12);
  border-bottom: 1px solid rgba(157,255,43,0.10);
}
.why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/zombie.webp') center / cover no-repeat;
  filter: brightness(0.46) saturate(1.05) contrast(1.04);
}
/* Directional scrim: dark behind the headline/CTA (top + bottom), clear in
   the middle so the banner is actually visible; + green/gold corner glows. */
.why__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,6,0.84) 0%, rgba(6,8,6,0.34) 44%, rgba(6,8,6,0.9) 100%),
    radial-gradient(ellipse at 20% 14%, rgba(157,255,43,0.13), transparent 52%),
    radial-gradient(ellipse at 84% 88%, rgba(230,184,74,0.09), transparent 54%);
}
.why__inner { position: relative; z-index: 1; }
.why__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 78px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 40px;
}
.why__strips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.reason {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 3px solid var(--green);
  border-top: 1px solid rgba(157,255,43,0.12);
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, rgba(12,16,12,0.82), rgba(8,11,8,0.78));
  padding: 18px 20px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
/* accent bar draws across the top on hover (Lazarus card signature) */
.reason::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--green), rgba(157,255,43,0));
  box-shadow: 0 0 12px rgba(157,255,43,0.6);
  transition: width 0.5s var(--ease-out);
}
.reason:hover {
  transform: translateY(-6px);
  border-left-color: var(--green);
  border-top-color: rgba(157,255,43,0.4);
  background: linear-gradient(180deg, rgba(16,22,15,0.9), rgba(10,14,10,0.86));
  box-shadow: 0 26px 54px rgba(0,0,0,0.5), 0 0 32px rgba(157,255,43,0.18);
}
.reason:hover::before { width: 100%; }
.reason__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(157,255,43,0.32);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 34%, rgba(157,255,43,0.20), rgba(157,255,43,0.04));
  box-shadow: inset 0 0 12px rgba(157,255,43,0.10);
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
}
.reason:hover .reason__icon {
  transform: translateY(-2px) scale(1.12) rotate(-4deg);
  border-color: rgba(157,255,43,0.7);
  box-shadow: inset 0 0 16px rgba(157,255,43,0.22), 0 0 20px rgba(157,255,43,0.3);
}
.reason__icon svg { width: 24px; height: 24px; stroke: var(--green); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.reason__body { display: flex; flex-direction: column; gap: 5px; }
.reason__anchor { transition: text-shadow 0.4s; }
.reason:hover .reason__anchor { text-shadow: 0 0 18px rgba(157,255,43,0.45); }
.reason__anchor {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1;
  color: var(--green);
  letter-spacing: 0.01em;
}
.reason__text {
  color: rgba(255,255,255,0.74);
  font-size: 15.5px;
  line-height: 1.5;
}
.why__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FACTION SELECT — the centrepiece "pick your world"
   -------------------------------------------------------------------------- */
.faction {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0 0;
  scroll-margin-top: 90px;
  overflow: hidden; /* contain the panel slide-in transform (no h-scroll) */
  border-top: 1px solid rgba(157,255,43,0.10);
  background:
    radial-gradient(ellipse 62% 52% at 15% 6%, rgba(157,255,43,0.10), transparent 52%),
    radial-gradient(ellipse 62% 52% at 85% 8%, rgba(230,184,74,0.10), transparent 52%);
}

/* Per-section engineered hatch texture (over the tint, under the content) */
.showcase::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(157,255,43,0.04) 0 1px, transparent 1px 10px);
  opacity: 0.8;
}
.gm-features--life::before { background-image: repeating-linear-gradient(135deg, rgba(230,184,74,0.045) 0 1px, transparent 1px 10px); }
.faction::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 10px);
  opacity: 0.8;
}
.faction__head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.faction__head .section-kicker { justify-content: center; }
.faction__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--white);
}

.faction__split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.faction__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(86vh, 820px);
  display: flex;
  align-items: flex-end;
  scroll-margin-top: 90px;
}
.faction__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.03);
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}
.faction__panel:hover .faction__bg { transform: scale(1.08); filter: saturate(1.12) brightness(1.05); }
.section--original .faction__bg { background-image: url('assets/gm-original-card.webp'); }
.section--life     .faction__bg { background-image: url('assets/gm-life-card.webp'); }

.faction__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.section--original .faction__tint { background: rgba(157,255,43,0.16); }
.section--life     .faction__tint { background: rgba(230,184,74,0.18); }

.faction__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--ink) 3%, rgba(10,13,10,0.62) 40%, rgba(10,13,10,0.08) 100%);
}

.faction__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 3vw, 46px);
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, transparent 0%, rgba(10,13,10,0.40) 60%, rgba(10,13,10,0.78) 100%);
}
.faction__content .section-kicker { color: var(--accent); }
.faction__content .section-kicker::before { background: var(--accent); }

.faction__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 18px;
}
.faction__name span { display: block; }

.faction__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.faction__features li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font-hed);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: rgba(255,255,255,0.88);
}
.faction__features li::before {
  content: "›";
  position: absolute;
  left: 2px; top: -1px;
  color: var(--accent);
  font-weight: 800;
  font-size: 17px;
}

.faction__stats {
  display: flex;
  gap: 26px;
  margin-bottom: 24px;
}
.fstat { display: flex; flex-direction: column; gap: 2px; }
.fstat__val {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
}
.fstat__lbl {
  font-family: var(--font-hed);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--bone-2);
}
.faction__content .btn { width: max-content; max-width: 100%; }
.faction__content .microcopy { display: block; margin-top: 12px; }

/* "Best for…" positioning eyebrow */
.faction__bestfor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 14px;
}
.faction__bestfor::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* HUD corner brackets (the Lazarus signature) */
.faction__panel::before,
.faction__panel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 18px;
  width: 30px; height: 30px;
  pointer-events: none;
}
.faction__panel::before { left: 18px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.faction__panel::after  { right: 18px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }

/* Animated divider scan-line */
.faction__scanline {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  z-index: 3;
  width: 2px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  background: linear-gradient(to bottom, var(--green) 0%, var(--gold) 100%);
  box-shadow: 0 0 12px rgba(157,255,43,0.45);
}

/* Entrance (panels slide in, then the line draws) */
.faction__split .faction__panel {
  opacity: 0;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.faction__split .section--original { transform: translateX(-26px); }
.faction__split .section--life     { transform: translateX(26px); }
.faction__split.is-active .faction__panel { opacity: 1; transform: none; }
.faction__split.is-active .faction__scanline {
  transform: translateX(-50%) scaleY(1);
  transition: transform 0.8s ease-in-out 0.3s;
}

/* --------------------------------------------------------------------------
   FEATURE REELS  (Original / Life) — HUD intel tiles
   -------------------------------------------------------------------------- */
.showcase {
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0;
  scroll-margin-top: 90px;
}
.gm-features--original {
  background: linear-gradient(180deg, rgba(157,255,43,0.035), transparent 62%);
  border-top: 1px solid rgba(157,255,43,0.14);
}
.gm-features--life {
  background: linear-gradient(180deg, rgba(230,184,74,0.06), transparent 62%);
  border-top: 1px solid rgba(230,184,74,0.16);
}
/* Life reel inherits the gold accent (was leaking acid-green) */
.gm-features--life .section-title em { color: var(--gm-life); }
.gm-features--life .section-kicker { color: var(--gm-life); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
  counter-reset: feat;
}
.feature-tile {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  isolation: isolate;
  counter-increment: feat;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base),
              box-shadow var(--dur-base);
}
.gm-features--original .feature-tile { --feat-accent: #9dff2b; --feat-glow: rgba(157,255,43,0.30); }
.gm-features--life     .feature-tile { --feat-accent: #e6b84a; --feat-glow: rgba(230,184,74,0.32); }

.feature-tile:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--feat-accent) 45%, transparent);
  box-shadow: 0 22px 50px rgba(0,0,0,0.5), 0 0 0 1px color-mix(in srgb, var(--feat-accent) 20%, transparent);
}
.feature-tile__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.feature-tile:hover .feature-tile__bg { transform: scale(1.1); filter: saturate(1.12) brightness(1.04); }

.feature-tile__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 130% 56% at 50% 122%, var(--feat-glow, rgba(157,255,43,0.3)), transparent 68%),
    linear-gradient(180deg, rgba(8,11,8,0.04) 0%, rgba(8,11,8,0.46) 46%, rgba(6,9,6,0.94) 100%);
}
.feature-tile__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,0.16) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.feature-tile:hover .feature-tile__shade::after { transform: translateX(120%); }

/* HUD corner bracket + numeric index */
.feature-tile::before {
  content: "";
  position: absolute;
  top: 15px; left: 15px;
  z-index: 3;
  width: 22px; height: 22px;
  border-top: 2px solid var(--feat-accent);
  border-left: 2px solid var(--feat-accent);
  opacity: 0.85;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}
.feature-tile:hover::before { width: 30px; height: 30px; }
.feature-tile::after {
  content: counter(feat, decimal-leading-zero);
  position: absolute;
  top: 12px; right: 18px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--feat-accent);
  opacity: 0.55;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}
.feature-tile:hover::after { opacity: 0.95; }

.feature-tile__content { position: relative; z-index: 2; padding: 26px 24px 24px; }
.feature-tile__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.feature-tile__title::after {
  content: "";
  display: block;
  width: 34px; height: 3px;
  margin: 10px 0 12px;
  background: var(--feat-accent);
  box-shadow: 0 0 10px var(--feat-glow, rgba(157,255,43,0.6));
  transition: width 0.35s var(--ease-out);
}
.feature-tile:hover .feature-tile__title::after { width: 72px; }
.feature-tile__body { color: var(--bone); font-size: 14.5px; line-height: 1.55; max-width: 42ch; }

.showcase__cta { display: flex; justify-content: center; margin-top: 36px; }

/* --------------------------------------------------------------------------
   SOCIAL PROOF
   -------------------------------------------------------------------------- */
.proof {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0;
  overflow: hidden;
  scroll-margin-top: 90px;
  border-top: 1px solid rgba(157,255,43,0.10);
  border-bottom: 1px solid rgba(157,255,43,0.10);
}
.proof__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/community-banner.webp') center / cover no-repeat;
  filter: brightness(0.5) saturate(1.08) contrast(1.03);
}
.proof__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(10,13,10,0.58) 50%, var(--ink) 100%),
    radial-gradient(ellipse at 22% 26%, rgba(157,255,43,0.10), transparent 52%),
    radial-gradient(ellipse at 80% 78%, rgba(230,184,74,0.10), transparent 52%);
}
.proof__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(34px, 5vw, 50px);
  text-align: center;
}
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
}
.proof__val {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
  color: var(--green);
}
.proof__lbl {
  margin-top: 8px;
  font-family: var(--font-hed);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--bone-2);
}
/* Colour stats by the world they describe (gold gets equal footing) */
.proof__stat--original .proof__val { color: var(--gm-original); }
.proof__stat--life .proof__val { color: var(--gm-life); }
.proof__stat--neutral .proof__val { color: var(--bone); }
.proof__quote {
  font-family: var(--font-hed);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.4;
  color: var(--white);
  max-width: 640px;
}
.proof__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--bone-3);
}

/* --------------------------------------------------------------------------
   FINAL CTA — the close
   -------------------------------------------------------------------------- */
.close {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(157,255,43,0.12);
}
/* Cinematic heist backdrop with the green/gold glow kept on top */
.close__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero-bank-heist.jpg') center / cover no-repeat;
  filter: brightness(0.5) saturate(1.06) contrast(1.04);
}
.close__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,6,0.84) 0%, rgba(5,7,6,0.56) 44%, rgba(5,7,6,0.84) 100%),
    radial-gradient(ellipse at 15% 12%, rgba(157,255,43,0.22), transparent 48%),
    radial-gradient(ellipse at 85% 88%, rgba(230,184,74,0.22), transparent 48%);
}
.close__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.5vw, 26px);
  text-align: center;
}
.close .section-kicker { text-shadow: 0 1px 10px rgba(0,0,0,0.8); }
.close__proof {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vw, 42px);
  padding-bottom: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(6px, 1.5vw, 16px);
  border-bottom: 1px solid rgba(157,255,43,0.16);
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}
.close__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 8.5vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0,0,0,0.65);
}
.close__now {
  position: relative;
  display: inline-block;
  color: var(--green);
  animation: nowPulse 2s ease-in-out infinite;
}
.close__sub { color: var(--bone); font-size: 18px; line-height: 1.5; max-width: 540px; text-shadow: 0 1px 12px rgba(0,0,0,0.85); }
.close__primary { width: max-content; max-width: 100%; }
.close__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.close__ctas .btn { min-width: 190px; }
.close__friction {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--font-hed);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--bone-2);
  text-shadow: 0 1px 10px rgba(0,0,0,0.85);
}

/* --------------------------------------------------------------------------
   FOOTER — legal minimum
   -------------------------------------------------------------------------- */
footer {
  background: #060806;
  padding: 34px 0 30px;
  border-top: 1px solid var(--hairline);
}
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.foot__logo { height: 34px; width: auto; opacity: 0.85; }
.foot__discord {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 8px;
  font-family: var(--font-hed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--green);
  transition: color var(--dur-fast);
}
.foot__discord:hover { color: var(--white); }
.foot-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-hed);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--bone-3);
}

/* --------------------------------------------------------------------------
   STICKY MOBILE CTA
   -------------------------------------------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  background: var(--green);
  color: #06080a;
  font-family: var(--font-hed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  border-top: 1px solid rgba(157,255,43,0.2);
  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.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta__main { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; }
.sticky-cta__wipe { font-size: 11px; letter-spacing: 0.06em; opacity: 0.82; white-space: nowrap; }
.sticky-cta__wipe .tnum { font-weight: 800; }

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

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

.feature-grid .reveal-item:nth-child(1) { transition-delay: 0ms; }
.feature-grid .reveal-item:nth-child(2) { transition-delay: 70ms; }
.feature-grid .reveal-item:nth-child(3) { transition-delay: 140ms; }
.feature-grid .reveal-item:nth-child(4) { transition-delay: 210ms; }

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

/* --------------------------------------------------------------------------
   KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.09) translate3d(-1%, -1.4%, 0); }
}
@keyframes heroChar {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes btnShimmer {
  0%   { left: -60px; }
  18%  { left: calc(100% + 60px); }
  100% { left: calc(100% + 60px); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollLine {
  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; }
}
@keyframes nowPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(157,255,43,0); }
  50%      { text-shadow: 0 0 26px rgba(157,255,43,0.6); }
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .faction__split { grid-template-columns: 1fr; }
  .faction__panel { min-height: 74vh; }
  .faction__scanline { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .proof__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }
}

@media (max-width: 760px) {
  .nav { padding: 12px 16px; }
  .nav__brand img { height: 32px; }
  .nav__btn { font-size: 12px; letter-spacing: 0.06em; padding: 10px 14px; }

  /* Hero: center + tighten so the CTA stays above the fold */
  .hero__inner {
    align-items: center;
    text-align: center;
    padding: 100px 0 64px;
    gap: 14px;
  }
  .hero__bg { background-position: 64% center; transform-origin: 64% 42%; }
  .hero__title { font-size: clamp(42px, 13vw, 62px); }
  .hero__sub { font-size: 16px; }
  .conversion-flow { grid-template-columns: 1fr; max-width: 420px; gap: 8px; order: 1; }
  .flow-step { min-height: auto; }
  .hero__cta-row { width: 100%; justify-content: center; }
  .hero__cta-row .btn { width: 100%; max-width: 400px; }
  .hero__scroll { display: none; }

  .why__strips { grid-template-columns: 1fr; }
  .why__headline { margin-bottom: 28px; }

  .faction__content .btn { width: 100%; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-tile { min-height: 260px; }

  .close__ctas { flex-direction: column; width: 100%; }
  .close__ctas .btn { width: 100%; }
  .close__primary { width: 100%; }

  .foot { flex-direction: column; gap: 14px; text-align: center; }
  .foot-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(38px, 13.5vw, 54px); }
  .proof__stats { gap: 22px 18px; }
}

/* --------------------------------------------------------------------------
   REDUCED MOTION
   Disable SPECIFIC decorative animations (never a blanket reset, which would
   make looping animations warp-speed instead of stopping).
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__bg { animation: none; transform: scale(1.02); }
  .pulse, .pulse--gold { animation: none; }
  .wipe-pill { animation: none; }
  .hero__scroll::after { animation: none; }
  .close__now { animation: none; }
  .ticker__track { animation-play-state: paused; }
  .btn--primary::after, .btn--original::after, .btn--life::after { display: none; }
  .feature-tile, .feature-tile__bg, .feature-tile__shade::after,
  .feature-tile__title::after, .feature-tile::before, .feature-tile::after { transition: none; }
  .feature-tile:hover { transform: none; }
  .feature-tile:hover .feature-tile__bg { transform: scale(1.03); }

  /* Headline shows immediately, no per-char stagger */
  .hero--staggered .char { opacity: 1; transform: none; animation: none; }

  /* Faction panels + scan-line settle to final state instantly */
  .faction__split .faction__panel { opacity: 1; transform: none; transition: none; }
  .faction__scanline { transform: translateX(-50%) scaleY(1); opacity: 0.6; }
  .faction__split.is-active .faction__scanline { transition: none; }

  .reveal-item { opacity: 1; transform: none; transition: none; }
}
