/* ============================================================
   RELIEF — Premium dark / purple aesthetic
   ============================================================ */
:root {
  --bg: #07050d;
  --bg-2: #0c0817;
  --panel: rgba(20, 14, 35, 0.55);
  --panel-2: rgba(28, 20, 48, 0.7);
  --line: rgba(168, 122, 255, 0.14);
  --line-2: rgba(168, 122, 255, 0.28);
  --text: #efeaff;
  --muted: rgba(239, 234, 255, 0.55);
  --dim: rgba(239, 234, 255, 0.35);
  --purple: #a855f7;
  --purple-2: #c084fc;
  --purple-deep: #7c3aed;
  --purple-glow: 168, 85, 247;
  --green: #14F195;
  --solana-grad: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  font-feature-settings: "ss01", "cv02";
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }
code { font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ============ BACKGROUND LAYERS ============ */
.bg-grid {
  position: fixed; inset: 0; z-index: -5; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,122,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,122,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: -4; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: -6; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(168,85,247,0.20), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 70%, rgba(124,58,237,0.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
#particles { position: fixed; inset: 0; z-index: -3; pointer-events: none; }

.bg-blob {
  position: fixed; z-index: -2; pointer-events: none;
  border-radius: 50%; filter: blur(100px);
  opacity: 0.35;
  will-change: transform;
}
.blob-1 { width: 520px; height: 520px; background: rgba(168,85,247,0.45); top: 5%; right: -10%; }
.blob-2 { width: 420px; height: 420px; background: rgba(124,58,237,0.35); top: 60%; left: -10%; }
.blob-3 { width: 360px; height: 360px; background: rgba(196,127,255,0.25); top: 130%; left: 50%; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px;
  padding: 18px 36px;
  background: rgba(7, 5, 13, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.scrolled { padding: 12px 36px; background: rgba(7, 5, 13, 0.85); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 44px; height: 44px; filter: drop-shadow(0 0 14px rgba(168,85,247,0.6)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; letter-spacing: 0.16em; font-size: 17px; }
.brand-sub { font-size: 9px; letter-spacing: 0.22em; color: var(--muted); margin-top: 4px; }
.brand-sub em { color: var(--purple-2); font-style: normal; font-weight: 700; }

.nav-links {
  display: flex; gap: 32px; justify-content: center;
}
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--muted); padding: 6px 4px;
  position: relative; transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 50%; bottom: -4px;
  width: 24px; height: 2px; background: var(--purple);
  transform: translateX(-50%); border-radius: 2px;
  box-shadow: 0 0 12px rgba(168,85,247,0.7);
}

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-buy {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em;
  padding: 11px 18px; border-radius: 10px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.45);
  color: var(--text);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-buy:hover {
  background: rgba(168,85,247,0.18);
  border-color: var(--purple);
  box-shadow: 0 8px 30px rgba(168,85,247,0.35), 0 0 0 1px rgba(168,85,247,0.6) inset;
  transform: translateY(-1px);
}
.sol-mark { display: inline-flex; align-items: center; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.3);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  transition: all 0.25s;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(7,5,13,0.7);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 1080px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 11px; }
}

@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr; padding: 14px 20px; gap: 16px; }
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 100px 28px 40px;
    background: rgba(12, 8, 23, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--line-2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 95;
    box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a {
    display: block;
    font-size: 14px;
    padding: 18px 4px;
    width: 100%;
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--purple-2); }
}

@media (max-width: 520px) {
  .nav { padding: 12px 16px; }
  .nav-buy { padding: 10px 14px; font-size: 11px; }
  .nav-buy .sol-mark { display: none; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 8px; }
  .nav-brand img { width: 38px; height: 38px; }
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; padding: 0 20px; }
}

