/* ============================================================
   VARIABLES
============================================================ */
:root {
  --o:   #FF6B00;
  --od:  #cc5200;
  --ol:  #ff8f30;
  --oa:  rgba(255, 107, 0, .10);
  --oab: rgba(255, 107, 0, .25);

  --bg:  #06080a;
  --s1:  #0b0f14;
  --s2:  #111820;
  --s3:  #18222c;

  --w:   #eef2f7;
  --wm:  rgba(238, 242, 247, .55);
  --wd:  rgba(238, 242, 247, .28);

  --fh:  'Barlow Condensed', sans-serif;
  --fb:  'Inter', sans-serif;
  --fm:  'JetBrains Mono', monospace;

  --nav: 58px;
  --t:   .2s ease;
  --tl:  .35s cubic-bezier(.77, 0, .175, 1);
  --r:   4px;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--fb);
  background: var(--bg);
  color: var(--w);
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }

::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--o); border-radius: 2px; }

/* ============================================================
   NAVBAR
============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(6, 8, 10, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo img {
  height: 30px;
  object-fit: contain;
}
.logo img.hidden { display: none; }
.logo-txt {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 5px;
  display: none;
}
.logo-txt em { color: var(--o); font-style: normal; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 2px;
}
.nav-btn {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--wm);
  padding: 6px 12px;
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
  position: relative;
}
.nav-btn:hover  { color: var(--w); background: rgba(255,255,255,.05); }
.nav-btn.active { color: var(--o); background: var(--oa); }
.nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 12px; right: 12px;
  height: 2px;
  background: var(--o);
  border-radius: 1px;
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 8px; }

.login-wrap { position: relative; }
.btn-login {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 107, 0, .42);
  border: 1px solid rgba(255, 107, 0, .16);
  padding: 6px 14px;
  border-radius: var(--r);
  cursor: not-allowed;
  transition: all var(--t);
}
.btn-login:hover { color: rgba(255, 107, 0, .65); border-color: var(--oab); }
.soon-badge {
  position: absolute;
  top: -8px; right: 2px;
  background: var(--o);
  color: #000;
  font-family: var(--fm);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 1px 6px;
  border-radius: 2px;
  pointer-events: none;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--o);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--r);
  transition: background var(--t), transform var(--t);
}
.btn-discord:hover { background: var(--ol); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--w);
  transition: all .28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed;
  top: var(--nav); left: 0; right: 0;
  background: rgba(6, 8, 10, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--oab);
  z-index: 99;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-105%);
  transition: transform var(--tl), visibility 0s var(--tl);
  padding: 4px 0;
}
.mob-menu.open {
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition: transform var(--tl), visibility 0s 0s;
}
.mob-menu button,
.mob-menu a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wm);
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: color var(--t), background var(--t);
}
.mob-menu button:hover,
.mob-menu a:hover { color: var(--o); background: var(--oa); }
.mob-menu .mob-dc { color: var(--o); }

/* ============================================================
   MAIN / SECTIONS
============================================================ */
#main {
  position: fixed;
  top: var(--nav); left: 0; right: 0; bottom: 0;
}

.section {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--o) transparent;
}
.section.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--o);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--ol);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, .28);
}
.btn-primary.small { padding: 9px 18px; font-size: 10px; margin-top: 14px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--w);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
}
.btn-secondary:hover { border-color: var(--o); color: var(--o); }

.btn-disabled {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.02);
  color: rgba(255, 107, 0, .38);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid rgba(255, 107, 0, .1);
  border-radius: var(--r);
  cursor: not-allowed;
  transition: all var(--t);
}
.btn-disabled:hover { border-color: var(--oab); color: rgba(255, 107, 0, .6); }
.btn-disabled .soon-tag {
  position: absolute;
  top: -9px; right: 4px;
  background: var(--o); color: #000;
  font-family: var(--fm); font-size: 7px; font-weight: 700;
  letter-spacing: .8px; padding: 1px 6px; border-radius: 2px;
}
.btn-disabled .tooltip {
  position: absolute;
  bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--s2); border: 1px solid var(--oab);
  color: var(--o); font-family: var(--fm); font-size: 9px;
  letter-spacing: 1px; padding: 5px 12px; white-space: nowrap;
  border-radius: var(--r); opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.btn-disabled:hover .tooltip { opacity: 1; }

