/* Louvex landing — MEE6-feel marketing (v11) — self-contained */
:root {
  --lx-bg: #1c1e27;
  --lx-bg-2: #23262e;
  --lx-card: #171820;
  --lx-card-2: #1c1e23;
  --lx-blue: #328ff5;
  --lx-blue-hot: #3b82f6;
  --lx-blue-deep: #2563eb;
  --lx-text: #ffffff;
  --lx-muted: #a7aab8;
  --lx-muted-2: #8b8fa3;
  --lx-border: rgba(255, 255, 255, 0.06);
  --lx-radius: 8px;
  --lx-radius-lg: 14px;
  --lx-max: 1160px;
  --lx-font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.lx-landing {
  margin: 0;
  min-height: 100vh;
  background: var(--lx-bg);
  color: var(--lx-text);
  font-family: var(--lx-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

.lx-landing a { color: inherit; text-decoration: none; }
.lx-landing img { max-width: 100%; display: block; }

.lx-shell {
  width: min(var(--lx-max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Buttons ——— */
.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: var(--lx-radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.lx-btn--sm { padding: 0.65rem 1rem; font-size: 0.875rem; }
.lx-btn--lg { padding: 1rem 1.45rem; font-size: 1rem; }
.lx-btn--primary {
  background: var(--lx-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(50, 143, 245, 0.28);
}
.lx-btn--primary:hover {
  background: var(--lx-blue-hot);
  box-shadow: 0 10px 28px rgba(50, 143, 245, 0.38);
  transform: translateY(-1px);
}
.lx-btn--secondary {
  background: #2a2d38;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
}
.lx-btn--secondary:hover { background: #343846; }
.lx-btn--ghost {
  background: transparent;
  color: var(--lx-muted);
  border-color: rgba(255, 255, 255, 0.12);
}
.lx-btn--ghost:hover { color: #fff; border-color: rgba(255, 255, 255, 0.22); }
.lx-btn--white {
  background: #fff;
  color: #1a1c24;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}
.lx-btn--white:hover { background: #f3f4f6; transform: translateY(-1px); }

.lx-discord { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.lx-discord--dark { color: #5865f2; }

/* ——— Nav ——— */
.lx-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  background: rgba(28, 30, 39, 0.78);
  border-bottom: 1px solid var(--lx-border);
}
.lx-nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
  padding: 0.55rem 0;
}
.lx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}
.lx-brand__name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.lx-logo {
  display: inline-flex;
  width: 36px;
  height: 36px;
}
.lx-logo svg { width: 100%; height: 100%; }
.lx-logo--sm { width: 32px; height: 32px; }

.lx-nav__links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex: 1;
}
.lx-nav__links a {
  color: var(--lx-muted);
  font-size: 0.925rem;
  font-weight: 500;
}
.lx-nav__links a:hover { color: #fff; }

.lx-nav__cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

/* ——— Hero ——— */
.lx-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(50, 143, 245, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(99, 102, 241, 0.08), transparent 55%),
    var(--lx-bg);
  overflow: hidden;
}
.lx-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, var(--lx-bg), transparent);
  pointer-events: none;
}
.lx-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lx-hero__title {
  margin: 0 0 1.15rem;
  font-size: clamp(2.6rem, 5.2vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}
.lx-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--lx-muted);
  line-height: 1.65;
}
.lx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.lx-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.lx-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lx-border);
  font-size: 0.85rem;
  color: var(--lx-muted);
}
.lx-pill strong { color: #fff; font-weight: 700; }
.lx-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.lx-dot--on { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
.lx-dot--off { background: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18); }

/* Hero visual art */
.lx-hero__visual { position: relative; min-height: 420px; }
.lx-hero-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.lx-geo {
  position: absolute;
  border-radius: 24px;
  filter: blur(0.5px);
  opacity: 0.9;
}
.lx-geo--a {
  width: 180px; height: 180px;
  top: 8%; right: 6%;
  background: linear-gradient(145deg, rgba(50, 143, 245, 0.35), rgba(50, 143, 245, 0.05));
  border: 1px solid rgba(50, 143, 245, 0.25);
  transform: rotate(18deg);
}
.lx-geo--b {
  width: 120px; height: 120px;
  bottom: 12%; left: 4%;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.3), transparent);
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.lx-geo--c {
  width: 70px; height: 70px;
  top: 42%; left: 8%;
  background: rgba(50, 143, 245, 0.15);
  border-radius: 16px;
  transform: rotate(-12deg);
}

.lx-mock {
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lx-radius-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
}
.lx-mock--main {
  position: absolute;
  inset: 8% 6% 12% 10%;
  z-index: 2;
}
.lx-mock__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: #12141b;
  border-bottom: 1px solid var(--lx-border);
}
.lx-mock__bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a3d4a;
}
.lx-mock__bar span:nth-child(1) { background: #ff5f57; }
.lx-mock__bar span:nth-child(2) { background: #febc2e; }
.lx-mock__bar span:nth-child(3) { background: #28c840; }
.lx-mock__bar em {
  margin-left: 0.6rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--lx-muted-2);
}
.lx-mock__body { display: flex; min-height: 260px; }
.lx-mock__side {
  width: 64px;
  padding: 0.9rem 0.7rem;
  background: #14161e;
  border-right: 1px solid var(--lx-border);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.lx-sk {
  height: 10px;
  border-radius: 4px;
  background: #2a2d38;
  display: block;
}
.lx-sk--active { background: var(--lx-blue); }
.lx-mock__main { flex: 1; padding: 1rem 1.1rem; }
.lx-mock__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.lx-mock__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.lx-mc {
  background: var(--lx-bg-2);
  border-radius: 8px;
  padding: 0.7rem 0.65rem;
  border: 1px solid var(--lx-border);
}
.lx-mc b { display: block; font-size: 1.05rem; }
.lx-mc small { color: var(--lx-muted-2); font-size: 0.7rem; }
.lx-mock__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 90px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--lx-border);
}
.lx-mock__chart i {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--lx-blue), rgba(50, 143, 245, 0.35));
  display: block;
}

.lx-mock--float {
  position: absolute;
  z-index: 3;
  padding: 0.75rem 0.95rem;
  font-size: 0.8rem;
}
.lx-mock--toast {
  top: 6%;
  left: 2%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #12141b;
  animation: lx-float 5s ease-in-out infinite;
}
.lx-toast-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lx-blue);
  box-shadow: 0 0 0 3px rgba(50, 143, 245, 0.25);
}
.lx-mock--mod {
  bottom: 6%;
  right: 0;
  width: 200px;
  animation: lx-float 6s ease-in-out infinite reverse;
}
.lx-mod-row { margin-bottom: 0.25rem; }
.lx-mod-row.muted { color: var(--lx-muted-2); font-size: 0.72rem; }
.lx-badge {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  font-size: 0.65rem;
  font-weight: 700;
  margin-right: 0.35rem;
}
.lx-bot-orb {
  position: absolute;
  bottom: 18%;
  left: -2%;
  width: 64px;
  height: 64px;
  z-index: 4;
  filter: drop-shadow(0 12px 24px rgba(50, 143, 245, 0.45));
  animation: lx-bob 4s ease-in-out infinite;
}
.lx-bot-orb svg { width: 100%; height: 100%; }

