/* ══════════════════════════════════════════════════════════════
   NOVAPUNK — css/index-redesign.css
   LIQUID GLASS — RADICAL EDITION · index.html ONLY
   Loaded after main.css. Do NOT load on any other page.
══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;1,400&family=Barlow+Condensed:wght@700;800;900&display=swap');

/* ── Design tokens ── */
:root {
  --lg-bg:        #030208;
  --lg-violet:    #a855f7;
  --lg-cyan:      #22d3ee;
  --lg-emerald:   #34d399;
  --lg-indigo:    #818cf8;
  --lg-text:      #f0eeff;
  --lg-dim:       rgba(240,238,255,0.58);
  --lg-blur:      blur(24px) saturate(220%);
}

html {
  overflow-x: hidden;
}

body {
  background: var(--lg-bg) !important;
  color: var(--lg-text) !important;
  overflow-x: hidden !important;
}


/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes lg-iridescent {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes lg-orb-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(-80px, 120px) scale(1.15); }
  66%       { transform: translate(100px, -60px) scale(0.88); }
}
@keyframes lg-orb-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40%       { transform: translate(90px, -120px) scale(1.2); }
  80%       { transform: translate(-60px, 80px) scale(0.85); }
}
@keyframes lg-orb-3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-100px, -80px) scale(1.25); }
}

@keyframes lg-mesh-drift {
  0%, 100% { transform: translate(-6%,-6%) scale(1); }
  50%       { transform: translate(6%, 6%) scale(1.06); }
}
@keyframes lg-mesh-drift-2 {
  0%, 100% { transform: translate(6%,-3%) scale(1.04); }
  50%       { transform: translate(-6%, 3%) scale(1); }
}

@keyframes lg-label-cycle {
  0%   { color: #a855f7; text-shadow: 0 0 12px rgba(168,85,247,1), 0 0 24px rgba(168,85,247,0.5); }
  25%  { color: #22d3ee; text-shadow: 0 0 12px rgba(34,211,238,1), 0 0 24px rgba(34,211,238,0.5); }
  50%  { color: #34d399; text-shadow: 0 0 12px rgba(52,211,153,1), 0 0 24px rgba(52,211,153,0.5); }
  75%  { color: #818cf8; text-shadow: 0 0 12px rgba(129,140,248,1), 0 0 24px rgba(129,140,248,0.5); }
  100% { color: #a855f7; text-shadow: 0 0 12px rgba(168,85,247,1), 0 0 24px rgba(168,85,247,0.5); }
}

@keyframes lg-border-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

@keyframes lg-pill-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(168,85,247,0.3), 0 0 20px rgba(168,85,247,0.1); }
  50%       { box-shadow: 0 0 24px rgba(168,85,247,0.7), 0 0 48px rgba(34,211,238,0.3); }
}

@keyframes lg-section-glow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

@keyframes lg-stat-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(168,85,247,0.5)); }
  50%       { filter: drop-shadow(0 0 20px rgba(168,85,247,0.9)) drop-shadow(0 0 40px rgba(34,211,238,0.4)); }
}

@keyframes lg-title-hue {
  0%, 100% { filter: hue-rotate(0deg); }
  50%       { filter: hue-rotate(-90deg); }
}


/* ══════════════════════════════════════
   NAV — deep frosted glass
══════════════════════════════════════ */
.site-nav {
  background: rgba(3,2,8,0.55) !important;
  backdrop-filter: blur(40px) saturate(250%) brightness(1.15) !important;
  -webkit-backdrop-filter: blur(40px) saturate(250%) brightness(1.15) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  overflow: visible;
}

.site-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(168,85,247,1) 15%,
    rgba(34,211,238,1) 50%,
    rgba(52,211,153,0.8) 80%,
    transparent 100%
  );
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .site-nav::after { animation: lg-border-pulse 2.5s ease-in-out infinite; }
}