/* ============================================================
   PAGE LAYOUT (shared between non-hero sections)
============================================================ */
.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 32px 60px;
}

.page-header { margin-bottom: 40px; }
.page-label {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--o);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.page-title {
  font-family: var(--fh);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: 4px;
  line-height: .95;
  margin-bottom: 14px;
}
.page-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--wm);
  line-height: 1.8;
  max-width: 580px;
}

/* ============================================================
   HOME / HERO
============================================================ */
#home {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background */
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center 30% / cover no-repeat;
  filter: brightness(.14) saturate(.4);
  animation: hzoom 28s ease-in-out infinite alternate;
}
@keyframes hzoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,10,0) 0%, rgba(6,8,10,.2) 50%, rgba(6,8,10,1) 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 110%, rgba(255,107,0,.13), transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,.022) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridmove 45s linear infinite;
}
@keyframes gridmove { to { background-position: 80px 80px; } }

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 840px;
}
.hero-eyebrow {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--o);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeUp .7s ease .4s both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
}
.hero-eyebrow::before { background: linear-gradient(90deg, transparent, var(--o)); }
.hero-eyebrow::after  { background: linear-gradient(90deg, var(--o), transparent); }
.hero-title {
  font-family: var(--fh);
  font-size: clamp(80px, 13vw, 180px);
  font-weight: 800;
  letter-spacing: 14px;
  line-height: .9;
  text-shadow: 0 0 60px rgba(255,107,0,.18);
  margin-bottom: 16px;
  animation: fadeUp .9s ease .6s both;
}
.hero-sub {
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--wm);
  letter-spacing: 2px;
  margin-bottom: 16px;
  animation: fadeUp .9s ease .75s both;
}
.hero-sub em { color: var(--ol); font-style: normal; font-weight: 500; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--oab);
  background: var(--oa);
  color: var(--o);
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 3px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 40px;
  animation: fadeUp .9s ease .9s both;
}
.pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--o);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s ease 1.05s both;
}

/* Hero stats */
.hero-stats {
  position: absolute;
  right: 44px; bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeLeft .9s ease 1.4s both;
}
.hstat { text-align: right; }
.hstat-num {
  display: block;
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 700;
  color: var(--o);
  line-height: 1;
  letter-spacing: 1px;
}
.hstat-lbl {
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--wd);
}

/* Animations */
@keyframes fadeUp   { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform: translateX(14px); } to { opacity:1; transform: translateX(0); } }

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}
.about-card {
  background: var(--s1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.about-card:hover { border-color: var(--oab); transform: translateY(-2px); }
.about-card img {
  width: 100%; height: 120px;
  object-fit: cover;
  filter: brightness(.5) saturate(.5);
  transition: filter var(--t);
}
.about-card:hover img { filter: brightness(.72) saturate(.8); }
.about-card-body { padding: 14px 16px; }
.card-tag {
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--o);
  display: block;
  margin-bottom: 5px;
}
.about-card-body h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.about-card-body p  { font-size: 12px; color: var(--wm); line-height: 1.55; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.15);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-item {
  background: var(--s1);
  padding: 28px 16px;
  text-align: center;
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 28px; height: 2px;
  background: var(--o);
}
.stat-num {
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.stat-num em { color: var(--o); font-style: normal; }
.stat-lbl {
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--wd);
  margin-top: 5px;
  display: block;
}

/* ============================================================
   FEATURES
============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.feat-item {
  background: var(--s1);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.feat-item:hover { border-color: var(--oab); transform: translateY(-2px); }
.feat-item img {
  width: 100%; height: 90px;
  object-fit: cover;
  filter: brightness(.45) saturate(.4);
  transition: filter var(--t);
}
.feat-item:hover img { filter: brightness(.7) saturate(.8); }
.feat-body { padding: 12px 14px; }
.feat-body h3 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.feat-body p  { font-size: 11px; color: var(--wm); line-height: 1.45; }

/* ============================================================
   FACTIONS
============================================================ */
.factions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.faction-card {
  position: relative;
  aspect-ratio: 3/5;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color var(--t);
}
.faction-card:hover { border-color: var(--oab); }
.faction-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.22) saturate(.4);
  transition: transform .5s, filter .4s;
}
.faction-card:hover img { transform: scale(1.06); filter: brightness(.38) saturate(.75); }
.faction-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.92) 100%);
}
.faction-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--o);
  z-index: 2;
}
.faction-info {
  position: absolute; inset: 0;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
.faction-type {
  font-family: var(--fm);
  font-size: 7px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.faction-type.legal   { color: #4caf90; }
.faction-type.illegal { color: var(--o); }
.faction-info h3 {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.faction-info p {
  font-size: 10px;
  color: rgba(255,255,255,.42);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s;
}
.faction-card:hover .faction-info p { max-height: 60px; }

/* ============================================================
   HOW TO
============================================================ */
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }
.step::after {
  content: '';
  position: absolute;
  left: 17px; top: 37px; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,107,0,.3), transparent);
}
.step:last-child::after { display: none; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--o);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 14px; font-weight: 700; color: var(--o);
  flex-shrink: 0; z-index: 1;
  transition: background var(--t), color var(--t);
}
.step:hover .step-num { background: var(--o); color: #000; }
.step-body { padding-top: 6px; }
.step-body h3 {
  font-family: var(--fh);
  font-size: 20px; font-weight: 700; letter-spacing: 2px; margin-bottom: 4px;
}
.step-body p { font-size: 13px; color: var(--wm); line-height: 1.7; }
.step-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--o);
  transition: opacity var(--t);
}
.step-link:hover { opacity: .7; }

