/* ═══════════════════════════════════════════════════
   ENCRYPTED FUTURE — JMWL Landing Page
   Ultra-dark cyber-minimalism · Glassmorphism
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --bg: #000000;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.55);
  --text-mid: rgba(255, 255, 255, 0.75);
  --cyan: #00F0FF;
  --purple: #BD00FF;
  --green: #00FF88;
  --gradient: linear-gradient(135deg, var(--cyan), var(--purple));
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.35);
  --glow-purple: 0 0 20px rgba(189, 0, 255, 0.35);
  --glow-green: 0 0 15px rgba(0, 255, 136, 0.4);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --font-main: 'Space Grotesk', sans-serif;
  --font-display: 'Rajdhani', sans-serif;
  --max-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── PARTICLE CANVAS ── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── NAVIGATION ── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem; /* Slightly smaller as requested */
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 30px; /* Slightly smaller to match text */
  width: auto;
  border-radius: 4px;
  margin-right: 0.5rem;
}
.nav-logo .accent-cyan { color: var(--cyan); }
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ── NAV SOCIAL ICONS ── */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}
.nav-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  transition: all 0.3s ease;
}
.nav-social-icon:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
  transform: translateY(-1px);
}
/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text-mid);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.lang-toggle:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-1px);
}
.lang-flag {
  font-size: 1rem;
  line-height: 1;
}
.lang-label {
  transition: opacity 0.2s;
}

/* ── SHARED ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 1px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent-cyan { color: var(--cyan); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.35s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #000;
  box-shadow: var(--glow-cyan), var(--glow-purple);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 30px rgba(189, 0, 255, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}
.btn-icon {
  width: 18px; height: 18px;
}

#btn-dex {
  background: linear-gradient(270deg, var(--purple), var(--cyan), #bd00ff);
  background-size: 200% 200%;
  animation: dex-bg-shift 4s ease infinite;
  color: var(--text-color);
  border: none;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(189, 0, 255, 0.4);
}
#btn-dex:hover {
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
  transform: translateY(-2px);
  border-color: transparent;
}
@keyframes dex-bg-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#cta-youtube {
  background: linear-gradient(270deg, #ff0055, var(--purple), #ff5e00);
  background-size: 200% 200%;
  animation: yt-bg-shift 4s ease infinite;
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 0, 85, 0.4);
}
#cta-youtube:hover {
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.6);
  transform: translateY(-2px);
  border-color: transparent;
}
@keyframes yt-bg-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── HERO ── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-content {
  flex: 1;
  max-width: 600px;
  margin-left: 10%; /* Shifted right */
}
.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── DYNAMIC NODE NETWORK VISUAL ── */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

#hero-network {
  width: 100%;
  max-width: 500px;
  height: 400px;
  filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.3));
}
  position: relative;
  width: 320px; height: 320px;
}
.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(0, 240, 255, 0.15);
  animation: spin 20s linear infinite;
  box-shadow: inset var(--glow-cyan);
}
.ring-2 {
  width: 72%; height: 72%;
  border-color: rgba(189, 0, 255, 0.2);
  animation: spin 14s linear infinite reverse;
  box-shadow: inset var(--glow-purple);
}
.ring-3 {
  width: 44%; height: 44%;
  border-color: rgba(0, 240, 255, 0.25);
  animation: spin 8s linear infinite;
  box-shadow: inset var(--glow-cyan);
}
.core-center {
  position: absolute;
  width: 56px; height: 56px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.5), 0 0 80px rgba(189, 0, 255, 0.3);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

