/* ============================================================
   BLUE BULL — $BLUBULL landing page
   Neon-on-black meme coin theme
   ============================================================ */

:root {
  --bg: #05070f;
  --bg-2: #0a0e1a;
  --panel: rgba(14, 22, 44, 0.6);
  --panel-border: rgba(24, 224, 255, 0.18);
  --blue: #18e0ff;
  --blue-deep: #0a84ff;
  --blue-elec: #2a6bff;
  --violet: #8a5bff;
  --ink: #eaf6ff;
  --ink-dim: #9fb4cc;
  --glow: 0 0 12px rgba(24, 224, 255, 0.65), 0 0 34px rgba(10, 132, 255, 0.4);
  --radius: 18px;
  --maxw: 1180px;
}

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

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

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, .stat__num, .donut__total, .nav__name {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
}

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

/* ---------- Animated background ---------- */
.bg-grid, .bg-glow, #sparks {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(24, 224, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 224, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 40%, transparent 100%);
  animation: gridpan 30s linear infinite;
}
@keyframes gridpan { to { background-position: 46px 46px; } }
.bg-glow {
  z-index: -2;
  background:
    radial-gradient(700px 500px at 80% -5%, rgba(10, 132, 255, 0.28), transparent 60%),
    radial-gradient(600px 500px at 5% 15%, rgba(138, 91, 255, 0.18), transparent 60%),
    radial-gradient(900px 700px at 50% 120%, rgba(24, 224, 255, 0.18), transparent 60%);
}
#sparks { z-index: -1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #04121f;
  box-shadow: var(--glow);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 20px rgba(24,224,255,0.9), 0 0 50px rgba(10,132,255,0.55); }
.btn--ghost {
  background: rgba(24, 224, 255, 0.06);
  border-color: var(--blue);
  color: var(--blue);
}
.btn--ghost:hover { transform: translateY(-3px); background: rgba(24,224,255,0.14); box-shadow: var(--glow); }

/* ---------- Glow text ---------- */
.glow-text {
  color: var(--blue);
  text-shadow: 0 0 8px rgba(24,224,255,0.9), 0 0 22px rgba(24,224,255,0.6), 0 0 46px rgba(10,132,255,0.45);
}
.glow-text--hot {
  color: #ff3df0;
  text-shadow: 0 0 8px rgba(255,61,240,0.9), 0 0 22px rgba(255,61,240,0.6), 0 0 46px rgba(255,61,240,0.45);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 7, 15, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 224, 255, 0.12);
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled { background: rgba(5, 7, 15, 0.9); padding-top: 0.55rem; padding-bottom: 0.55rem; }
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo { width: 40px; height: 40px; filter: drop-shadow(0 0 6px rgba(24,224,255,0.8)); }
.nav__name { font-weight: 900; font-size: 1.1rem; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { color: var(--ink-dim); font-weight: 500; font-size: 0.95rem; transition: color 0.2s, text-shadow 0.2s; }
.nav__links a:hover { color: var(--blue); text-shadow: 0 0 10px rgba(24,224,255,0.7); }
.nav__cta { color: #04121f !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__burger span { width: 26px; height: 3px; background: var(--blue); border-radius: 3px; transition: 0.3s; box-shadow: 0 0 6px rgba(24,224,255,0.7); }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8.5rem clamp(1rem, 4vw, 2rem) 2rem;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(24, 224, 255, 0.08);
  border: 1px solid var(--panel-border);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 1.2rem;
}
.hero__sub { color: var(--ink-dim); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 34ch; margin-bottom: 1.8rem; }
.hero__sub strong { color: var(--ink); }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }

.contract {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 0.5rem 0.5rem 0.5rem 0.9rem;
  max-width: 100%;
}
.contract__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-dim); }
.contract code { font-size: 0.8rem; color: var(--blue); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 42vw; }
.contract__copy {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #04121f; border: none; border-radius: 8px;
  padding: 0.4rem 0.7rem; cursor: pointer; transition: transform 0.15s;
}
.contract__copy:hover { transform: scale(1.06); }

