:root {
  --void:       #07080d;
  --abyss:      #0c0e1a;
  --depth:      #111525;
  --surface:    #161b2e;
  --raised:     #1d2340;
  --bg:         #07080d;
  --card:       rgba(17,21,37,0.88);
  --card2:      rgba(13,15,26,0.72);
  --card3:      rgba(10,12,20,0.5);
  --border:     rgba(180, 150, 80, 0.14);
  --stroke:     rgba(180,150,80,0.14);
  --stroke2:    rgba(180,150,80,0.24);
  --gold:       #c9a84c;
  --gold-light: #e4c678;
  --gold-dim:   rgba(201,168,76,0.28);
  --gold-bg:    rgba(201,168,76,0.07);
  --cyan:       #4ecdc4;
  --cyan-dim:   rgba(78,205,196,0.15);
  --red:        #e05a5a;
  --green:      #6bcb8b;
  --purple:     #9b7fe8;
  --text:       #ddd4be;
  --muted:      rgba(140,128,112,0.92);
  --muted2:     rgba(74,66,56,0.9);
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
  --shadow2:    0 8px 30px rgba(0,0,0,0.35);
  --r:          10px;
  --glow-gold:  0 0 30px rgba(201,168,76,0.22), 0 0 60px rgba(201,168,76,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body.landing {
  font-family: 'Crimson Pro', Georgia, serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }

/* ── BACKGROUND ─────────────────────────────────────────────── */
.bg { position: fixed; inset: 0; z-index: -2; }
.bg-image {
  position: absolute; inset: 0;
  background-image: url("/static/bg_blur.webp");
  background-image: image-set(url("/static/bg_blur.webp") type("image/webp"), url("/static/bg_blur.png") type("image/png"));
  background-size: cover;
  background-position: center;
  filter: saturate(0.5) brightness(0.35);
  transform: scale(1.02);
}
.bg-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(600px 400px at 80% 30%, rgba(78,205,196,0.04) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}
.bg-sparkles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(201,168,76,0.6), transparent),
    radial-gradient(1px 1px at 28% 62%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 72% 20%, rgba(201,168,76,0.5), transparent),
    radial-gradient(1px 1px at 84% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 52% 44%, rgba(78,205,196,0.4), transparent),
    radial-gradient(1px 1px at 35% 85%, rgba(255,255,255,0.25), transparent),
    radial-gradient(1.5px 1.5px at 90% 12%, rgba(201,168,76,0.4), transparent);
  opacity: 0.6;
  animation: twinkle 7s ease-in-out infinite;
}
@keyframes twinkle { 0%,100%{opacity:0.4} 50%{opacity:0.8} }

/* ── GLASS ──────────────────────────────────────────────────── */
.glass {
  background: linear-gradient(160deg, var(--card), var(--card2));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r);
}
.glass2 {
  background: linear-gradient(160deg, rgba(22,18,44,0.65), rgba(10,12,24,0.40));
  border: 1px solid rgba(180,150,80,0.10);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r);
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 66px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(7,8,13,0.88);
  backdrop-filter: blur(20px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--glow-gold);
  flex-shrink: 0;
}
.brand-avatar { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.brand-text {}
.brand-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  color: var(--muted2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-item {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-item:hover, .nav-item.active { color: var(--gold); }
.top-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.build-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--muted2);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  border-radius: 3px;
  padding: 3px 8px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 5px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { background: var(--surface); border-color: var(--stroke2); color: var(--text); }
.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--muted);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--stroke2); }
.btn-primary {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold-dim);
  color: var(--gold-light);
}
.btn-primary:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}
.btn-premium {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: #07080d;
  font-weight: 500;
}
.btn-premium:hover { box-shadow: var(--glow-gold); transform: translateY(-1px); }
.btn-large { padding: 12px 26px; font-size: 0.72rem; }
.btn-small { padding: 6px 12px; font-size: 0.62rem; }
.btn-ic { font-size: 0.85rem; }

