:root{
  --bg: #010101;
  --panel: #262628;
  --panel2: #2f2f32;
  --text: #fbfcfc;
  --muted: #a5aaad;
  --accent: #60b2dd;     /* logo blue */
  --accent2: #78c6ea;
  --ring: rgba(96,178,221,.35);
  --shadow: rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1,1,1,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand-logo{
  width:48px;
  height:48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 24px var(--shadow);
  background: #000;
  object-fit: cover;
}
.brand-name{ font-weight: 800; letter-spacing: .4px; }
.brand-tagline{ font-size: .85rem; color: var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap: 16px;
}
.nav a{
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .95rem;
  opacity: .92;
}
.nav a:hover{ opacity: 1; color: var(--accent2); }

.nav-toggle{
  display:none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav{
  display:none;
  padding: 10px 0 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  color: rgba(255,255,255,.92);
  font-weight: 650;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  box-shadow: 0 12px 30px var(--shadow);
  font-weight: 750;
  cursor:pointer;
}
.btn:hover{ border-color: rgba(96,178,221,.7); box-shadow: 0 12px 34px rgba(96,178,221,.12); }
.btn-outline{
  background: transparent;
  border-color: rgba(96,178,221,.5);
}
.btn-donate{
  background: linear-gradient(180deg, rgba(96,178,221,.22), rgba(96,178,221,.08));
  border-color: rgba(96,178,221,.65);
}
.btn.full{ width: 100%; margin-top: 14px; }

/* Hero */
.hero{
  padding: 56px 0 26px;
  background:
    radial-gradient(1200px 420px at 20% 0%, rgba(96,178,221,.18), transparent 55%),
    radial-gradient(900px 360px at 80% 10%, rgba(255,255,255,.08), transparent 60%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items:center;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(2.0rem, 4.2vw, 3.2rem);
  letter-spacing: .2px;
}
.hero-lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.5;
}
.hero-cards{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}
.info-card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-width: 180px;
}
.info-title{ font-size: .85rem; color: var(--muted); }
.info-value{ font-weight: 800; margin-top: 4px; }

.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap; }

.hero-badge{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}
.badge-frame{
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(96,178,221,.18), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
  display:grid;
  place-items:center;
  padding: 0;
}
.badge-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.5));
}
.badge-note{ color: var(--muted); font-weight: 650; }

/* Sections */
.section{ padding: 52px 0; }
.section-dark{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section h2{
  margin: 0 0 10px;
  font-size: 1.9rem;
}
.section-head{ margin-bottom: 16px; }
.muted{ color: var(--muted); line-height: 1.6; }

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.feature{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
}
.feature-title{ font-weight: 900; margin-bottom: 6px; }
.feature-text{ color: rgba(255,255,255,.82); line-height: 1.5; }

/* Embeds */
.embed-card{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 16px 42px rgba(0,0,0,.5);
}
.ratio-16x9{ position:relative; width:100%; padding-top:56.25%; }
.ratio-4x3{ position:relative; width:100%; padding-top:75%; }
.ratio-16x9 iframe, .ratio-4x3 iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease;
}
.gallery-img:hover{
  transform: translateY(-2px);
  border-color: rgba(96,178,221,.65);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.84);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 90;
}
.lightbox img{
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}
.lightbox-close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  font-size: 18px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:start;
}
.contact-card, .map-card{
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
}
.map-card h3{ margin: 0 0 12px; }
.form label{ display:block; margin-bottom: 12px; }
.form span{ display:block; font-weight: 750; margin-bottom: 6px; }
.form input, .form textarea{
  width:100%;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(96,178,221,.75);
  box-shadow: 0 0 0 4px var(--ring);
}
.form-status{
  margin-top: 12px;
  min-height: 20px;
  color: rgba(255,255,255,.9);
}
.form-status.ok{ color: #b7f7d0; }
.form-status.err{ color: #ffb9b9; }

.contact-meta{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
}
.meta-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 8px 0;
}
.meta-k{ color: var(--muted); font-weight: 650; }
.meta-v{ font-weight: 750; }

/* Footer */
.footer{
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links{ display:flex; gap: 12px; }
.footer-links a:hover{ color: var(--accent2); }

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .mobile-nav.show{ display:block; }
}