/* Hero art */
.hero__art { position: relative; display: grid; place-items: center; }
.hero__bull {
  width: min(440px, 82%);
  filter: drop-shadow(0 0 30px rgba(24,224,255,0.55));
  animation: float 5.5s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
.hero__ring {
  position: absolute;
  width: min(430px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(24, 224, 255, 0.35);
  box-shadow: inset 0 0 60px rgba(24,224,255,0.15);
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--glow); }
.stat__num { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 900; color: var(--blue); text-shadow: 0 0 14px rgba(24,224,255,0.5); }
.stat__label { font-size: 0.82rem; color: var(--ink-dim); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(24,224,255,0.15);
  border-bottom: 1px solid rgba(24,224,255,0.15);
  background: linear-gradient(90deg, rgba(10,132,255,0.08), rgba(138,91,255,0.08));
  padding: 0.9rem 0;
  margin: 4rem 0;
}
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: scroll 22s linear infinite; }
.marquee__track span { font-family: "Orbitron", sans-serif; font-weight: 700; color: var(--blue); font-size: 1rem; letter-spacing: 0.05em; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 4.5rem clamp(1rem, 4vw, 2rem); }
.section--alt { max-width: 100%; background: linear-gradient(180deg, transparent, rgba(10,14,26,0.6), transparent); }
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 60ch; margin: 0 auto 3rem; }
.section__title { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; margin-bottom: 0.8rem; }
.section__lead { color: var(--ink-dim); font-size: 1.08rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-8px); border-color: var(--blue); box-shadow: var(--glow); }
.card__icon { font-size: 2.2rem; margin-bottom: 0.8rem; filter: drop-shadow(0 0 8px rgba(24,224,255,0.5)); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--ink); }
.card p { color: var(--ink-dim); font-size: 0.95rem; }

/* ---------- Mission ---------- */
.mission {
  margin-top: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(10,132,255,0.12), rgba(138,91,255,0.1));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 50% 0%, rgba(24,224,255,0.15), transparent 70%);
  pointer-events: none;
}
.mission__badge {
  display: inline-block;
  font-family: "Orbitron", sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); background: rgba(24,224,255,0.1);
  border: 1px solid var(--panel-border); padding: 0.35rem 1rem;
  border-radius: 999px; margin-bottom: 1.1rem;
}
.mission__text {
  font-family: "Orbitron", sans-serif; font-weight: 500;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem); line-height: 1.4;
  max-width: 40ch; margin: 0 auto; color: var(--ink);
}

