/* ============================================================
   DESIGN SYSTEM — CSS VARIABLES
   ============================================================ */
:root {
  --bg:           #0a0a0f;
  --bg-mid:       #0f0e1a;
  --bg-section:   #0d0c18;
  --bg-card:      rgba(255, 255, 255, 0.03);
  --bg-card-hover:rgba(255, 255, 255, 0.06);

  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dim:     #8a6f30;
  --gold-glow:    rgba(201, 168, 76, 0.15);
  --gold-border:  rgba(201, 168, 76, 0.25);

  --purple:       #6b21a8;
  --purple-light: #9333ea;
  --purple-glow:  rgba(107, 33, 168, 0.3);

  --discord:      #5865f2;
  --discord-hover:#4752c4;

  --text:         #e8e0d0;
  --text-muted:   #8a8070;
  --text-dim:     #5a5248;
  --border:       rgba(201, 168, 76, 0.2);

  --nav-height:   64px;
  --section-pad:  100px;
  --radius:       8px;

  --font-heading: 'Cinzel', serif;
  --font-body:    'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-icon { width: 32px; height: 32px; border-radius: 50%; }

.nav-wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.nav-link--discord {
  color: var(--text);
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
}

.nav-link--discord:hover {
  background: rgba(88, 101, 242, 0.3);
  color: #fff;
  border-color: var(--discord);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

#intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99;
  pointer-events: none;
  animation: introFade 1s ease forwards 0.2s;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107, 33, 168, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(107, 33, 168, 0.12) 0%, transparent 60%);
  animation: bgPulse 12s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px 80px;
  max-width: 640px;
  width: 100%;
}

.crest {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px var(--gold-glow), 0 0 40px rgba(201, 168, 76, 0.08);
  overflow: hidden;
  animation: floatCrest 4s ease-in-out infinite;
}

.crest img { width: 100%; height: 100%; object-fit: cover; }

.title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  letter-spacing: 0.15em;
  color: var(--gold);
  text-shadow:
    0 0 20px rgba(201, 168, 76, 0.6),
    0 0 40px rgba(201, 168, 76, 0.3),
    0 0 80px rgba(201, 168, 76, 0.15);
  animation: titleSlam 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s, titleGlow 3s ease-in-out infinite alternate 1.3s;
  opacity: 0;
  transform: scale(0.85);
}

.title-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: revealFade 0.5s ease forwards 1.1s;
  opacity: 0;
}

.tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: revealUp 0.5s ease forwards 1.2s;
  opacity: 0;
  transform: translateY(16px);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: revealUp 0.5s ease forwards 1.7s;
  opacity: 0;
  transform: translateY(16px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: revealFade 0.5s ease forwards 2.2s;
}

.scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold-dim);
  border-bottom: 2px solid var(--gold-dim);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ============================================================
   SERVER IP BADGE
   ============================================================ */
.ip-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 24px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.05);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  animation: revealUp 0.5s ease forwards 1.4s;
  opacity: 0;
  transform: translateY(16px);
}

.ip-badge:hover, .ip-badge:focus {
  border-color: var(--gold);
  background: var(--gold-glow);
  box-shadow: 0 0 16px var(--gold-glow);
  outline: none;
}

.ip-badge--inline {
  animation: none;
  opacity: 1;
  transform: none;
  width: 100%;
}

.ip-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ip-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.ip-copy-hint {
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--gold-glow);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-primary:active { transform: scale(0.98); }

.btn-full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-discord:hover {
  background: rgba(88, 101, 242, 0.35);
  border-color: var(--discord);
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.2);
}

.btn-discord--large {
  padding: 16px 36px;
  font-size: 1rem;
}

.discord-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section {
  position: relative;
  padding: var(--section-pad) 24px;
  z-index: 2;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 680px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
}

.section-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto 20px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section--about { background: var(--bg-section); }

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

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background 0.2s, border-color 0.2s;
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dim);
}

