/* ============================================================
   Bull SOLdiers ($BULLSOL) — The People's Bull of Solana
   Neon Soviet-cyberpunk theme tuned to the logo/banner art
   ============================================================ */

:root {
  --bg:        #07010f;
  --bg-2:      #14052e;
  --bg-3:      #1d0640;
  --purple:    #9945ff;
  --purple-hi: #b661ff;
  --magenta:   #ff2d95;
  --pink:      #ff6bc0;
  --teal:      #14f195;
  --cyan:      #29e5ff;
  --sun:       #ff9b4a;
  --pepe:      #6ee787;
  --text:      #f5ecff;
  --muted:     #c3aee6;
  --muted-2:   #8f7ab5;
  --line:      rgba(180,120,255,.18);
  --card:      rgba(28, 8, 58, .55);
  --card-2:    rgba(40, 12, 82, .55);

  --grad-sol:  linear-gradient(120deg, var(--purple) 0%, var(--cyan) 55%, var(--teal) 100%);
  --grad-hot:  linear-gradient(120deg, var(--magenta) 0%, var(--purple-hi) 55%, var(--cyan) 100%);

  --font-head: 'Copperplate', 'Copperplate Gothic Light', 'Cinzel', 'Marcellus SC', 'Times New Roman', serif;
  --font-body: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ============================================================
   Animated background stack
   ============================================================ */
.bg-stack { position: fixed; inset: 0; z-index: -1; overflow: hidden; }

#fx-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.bg-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(45% 45% at 20% 15%, rgba(153,69,255,.42), transparent 60%),
    radial-gradient(40% 40% at 82% 20%, rgba(255,45,149,.38), transparent 62%),
    radial-gradient(55% 55% at 75% 85%, rgba(41,229,255,.22), transparent 65%),
    radial-gradient(50% 50% at 25% 90%, rgba(20,241,149,.18), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
  filter: blur(10px) saturate(120%);
  animation: auroraShift 22s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1);   }
  50%  { transform: translate3d(2%, 2%, 0)  scale(1.08); }
  100% { transform: translate3d(1%, -2%, 0) scale(1.04); }
}

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(153,69,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,229,255,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 78%);
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift { to { background-position: 60px 60px, 60px 60px; } }

.bg-scan {
  position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0 2px, rgba(0,0,0,.16) 2px 4px);
  mix-blend-mode: overlay;
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove { to { background-position: 0 200px; } }

.bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,.6) 100%);
}

.spotlight {
  position: absolute; width: 620px; height: 620px; left: 0; top: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,192,.14), rgba(41,229,255,.07) 40%, transparent 70%);
  pointer-events: none; transition: opacity .4s ease; opacity: 0;
}