/* ---------- Fair launch banner ---------- */
.fairbanner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 820px; margin: 0 auto 3rem;
}
.fairbanner__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 1.3rem 0.8rem; text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fairbanner__item:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.fairbanner__big { font-family: "Orbitron", sans-serif; font-weight: 900; font-size: 1.9rem; line-height: 1; }
.fairbanner__item span:last-child { color: var(--ink-dim); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Tokenomics ---------- */
.tokenomics { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.tokenomics__chart { display: grid; place-items: center; gap: 1.5rem; }
.donut {
  --deg1: 306deg; /* 85% */
  --deg2: 334.8deg; /* +8% */
  --deg3: 352.8deg; /* +5% */
  width: 260px; height: 260px; border-radius: 50%;
  background: conic-gradient(
    var(--blue) 0 var(--deg1),
    var(--blue-deep) var(--deg1) var(--deg2),
    var(--blue-elec) var(--deg2) var(--deg3),
    var(--violet) var(--deg3) 360deg
  );
  display: grid; place-items: center;
  box-shadow: 0 0 40px rgba(24,224,255,0.35);
  position: relative;
  animation: donutspin 1.2s ease-out;
}
@keyframes donutspin { from { transform: rotate(-90deg) scale(0.9); opacity: 0.4; } to { transform: rotate(0) scale(1); opacity: 1; } }
.donut--rewards {
  background: conic-gradient(
    #18e0ff 0 144deg,      /* 40% ETH holder rewards */
    #ff3df0 144deg 234deg, /* 25% buyback & burn */
    #0a84ff 234deg 288deg, /* 15% raffles */
    #8a5bff 288deg 324deg, /* 10% referrals */
    #4361ff 324deg 360deg  /* 10% marketing */
  );
}
.donut__hole {
  width: 62%; height: 62%; border-radius: 50%;
  background: var(--bg-2);
  display: grid; place-items: center; align-content: center;
  border: 1px solid var(--panel-border);
}
.donut__total { font-size: 1.9rem; font-weight: 900; color: var(--blue); text-shadow: 0 0 12px rgba(24,224,255,0.6); }
.donut__ticker { font-size: 0.85rem; color: var(--ink-dim); letter-spacing: 0.1em; }
.legend { list-style: none; display: grid; gap: 0.7rem; }
.legend li { display: flex; align-items: center; gap: 0.7rem; color: var(--ink-dim); font-size: 0.98rem; }
.legend strong { color: var(--ink); }
.legend__swatch { width: 16px; height: 16px; border-radius: 5px; background: var(--c); box-shadow: 0 0 8px var(--c); }

.tokenomics__facts { display: grid; gap: 0.8rem; }
.fact {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 12px; padding: 1rem 1.3rem;
  transition: border-color 0.2s, transform 0.2s;
}
.fact:hover { border-color: var(--blue); transform: translateX(4px); }
.fact__k { color: var(--ink-dim); font-size: 0.95rem; }
.fact__v { font-family: "Orbitron", sans-serif; font-weight: 700; font-size: 1rem; }
.fact__v.highlight { color: var(--blue); text-shadow: 0 0 10px rgba(24,224,255,0.5); }

/* ---------- Rewards flow ---------- */
.flow {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0.8rem; flex-wrap: wrap; margin-bottom: 2.6rem;
}
.flow__step {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 1.3rem 1.6rem; min-width: 180px;
  text-align: center; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.flow__step:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--glow); }
.flow__emoji { font-size: 1.8rem; filter: drop-shadow(0 0 8px rgba(24,224,255,0.5)); }
.flow__step strong { font-family: "Orbitron", sans-serif; color: var(--ink); font-size: 1.05rem; }
.flow__step span:last-child { color: var(--ink-dim); font-size: 0.85rem; }
.flow__arrow { display: flex; align-items: center; font-size: 1.6rem; color: var(--blue); text-shadow: 0 0 10px rgba(24,224,255,0.7); }

/* ---------- Reward buckets ---------- */
.rewards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.reward--hot { border-color: rgba(255,61,240,0.4); }
.reward--hot:hover { border-color: #ff3df0; box-shadow: 0 0 12px rgba(255,61,240,0.6), 0 0 34px rgba(255,61,240,0.35); }
.reward__pct--hot { color: #ff3df0; text-shadow: 0 0 14px rgba(255,61,240,0.55); }
.reward {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.reward:hover { transform: translateY(-8px); border-color: var(--blue); box-shadow: var(--glow); }
.reward__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.reward__icon { font-size: 2rem; filter: drop-shadow(0 0 8px rgba(24,224,255,0.5)); }
.reward__pct {
  font-family: "Orbitron", sans-serif; font-weight: 900; font-size: 1.5rem;
  color: var(--blue); text-shadow: 0 0 14px rgba(24,224,255,0.55);
}
.reward h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.reward p { color: var(--ink-dim); font-size: 0.92rem; }
.reward p strong { color: var(--ink); }
.rewards__note {
  text-align: center; color: var(--ink-dim); font-size: 0.92rem;
  max-width: 70ch; margin: 2.2rem auto 0; opacity: 0.85;
}

/* ---------- Transparency band ---------- */
.transparency {
  margin-top: 2.4rem;
  background: linear-gradient(135deg, rgba(10,132,255,0.1), rgba(255,61,240,0.06));
  border: 1px solid var(--panel-border); border-radius: var(--radius);
  padding: 2rem 1.6rem;
}
.transparency__head { text-align: center; max-width: 60ch; margin: 0 auto 1.6rem; }
.transparency__badge {
  display: inline-block; font-family: "Orbitron", sans-serif; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
  background: rgba(24,224,255,0.1); border: 1px solid var(--panel-border);
  padding: 0.35rem 1rem; border-radius: 999px; margin-bottom: 0.9rem;
}
.transparency__head p { color: var(--ink-dim); font-size: 0.98rem; }
.transparency__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tstat {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 12px; padding: 1.2rem 0.8rem; text-align: center;
}
.tstat__num { font-family: "Orbitron", sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--blue); text-shadow: 0 0 12px rgba(24,224,255,0.45); transition: color 0.3s; }
.tstat__num.up { color: #3dffa2; text-shadow: 0 0 12px rgba(61,255,162,0.5); }
.tstat__num.down { color: #ff5d7a; text-shadow: 0 0 12px rgba(255,93,122,0.5); }
.tstat__label { color: var(--ink-dim); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* live indicator + footer */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-dim); margin-right: 0.35rem; vertical-align: middle;
}
.live-dot.live { background: #3dffa2; box-shadow: 0 0 8px #3dffa2; animation: pulse 1.6s infinite; }
.transparency__foot {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.4rem; font-size: 0.85rem; color: var(--ink-dim);
}
.transparency__links { display: flex; gap: 1rem; }
.transparency__links a { color: var(--blue); font-weight: 600; transition: text-shadow 0.2s; }
.transparency__links a:hover { text-shadow: 0 0 10px rgba(24,224,255,0.7); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.step {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 1.8rem 1.4rem; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.step__num { font-family: "Orbitron", sans-serif; font-size: 2.6rem; font-weight: 900; color: transparent; -webkit-text-stroke: 1.5px var(--blue); opacity: 0.55; margin-bottom: 0.6rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-dim); font-size: 0.93rem; }
.buy__cta { display: flex; gap: 1rem; justify-content: center; margin-top: 2.6rem; flex-wrap: wrap; }

/* ---------- Roadmap ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.phase {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 1.6rem 1.4rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.phase:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: var(--glow); }
.phase__tag {
  display: inline-block; font-family: "Orbitron", sans-serif; font-weight: 700; font-size: 0.78rem;
  color: var(--blue); background: rgba(24,224,255,0.1); border: 1px solid var(--panel-border);
  padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 0.9rem; letter-spacing: 0.05em;
}
.phase h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.phase ul { list-style: none; display: grid; gap: 0.5rem; }
.phase li { color: var(--ink-dim); font-size: 0.92rem; padding-left: 1.3rem; position: relative; }
.phase li::before { content: "▹"; position: absolute; left: 0; color: var(--blue); }

/* ---------- Community ---------- */
.community__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.community__bull { width: 130px; margin: 0 auto 1.2rem; filter: drop-shadow(0 0 20px rgba(24,224,255,0.6)); animation: float 5s ease-in-out infinite; }
.socials { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.social {
  font-family: "Orbitron", sans-serif; font-weight: 700; font-size: 0.95rem;
  background: var(--panel); border: 1px solid var(--panel-border);
  padding: 0.9rem 1.6rem; border-radius: 999px; color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.social:hover { transform: translateY(-4px); border-color: var(--blue); color: var(--blue); box-shadow: var(--glow); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 1rem; }
.faq__item {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 14px; padding: 0 1.4rem; overflow: hidden;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.2rem 0; font-weight: 700;
  font-family: "Orbitron", sans-serif; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--blue); font-size: 1.6rem; transition: transform 0.25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-dim); padding: 0 0 1.3rem; font-size: 0.97rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(24,224,255,0.15); padding: 3rem clamp(1rem,4vw,2rem) 2rem; max-width: var(--maxw); margin: 3rem auto 0; }
.footer__top { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer__links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__links a { color: var(--ink-dim); font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--blue); }
.footer__disclaimer { color: var(--ink-dim); font-size: 0.8rem; max-width: 80ch; margin: 0 auto 1.2rem; text-align: center; opacity: 0.75; }
.footer__copy { text-align: center; color: var(--ink-dim); font-size: 0.85rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; gap: 1.2rem;
    background: rgba(5,7,15,0.97); backdrop-filter: blur(16px);
    padding: 2rem; transform: translateY(-120%); transition: transform 0.35s ease;
    border-bottom: 1px solid var(--panel-border);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__badge, .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards, .steps, .timeline { grid-template-columns: repeat(2, 1fr); }
  .rewards { grid-template-columns: repeat(2, 1fr); }
  .fairbanner, .transparency__grid { grid-template-columns: repeat(2, 1fr); }
  .tokenomics { grid-template-columns: 1fr; }
  .contract code { max-width: 60vw; }
}
@media (max-width: 540px) {
  .cards, .steps, .timeline, .stats { grid-template-columns: 1fr; }
  .rewards { grid-template-columns: 1fr; }
  .fairbanner, .transparency__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 7rem; }
  .contract { flex-wrap: wrap; }
  .contract code { max-width: 100%; white-space: normal; word-break: break-all; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