.about-card__icon { font-size: 2rem; margin-bottom: 16px; }

.about-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.connect-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s, border-color 0.2s;
}

.connect-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.connect-link--discord { color: #fff; border-color: rgba(88, 101, 242, 0.3); }
.connect-link--discord:hover { background: rgba(88, 101, 242, 0.15); border-color: var(--discord); }

.connect-link--youtube { color: var(--text-muted); }
.connect-link--youtube:hover { color: #ff4444; border-color: #ff4444; }

.connect-link--tbd { opacity: 0.45; cursor: default; pointer-events: none; }

.tbd-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--border);
  color: var(--text-muted);
}

/* ============================================================
   SERVERS SECTION
   ============================================================ */
.section--servers { background: var(--bg); }

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

.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.server-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.server-card--featured {
  border-color: rgba(147, 51, 234, 0.3);
  background: rgba(107, 33, 168, 0.05);
}

.server-card--featured:hover {
  border-color: var(--purple-light);
  background: rgba(107, 33, 168, 0.08);
  box-shadow: 0 0 30px rgba(107, 33, 168, 0.12);
}

.server-card__step {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.server-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.server-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.server-card--featured .server-card__name { color: var(--purple-light); }

.server-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.server-badge {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.server-badge--active   { color: #a8d8a8; background: rgba(168, 216, 168, 0.12); border: 1px solid rgba(168, 216, 168, 0.25); }
.server-badge--testing  { color: var(--gold); background: rgba(201, 168, 76, 0.1); border: 1px solid var(--gold-border); }
.server-badge--progress { color: var(--purple-light); background: var(--purple-glow); border: 1px solid rgba(147, 51, 234, 0.3); }

/* ============================================================
   STORE SECTION
   ============================================================ */
.section--store { background: var(--bg); }

.ranks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.rank-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.rank-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.rank-card--featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
}

.rank-card--featured:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.18);
}

.rank-card__badge-featured {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
}

.rank-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rank-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.rank-badge--explorer    { color: #7ec8e3; background: rgba(126, 200, 227, 0.1); }
.rank-badge--explorerplus{ color: #a8d8a8; background: rgba(168, 216, 168, 0.1); }
.rank-badge--vanguard    { color: #f4a261; background: rgba(244, 162, 97,  0.1); }
.rank-badge--sentinel    { color: #e76f51; background: rgba(231, 111, 81,  0.1); }
.rank-badge--luminary    { color: var(--purple-light); background: var(--purple-glow); }
.rank-badge--ascendant   { color: var(--gold); background: rgba(201, 168, 76, 0.12); }

.rank-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}

.rank-perks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rank-perks li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.rank-perks li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 1rem;
  line-height: 1.2;
}

.btn-rank {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all 0.2s;
}

.btn-rank:hover:not(.btn-rank--tbd) {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.btn-rank--tbd {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.btn-rank--ascendant {
  color: var(--gold);
  border-color: var(--gold);
}

.store-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.store-note strong { color: var(--text-muted); }

/* ============================================================
   SIGN UP SECTION
   ============================================================ */
.section--signup { background: var(--bg-section); }

.form-row { margin-bottom: 12px; }

.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-dim); }

.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-glow);
  margin-top: 16px;
}

/* ============================================================
   ROADMAP SECTION
   ============================================================ */
.section--roadmap { background: var(--bg); }

.roadmap-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 32px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

.roadmap-item {
  position: relative;
  padding: 0 0 40px 28px;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-marker {
  position: absolute;
  left: -22px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  background: var(--bg);
}

.roadmap-item--done .roadmap-marker {
  border-color: var(--gold-dim);
  background: var(--gold-dim);
}

.roadmap-item--active .roadmap-marker {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.roadmap-item--upcoming .roadmap-marker {
  border-color: var(--text-dim);
  background: transparent;
}

.roadmap-phase {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}

.roadmap-item--active .roadmap-phase { color: var(--gold); }

.roadmap-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.roadmap-item--upcoming .roadmap-label { color: var(--text-muted); }

.roadmap-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.roadmap-item--upcoming .roadmap-desc { color: var(--text-dim); }

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.section--events { background: var(--bg-section); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
}

.event-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dim);
}