.steps-img { position: sticky; top: 0; }
.steps-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.6) saturate(.65);
  border-radius: var(--r);
}
.steps-img-label {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--wd);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   FAQ
============================================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 3px; }
.faq-item {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--oab); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--w);
  background: rgba(255,255,255,.025);
  text-align: left;
  transition: color var(--t);
}
.faq-item.open .faq-q { color: var(--o); }
.faq-icon {
  width: 16px; height: 16px;
  position: relative; flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--o);
  border-radius: 1px;
}
.faq-icon::before { width: 1.5px; height: 10px; top: 3px; left: 7px; transition: transform .25s, opacity .25s; }
.faq-icon::after  { width: 10px; height: 1.5px; top: 7px; left: 3px; }
.faq-item.open .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 10px 16px 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--wm);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,.05);
}
.faq-a strong { color: rgba(255,255,255,.8); }

.faq-cta {
  background: var(--s2);
  border: 1px solid var(--oab);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: center;
  position: sticky;
  top: 0;
}
.faq-cta h3 {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.faq-cta p {
  font-size: 13px;
  font-weight: 300;
  color: var(--wm);
  line-height: 1.8;
  margin-bottom: 22px;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gal-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.58);
  transition: transform .4s, filter .35s;
}
.gal-item:hover img { transform: scale(1.07); filter: brightness(.85); }
.gal-label {
  position: absolute;
  bottom: 7px; left: 7px;
  background: rgba(0,0,0,.82);
  border-left: 2px solid var(--o);
  color: rgba(255,255,255,.65);
  font-family: var(--fm);
  font-size: 8px;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 0 2px 2px 0;
  transition: color var(--t);
}
.gal-item:hover .gal-label { color: var(--w); }

/* ============================================================
   LIGHTBOX
============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.07);
}
#lightbox p {
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--wm);
  text-transform: uppercase;
}
.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  color: var(--w);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.lb-close:hover { border-color: var(--o); color: var(--o); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .nav-links, .login-wrap { display: none; }
  .hamburger { display: flex; }
  .about-grid      { grid-template-columns: repeat(2, 1fr); }
  .feat-grid       { grid-template-columns: repeat(3, 1fr); }
  .factions-grid   { grid-template-columns: repeat(3, 1fr); }
  .steps-wrap      { grid-template-columns: 1fr; }
  .steps-img       { display: none; }
  .faq-wrap        { grid-template-columns: 1fr; }
  .faq-cta         { position: static; }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-row       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-wrap       { padding: 32px 16px 48px; }
  .about-grid      { grid-template-columns: 1fr; }
  .feat-grid       { grid-template-columns: repeat(2, 1fr); }
  .factions-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero-stats      { display: none; }
  #nav             { padding: 0 14px; }
  .btn-discord     { display: none; }
  .hero-actions    { flex-direction: column; align-items: center; }
}
