/* ─── Reset + base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #06061a;
  --bg-deep:   #02020c;
  --panel:     #110d2c;
  --panel-2:   #1a1245;
  --line:      #2b1f5e;
  --ink:       #e9e7ff;
  --ink-dim:   #aaa3d0;
  --ink-soft:  #6a649a;
  --gold:      #f5c542;
  --gold-2:    #ffe188;
  --violet:    #a35cff;
  --violet-2:  #c98aff;
  --cyan:      #5cd2ff;
  --magenta:   #ff5cc8;
  --shadow:    0 12px 48px -16px rgba(141, 90, 255, .35);
  --radius:    14px;
  --maxw:      1180px;
  --pad:       clamp(20px, 4vw, 56px);
  --font:      "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Background gradient + starfield ────────────────── */
body {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(163, 92, 255, .25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(92, 210, 255, .12), transparent 65%),
    radial-gradient(ellipse 70% 50% at 10% 60%, rgba(245, 197, 66, .08), transparent 65%),
    linear-gradient(180deg, #07051c 0%, #03020c 100%);
  background-attachment: fixed;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

main, .nav, .foot { position: relative; z-index: 1; }

/* ─── Type ───────────────────────────────────────────── */
h1, h2, h3, h4, .hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}

h1, .hero-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  background: linear-gradient(180deg, #fff 0%, #d9d2ff 60%, #b39bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Visually hidden — present for screen readers + search engines only. */
.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;
}

/* ─── FAQ (compact accordion) ─────────────────────────── */
.faq { padding: clamp(14px, 2.4vw, 30px) var(--pad) clamp(18px, 2.8vw, 36px); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq details {
  border-top: 1px solid rgba(163, 92, 255, 0.16);
  padding: .7rem 0;
}
.faq details:last-child { border-bottom: 1px solid rgba(163, 92, 255, 0.16); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--violet-2); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--ink-dim); margin-top: .5rem; font-size: .95rem; }

h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  margin-bottom: .5em;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: .4em;
  color: var(--gold-2);
}

h4 {
  font-size: 1.05rem;
  letter-spacing: .02em;
}

p { color: var(--ink-dim); }

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: .22em;
  color: var(--violet-2);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.kicker.centered { display: block; text-align: center; }