/* LEFT */
.hero-left { position: relative; z-index: 3; }
.pill {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.35);
  color: var(--purple-2);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.grad-purple {
  background: linear-gradient(180deg, #d8b4fe 0%, #a855f7 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(168,85,247,0.3);
}
.hero-sub {
  font-size: 16px; color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
}

.counter-block { margin-bottom: 36px; }
.counter-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--purple-2); text-transform: uppercase;
  margin-bottom: 8px;
}
.counter-amount {
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 80px rgba(168,85,247,0.25);
}
.counter-amount .cur { color: var(--text); margin-right: 4px; }
.counter-meta {
  margin-top: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--dim); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.info {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--dim); display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 9px; font-style: italic; cursor: help;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: 12px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn span { transition: transform 0.3s ease; display: inline-block; }
.btn:hover span { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  box-shadow: 0 10px 30px rgba(168,85,247,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(168,85,247,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-outline {
  background: rgba(168,85,247,0.05);
  border: 1px solid rgba(168,85,247,0.35);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(168,85,247,0.12);
  border-color: var(--purple);
  transform: translateY(-2px);
}

/* RIGHT */
.hero-right {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.hero-dove-wrap {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.dove-glow {
  position: absolute;
  width: 140%; height: 140%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168,85,247,0.55) 0%, rgba(124,58,237,0.25) 30%, transparent 60%);
  filter: blur(60px);
  animation: pulseGlow 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}
.hero-dove {
  position: relative;
  width: 100%; max-width: 620px;
  z-index: 1;
  filter:
    drop-shadow(0 0 60px rgba(168,85,247,0.7))
    drop-shadow(0 0 120px rgba(124,58,237,0.4));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
.dove-trail {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.7;
  animation: trailShift 8s ease-in-out infinite;
}
@keyframes trailShift {
  0%,100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(-12px); opacity: 0.8; }
}

/* LATEST POST SECTION */
.latest-section { padding: 100px 0; }
.latest-card-wrap {
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}
.latest-card-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.25), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.latest-card {
  position: relative;
  width: 100%;
  padding: 28px;
  border-radius: 22px;
  background: rgba(15, 10, 28, 0.78);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: cardFloatStandalone 6s ease-in-out infinite;
}
@keyframes cardFloatStandalone {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 980px) {
  .hero-right { min-height: 480px; }
  .latest-card { position: relative; top: auto; right: auto; width: 100%; max-width: 380px; margin: 20px auto 0; }
}
.latest-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.latest-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--muted);
}
.live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--green);
}
.live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.4; } }

.latest-account {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.latest-account img {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(168,85,247,0.2);
  padding: 6px;
  border: 1px solid var(--line-2);
}
.acct-name {
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}
.acct-handle { font-size: 12px; color: var(--muted); }
.x-icon { margin-left: auto; color: var(--muted); }

.latest-body {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}
.muted { color: var(--muted); }

.latest-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 12px;
}
.x-link { color: var(--purple-2); font-weight: 600; }
.x-link:hover { color: var(--purple); }

.latest-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.3);
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--text);
  transition: all 0.25s;
}
.latest-cta:hover {
  background: rgba(168,85,247,0.18);
  border-color: var(--purple);
}

/* ============ FEATURES ============ */
.features { padding: 40px 0 60px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }
.feat {
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 16px;
  transition: all 0.3s ease;
}
.feat:hover {
  border-color: var(--line-2);
  background: var(--panel-2);
  transform: translateY(-3px);
}
.feat-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  color: var(--purple-2);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat h3 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  line-height: 1.3; margin-bottom: 4px;
}
.feat p { font-size: 12px; color: var(--muted); }

/* ============ SECTION COMMON ============ */
section { padding: 120px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.3em;
  color: var(--purple-2); text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.25);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #c4b0e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lede {
  font-size: 17px; color: var(--muted);
  max-width: 620px; margin-bottom: 60px;
}