@keyframes lx-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes lx-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

/* ——— Section heads ——— */
.lx-section-head { margin-bottom: 2.75rem; max-width: 40rem; }
.lx-section-head--center {
  text-align: center;
  margin-inline: auto;
}
.lx-section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lx-section-head p {
  margin: 0;
  color: var(--lx-muted);
  font-size: 1.05rem;
}

/* ——— Features / splits ——— */
.lx-features { padding: 2rem 0 1rem; }
.lx-features > .lx-shell { padding-top: 3rem; }

.lx-split { padding: 4.5rem 0; }
.lx-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lx-split--rev .lx-split__copy { order: 1; }
.lx-split--rev .lx-split__visual { order: 2; }

.lx-split__copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lx-split__copy p {
  margin: 0 0 1.5rem;
  color: var(--lx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 32rem;
}

.lx-split__visual { position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center; }

/* Mock UI cards */
.lx-ui-card {
  width: min(100%, 380px);
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lx-radius-lg);
  padding: 1.1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
}
.lx-ui-card--sm { width: min(100%, 340px); }
.lx-ui-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-weight: 700;
}
.lx-ui-save {
  background: var(--lx-blue);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  pointer-events: none;
}
.lx-ui-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.65rem;
  margin-bottom: 0.4rem;
  background: var(--lx-bg-2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--lx-muted);
}
.lx-toggle {
  width: 36px; height: 20px;
  border-radius: 999px;
  background: #3a3d4a;
  position: relative;
}
.lx-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s;
}
.lx-toggle.on { background: var(--lx-blue); }
.lx-toggle.on::after { transform: translateX(16px); }
.lx-ui-avatars {
  display: flex;
  margin-top: 1rem;
  gap: -0.4rem;
}
.lx-ui-avatars i {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--lx-card);
  background: linear-gradient(135deg, #328ff5, #6366f1);
  margin-left: -6px;
}
.lx-ui-avatars i:first-child { margin-left: 0; }
.lx-ui-avatars i:nth-child(2) { background: linear-gradient(135deg, #22c55e, #14b8a6); }
.lx-ui-avatars i:nth-child(3) { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.lx-ui-avatars i:nth-child(4) { background: linear-gradient(135deg, #a855f7, #ec4899); }

.lx-ui-ticket { width: min(100%, 360px); }
.lx-ticket-card {
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lx-radius-lg);
  padding: 1.15rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.lx-ticket-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.lx-ticket-top strong { display: block; font-size: 0.9rem; }
.lx-ticket-top small { color: var(--lx-muted-2); font-size: 0.75rem; }
.lx-ticket-top > div { flex: 1; }
.lx-avatar-sm {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #328ff5, #1d4ed8);
  flex-shrink: 0;
}
.lx-ticket-card > p {
  margin: 0 0 1rem;
  color: var(--lx-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.lx-ticket-actions { display: flex; gap: 0.5rem; }
.lx-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: #2a2d38;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.lx-chip--blue { background: var(--lx-blue); }

.lx-ui-stack { position: relative; width: min(100%, 360px); }
.lx-field { margin-bottom: 0.75rem; }
.lx-field label {
  display: block;
  font-size: 0.72rem;
  color: var(--lx-muted-2);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lx-input {
  background: var(--lx-bg-2);
  border: 1px solid var(--lx-border);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  color: var(--lx-muted);
}
.lx-btn-row { display: flex; gap: 0.4rem; }
.lx-btn-row span {
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  background: rgba(50, 143, 245, 0.15);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 600;
}
.lx-float-chip {
  position: absolute;
  right: -12px;
  bottom: -14px;
  background: #12141b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.lx-ui-level { width: min(100%, 360px); }
.lx-level-card {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lx-radius-lg);
  padding: 1.15rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.75rem;
}
.lx-level-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #328ff5);
  flex-shrink: 0;
}
.lx-level-card strong { display: block; margin-bottom: 0.35rem; }
.lx-xp-bar {
  height: 8px;
  background: #2a2d38;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.lx-xp-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--lx-blue), #60a5fa);
  border-radius: inherit;
}
.lx-level-card small { color: var(--lx-muted-2); font-size: 0.72rem; }
.lx-level-rewards {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.lx-level-rewards span {
  background: var(--lx-card);
  border: 1px solid var(--lx-border);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  color: var(--lx-muted);
}

.lx-ui-secure {
  position: relative;
  width: min(100%, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.lx-secure-ring {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(50, 143, 245, 0.25);
  box-shadow: 0 0 60px rgba(50, 143, 245, 0.15);
}
.lx-secure-ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(50, 143, 245, 0.35);
}
.lx-secure-card {
  position: relative;
  z-index: 1;
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lx-radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  width: 240px;
}
.lx-secure-card strong { display: block; margin-bottom: 0.35rem; }
.lx-secure-card p { margin: 0 0 0.85rem; color: var(--lx-muted); font-size: 0.85rem; }
.lx-secure-card ul { list-style: none; margin: 0; padding: 0; }
.lx-secure-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--lx-muted);
  margin-bottom: 0.4rem;
}

.lx-ui-panel-mini { width: min(100%, 380px); }
.lx-mock--mini { width: 100%; }
.lx-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  padding: 1rem;
}
.lx-mini-grid div {
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--lx-bg-2), #14161e);
  border: 1px solid var(--lx-border);
}
.lx-mini-grid div:nth-child(1) {
  background: linear-gradient(145deg, rgba(50, 143, 245, 0.2), var(--lx-bg-2));
}

/* ——— Social proof ——— */
.lx-proof {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--lx-bg) 0%, #181a22 50%, var(--lx-bg) 100%);
}
.lx-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lx-proof-card {
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--lx-radius-lg);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.15s, transform 0.15s;
}
.lx-proof-card:hover {
  border-color: rgba(50, 143, 245, 0.35);
  transform: translateY(-2px);
}
.lx-proof-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(50, 143, 245, 0.12);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.lx-proof-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.lx-proof-card p {
  margin: 0;
  color: var(--lx-muted);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ——— Guilds ——— */
.lx-guilds { padding: 5rem 0; }
.lx-guild-count {
  text-align: center;
  color: var(--lx-muted);
  margin: -1.5rem 0 1.75rem;
  font-size: 0.95rem;
}
.lx-guild-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.lx-guild-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--lx-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--lx-radius-lg);
  padding: 1rem 1.1rem;
}
.lx-guild-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lx-blue), #6366f1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.lx-guild-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
}
.lx-guild-meta {
  display: block;
  color: var(--lx-muted-2);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}