.centered { text-align: center; }
.subhead {
  max-width: 680px;
  margin: 0 auto 1.8rem;
  color: var(--ink-dim);
}

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad);
  background: rgba(6, 6, 26, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(155, 100, 255, 0.12);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .25em;
  background: linear-gradient(90deg, var(--gold) 0%, var(--violet-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav nav { display: flex; gap: 26px; align-items: center; }
.nav nav a {
  color: var(--ink-dim);
  font-size: 0.92rem;
  transition: color .2s ease;
}
.nav nav a:hover { color: var(--ink); }

.cta-small {
  padding: 8px 18px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--magenta) 100%);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 0 24px -6px rgba(163, 92, 255, 0.55);
}

@media (max-width: 720px) {
  .nav nav a:not(.cta-small) { display: none; }
}

/* ─── Sections ───────────────────────────────────────── */
section {
  padding: clamp(10px, 1.6vw, 20px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  padding-top: clamp(8px, 1.4vw, 16px);
  padding-bottom: clamp(10px, 1.6vw, 18px);
  text-align: center;
  position: relative;
}

.logo {
  width: clamp(150px, 19vw, 230px);
  margin: 0 auto 4px;
  filter: drop-shadow(0 14px 40px rgba(163, 92, 255, .55))
          drop-shadow(0 0 80px rgba(245, 197, 66, .25));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.tagline {
  max-width: 620px;
  margin: 0.35rem auto 0;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  color: var(--ink-dim);
}
.tagline strong { color: var(--gold-2); font-weight: 600; }

/* ─── Server stats widget ─────────────────────────── */
.server-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 780px;
  margin: 0.8rem auto 0;
  padding: 0;
  background: rgba(163, 92, 255, 0.18);
  border: 1px solid rgba(163, 92, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}
@media (max-width: 720px) {
  .server-stats { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  padding: 9px 14px;
  background: rgba(11, 8, 30, 0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.stat-label small {
  font-size: 0.62rem;
  color: var(--violet);
  letter-spacing: .08em;
  text-transform: none;
  margin-left: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-value .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.stat-value.online { color: #86efac; }

.stat-slash {
  color: var(--ink-soft);
  margin: 0 2px;
  font-weight: 400;
}
.stat-max { color: var(--ink-soft); font-weight: 500; }

.stat-ip {
  cursor: pointer;
  transition: background .15s ease;
}
.stat-ip:hover { background: rgba(26, 18, 69, 0.95); }
.stat-ip .stat-value {
  color: var(--gold-2);
  font-family: var(--font-mono);
  font-size: 0.95rem;
}
.stat-ip.copied .stat-value::after {
  content: ' ✓ copied';
  color: #86efac;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: .1em;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0.8rem auto 0;
}

.cta {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.cta.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--magenta) 60%, var(--violet) 100%);
  color: #1a0f3a;
  box-shadow: 0 10px 36px -10px rgba(255, 92, 200, 0.55);
}
.cta.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(255, 92, 200, 0.7); }

.cta.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid rgba(163, 92, 255, 0.35);
}
.cta.ghost:hover {
  background: rgba(163, 92, 255, 0.12);
  border-color: var(--violet-2);
}

.marquee-strip {
  margin-top: 4rem;
  display: flex;
  gap: 26px;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: .25em;
  color: var(--ink-soft);
  animation: scroll 38s linear infinite;
}

.marquee-strip span:nth-child(even) { color: var(--violet); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── About / pitch ──────────────────────────────────── */
.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-inner h2 { margin-bottom: 0.5rem; }
.about-inner p {
  margin-bottom: 0.9em;
  font-size: 1rem;
  color: var(--ink-dim);
}
.about-inner p:last-child { margin-bottom: 0; }
.about-fine {
  margin-top: 0.9em;
  padding-top: 0.9em;
  border-top: 1px dashed rgba(163, 92, 255, 0.18);
  font-size: 0.92rem !important;
  color: var(--ink-soft) !important;
}

/* ─── Features ──────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(26, 18, 69, 0.7) 0%, rgba(17, 13, 44, 0.7) 100%);
  border: 1px solid rgba(163, 92, 255, 0.16);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent 0%, rgba(245, 197, 66, .15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 66, 0.4);
  box-shadow: var(--shadow);
}
.feature:hover::before { opacity: 1; }

.feature p { font-size: 0.96rem; }
.feature p strong { color: var(--gold-2); font-weight: 600; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(163, 92, 255, 0.25), rgba(245, 197, 66, 0.18));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.feature-icon::after {
  content: '';
  width: 32px; height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* SVG icons inlined as backgrounds */
.feature-icon[data-icon="hull"]::after    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c542' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M2 12l4-7h12l4 7-4 7H6z'/><path d='M2 12h20'/><path d='M9 12V5'/><path d='M15 12v7'/></svg>"); }
.feature-icon[data-icon="dock"]::after    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cd2ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4'/><path d='M12 2v4'/><path d='M12 18v4'/><path d='M2 12h4'/><path d='M18 12h4'/><path d='M5 5l3 3'/><path d='M16 16l3 3'/><path d='M5 19l3-3'/><path d='M16 8l3-3'/></svg>"); }
.feature-icon[data-icon="economy"]::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5c542' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M9 8h5a2.5 2.5 0 010 5h-3a2.5 2.5 0 010 5h-5'/><path d='M12 6v2'/><path d='M12 18v2'/></svg>"); }
.feature-icon[data-icon="sov"]::after     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a35cff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M5 21V8l7-5 7 5v13'/><path d='M5 21h14'/><path d='M10 21v-6h4v6'/><path d='M9 11h.01'/><path d='M14 11h.01'/></svg>"); }
.feature-icon[data-icon="design"]::after  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff5cc8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-6 9 6-9 6z'/><path d='M3 9v6l9 6 9-6V9'/><path d='M12 15v6'/></svg>"); }
.feature-icon[data-icon="respawn"]::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cd2ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12a9 9 0 0115-6.7L21 8'/><path d='M21 3v5h-5'/><path d='M21 12a9 9 0 01-15 6.7L3 16'/><path d='M3 21v-5h5'/></svg>"); }

/* ─── Ships ────────────────────────────────────────── */
.ship-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .ship-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ship-row { grid-template-columns: 1fr; } }

.ship-card {
  padding: 22px 16px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(26, 18, 69, 0.55), rgba(11, 8, 30, 0.7));
  border: 1px solid rgba(163, 92, 255, 0.18);
  text-align: center;
  position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.ship-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.ship-art {
  font-size: 2.4rem;
  margin-bottom: .8rem;
  color: var(--violet-2);
  text-shadow: 0 0 20px var(--violet);
  letter-spacing: -2px;
}
.ship-card.t1 .ship-art { color: var(--cyan); text-shadow: 0 0 20px var(--cyan); }
.ship-card.t2 .ship-art { color: var(--violet-2); text-shadow: 0 0 20px var(--violet); }
.ship-card.t3 .ship-art { color: var(--violet); text-shadow: 0 0 24px var(--violet); }
.ship-card.t4 .ship-art { color: var(--magenta); text-shadow: 0 0 24px var(--magenta); }
.ship-card.t5 .ship-art { color: var(--gold-2); text-shadow: 0 0 28px var(--gold); font-size: 3rem; }

.ship-card h4 { color: var(--ink); margin-bottom: .2rem; }
.ship-ratio {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: .6rem;
}
.ship-role { font-size: 0.88rem; color: var(--ink-dim); }

/* ─── World / Sec zones ───────────────────────────── */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.zone {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid;
  position: relative;
  overflow: hidden;
}
.zone::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
}
.zone h4 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: .35em;
  margin-bottom: 10px;
}
.zone-rule {
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.zone-blurb { font-size: 0.95rem; }

.z-core     { border-color: rgba(92, 210, 255, 0.4); }
.z-core::before  { background: radial-gradient(circle at 30% 30%, var(--cyan), transparent 60%); }
.z-core h4  { color: var(--cyan); }

.z-mid      { border-color: rgba(245, 197, 66, 0.45); }
.z-mid::before   { background: radial-gradient(circle at 30% 30%, var(--gold), transparent 60%); }
.z-mid h4   { color: var(--gold-2); }

.z-null     { border-color: rgba(255, 92, 200, 0.5); }
.z-null::before  { background: radial-gradient(circle at 30% 30%, var(--magenta), transparent 60%); }
.z-null h4  { color: var(--magenta); }

.z-frontier { border-color: rgba(163, 92, 255, 0.4); }
.z-frontier::before { background: radial-gradient(circle at 30% 30%, var(--violet), transparent 60%); }
.z-frontier h4 { color: var(--violet-2); }

/* ─── Engine ──────────────────────────────────────── */
.engine-intro {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.engine-intro p { margin-bottom: 1.2em; font-size: 1.05rem; }
.engine-intro strong { color: var(--gold-2); font-weight: 600; }
.engine-intro em { color: var(--violet-2); font-style: normal; }

.engine-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 4rem;
}

.lever {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(26, 18, 69, 0.6), rgba(7, 5, 22, 0.85));
  border: 1px solid rgba(163, 92, 255, 0.18);
  position: relative;
}
.lever-num {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--violet);
  letter-spacing: .2em;
}
.lever h4 { color: var(--gold-2); margin-bottom: .5rem; font-size: 1rem; }
.lever p { font-size: 0.92rem; }
.lever p strong { color: var(--cyan); font-weight: 600; }

.engine-numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  padding: 36px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 50%, rgba(163, 92, 255, .15), transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(245, 197, 66, .12), transparent 60%),
    rgba(11, 8, 30, 0.6);
  border: 1px solid rgba(163, 92, 255, 0.2);
  margin-bottom: 2.4rem;
}