/* ============ TOKENOMICS ============ */
.split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 860px) { .split-grid { grid-template-columns: 1fr; } }
.split-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: all 0.4s ease;
}
.split-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(168,85,247,0.18), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.split-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
}
.split-card:hover::before { opacity: 1; }
.split-card.big {
  background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(124,58,237,0.05));
  border-color: rgba(168,85,247,0.3);
}
.split-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--purple-2);
  margin-bottom: 24px;
}
.split-icon svg { width: 22px; height: 22px; }
.split-pct {
  font-size: 64px; font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
  display: flex; align-items: flex-start;
}
.split-pct .pct { font-size: 32px; margin-top: 8px; }
.split-card h3 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.18em;
  line-height: 1.4; margin-bottom: 10px;
}
.split-card p { font-size: 14px; color: var(--muted); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.about-glow {
  position: absolute;
  width: 90%; height: 90%;
  background: radial-gradient(circle, rgba(168,85,247,0.5), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.about-art img {
  position: relative;
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 0 50px rgba(168,85,247,0.6));
  animation: float 8s ease-in-out infinite;
}
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.quote {
  font-family: 'Instrument Serif', serif !important;
  font-style: italic !important;
  font-size: 28px !important;
  color: var(--purple-2) !important;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--purple);
  margin: 28px 0 !important;
  line-height: 1.3;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.about-tags span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--purple-2); text-transform: uppercase;
}

/* ============ DONATIONS TABLE ============ */
.charity-table {
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.row {
  display: grid;
  grid-template-columns: 100px 1fr 160px 120px;
  gap: 20px;
  padding: 18px 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  transition: background 0.2s;
}
.row:last-child { border-bottom: none; }
.row-head {
  background: rgba(168,85,247,0.08);
  font-weight: 800; letter-spacing: 0.16em;
  color: var(--purple-2); font-size: 11px;
}
.row-empty {
  padding: 50px 20px; text-align: center;
}
.row-empty p:first-child { font-size: 16px; margin-bottom: 6px; }
.row-empty .muted { font-size: 14px; }
.row-empty a { color: var(--purple-2); text-decoration: underline; }

/* ============ TRANSPARENCY ============ */
.wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 860px) { .wallet-grid { grid-template-columns: 1fr; } }
.wallet {
  padding: 22px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: all 0.3s;
}
.wallet:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}
.wallet-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.wallet-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--muted);
}
.wallet-pct {
  font-size: 13px; font-weight: 800;
  color: var(--purple-2);
}
.wallet code {
  display: block;
  font-size: 12px;
  color: var(--text);
  padding: 12px 14px;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  border: 1px solid var(--line);
  word-break: break-all;
  margin-bottom: 12px;
}
.copy-btn {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: var(--purple-2);
  transition: all 0.2s;
}
.copy-btn.small { padding: 6px; display: inline-flex; align-items: center; gap: 4px; }
.copy-btn:hover { background: rgba(168,85,247,0.22); color: var(--text); }
.copy-btn.copied { background: var(--purple); color: #fff; border-color: var(--purple); }

.transparency-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--purple-2);
  padding: 12px 0;
  border-bottom: 1px solid rgba(168,85,247,0.4);
  transition: all 0.25s;
}
.transparency-cta span { transition: transform 0.25s; }
.transparency-cta:hover { color: var(--text); }
.transparency-cta:hover span { transform: translateX(6px); }

/* ============ FAQ ============ */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 16px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev {
  font-size: 22px; color: var(--purple-2);
  transition: transform 0.3s;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  font-weight: 300;
}
.faq-item[open] .chev { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 28px;
  background: rgba(7, 5, 13, 0.7);
  backdrop-filter: blur(14px);
  margin-top: 60px;
}
.footer-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-ca {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
}
.ca-label { color: var(--muted); }
.footer-ca code {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0; padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer-socials {
  display: flex; align-items: center; gap: 12px;
}
.socials-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--muted); margin-right: 8px;
}
.soc {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.25s;
}
.soc:hover {
  background: rgba(168,85,247,0.15);
  border-color: var(--purple);
  color: var(--text);
  transform: translateY(-2px);
}
.footer-built {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em;
  color: var(--muted);
}
.sol-wordmark {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.18em;
}
.footer-meta {
  text-align: center;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--dim);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ============ RESPONSIVE TUNING ============ */