/* ============================================================
   Buttons / shared
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1.02rem; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .3s ease, filter .3s ease;
  white-space: nowrap;
}
.btn .ico { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  color: #0a0018;
  background: var(--grad-sol);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15), 0 10px 30px rgba(41,229,255,.35), 0 0 40px rgba(153,69,255,.4);
}
.btn-primary .ico { filter: brightness(0) saturate(0); opacity: .8; }
.btn-primary:hover { box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 14px 44px rgba(20,241,149,.5), 0 0 60px rgba(153,69,255,.6); }

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 24px rgba(153,69,255,.12);
  backdrop-filter: blur(6px);
}
.btn-ghost .ico { filter: brightness(0) invert(1); opacity: .85; }
.btn-ghost:hover { border-color: var(--magenta); box-shadow: 0 0 28px rgba(255,45,149,.4), inset 0 0 24px rgba(255,45,149,.16); }

.ico { width: 22px; height: 22px; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled {
  background: rgba(9,2,20,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(0,0,0,.4);
  padding-top: 10px; padding-bottom: 10px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(41,229,255,.5);
  box-shadow: 0 0 18px rgba(153,69,255,.6);
  object-fit: cover;
}
.nav-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  letter-spacing: 3px;
  background: var(--grad-sol); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 22px rgba(41,229,255,.35);
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; font-size: .98rem;
  color: var(--muted); position: relative; padding: 4px 0;
  transition: color .25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-hot); transition: width .3s ease; box-shadow: 0 0 10px var(--magenta);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.icon-btn .ico { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.icon-btn:hover { transform: translateY(-3px); border-color: var(--cyan); box-shadow: 0 0 22px rgba(41,229,255,.5); }
.nav-buy { padding: 11px 20px; font-size: .92rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px clamp(18px, 4vw, 48px) 40px;
  position: relative;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: .82rem;
  color: var(--cyan);
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(41,229,255,.06); margin-bottom: 22px;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(.7);} }

.hero-title {
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  letter-spacing: 6px; line-height: .9; margin-bottom: 20px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #e9d4ff 40%, var(--purple-hi) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 60px rgba(153,69,255,.5);
  animation: titleGlow 4s ease-in-out infinite alternate;
}
.hero-title::before {
  content: attr(data-text);
  position: absolute; inset: 0; z-index: -1;
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: blur(18px); opacity: .7;
}
@keyframes titleGlow {
  from { text-shadow: 0 0 40px rgba(153,69,255,.4), 0 0 12px rgba(41,229,255,.3); }
  to   { text-shadow: 0 0 80px rgba(255,45,149,.55), 0 0 26px rgba(41,229,255,.5); }
}

.hero-sub { font-size: 1.18rem; color: var(--muted); max-width: 560px; margin-bottom: 18px; }
.hero-meme {
  font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 1px;
  color: #fff; font-style: italic; text-transform: none;
  padding: 14px 18px; border-left: 3px solid var(--magenta);
  background: linear-gradient(90deg, rgba(255,45,149,.12), transparent);
  border-radius: 0 12px 12px 0; margin-bottom: 30px; max-width: 560px;
}
.hero-meme .hl { color: var(--teal); font-style: normal; text-shadow: 0 0 16px rgba(20,241,149,.6); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.ca {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 16px; border-radius: 999px;
  border: 1px dashed rgba(41,229,255,.4); background: rgba(255,255,255,.03);
  max-width: 100%; cursor: pointer; transition: border-color .25s ease, box-shadow .25s ease;
}
.ca:hover { border-color: var(--teal); box-shadow: 0 0 24px rgba(20,241,149,.25); }
.ca-label { font-weight: 700; letter-spacing: 2px; color: var(--cyan); font-size: .8rem; }
.ca-addr { font-family: 'Rajdhani', monospace; font-size: .95rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 260px; }
.ca-copy {
  border: none; cursor: pointer; padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .8rem;
  color: #0a0018; background: var(--grad-sol);
}

/* Hero art */
.hero-art { position: relative; display: grid; place-items: center; min-height: 420px; }
.hero-img {
  width: min(440px, 90%); border-radius: 26px;
  border: 1.5px solid rgba(41,229,255,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 70px rgba(153,69,255,.5);
  position: relative; z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.art-glow {
  position: absolute; width: 78%; height: 78%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(255,45,149,.5), rgba(153,69,255,.35) 45%, transparent 70%);
  filter: blur(50px); animation: breathe 5s ease-in-out infinite alternate;
}
@keyframes breathe { from { transform: scale(.9); opacity: .7; } to { transform: scale(1.12); opacity: 1; } }

.art-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(41,229,255,.25); z-index: 1; }
.ring-1 { width: 96%; height: 96%; border-style: dashed; animation: spin 26s linear infinite; }
.ring-2 { width: 112%; height: 112%; border-color: rgba(255,45,149,.18); animation: spin 40s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.float-sol { position: absolute; width: 40px; opacity: .85; z-index: 3; filter: drop-shadow(0 0 12px rgba(41,229,255,.7)); }
.float-sol.s1 { top: 6%;  left: 4%;  animation: floatY 5s ease-in-out infinite; }
.float-sol.s2 { bottom: 10%; right: 2%; width: 30px; animation: floatY 7s ease-in-out infinite reverse; }
.float-sol.s3 { top: 42%; right: -4%; width: 24px; opacity: .6; animation: floatY 6.5s ease-in-out infinite; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-2);
}
.scroll-cue span { width: 22px; height: 36px; border: 2px solid var(--line); border-radius: 12px; position: relative; }
.scroll-cue span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: var(--cyan);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } 100% { opacity: 0; } }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(153,69,255,.14), rgba(255,45,149,.14));
  padding: 14px 0;
}
.marquee-track { display: inline-flex; gap: 28px; align-items: center; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 700; letter-spacing: 4px; font-size: 1.15rem; text-transform: uppercase;
  color: #fff; text-shadow: 0 0 18px rgba(41,229,255,.4);
}
.marquee-track .star { color: var(--magenta); text-shadow: 0 0 16px var(--magenta); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Sections
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 48px); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.kicker {
  display: inline-block; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; font-size: .8rem;
  color: var(--magenta); margin-bottom: 14px;
  padding: 6px 16px; border: 1px solid rgba(255,45,149,.35); border-radius: 999px;
  background: rgba(255,45,149,.07);
}
.kicker.light { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 4px; margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, var(--purple-hi)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead { color: var(--muted); font-size: 1.12rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 60px; }
.story-card {
  height: 100%; padding: 34px; border-radius: 22px;
  background: var(--card); border: 1px solid var(--line);
  backdrop-filter: blur(8px); box-shadow: inset 0 0 40px rgba(153,69,255,.1);
  position: relative; overflow: hidden;
}
.story-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-hot);
}
.story-card h3 { font-size: 1.7rem; letter-spacing: 3px; margin-bottom: 16px; color: #fff; }
.story-card p { color: var(--muted); margin-bottom: 14px; }
.story-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.story-tags span {
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .78rem;
  padding: 7px 14px; border-radius: 999px; color: var(--teal);
  border: 1px solid rgba(20,241,149,.35); background: rgba(20,241,149,.06);
}

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feat {
  padding: 26px; border-radius: 18px; background: var(--card-2); border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.feat:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 40px rgba(41,229,255,.2); }
.feat-ico {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 16px;
  font-size: 1.5rem; color: #0a0018; background: var(--grad-sol);
  box-shadow: 0 0 24px rgba(41,229,255,.4);
}
.feat h4 { font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 8px; color: #fff; }
.feat p { color: var(--muted); font-size: .98rem; }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 34px; border-radius: 22px;
  background: linear-gradient(120deg, rgba(153,69,255,.14), rgba(255,45,149,.1));
  border: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 2px;
  background: var(--grad-sol); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-size: .82rem; font-weight: 600; margin-top: 4px; }

/* How to buy */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
.step {
  padding: 30px 24px; border-radius: 20px; background: var(--card); border: 1px solid var(--line);
  position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.step:hover { transform: translateY(-8px); border-color: var(--magenta); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 44px rgba(255,45,149,.22); }
.step-no {
  font-family: var(--font-head); font-weight: 800; font-size: 3rem; letter-spacing: 2px; line-height: 1;
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .85; margin-bottom: 12px;
}
.step h4 { font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 10px; color: #fff; }
.step p { color: var(--muted); font-size: .98rem; }
.step strong { color: var(--teal); }

.htb-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Chart */
.chart-frame {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  background: rgba(10,3,24,.7); box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 50px rgba(153,69,255,.2);
}
.chart-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(153,69,255,.14), rgba(41,229,255,.08));
}
.chart-pair { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.chart-pair .ico { width: 22px; height: 22px; }
.chart-open { font-weight: 600; letter-spacing: 1px; color: var(--cyan); text-transform: uppercase; font-size: .9rem; transition: color .2s; }
.chart-open:hover { color: #fff; }
.chart-embed { position: relative; width: 100%; height: 620px; background: #0a0a15; }
.chart-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Join us */
.joinus { max-width: 1300px; }
.join-banner {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 90px rgba(0,0,0,.6), 0 0 70px rgba(255,45,149,.25);
}
.join-banner > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.join-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,1,15,.92) 0%, rgba(7,1,15,.7) 40%, rgba(7,1,15,.25) 100%);
  display: flex; align-items: center; padding: clamp(24px, 5vw, 64px);
}
.join-content { max-width: 560px; }
.join-title { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: 4px; margin: 12px 0 16px;
  background: linear-gradient(180deg, #fff, var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 50px rgba(255,45,149,.4);
}
.join-content p { color: var(--muted); font-size: 1.12rem; margin-bottom: 26px; }
.join-socials { display: flex; flex-wrap: wrap; gap: 14px; }
.social {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.05); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .9rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(6px);
}
.social .ico { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.social:hover { transform: translateY(-4px); border-color: var(--cyan); box-shadow: 0 0 28px rgba(41,229,255,.4); background: rgba(41,229,255,.1); }

/* ============================================================
   Footer
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 50px clamp(18px, 4vw, 48px) 30px; max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 800; letter-spacing: 3px; font-size: 1.4rem; }
.footer-logo { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,.03); transition: .25s;
}
.footer-socials .ico { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-socials a:hover { transform: translateY(-3px); border-color: var(--teal); box-shadow: 0 0 20px rgba(20,241,149,.4); }
.footer-disc { color: var(--muted-2); font-size: .86rem; max-width: 820px; margin-bottom: 14px; }
.footer-copy { color: var(--muted); letter-spacing: 1px; font-size: .9rem; }

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 30px);
  padding: 14px 26px; border-radius: 999px; z-index: 200;
  background: var(--grad-sol); color: #0a0018; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .9rem;
  box-shadow: 0 14px 40px rgba(20,241,149,.4); opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; min-height: 340px; }
  .eyebrow, .hero-meme { text-align: left; }
  .hero-cta, .hero-sub, .hero-meme, .ca { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 auto auto; top: 70px; right: 14px;
    flex-direction: column; gap: 18px; padding: 22px 26px;
    background: rgba(12,3,28,.96); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.6); backdrop-filter: blur(14px);
    transform: translateX(120%); transition: transform .35s ease; min-width: 200px;
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: flex; }
  .nav-buy { display: none; }
  .about-cards { grid-template-columns: 1fr; }
  .join-overlay { background: linear-gradient(180deg, rgba(7,1,15,.55) 0%, rgba(7,1,15,.92) 70%); align-items: flex-end; }
}

@media (max-width: 480px) {
  .steps, .stats { grid-template-columns: 1fr; }
  .ca-addr { max-width: 150px; }
  .hero-title { letter-spacing: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