.big-stat { text-align: center; }
.big-stat .stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-2), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.big-stat .stat-val small { font-size: 0.5em; color: var(--violet-2); -webkit-text-fill-color: var(--violet-2); }
.big-stat .stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-top: 8px;
}

.engine-footer {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.engine-footer strong { color: var(--ink-dim); font-weight: 500; }

/* ─── Status ──────────────────────────────────────── */
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .status-grid { grid-template-columns: 1fr; } }

.status-col {
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(26, 18, 69, 0.55), rgba(11, 8, 30, 0.7));
  border: 1px solid rgba(163, 92, 255, 0.18);
}
.status-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .04em;
  color: var(--gold-2);
}
.status-col ul { list-style: none; }
.status-col li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink-dim);
  border-bottom: 1px dashed rgba(163, 92, 255, 0.12);
}
.status-col li:last-child { border-bottom: none; }

/* ─── Join ────────────────────────────────────────── */
.join h2 { margin-bottom: 0.8rem; }
.join-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}
.join-card {
  display: block;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(163, 92, 255, 0.1), rgba(11, 8, 30, 0.7));
  border: 1px solid rgba(163, 92, 255, 0.3);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: left;
}
.join-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 40px -12px rgba(245, 197, 66, .3);
}
.join-card h4 {
  color: var(--gold-2);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}
.join-card p { font-size: 0.9rem; margin-bottom: 0.8rem; }
.join-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--violet-2);
  letter-spacing: .05em;
}

/* ─── Footer ──────────────────────────────────────── */
.foot {
  border-top: 1px solid rgba(163, 92, 255, 0.15);
  background: rgba(2, 2, 12, 0.6);
  padding: 16px var(--pad) 14px;
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.foot-logo {
  width: 88px;
  margin: 0 auto 4px;
  opacity: 0.85;
}
.foot-tag {
  font-family: var(--font-display);
  color: var(--ink-dim);
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.foot-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.foot-links a { color: var(--ink-dim); transition: color .2s; }
.foot-links a:hover { color: var(--gold-2); }

.foot-fine {
  font-size: 0.72rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