/* ── MAIN WRAP ───────────────────────────────────────────────── */
.wrap {
  padding-top: 66px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ── STAGE ───────────────────────────────────────────────────── */
.stage {
  margin: 3rem 0 2.5rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.stage::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}
.stage-grid--full { display: flex; justify-content: center; }
.stage-grid--with-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Guild panel */
.guild-panel {}
.guild-card {
  background: rgba(17,21,37,0.7);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 1.25rem;
}
.guild-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.guild-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dim), rgba(78,205,196,0.2));
  border: 1px solid var(--stroke);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.guild-icon-img { width: 100%; height: 100%; object-fit: cover; }
.guild-icon-fallback {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.guild-meta {}
.guild-name {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.guild-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted2);
  margin-top: 2px;
}
.guild-role-row { margin-bottom: 0.75rem; }
.pill {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.pill-role { border-color: var(--gold-dim); color: var(--gold); background: var(--gold-bg); }
.guild-divider { height: 1px; background: var(--stroke); margin: 0.75rem 0; }
.guild-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.guild-row-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}
.guild-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--gold);
}
.guild-plugins { display: flex; flex-direction: column; gap: 4px; margin-bottom: 1rem; }
.plug-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  border-radius: 5px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.02);
  transition: background 0.12s;
}
.plug-item.is-busy { opacity: 0.6; }
.plug-ic { width: 14px; font-size: 0.7rem; flex-shrink: 0; color: var(--gold); }
.plug-info { flex: 1; min-width: 0; }
.plug-name {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.plug-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1px;
}
.plug-empty, .plug-more {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted2);
  padding: 4px 0;
}
/* Toggle switch */
.switch { position: relative; display: inline-block; width: 34px; height: 18px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.toggle {
  position: absolute; inset: 0;
  background: var(--raised);
  border-radius: 9px;
  border: 1px solid var(--stroke);
  cursor: pointer;
  transition: background 0.2s;
}
.toggle .knob {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--muted2);
  top: 2px; left: 2px;
  transition: transform 0.2s, background 0.2s;
}
.switch input:checked + .toggle { background: rgba(201,168,76,0.2); border-color: var(--gold-dim); }
.switch input:checked + .toggle .knob { transform: translateX(16px); background: var(--gold); }
.guild-actions { display: flex; gap: 8px; }

/* Stage center */
.stage-center--full { max-width: 700px; }
.plaque {
  height: 52px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.3));
}
.stage-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}
.stage-lead {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.stage-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.trust {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted2);
}
.trust b { color: var(--gold); }

/* ── SHOWCASE ROW ────────────────────────────────────────────── */
.showcase-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.showcase {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.showcase:hover { border-color: var(--stroke2); }
.showcase-head { margin-bottom: 1rem; }
.showcase-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.showcase-desc { font-size: 0.9rem; font-style: italic; color: var(--muted); line-height: 1.5; }
.showcase-shot {
  width: 100%;
  border-radius: 5px;
  opacity: 0.7;
  border: 1px solid var(--stroke);
}

/* ── HOW + PRICING ───────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.card {
  background: linear-gradient(160deg, var(--card), var(--card2));
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  padding: 2rem;
  backdrop-filter: blur(12px);
}
.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.card-sub { font-size: 0.95rem; font-style: italic; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.card-actions { margin-top: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.steps { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.steps li { display: flex; gap: 1rem; align-items: flex-start; }
.step-ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.step-title {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.step-desc { font-size: 0.9rem; font-style: italic; color: var(--muted); line-height: 1.5; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-card {
  background: rgba(17,21,37,0.5);
  border: 1px solid var(--stroke);
  border-radius: 7px;
  padding: 1.25rem;
  transition: border-color 0.15s;
}
.price-card:hover { border-color: var(--stroke2); }
.price-card.featured {
  background: var(--gold-bg);
  border-color: var(--gold-dim);
}
.price-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 0.75rem; }
.price-name {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.price-tag {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}
.price-list {
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.price-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.price-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.35rem;
  color: var(--gold);
  top: 5px;
}
.spill {
  display: inline-flex;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.spill-gold { border-color: var(--gold-dim); color: var(--gold); background: var(--gold-bg); }

/* ── SUPPORT ─────────────────────────────────────────────────── */
.support-section { padding: 2.5rem 0 3rem; }
.support-header { text-align: center; margin-bottom: 2rem; }
.support-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.support-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.support-subhead { font-size: 1rem; font-style: italic; color: var(--muted); max-width: 520px; margin: 0 auto; }
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.support-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  transition: border-color 0.15s;
  text-decoration: none;
}
.support-card:hover { border-color: var(--stroke2); }
.support-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.support-card-body { flex: 1; }
.support-card-title { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.support-card-desc { font-size: 0.88rem; font-style: italic; color: var(--muted); line-height: 1.4; }
.support-card-arrow { color: var(--gold-dim); font-size: 1rem; }
.support-card:hover .support-card-arrow { color: var(--gold); }

/* FAQ */
.support-faq {}
.faq-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.faq-item {
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: var(--gold-dim) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--gold); }
.faq-q::marker, .faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; margin-left: auto; color: var(--gold-dim); font-size: 1rem; transition: transform 0.2s; }
details[open] .faq-q::after { transform: rotate(45deg); color: var(--gold); }
.faq-a { padding: 0 1.25rem 1rem; font-size: 0.92rem; font-style: italic; color: var(--muted); line-height: 1.6; }