.lx-guild-empty {
  text-align: center;
  color: var(--lx-muted);
  background: var(--lx-card);
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius-lg);
  padding: 2rem 1.5rem;
}

/* ——— CTA band ——— */
.lx-cta-band {
  background: var(--lx-blue);
  padding: 4.5rem 0;
  text-align: center;
}
.lx-cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lx-cta-band h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  max-width: 28ch;
}
.lx-cta-band p {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

/* ——— Footer ——— */
.lx-footer {
  background: #15171e;
  border-top: 1px solid var(--lx-border);
  padding: 4rem 0 3.5rem;
}
.lx-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.lx-footer__brand p {
  margin: 1rem 0 0;
  color: var(--lx-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 26ch;
}
.lx-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lx-footer__col h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.lx-footer__col a {
  color: var(--lx-muted);
  font-size: 0.9rem;
}
.lx-footer__col a:hover { color: #fff; }
.lx-footer-muted {
  color: var(--lx-muted-2);
  font-size: 0.85rem;
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .lx-hero__grid,
  .lx-split__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .lx-split--rev .lx-split__copy,
  .lx-split--rev .lx-split__visual { order: unset; }
  .lx-split--rev .lx-split__visual { order: -1; }
  .lx-hero__visual { min-height: 360px; }
  .lx-hero-art { min-height: 360px; }
  .lx-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .lx-guild-grid { grid-template-columns: repeat(2, 1fr); }
  .lx-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lx-nav__links { display: none; }
}

@media (max-width: 640px) {
  .lx-shell { width: min(var(--lx-max), calc(100% - 1.5rem)); }
  .lx-hero { padding: 3.25rem 0 3rem; }
  .lx-hero__title { font-size: 2.25rem; }
  .lx-hero__cta { flex-direction: column; align-items: stretch; }
  .lx-btn--lg { width: 100%; }
  .lx-proof__grid,
  .lx-guild-grid { grid-template-columns: 1fr; }
  .lx-footer__grid { grid-template-columns: 1fr; }
  .lx-nav__cta .lx-btn--ghost { display: none; }
  .lx-mock--main { inset: 6% 4% 14% 4%; }
  .lx-mock--mod { display: none; }
  .lx-split { padding: 3rem 0; }
  .lx-cta-band { padding: 3.5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lx-mock--toast,
  .lx-mock--mod,
  .lx-bot-orb { animation: none; }
  .lx-btn { transition: none; }
}

/* logo img sizing (marketing static) */
.lx-logo-img { display:block; width:40px; height:40px; border-radius:10px; }
.lx-logo--sm .lx-logo-img { width:28px; height:28px; border-radius:8px; }
