:root {
  --bg: #0a0a0f;
  --bg-elev: #0f0f17;
  --text: #e7e7ff;
  --muted: #9aa0b3;
  --primary: #b084fc;
  --primary-strong: #9a5bff;
  --accent: #f55bd1;
  --accent-2: #6ee0ff;
  --border: #2a2340;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Orbitron', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 50% -10%, #18182a 0%, #0b0b12 35%, #07070c 60%, #05050a 100%),
              repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 1px, rgba(0,0,0,0) 2px 4px),
              var(--bg);
  background-attachment: fixed;
  letter-spacing: 0.02em;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(146, 93, 255, 0.15), rgba(146, 93, 255, 0) 60%)
              , var(--bg);
  border-bottom: 2px solid #7a38ff44;
  box-shadow: 0 0 0 1px rgba(122,56,255,0.25) inset, 0 10px 30px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  text-decoration: none;
}
.logo-main {
  font-weight: 900;
  font-size: 27px;
  letter-spacing: 0.12em;
  color: #cfc7ff;
  text-shadow: 0 0 12px rgba(160,120,255,0.6);
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--accent-2);
  margin-top: -2px;
}

.main-nav { display: flex; gap: 22px; }
.nav-btn {
  color: #c9c2ff;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid #7a38ff66;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(122,56,255,0.22), rgba(122,56,255,0.06));
  box-shadow: 0 0 0 1px rgba(160,120,255,0.25) inset, 0 8px 24px rgba(0,0,0,0.35);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(212,170,255,0.4) inset, 0 12px 30px rgba(50,0,120,0.35);
}

.main { padding-bottom: 80px; }