.site-nav.scrolled {
  background: rgba(3,2,8,0.88) !important;
  backdrop-filter: blur(48px) saturate(280%) !important;
  -webkit-backdrop-filter: blur(48px) saturate(280%) !important;
}

.nav-logo {
  background: linear-gradient(135deg,
    #a855f7 0%, #22d3ee 30%, #34d399 60%, #818cf8 100%) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.5));
}
@media (prefers-reduced-motion: no-preference) {
  .nav-logo { animation: lg-iridescent 4s ease infinite; }
}

.nav-links a {
  color: rgba(240,238,255,0.6) !important;
  transition: color 0.2s, text-shadow 0.2s, background 0.2s !important;
}
.nav-links a:hover {
  color: var(--lg-text) !important;
  text-shadow: 0 0 16px rgba(168,85,247,0.8) !important;
  background: rgba(168,85,247,0.1) !important;
}
.nav-links a.active {
  color: var(--lg-text) !important;
  background: rgba(168,85,247,0.14) !important;
  text-shadow: 0 0 12px rgba(168,85,247,0.5) !important;
}

.nav-cta {
  background: linear-gradient(135deg, #a855f7, #22d3ee) !important;
  border: none !important;
  box-shadow: 0 0 24px rgba(168,85,247,0.5),
              0 0 48px rgba(168,85,247,0.2),
              inset 0 1px 0 rgba(255,255,255,0.2) !important;
  color: #fff !important;
  transition: box-shadow 0.3s, transform 0.3s !important;
}
.nav-cta:hover {
  box-shadow: 0 0 40px rgba(168,85,247,0.8),
              0 0 80px rgba(168,85,247,0.3),
              0 0 20px rgba(34,211,238,0.4) !important;
  transform: translateY(-2px) !important;
  opacity: 1 !important;
}


/* ══════════════════════════════════════
   PRICE BAR
══════════════════════════════════════ */
.price-bar {
  background: rgba(3,2,8,0.92) !important;
  border-bottom: 1px solid rgba(168,85,247,0.2) !important;
  box-shadow: 0 1px 20px rgba(168,85,247,0.1) !important;
}
.price-coin {
  color: #a855f7 !important;
  text-shadow: 0 0 8px rgba(168,85,247,0.6);
}
.price-item:hover .price-coin {
  text-shadow: 0 0 14px rgba(168,85,247,1), 0 0 28px rgba(168,85,247,0.5);
}
.price-dot {
  background: radial-gradient(circle, #22d3ee, #a855f7) !important;
  box-shadow: 0 0 8px rgba(34,211,238,0.9), 0 0 16px rgba(168,85,247,0.5) !important;
}
.price-dot.live {
  background: radial-gradient(circle, #34d399, #22d3ee) !important;
  box-shadow: 0 0 8px rgba(52,211,153,1), 0 0 16px rgba(52,211,153,0.5) !important;
}
.price-change.up   { color: #34d399 !important; text-shadow: 0 0 8px rgba(52,211,153,0.7); }
.price-change.down { color: #f87171 !important; text-shadow: 0 0 8px rgba(248,113,113,0.7); }
.price-change.flat { color: rgba(240,238,255,0.32) !important; }
.price-item { border-right-color: rgba(168,85,247,0.12) !important; }


/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar {
  background: rgba(3,2,8,0.88) !important;
  border-bottom: 1px solid rgba(34,211,238,0.15) !important;
  box-shadow: 0 1px 16px rgba(34,211,238,0.08) !important;
}
.ticker-item { color: rgba(240,238,255,0.5) !important; }

@media (prefers-reduced-motion: no-preference) {
  .t-label { animation: lg-label-cycle 6s ease-in-out infinite; }
  .ticker-item:nth-child(1)  .t-label { animation-delay: 0s; }
  .ticker-item:nth-child(2)  .t-label { animation-delay: 0.75s; }
  .ticker-item:nth-child(3)  .t-label { animation-delay: 1.5s; }
  .ticker-item:nth-child(4)  .t-label { animation-delay: 2.25s; }
  .ticker-item:nth-child(5)  .t-label { animation-delay: 3s; }
  .ticker-item:nth-child(6)  .t-label { animation-delay: 3.75s; }
  .ticker-item:nth-child(7)  .t-label { animation-delay: 4.5s; }
  .ticker-item:nth-child(8)  .t-label { animation-delay: 5.25s; }
}


/* ══════════════════════════════════════
   HERO — flat dark background
══════════════════════════════════════ */
.hero {
  min-height: 100vh !important;
  background: #0d0d1a !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Mesh layers — disabled */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none !important;
  z-index: 0;
  pointer-events: none;
}

/* Floating orbs — hidden */
.hero-glow-1,
.hero-glow-2,
.hero-glow-3 {
  display: none !important;
}

/* Hero grid — hidden */
.hero-grid {
  display: none !important;
}

/* All hero content — above orbs */
.hero-badge,
.hero h1,
.hero-sub,
.hero-desc,
.hero-actions,
.hero-movement-pills {
  position: relative !important;
  z-index: 3 !important;
}

/* Hero glass content panel — frosted surface behind the text block */
.hero-badge {
  background: rgba(168,85,247,0.18) !important;
  border: 1px solid rgba(168,85,247,0.55) !important;
  backdrop-filter: blur(16px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(200%) !important;
  color: rgba(240,238,255,0.9) !important;
  box-shadow:
    0 0 30px rgba(168,85,247,0.4),
    0 0 60px rgba(168,85,247,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15) !important;
  font-family: 'IBM Plex Mono', var(--mono) !important;
  letter-spacing: 0.18em !important;
}

/* NOVAPUNK title — crisp white, subtle glow */
.hero-title-wrap {
  display: block;
}

.hero h1,
h1.grad-text {
  font-family: 'Syne', var(--mono) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(1.2rem, 4vw, 2.5rem) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  filter: none !important;
  text-shadow:
    0 0 6px rgba(255,255,255,0.5),
    0 0 14px rgba(255,255,255,0.2) !important;
}

.hero-sub {
  color: rgba(240,238,255,0.65) !important;
  font-family: 'IBM Plex Mono', var(--mono) !important;
  text-shadow: 0 0 20px rgba(34,211,238,0.3) !important;
}
.hero-desc {
  color: rgba(240,238,255,0.72) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
}

/* Movement pills — vivid glass */
.movement-pill {
  background: rgba(168,85,247,0.12) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
.pill-agorism {
  border-color: rgba(244,114,182,0.65) !important;
  color: #f9a8d4 !important;
  box-shadow: 0 0 12px rgba(244,114,182,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.pill-cypherpunk {
  border-color: rgba(34,211,238,0.65) !important;
  color: #67e8f9 !important;
  box-shadow: 0 0 12px rgba(34,211,238,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.pill-lunarpunk {
  border-color: rgba(168,85,247,0.65) !important;
  color: #d8b4fe !important;
  box-shadow: 0 0 12px rgba(168,85,247,0.4), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.pill-solarpunk {
  border-color: rgba(52,211,153,0.65) !important;
  color: #6ee7b7 !important;
  box-shadow: 0 0 12px rgba(52,211,153,0.3), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

@media (prefers-reduced-motion: no-preference) {
  .pill-agorism    { animation: lg-pill-glow 2.8s ease-in-out infinite 0s; }
  .pill-cypherpunk { animation: lg-pill-glow 2.8s ease-in-out infinite 0.7s; }
  .pill-lunarpunk  { animation: lg-pill-glow 2.8s ease-in-out infinite 1.4s; }
  .pill-solarpunk  { animation: lg-pill-glow 2.8s ease-in-out infinite 2.1s; }
}


/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h2.section-title {
  font-family: 'Syne', var(--mono) !important;
  color: var(--lg-text) !important;
  text-shadow: 0 0 40px rgba(168,85,247,0.15) !important;
  font-size: clamp(1.5rem, 5vw, 2.75rem) !important;
}

.section-tag {
  color: #22d3ee !important;
  text-shadow: 0 0 16px rgba(34,211,238,0.7), 0 0 32px rgba(34,211,238,0.3) !important;
  font-family: 'IBM Plex Mono', var(--mono) !important;
}

.section-desc { color: var(--lg-dim) !important; }

/* .grad-text used in inline quote span */
.grad-text {
  background: linear-gradient(135deg,
    #a855f7 0%, #22d3ee 33%, #34d399 66%, #818cf8 100%) !important;
  background-size: 400% 400% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 12px rgba(168,85,247,0.5)) !important;
}
@media (prefers-reduced-motion: no-preference) {
  .grad-text { animation: lg-iridescent 5s ease infinite; }
}


/* ══════════════════════════════════════
   CARDS — vivid frosted glass
══════════════════════════════════════ */
.card {
  background: linear-gradient(
    145deg,
    rgba(168,85,247,0.14) 0%,
    rgba(3,2,8,0.65) 50%,
    rgba(34,211,238,0.07) 100%
  ) !important;
  backdrop-filter: blur(28px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(220%) !important;
  border: 1px solid rgba(168,85,247,0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(168,85,247,0.08),
    0 8px 48px rgba(0,0,0,0.65),
    0 0 80px rgba(168,85,247,0.08) !important;
  transition:
    transform 0.4s cubic-bezier(0.23,1,0.32,1),
    box-shadow 0.4s cubic-bezier(0.23,1,0.32,1),
    border-color 0.4s !important;
}

/* Iridescent top bar — always faintly visible, blazes on hover */
.card::before {
  background: linear-gradient(90deg,
    #a855f7, #22d3ee, #34d399, #818cf8) !important;
  height: 1px !important;
  opacity: 0.4;
  transition: opacity 0.4s !important;
}
.card:hover::before { opacity: 1 !important; }

.card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(168,85,247,0.6) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 20px 60px rgba(0,0,0,0.7),
    0 0 80px rgba(168,85,247,0.28),
    0 0 30px rgba(34,211,238,0.14) !important;
}

.card-title {
  color: var(--lg-text) !important;
  font-family: 'IBM Plex Mono', var(--mono) !important;
}
.card-body { color: var(--lg-dim) !important; }

.card-num {
  background: linear-gradient(135deg, #a855f7, #22d3ee) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.5)) !important;
  font-size: 0.62rem !important;
}
.card-icon {
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.5)) drop-shadow(0 0 20px rgba(34,211,238,0.2));
}

/* grid-3 (Four Movements) — glowing separator gaps */
.grid-3 {
  background: rgba(168,85,247,0.2) !important;
  border: 1px solid rgba(168,85,247,0.3) !important;
  border-radius: 16px !important;
  box-shadow: 0 0 60px rgba(168,85,247,0.1), 0 0 120px rgba(168,85,247,0.05) !important;
}
.grid-3 .card { border: none !important; border-radius: 0 !important; }

/* Movement card accent borders — vivid neon */
.card[style*="border-left:3px solid var(--pink)"] {
  border-left: 2px solid #f472b6 !important;
  box-shadow:
    -6px 0 30px rgba(244,114,182,0.25),
    0 8px 48px rgba(0,0,0,0.6) !important;
}
.card[style*="border-left:3px solid var(--cyan)"] {
  border-left: 2px solid #22d3ee !important;
  box-shadow:
    -6px 0 30px rgba(34,211,238,0.28),
    0 8px 48px rgba(0,0,0,0.6) !important;
}
.card[style*="border-left:3px solid var(--purple)"] {
  border-left: 2px solid #a855f7 !important;
  box-shadow:
    -6px 0 30px rgba(168,85,247,0.32),
    0 8px 48px rgba(0,0,0,0.6) !important;
}
.card[style*="border-left:3px solid var(--teal)"] {
  border-left: 2px solid #34d399 !important;
  box-shadow:
    -6px 0 30px rgba(52,211,153,0.25),
    0 8px 48px rgba(0,0,0,0.6) !important;
}
.card[style*="border-left:3px solid var(--orange)"] {
  border-left: 2px solid #fb923c !important;
  box-shadow:
    -6px 0 30px rgba(251,146,60,0.25),
    0 8px 48px rgba(0,0,0,0.6) !important;
}


/* ══════════════════════════════════════
   SECTION WRAPPERS — dark glass panels
══════════════════════════════════════ */
div[style*="background:var(--bg-2)"] {
  background: rgba(168,85,247,0.04) !important;
  border-color: rgba(168,85,247,0.12) !important;
}

/* Quote section — glowing panel */
div[style*="background:var(--bg-2)"] + div,
div[style*="background:var(--bg-2)"]:has(p[style*="italic"]) {
  position: relative;
}

div[style*="background:var(--bg-2)"] p[style*="italic"] {
  color: rgba(240,238,255,0.88) !important;
  text-shadow: 0 0 30px rgba(168,85,247,0.25) !important;
}

/* Glowing section dividers */
div[style*="background:var(--bg-2)"] {
  box-shadow:
    0 -1px 0 rgba(168,85,247,0.2),
    0  1px 0 rgba(34,211,238,0.1),
    inset 0 0 120px rgba(168,85,247,0.03) !important;
}


/* ══════════════════════════════════════
   STATS STRIP — neon terminal
══════════════════════════════════════ */
.stats-strip {
  background: rgba(3,2,8,0.92) !important;
  border-top: 1px solid rgba(168,85,247,0.4) !important;
  border-bottom: 1px solid rgba(34,211,238,0.25) !important;
  box-shadow:
    0 -1px 30px rgba(168,85,247,0.2),
    0  1px 20px rgba(34,211,238,0.12),
    inset 0 0 80px rgba(168,85,247,0.05) !important;
  position: relative;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(168,85,247,0.06) 0%,
    rgba(34,211,238,0.06) 33%,
    rgba(52,211,153,0.04) 66%,
    rgba(129,140,248,0.06) 100%
  );
  pointer-events: none;
}

.stat-val {
  background: linear-gradient(135deg, #f0abfc, #a855f7, #22d3ee, #34d399) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-size: clamp(1.25rem, 4vw, 2rem) !important;
}
@media (prefers-reduced-motion: no-preference) {
  .stat-val {
    animation: lg-iridescent 4s ease infinite, lg-stat-glow 3s ease-in-out infinite;
  }
}
.stat-label {
  color: rgba(240,238,255,0.4) !important;
  text-shadow: 0 0 8px rgba(168,85,247,0.2);
}
.stat-item { border-right-color: rgba(168,85,247,0.15) !important; }


/* ══════════════════════════════════════
   BUTTONS — vivid glass
══════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, #a855f7, #22d3ee) !important;
  border: none !important;
  box-shadow:
    0 0 28px rgba(168,85,247,0.55),
    0 0 56px rgba(168,85,247,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
  color: #fff !important;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}
.btn-primary:hover {
  box-shadow:
    0 0 50px rgba(168,85,247,0.8),
    0 0 100px rgba(168,85,247,0.35),
    0 0 24px rgba(34,211,238,0.4) !important;
  transform: translateY(-3px) !important;
  opacity: 1 !important;
}

.btn-ghost {
  background: rgba(168,85,247,0.08) !important;
  border: 1px solid rgba(168,85,247,0.4) !important;
  color: rgba(240,238,255,0.75) !important;
  backdrop-filter: blur(12px) !important;
  transition: all 0.3s !important;
}
.btn-ghost:hover {
  border-color: rgba(168,85,247,0.8) !important;
  color: var(--lg-text) !important;
  background: rgba(168,85,247,0.15) !important;
  box-shadow: 0 0 24px rgba(168,85,247,0.3), 0 0 48px rgba(168,85,247,0.1) !important;
  transform: translateY(-2px) !important;
}


/* ══════════════════════════════════════
   CTA / JOIN
══════════════════════════════════════ */
div#join {
  background: var(--lg-bg) !important;
  position: relative !important;
}
div#join::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%,
    rgba(168,85,247,0.08) 0%, transparent 70%);
  pointer-events: none;
}

div#join input[type="email"] {
  background: rgba(168,85,247,0.08) !important;
  border: 1px solid rgba(168,85,247,0.35) !important;
  color: var(--lg-text) !important;
  backdrop-filter: blur(16px) !important;
  box-shadow: 0 0 0 0 transparent !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}
div#join input[type="email"]::placeholder { color: rgba(240,238,255,0.3) !important; }
div#join input[type="email"]:focus {
  border-color: rgba(168,85,247,0.8) !important;
  box-shadow:
    0 0 0 3px rgba(168,85,247,0.16),
    0 0 30px rgba(168,85,247,0.2) !important;
  outline: none !important;
}
div#join .section-title { color: var(--lg-text) !important; }
div#join .section-desc  { color: var(--lg-dim) !important; }


/* ══════════════════════════════════════
   FOOTER — dark glass
══════════════════════════════════════ */
.site-footer {
  background: rgba(3,2,8,0.98) !important;
  border-top: 1px solid rgba(168,85,247,0.25) !important;
  box-shadow: 0 -1px 40px rgba(168,85,247,0.1) !important;
}

.footer-brand-name {
  background: linear-gradient(135deg, #a855f7, #22d3ee) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 10px rgba(168,85,247,0.4)) !important;
}
.footer-brand-desc { color: rgba(240,238,255,0.38) !important; }

.footer-col-title {
  color: #22d3ee !important;
  text-shadow: 0 0 12px rgba(34,211,238,0.6), 0 0 24px rgba(34,211,238,0.2) !important;
  font-family: 'IBM Plex Mono', var(--mono) !important;
}

.footer-links a {
  color: rgba(240,238,255,0.4) !important;
  transition: color 0.2s, text-shadow 0.2s !important;
}
.footer-links a:hover {
  color: rgba(240,238,255,0.9) !important;
  text-shadow: 0 0 14px rgba(168,85,247,0.6) !important;
}

.footer-motto {
  font-style: italic !important;
  color: rgba(240,238,255,0.28) !important;
  text-shadow: 0 0 20px rgba(168,85,247,0.15) !important;
  font-family: 'IBM Plex Mono', var(--mono) !important;
}
.footer-copy       { color: rgba(240,238,255,0.25) !important; }
.footer-copy a     { color: rgba(240,238,255,0.35) !important; }
.footer-copy a:hover {
  color: rgba(240,238,255,0.7) !important;
  text-shadow: 0 0 10px rgba(168,85,247,0.4) !important;
}
.footer-bottom { border-top-color: rgba(168,85,247,0.12) !important; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 480px) {
  *, *::before, *::after {
    box-sizing: border-box;
  }

  .hero,
  .hero-inner,
  .stats-strip,
  .stats-inner,
  div#join,
  .section-inner,
  .card,
  .grid-3,
  .site-nav,
  .site-nav .nav-inner {
    max-width: 100% !important;
  }

  .hero h1,
  h1.grad-text {
    word-break: break-word !important;
  }

  h2.section-title {
    font-size: clamp(1.25rem, 5.5vw, 2rem) !important;
    word-break: break-word !important;
  }

  .stat-val {
    font-size: clamp(1rem, 4.5vw, 1.5rem) !important;
  }

  .hero-sub {
    font-size: clamp(0.7rem, 3.5vw, 1rem) !important;
  }

  .hero-desc {
    font-size: clamp(0.75rem, 3.5vw, 1rem) !important;
  }

  .hero-badge {
    font-size: clamp(0.55rem, 2.5vw, 0.75rem) !important;
    letter-spacing: 0.1em !important;
    padding: 0.4rem 0.8rem !important;
  }

  .stats-strip {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  div#join {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