@media (max-width: 1080px) {
  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-dove { max-width: 520px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  section { padding: 90px 0; }
  .hero { padding: 120px 0 40px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .hero-right { min-height: auto; padding: 20px 0; }
  .hero-dove-wrap { max-width: 440px; margin: 0 auto; transform: none; }
  .hero-dove { max-width: 440px; }
  .latest-section { padding: 70px 0; }
  .dove-trail { display: none; }

  .about-grid { gap: 40px; }
  .split-grid { grid-template-columns: 1fr; }
  .wallet-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .hero { padding: 110px 0 30px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .counter-amount { font-size: clamp(54px, 16vw, 84px); }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; padding: 16px 20px; font-size: 11px; }
  .pill { font-size: 10px; padding: 8px 14px; }

  .section-title { font-size: clamp(28px, 7vw, 38px); }
  .section-lede { font-size: 15px; margin-bottom: 40px; }
  .section-eyebrow { font-size: 10px; padding: 7px 14px; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat { padding: 20px; }

  .split-card { padding: 26px 22px; }
  .split-pct { font-size: 56px; }

  .row { grid-template-columns: 70px 1fr 100px; padding: 14px 18px; gap: 14px; font-size: 13px; }
  .row > div:nth-child(4) { display: none; }
  .row-head { font-size: 10px; }

  .about-art img { max-width: 280px; }
  .quote { font-size: 22px !important; }

  .faq-item summary { padding: 18px 18px; font-size: 14px; gap: 14px; }
  .faq-body { padding: 0 18px 18px; font-size: 14px; }

  .footer { padding: 28px 0; }
  .footer-row { flex-direction: column; align-items: stretch; gap: 18px; }
  .footer-ca { flex-wrap: wrap; }
  .footer-ca code { max-width: 100%; flex: 1; }
  .footer-socials { justify-content: center; }
  .footer-built { justify-content: center; }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .hero { padding: 100px 0 20px; }
  .hero-dove-wrap { max-width: 280px; }
  .hero-dove { max-width: 280px; }
  .hero-title { font-size: clamp(32px, 11vw, 44px); letter-spacing: -0.01em; }
  .hero-sub { margin-bottom: 32px; }
  .pill { letter-spacing: 0.18em; }

  .latest-card { padding: 16px; }
  .latest-body { font-size: 12px; }

  .about-tags span { font-size: 10px; padding: 7px 12px; }
}

@media (hover: none) {
  .feat:hover, .split-card:hover, .wallet:hover, .evidence-card:hover { transform: none; }
}

/* Buttons get bigger touch targets on touch devices */
@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .copy-btn { min-height: 36px; }
  .soc { min-width: 44px; min-height: 44px; }
  .nav-buy { min-height: 40px; }
}

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(50px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ PROOF PAGE ============ */
.proof-page { padding: 160px 0 100px; }
.proof-page .container { max-width: 960px; }
.proof-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 30px;
  text-transform: uppercase;
}
.proof-back:hover { color: var(--purple-2); }
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-top: 40px;
}
.evidence-card {
  padding: 22px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: block;
  transition: all 0.3s;
}
.evidence-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.ev-week { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; color: var(--purple-2); }
.ev-charity { font-size: 18px; font-weight: 700; margin: 8px 0 12px; }
.ev-amount { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.ev-link { font-size: 12px; color: var(--muted); letter-spacing: 0.16em; font-weight: 700; }
.evidence-empty {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed var(--line-2);
  border-radius: 16px;
  color: var(--muted);
}
