/* ============================================================
   GO Bounty Sniper — premium dark / glassmorphism design system
   ============================================================ */

:root {
  --bg: #0a0b0e;           /* pump.fun dark base */
  --bg-2: #14151c;         /* pump.fun panel dark */
  --panel: rgba(255, 255, 255, 0.035);
  --panel-brd: rgba(255, 255, 255, 0.09);
  --panel-brd-hi: rgba(255, 255, 255, 0.16);

  --txt: #e9edf4;
  --txt-mut: #9aa3b4;
  --txt-dim: #6a7286;

  --acc: #86efac;          /* pump.fun mint green (primary) */
  --acc-2: #1fd978;        /* pump.fun vivid green */
  --acc-3: #34d399;        /* emerald */
  --grad: linear-gradient(100deg, var(--acc-2), var(--acc));

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

code {
  font-family: "Space Grotesk", ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(41, 224, 138, 0.12);
  color: var(--acc);
  padding: 0.08em 0.4em;
  border-radius: 6px;
  font-size: 0.92em;
}

h1, h2, h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- ambient background ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: radial-gradient(120% 80% at 50% -10%, var(--bg-2), var(--bg) 60%); }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.orb-1 { width: 520px; height: 520px; top: -160px; left: -120px; background: radial-gradient(circle, rgba(31,217,120,0.55), transparent 70%); animation: float1 22s ease-in-out infinite; }
.orb-2 { width: 480px; height: 480px; top: 220px; right: -140px; background: radial-gradient(circle, rgba(52,211,153,0.42), transparent 70%); animation: float2 26s ease-in-out infinite; }
.orb-3 { width: 460px; height: 460px; bottom: -160px; left: 30%; background: radial-gradient(circle, rgba(134,239,172,0.32), transparent 70%); animation: float1 30s ease-in-out infinite reverse; }
.grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%);
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,40px); } }