.event-card--tbd { opacity: 0.7; }

.event-card__label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 3px 8px;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.event-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.event-card__status {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================================
   KITS SECTION
   ============================================================ */
.section--kits { background: var(--bg-section); }

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.kit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.kit-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.kit-card--dark {
  border-color: rgba(147, 51, 234, 0.25);
  background: rgba(107, 33, 168, 0.05);
}

.kit-card--dark:hover {
  border-color: var(--purple-light);
  background: rgba(107, 33, 168, 0.08);
}

.kit-card--mystery {
  border: 1px dashed var(--text-dim);
  opacity: 0.5;
  cursor: default;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.kit-card__icon {
  font-size: 2rem;
}

.kit-card__names {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.kit-card__class {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.kit-card--dark .kit-card__class { color: var(--purple-light); }
.kit-card--mystery .kit-card__class { color: var(--text-dim); }

.kit-card__material {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 2px 8px;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
}

.kit-card__material--dark {
  color: var(--purple-light);
  border-color: var(--purple-light);
}

.kit-card__material--mystery {
  color: var(--text-dim);
  border-color: var(--text-dim);
}

.kit-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.kit-card__slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.kit-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.kit-slot__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.kit-slot__value {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  color: var(--gold);
}

.kit-slot__value--tbd {
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.kit-card__abilities {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.kit-card--dark .kit-card__abilities {
  background: rgba(107, 33, 168, 0.08);
  border-color: rgba(147, 51, 234, 0.2);
}

.kit-abilities__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kit-abilities__value {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-style: italic;
}

.kit-card__mystery-lock {
  padding: 12px 24px;
  border: 1px dashed var(--text-dim);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  margin-top: 8px;
}

.kits-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   TBD SECTIONS (Map)
   ============================================================ */
.section--tbd     { background: var(--bg); }
.section--tbd-alt { background: var(--bg-section); }

.tbd-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.tbd-icon { font-size: 2.5rem; }

.tbd-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
}

/* ============================================================
   COMMUNITY SECTION
   ============================================================ */
.section--community {
  background: var(--bg);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-icon { width: 28px; height: 28px; border-radius: 50%; opacity: 0.7; }

.footer-wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.footer-nav a:hover { color: var(--gold); }

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes introFade {
  to { opacity: 0; pointer-events: none; }
}
@keyframes bgPulse {
  from { opacity: 0.7; }
  to   { opacity: 1; }
}
@keyframes titleGlow {
  from { text-shadow: 0 0 20px rgba(201,168,76,0.4), 0 0 40px rgba(201,168,76,0.2); }
  to   { text-shadow: 0 0 30px rgba(201,168,76,0.7), 0 0 60px rgba(201,168,76,0.35), 0 0 100px rgba(201,168,76,0.15); }
}
@keyframes titleSlam {
  to { opacity: 1; transform: scale(1); }
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealFade {
  to { opacity: 1; }
}
@keyframes floatCrest {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid   { grid-template-columns: 1fr; }
  .servers-grid { grid-template-columns: 1fr; }
  .ranks-grid   { grid-template-columns: repeat(2, 1fr); }
  .events-grid  { grid-template-columns: 1fr; }
  .kits-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 4px;
  }

  .nav-links.open  { display: flex; }
  .nav-toggle      { display: flex; }
  .nav-link        { width: 100%; padding: 10px 16px; }

  .ranks-grid { grid-template-columns: 1fr; }
  .kits-grid  { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-discord { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .title { letter-spacing: 0.08em; }
}

/* ============================================================
   EXPLORE PAGE
   ============================================================ */
.section--page-top {
  padding-top: calc(var(--nav-height) + var(--section-pad));
}