/* Ring orbit dots */
.ring-1::before, .ring-2::before, .ring-3::before {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
}
.ring-1::before { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.ring-2::before { background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.ring-3::before { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

/* ── NARRATIVE ── */
#narrative {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
}
.narrative-body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.narrative-body p {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.narrative-body blockquote {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--glass);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--cyan);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.narrative-body blockquote em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 600;
}

/* ── WHAT WE BUILD ── */
#what-we-build {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
}
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
}
.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.glass-card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.card-icon svg {
  width: 24px; height: 24px;
  fill: var(--cyan);
}
.card-icon.icon-purple {
  background: rgba(189, 0, 255, 0.1);
}
.card-icon.icon-purple svg { fill: var(--purple); }
.card-icon.icon-gradient {
  background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(189,0,255,0.1));
}
.card-icon.icon-gradient svg { fill: url(#grad) var(--cyan); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 1.5rem;
}

/* ── VIDEO PLAYER MOCK ── */
.video-player-mock {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.6);
}
.video-bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
}
.video-screen {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,240,255,0.03), rgba(189,0,255,0.03));
}
.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,240,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cyan);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(0,240,255,0.3);
}
.play-btn:hover {
  background: rgba(0,240,255,0.25);
  box-shadow: var(--glow-cyan);
}
.video-controls {
  padding: 8px;
}
.video-progress {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.video-progress-fill {
  width: 35%;
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
}

/* ── TERMINAL ── */
.terminal {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.8);
  font-family: 'Courier New', monospace;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--glass-border);
}
.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.terminal-body {
  padding: 14px;
  min-height: 100px;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--green);
}
#terminal-output .line {
  opacity: 0;
  animation: termFadeIn 0.3s forwards;
}
@keyframes termFadeIn {
  to { opacity: 1; }
}
.terminal-cursor {
  display: inline-block;
  color: var(--green);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ── 3D TOKEN ── */
.token-3d-wrapper {
  perspective: 600px;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
.token-3d {
  width: 100px; height: 100px;
  position: relative;
  transform-style: preserve-3d;
  animation: tokenSpin 6s ease-in-out infinite;
}
.token-face {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  backface-visibility: hidden;
}
.token-front {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #000;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), 0 0 60px rgba(189, 0, 255, 0.15);
}
.token-back {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #000;
  transform: rotateY(180deg);
  font-size: 1.6rem;
}
.token-symbol { letter-spacing: 1px; }
@keyframes tokenSpin {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(180deg); }
}

/* ── TOKEN SECTION ── */
#token {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
}
.price-glow {
  color: var(--green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  font-size: 0.8em;
}

/* ── TOKEN FLANKING ELEMENTS ── */
.token-flank-left,
.token-flank-right {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}

.token-flank-left { left: 0; width: 250px; perspective: 1000px; }
.token-flank-right { right: 0; width: 250px; perspective: 1000px; }

@media (max-width: 1100px) {
  .token-flank-left, .token-flank-right { display: none; }
}

/* ── ELEGANT CYBER ORB FLANKS ── */
.cyber-orb {
  position: relative;
  width: 140px; height: 140px;
  transform-style: preserve-3d;
}

.orb-ring {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 243, 255, 0.4);
  box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.1);
  transform-style: preserve-3d;
}

.orb-ring-x { animation: orb-spin-x 16s linear infinite; }
.orb-ring-y { border-color: rgba(189, 0, 255, 0.4); box-shadow: inset 0 0 15px rgba(189, 0, 255, 0.1); animation: orb-spin-y 20s linear infinite; }
.orb-ring-z { border: 1px dashed rgba(0, 243, 255, 0.6); animation: orb-spin-z 24s linear infinite; }

.orb-core {
  position: absolute;
  top: 40%; left: 40%; right: 40%; bottom: 40%;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 30px var(--cyan), 0 0 60px var(--purple);
  animation: orb-pulse 4s ease-in-out infinite alternate;
}

/* Right side slightly different/reversed */
.token-flank-right .cyber-orb {
  transform: scale(0.9) rotate3d(1, 1, 1, 45deg); 
}
.token-flank-right .orb-ring-x { animation-direction: reverse; animation-duration: 20s; }
.token-flank-right .orb-ring-y { border-color: rgba(0, 243, 255, 0.4); animation-direction: reverse; animation-duration: 16s; }
.token-flank-right .orb-ring-z { border-color: rgba(189, 0, 255, 0.6); animation-direction: reverse; animation-duration: 18s; }

@keyframes orb-spin-x { 100% { transform: rotateX(360deg) rotateY(180deg); } }
@keyframes orb-spin-y { 100% { transform: rotateY(360deg) rotateZ(180deg); } }
@keyframes orb-spin-z { 100% { transform: rotateZ(360deg) rotateX(180deg); } }
@keyframes orb-pulse { 
  0% { opacity: 0.6; transform: scale(0.8); } 
  100% { opacity: 1; transform: scale(1.3); } 
}

/* Trade Terminal */
.trade-terminal {
  max-width: 560px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.trade-body {
  padding: 2rem;
}
.trade-ticker {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ticker-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ticker-symbol {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}
.trade-stats {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.stat-value {
  font-weight: 600;
  font-size: 0.95rem;
}
.trade-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.contract-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.contract-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.contract-addr {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--cyan);
  word-break: break-all;
  flex: 1;
}
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--cyan);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
}
.copy-btn svg { width: 14px; height: 14px; fill: var(--cyan); }
.copy-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: var(--glow-cyan);
}

/* ── COMMUNITY LINKS ── */
.community-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.community-social-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  display: flex; justify-content: center; align-items: center;
  color: var(--text-dim);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}
.community-social-icon:hover {
  background: rgba(0, 243, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

/* ── FOOTER ── */
#footer {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}


.footer-ca, .footer-email, .footer-tagline, .footer-disclaimer { color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.footer-ca { font-size: 0.8rem; }
.footer-ca code {
  color: var(--cyan);
  font-family: 'Courier New', monospace;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-email {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.footer-email-link {
  color: var(--cyan);
  transition: opacity 0.3s;
}
.footer-email-link:hover {
  opacity: 0.75;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gradient);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .build-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  #hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-top: 7rem;
  }
  .hero-ctas { justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .hero-title { font-size: 2rem; }
  .trade-actions { flex-direction: column; }
  .trade-actions .btn { width: 100%; justify-content: center; }
  .community-links { flex-direction: column; align-items: center; }
  .contract-row { flex-direction: column; align-items: flex-start; }
}