/* ---------- glass primitive ---------- */
.glass {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), var(--shadow);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(6,7,10,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  mask: linear-gradient(#000, #000); /* contain blur */
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk"; font-weight: 700; font-size: 1.05rem; }
.brand-mark { color: var(--acc); filter: drop-shadow(0 0 8px rgba(31,217,120,0.6)); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 0.94rem; color: var(--txt-mut); }
.nav-links a:not(.btn):hover { color: var(--txt); }

/* ---------- buttons ---------- */
.btn {
  --b: var(--acc);
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Space Grotesk"; font-weight: 600; font-size: 0.96rem;
  color: #05210f;
  background: var(--grad);
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: 0 8px 26px -8px rgba(31,217,120,0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(31,217,120,0.75); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--acc-2); outline-offset: 3px; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-ghost {
  background: transparent; color: var(--txt);
  border: 1px solid var(--panel-brd-hi);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); box-shadow: none; }

/* ---------- shared section ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 84px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--txt-mut); margin-bottom: 14px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 0 rgba(31,217,120,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,217,120,0.5); } 70% { box-shadow: 0 0 0 9px rgba(31,217,120,0); } 100% { box-shadow: 0 0 0 0 rgba(31,217,120,0); } }

/* ---------- hero ---------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: 70px 24px 60px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--panel-brd); background: var(--panel);
  font-size: 0.82rem; color: var(--txt-mut); margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); margin-bottom: 20px; }
.lede { font-size: 1.12rem; color: var(--txt-mut); max-width: 540px; margin: 0 0 30px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.microcopy { font-size: 0.9rem; color: var(--txt-dim); margin: 0; }

/* ---------- hero sample alert ---------- */
.hero-card { display: flex; justify-content: center; perspective: 1000px; }
.alert-card {
  width: 100%; max-width: 360px; padding: 20px;
  border-radius: var(--radius);
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-0.6deg); } 50% { transform: translateY(-12px) rotate(0.6deg); } }
.alert-head { display: flex; align-items: center; gap: 8px; font-family: "Space Grotesk"; font-weight: 600; font-size: 0.95rem; }
.siren { filter: drop-shadow(0 0 6px rgba(255,90,90,0.7)); }
.pill { margin-left: auto; font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.pill-live { color: var(--acc); background: rgba(31,217,120,0.14); border: 1px solid rgba(31,217,120,0.3); }
.alert-reward { font-family: "Space Grotesk"; font-weight: 700; font-size: 2rem; margin: 14px 0 4px; }
.alert-sol { font-size: 0.9rem; font-weight: 500; color: var(--txt-dim); }
.alert-title { color: var(--txt); font-size: 0.98rem; margin-bottom: 12px; }
.alert-meta { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; color: var(--txt-mut); margin-bottom: 14px; }
.alert-meta .sep { color: var(--txt-dim); }
.alert-rows { display: grid; gap: 6px; font-size: 0.88rem; color: var(--txt-mut); padding-top: 14px; border-top: 1px solid var(--panel-brd); }
.alert-rows b { color: var(--txt); font-weight: 600; }
.alert-btn { margin-top: 16px; text-align: center; font-family: "Space Grotesk"; font-weight: 600; font-size: 0.92rem; color: var(--acc); border: 1px solid rgba(31,217,120,0.3); border-radius: 10px; padding: 10px; background: rgba(31,217,120,0.06); }

/* ---------- stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 28px 22px; text-align: center; transition: transform 0.2s ease, border-color 0.2s ease; }
.stat:hover { transform: translateY(-4px); border-color: var(--panel-brd-hi); }
.stat-num { font-family: "Space Grotesk"; font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.5rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--txt-mut); font-size: 0.9rem; margin-top: 6px; }
.stats-foot { text-align: center; color: var(--txt-dim); font-size: 0.85rem; margin-top: 22px; }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 28px 24px; transition: transform 0.2s ease, border-color 0.2s ease; }
.step:hover { transform: translateY(-4px); border-color: var(--panel-brd-hi); }
.step-n { font-family: "Space Grotesk"; font-weight: 700; font-size: 1rem; color: var(--acc); letter-spacing: 0.1em; margin-bottom: 16px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--txt-mut); font-size: 0.95rem; margin: 0; }

/* ---------- features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { padding: 30px 26px; transition: transform 0.2s ease, border-color 0.2s ease; position: relative; overflow: hidden; }
.feature:hover { transform: translateY(-4px); border-color: var(--panel-brd-hi); }
.f-ico { font-size: 1.7rem; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(31,217,120,0.1); border: 1px solid rgba(31,217,120,0.2); margin-bottom: 18px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--txt-mut); font-size: 0.95rem; margin: 0; }

/* ---------- final CTA ---------- */
.cta-band { max-width: var(--maxw); margin: 0 auto; padding: 20px 24px 100px; }
.cta-inner { text-align: center; padding: 60px 32px; position: relative; overflow: hidden; }
.cta-inner::after { content: ""; position: absolute; width: 600px; height: 300px; left: 50%; top: -40%; transform: translateX(-50%); background: radial-gradient(circle, rgba(31,217,120,0.18), transparent 65%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 12px; }
.cta-inner p { color: var(--txt-mut); margin: 0 0 28px; font-size: 1.08rem; }

/* ---------- footer ---------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 60px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: "Space Grotesk"; font-weight: 600; color: var(--txt-mut); }
.footer-brand svg { color: var(--acc); }
.disclaimer { flex: 1 1 320px; color: var(--txt-dim); font-size: 0.82rem; margin: 0; text-align: center; }
.footer-cta { color: var(--acc); font-weight: 600; font-size: 0.92rem; }
.footer-cta:hover { text-decoration: underline; }

/* ---------- live drops feed ---------- */
.section-sub { color: var(--txt-mut); font-size: 1.02rem; margin: 12px 0 0; }
.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.live-state {
  grid-column: 1 / -1; text-align: center; color: var(--txt-dim);
  padding: 48px 0; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); border-top-color: var(--acc); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.bounty-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 20px; position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.bounty-card:hover { transform: translateY(-4px); border-color: var(--panel-brd-hi); }
.bounty-top { display: flex; align-items: center; gap: 8px; }
.pill-new {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #05210f; background: var(--grad); padding: 3px 9px; border-radius: 999px;
}
.bounty-subs { margin-left: auto; font-size: 0.72rem; font-weight: 600; color: var(--acc); background: rgba(31,217,120,0.14); border: 1px solid rgba(31,217,120,0.3); padding: 3px 10px; border-radius: 999px; }
.bounty-reward { font-family: "Space Grotesk"; font-weight: 700; font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bounty-title {
  color: var(--txt); font-size: 0.98rem; line-height: 1.4; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em;
}
.bounty-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.85rem; color: var(--txt-mut); padding-top: 10px; border-top: 1px solid var(--panel-brd); }
.bounty-meta b { color: var(--txt); font-weight: 600; }
.bounty-link { margin-top: auto; padding-top: 6px; font-family: "Space Grotesk"; font-weight: 600; font-size: 0.9rem; color: var(--acc); }
.bounty-link:hover { text-decoration: underline; }
.bounty-card.is-new { animation: dropIn 0.6s cubic-bezier(0.22,1,0.36,1); }
.bounty-card.is-new::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--acc), 0 0 28px -4px rgba(31,217,120,0.55);
  animation: flashRing 1.8s ease-out forwards; pointer-events: none;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-14px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes flashRing { 0% { opacity: 1; } 100% { opacity: 0; } }

.live-foot { grid-column: 1 / -1; text-align: center; color: var(--txt-dim); font-size: 0.85rem; margin-top: 6px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-card { order: -1; margin-bottom: 8px; }
  .alert-card { max-width: 340px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 60px 18px; }
  .stats-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