/* ── SERVER PICKER ───────────────────────────────────────────── */
.srv-picker-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.srv-picker {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  width: min(480px, 92vw);
  max-height: 75vh;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.srv-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--stroke);
}
.srv-picker-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.srv-picker-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s;
}
.srv-picker-close:hover { color: var(--text); }
.srv-picker-search {
  margin: 0.75rem 1.25rem;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 5px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  outline: none;
  transition: border-color 0.15s;
}
.srv-picker-search:focus { border-color: var(--gold-dim); }
.srv-picker-search::placeholder { color: var(--muted2); }
.srv-picker-list { flex: 1; overflow-y: auto; padding: 0 0.75rem 0.75rem; }
.srv-picker-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.6rem;
  border-radius: 6px;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
}
.srv-picker-row:hover { background: rgba(255,255,255,0.04); }
.srv-picker-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(78,205,196,0.15));
  border: 1px solid var(--stroke);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.srv-picker-info { flex: 1; min-width: 0; }
.srv-picker-name { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srv-picker-id { font-family: 'JetBrains Mono', monospace; font-size: 0.58rem; color: var(--muted2); margin-top: 1px; }
.srv-picker-badges { display: flex; gap: 4px; }
.srv-picker-select {
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid var(--stroke);
  background: none;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.12s, color 0.12s;
  white-space: nowrap;
}
.srv-picker-select:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast-stack { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300; display: flex; flex-direction: column; gap: 8px; }
.toast {
  padding: 10px 16px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  border: 1px solid;
  backdrop-filter: blur(12px);
  animation: toastIn 0.25s ease;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.ok { background: rgba(107,203,139,0.12); border-color: rgba(107,203,139,0.35); color: var(--green); }
.toast.err { background: rgba(224,90,90,0.12); border-color: rgba(224,90,90,0.35); color: var(--red); }
.toast.out { opacity: 0; transform: translateX(10px); }
@keyframes toastIn { from { opacity: 0; transform: translateX(10px); } }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 2rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
}
.footer-muted {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: var(--muted2);
  margin-top: 3px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--muted); }

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--abyss); }
::-webkit-scrollbar-thumb { background: var(--stroke); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .stage-grid--with-sidebar { grid-template-columns: 1fr; }
  .guild-panel { display: none !important; }
  .showcase-row { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .topbar { padding: 0 1.5rem; }
  .wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
  .stage { padding: 2rem 1.5rem; }
  .nav { display: none; }
}

/* Accessibility — respect user preference to reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .bg-sparkles { animation: none; opacity: 0.5; }
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 12px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--gold);
  color: var(--void);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 6px 0;
}