.hero {
  padding: 84px 0 40px;
  text-align: center;
}
.eyebrow {
  color: #cdd0ff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}
.headline {
  font-weight: 900;
  font-size: clamp(29px, 6.4vw, 69px);
  letter-spacing: 0.04em;
  line-height: 0.98;
  margin: 6px 0 8px;
}
.subhead {
  font-size: clamp(16px, 3.7vw, 37px);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 6px 0 0;
}
.gradient {
  background: linear-gradient(90deg, var(--primary-strong), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(180, 110, 255, 0.4);
}

.terminal-wrap { margin-top: 40px; }
.terminal {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20,16,35,0.9), rgba(10,9,18,0.9));
  box-shadow: 0 18px 48px rgba(0,0,0,0.5);
}
.terminal-header {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #141024, #0f0d1b);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.terminal-body { padding: 22px 24px; }
.terminal pre { margin: 0; font-family: 'Share Tech Mono', monospace; color: #dfe2ff; }
.terminal .accent { color: var(--accent); }

/* removed placeholders */

.br-md { display: none; }
@media (min-width: 780px) { .br-md { display: inline; } }

/* Subtle animated scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
  animation: flicker 6s linear infinite;
}
@keyframes flicker {
  0%, 100% { opacity: .15; }
  50% { opacity: .12; }
}

/* Utility */
.accent { color: var(--accent); }

/* CTA */
.cta { text-align: center; padding: 36px 0 28px; }
.cta-icon { display: flex; justify-content: center; margin-bottom: 12px;  }
.buy-btn {
  display: inline-block;
  margin: 4px auto 16px;
  color: #dcd5ff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 16px 28px;
  border: 1px solid #7a38ff66;
  border-radius: 14px;
  background: radial-gradient(120% 220% at 50% 0%, rgba(160,120,255,.35) 0%, rgba(160,120,255,.1) 40%, rgba(90,10,190,.08) 100%);
  box-shadow: 0 0 0 1px rgba(160,120,255,0.25) inset, 0 14px 34px rgba(0,0,0,0.5);
  transition: transform .15s ease, box-shadow .2s ease;
}
.buy-btn:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(212,170,255,.45) inset, 0 18px 40px rgba(50,0,120,.45); }
.contract { margin-top: 6px; }
.contract .label { color: var(--muted); font-family: 'Share Tech Mono', monospace; letter-spacing: .18em; margin-bottom: 8px; }
.copy-field { display: inline-flex; align-items: center; gap: 8px; padding: 8px; border: 1px solid var(--border); border-radius: 10px; background: #0b0a14; box-shadow: 0 8px 24px rgba(0,0,0,.45); }
.copy-field input { width: min(540px, 80vw); background: transparent; color: #e9e9ff; border: none; outline: none; font-family: 'Share Tech Mono', monospace; font-size: 14px; }
.copy-btn { cursor: pointer; font-family: 'Share Tech Mono', monospace; font-size: 12px; letter-spacing: .16em; color: #f4eaff; padding: 10px 14px; border: 1px solid #7a38ff80; border-radius: 8px; background: linear-gradient(180deg, rgba(122,56,255,0.35), rgba(122,56,255,0.08)); }
.copy-btn:active { transform: translateY(1px); }

/* Live Data */
.live { padding: 36px 0 60px; }
.live-title { text-align: center; font-weight: 900; letter-spacing: .18em; font-size: clamp(18px, 4.2vw, 35px); color: #c3b9ff; text-shadow: 0 0 24px rgba(176,120,255,.35); margin-bottom: 26px; }
.cards { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid #6b37e366;
  background: radial-gradient(120% 160% at 50% 0%, rgba(122,56,255,.18) 0%, rgba(122,56,255,.06) 60%, rgba(80,40,180,.05) 100%), #0b0a14;
  box-shadow: 0 0 30px rgba(146,93,255,.35), 0 14px 36px rgba(0,0,0,.55);
  text-align: center;
}
.card-eyebrow { font-family: 'Share Tech Mono', monospace; color: var(--accent-2); letter-spacing: .22em; font-size: 12px; margin-bottom: 10px; }
.card-value { font-weight: 900; font-size: clamp(28px, 4.8vw, 42px); letter-spacing: .06em; color: #d6cfff; text-shadow: 0 0 28px rgba(176,120,255,.45); }
 .card-value { font-weight: 900; font-size: clamp(22px, 3.8vw, 34px); letter-spacing: .06em; color: #d6cfff; text-shadow: 0 0 28px rgba(176,120,255,.45); }
.card-sub { color: #b2b6c7; margin-top: 10px; font-family: 'Share Tech Mono', monospace; letter-spacing: .18em; }
.card-sub.ready { color: #31e29b; }
.live-dot { color: #6ee0ff; position: relative; }
.live-dot::before { content: ""; position: absolute; left: -18px; top: .55em; width: 8px; height: 8px; background: #6ee0ff; border-radius: 50%; box-shadow: 0 0 12px #6ee0ff; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0% { transform: scale(.8); opacity: .6; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(.8); opacity: .6; } }

/* Mission */
.mission { padding: 70px 0 40px; text-align: center; }
.mission-title { font-weight: 900; line-height: 1.05; font-size: clamp(30px, 6.6vw, 72px); letter-spacing: .02em; color: #f1f3ff; margin: 0 auto 12px; width: min(1100px, 92%); }
.mission-title { font-weight: 900; line-height: 1.05; font-size: clamp(24px, 5.3vw, 58px); letter-spacing: .02em; color: #f1f3ff; margin: 0 auto 12px; width: min(1100px, 92%); }
.mission .gradient { display: inline-block; }
.divider { width: min(760px, 86%); height: 4px; background: linear-gradient(90deg, #7a38ff, #f55bd1); border-radius: 4px; margin: 16px auto 28px; box-shadow: 0 0 22px rgba(176,120,255,.45); }
.mission-copy { width: min(980px, 90%); margin: 0 auto; font-family: 'Share Tech Mono', monospace; color: #e8e9ff; line-height: 1.9; letter-spacing: .04em; }
.mission-copy p { margin: 16px 0; }
.mission-copy .highlight { color: #9aa8ff; font-weight: 900; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 3px; }

/* Metrics */
.metrics { padding: 60px 0 90px; }
.metrics-title { text-align: center; font-weight: 900; letter-spacing: .18em; font-size: clamp(18px, 4.2vw, 35px); color: #c3b9ff; text-shadow: 0 0 24px rgba(176,120,255,.35); margin-bottom: 26px; }
.metric-cards { display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 36px; }
@media (min-width: 900px) { .metric-cards { grid-template-columns: repeat(3, 1fr); } }
.metric-card { border-radius: 14px; padding: 28px; text-align: center; border: 1px solid #6b37e366; background: radial-gradient(120% 160% at 50% 0%, rgba(122,56,255,.18) 0%, rgba(122,56,255,.06) 60%, rgba(80,40,180,.05) 100%), #0b0a14; box-shadow: 0 0 30px rgba(146,93,255,.35), 0 14px 36px rgba(0,0,0,.55); }
.metric-value { font-weight: 900; font-size: clamp(24px, 4.8vw, 43px); color: #d6cfff; text-shadow: 0 0 28px rgba(176,120,255,.45); letter-spacing: .08em; }
.metric-label { margin-top: 10px; font-family: 'Share Tech Mono', monospace; letter-spacing: .22em; color: #b6bbcc; }

.log-panel { margin-top: 12px; border: 1px solid #1ddfd4; border-radius: 12px; background: linear-gradient(180deg, rgba(7,20,22,.9), rgba(5,12,14,.9)); box-shadow: 0 0 30px rgba(0,255,220,.15), 0 18px 48px rgba(0,0,0,.6); overflow: hidden; }
.log-caption { font-family: 'Share Tech Mono', monospace; color: #86fff6; letter-spacing: .18em; padding: 12px 16px; border-bottom: 1px solid rgba(29,223,212,.4); background: rgba(0,20,20,.35); }
.log-rows { display: grid; }
.log-row { display: grid; grid-template-columns: 220px 1fr 220px 220px 140px; gap: 16px; align-items: center; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
@media (max-width: 980px) { .log-row { grid-template-columns: 1fr; align-items: start; } }
.log-time { color: #6ee0ff; font-family: 'Share Tech Mono', monospace; }
.log-name { font-weight: 800; color: #eef1ff; }
.log-links a { color: #6ee0ff; text-decoration: none; margin-right: 12px; font-family: 'Share Tech Mono', monospace; }
.log-links a.post { color: #f55bd1; }
.log-amount { color: #31e29b; font-family: 'Share Tech Mono', monospace; }
.log-status { font-family: 'Share Tech Mono', monospace; letter-spacing: .18em; }
.log-status.donated { color: #31e29b; }

.ticker { margin: 18px auto 0; width: min(560px, 80%); text-align: center; font-family: 'Share Tech Mono', monospace; font-size: 12px; letter-spacing: .18em; color: #bdaeff; padding: 10px 14px; border: 1px solid #7a38ff88; border-radius: 8px; background: rgba(122,56,255,.08); box-shadow: 0 10px 26px rgba(0,0,0,.5); }

/* Footer */
.site-footer { margin-top: 40px; padding: 40px 0 70px; background: radial-gradient(1200px 600px at 50% -10%, rgba(122,56,255,.08), rgba(0,0,0,0) 60%); border-top: 1px solid #7a38ff33; }
.footer-ticker { width: 93%; margin: 0 auto 18px; text-align: center; font-family: 'Share Tech Mono', monospace; font-size: 12px; letter-spacing: .18em; color: #bdaeff; padding: 10px 14px; border: 1px solid #7a38ff88; border-radius: 8px; background: rgba(122,56,255,.08); box-shadow: 0 10px 26px rgba(0,0,0,.5); }
.socials { display: grid; grid-template-columns: 1fr; gap: 16px; justify-items: center; margin: 10px 0 18px; }
@media (min-width: 980px) { .socials { grid-template-columns: repeat(5, 1fr); } }
.social { display: inline-block; text-decoration: none; color: #dcd5ff; padding: 14px 22px; border: 1px solid #7a38ff66; border-radius: 10px; background: linear-gradient(180deg, rgba(122,56,255,0.22), rgba(122,56,255,0.06)); box-shadow: 0 0 0 1px rgba(160,120,255,0.25) inset, 0 8px 24px rgba(0,0,0,0.35); }
.disclaimer { text-align: center; color: #eaeaff; font-family: 'Share Tech Mono', monospace; letter-spacing: .08em; margin: 8px 0 10px; }
.credit { text-align: center; color: #8ed0ff; font-family: 'Share Tech Mono', monospace; }
.credit a { color: #8ed0ff; text-decoration: none; border-bottom: 1px dotted #8ed0ff; }



/* =========================
   Animations
   ========================= */
@media (prefers-reduced-motion: no-preference) {
  /* Hero staged entry */
  .hero .eyebrow,
  .hero .headline,
  .hero .subhead {
    opacity: 0;
    transform: translateY(18px) scale(.98);
    filter: blur(6px);
  }

  .hero.animate-in .eyebrow {
    animation: heroIn .7s cubic-bezier(.2,.65,.2,1) .02s forwards;
  }
  .hero.animate-in .headline {
    animation: heroIn .8s cubic-bezier(.2,.65,.2,1) .16s forwards;
  }
  .hero.animate-in .subhead {
    animation: heroIn .8s cubic-bezier(.2,.65,.2,1) .32s forwards;
  }

  @keyframes heroIn {
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }

  /* Scroll reveal utility */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
    transition: transform .7s ease, opacity .7s ease, filter .7s ease;
    will-change: opacity, transform, filter;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero .headline,
  .hero .subhead,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}