/* Simple responsive, dark-themed site for JMM */
:root{
  --bg:#0b0b0c;
  --card:#121215;
  --muted:#cfcfcf;
  --accent:#7a4dff;
  --accent2:#0046ff;
  --maxw:1100px;
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:var(--bg); color:#fff; -webkit-font-smoothing:antialiased}
.container{width:92%;max-width:var(--maxw);margin:0 auto}
.site-header{border-bottom:1px solid rgba(255,255,255,0.04);padding:18px 0;background:linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0)) }
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;gap:14px;align-items:center}
.logo{width:68px;height:68px;object-fit:contain;border-radius:8px;background:#000;padding:6px}
.logo-sm{width:48px;height:48px;object-fit:contain;border-radius:6px;background:#000;padding:4px}
.brand h1{font-size:1rem;margin:0;line-height:1}
.token{color:var(--muted);font-weight:600;font-size:0.9rem}
.tagline{margin:4px 0 0;color:var(--muted);font-size:0.85rem}

.social a{color:var(--muted);text-decoration:none;margin-left:14px;font-size:0.95rem}

.hero{padding:36px 0}
.hero-inner{display:flex;gap:24px;align-items:center;flex-wrap:wrap}
.hero-text{flex:1;min-width:300px}
.hero-text h2{font-size:1.7rem;margin:0 0 10px;color:#fff}
.hero-text p{color:var(--muted);line-height:1.5}
.cta-row{margin:16px 0}
.btn{display:inline-block;padding:10px 16px;border-radius:8px;text-decoration:none;font-weight:600}
.btn-primary{background:var(--accent2);color:#fff}
.btn-outline{border:2px solid #fff;color:#fff;background:transparent;margin-left:10px;padding:8px 14px}

.hashtags{margin-top:12px;color:var(--muted);font-size:0.95rem}

.hero-image{flex:1;min-width:260px;text-align:center}
.hero-image img{width:100%;max-width:520px;border-radius:10px;display:block;box-shadow:0 8px 30px rgba(0,0,0,0.6)}
.hero-image figcaption{margin-top:10px;color:var(--muted);font-size:0.95rem;line-height:1.3}

.mission{padding:36px 0;background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent)}
.mission h2{font-size:1.4rem;margin-bottom:6px}
.impact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:16px}
.impact-grid article{background:var(--card);padding:18px;border-radius:10px;color:var(--muted)}

.hope{padding:36px 0}
.image-block{max-width:780px;margin:10px auto;text-align:center}
.image-block img{width:100%;border-radius:10px;box-shadow:0 8px 30px rgba(0,0,0,0.6)}
.image-block .caption{margin-top:8px;color:var(--muted)}

.how-to-help{padding:36px 0;background:linear-gradient(180deg, rgba(255,255,255,0.01), transparent)}
.how-to-help ol{color:var(--muted);line-height:1.6}
.note{color:#bdbdbd;font-size:0.9rem;margin-top:10px}

.site-footer{border-top:1px solid rgba(255,255,255,0.04);padding:18px 0;margin-top:40px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}
.footer-links a{color:var(--muted);text-decoration:none;margin-left:12px;font-size:0.95rem}

@media (max-width:800px){
  .header-inner{flex-direction:column;gap:12px;align-items:flex-start}
  .hero-inner{flex-direction:column-reverse}
  .hero-image img{max-width:100%}
}
