/* ==========================================================================
   CG-MUSA SOLIDARITY FRONT FOR ASIWAJU — REWORKED COMING SOON
   Design: Cinematic Full-Bleed Hero + Nigerian Emerald & Sovereign Gold
   ========================================================================== */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg-deep:       #020e08;
  --bg-surface:    #071a11;
  --bg-card:       rgba(6, 30, 20, 0.72);
  --bg-card-hover: rgba(10, 45, 30, 0.88);
  --bg-glass:      rgba(255,255,255,0.045);
  --bg-glass-heavy:rgba(255,255,255,0.07);

  /* Nigerian Palette */
  --emerald:       #008751;
  --emerald-light: #00b36b;
  --emerald-dark:  #005a36;
  --emerald-glow:  rgba(0,179,107,0.32);

  --gold:          #f5b700;
  --gold-light:    #ffea79;
  --gold-dark:     #c68a00;
  --gold-glow:     rgba(245,183,0,0.28);

  /* Typography */
  --text-primary:  #ffffff;
  --text-secondary:#d1fae5;
  --text-muted:    #94a3b8;
  --text-gold:     #fde047;

  /* Borders */
  --border:        rgba(255,255,255,0.08);
  --border-gold:   rgba(245,183,0,0.28);
  --border-emerald:rgba(0,179,107,0.3);

  /* Fonts */
  --font-display:  'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:     'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Effects */
  --shadow-sm:     0 4px 12px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.55), 0 0 36px rgba(0,135,81,0.12);
  --shadow-gold:   0 0 28px rgba(245,183,0,0.22);

  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:        0.2s var(--ease);
  --t-normal:      0.35s var(--ease);
  --t-slow:        0.55s var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; color-scheme: dark; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── Particle Canvas ────────────────────────────────────────────────────── */
#particle-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0; opacity: 0.7;
}

/* ── National Flag Ribbon ───────────────────────────────────────────────── */
.flag-ribbon {
  position: fixed; top: 0; left: 0; right: 0;
  height: 4px; z-index: 1100;
  background: linear-gradient(90deg,
    #008751 0%, #008751 33.33%,
    #fff    33.33%, #fff 66.66%,
    #008751 66.66%, #008751 100%
  );
  box-shadow: 0 2px 12px rgba(0,135,81,0.5);
}

/* ── Page Wrapper ───────────────────────────────────────────────────────── */
.page-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 1.5rem;
}

/* ── Sticky Header / Nav ────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 4px; left: 0; right: 0;
  z-index: 200;
  padding: 0.85rem 0;
  background: rgba(2,14,8,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-normal), box-shadow var(--t-normal);
}

.site-header.scrolled {
  background: rgba(2,14,8,0.95);
  box-shadow: var(--shadow-md);
}

.nav-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

/* Logo / Brand */
.brand {
  display: flex; align-items: center; gap: 1rem;
}

.brand-logo {
  height: 48px; width: auto;
  background: #fff; padding: 3px 7px;
  border-radius: var(--radius-xs);
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.brand-logo:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(245,183,0,0.35);
}

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.02em; line-height: 1.2;
}
.brand-name em {
  font-style: normal; color: var(--gold);
}
.brand-sub {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--emerald-light); margin-top: 1px;
}

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 0.85rem; }

.live-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  background: rgba(0,135,81,0.18);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-full);
  font-size: 0.76rem; font-weight: 700;
  color: var(--text-secondary);
}

.live-dot {
  width: 7px; height: 7px;
  background: var(--emerald-light);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,179,107,0.7);
  animation: pulse-dot 1.8s infinite var(--ease);
}

@keyframes pulse-dot {
  to { box-shadow: 0 0 0 10px rgba(0,179,107,0); }
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.015em;
  border-radius: var(--radius-full);
  border: none; outline: none;
  cursor: pointer;
  transition: all var(--t-fast);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d49a00 100%);
  color: #0b1a0f;
  box-shadow: 0 4px 18px rgba(245,183,0,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffd700 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(245,183,0,0.5);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald) 0%, #00683e 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,135,81,0.4);
}
.btn-emerald:hover {
  background: linear-gradient(135deg, #009e5f 0%, var(--emerald) 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(0,179,107,0.5);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--bg-glass-heavy);
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm  { padding: 0.4rem 0.9rem; font-size: 0.78rem; }
.btn-lg  { padding: 0.85rem 1.9rem; font-size: 1rem; }
.btn-icon { width: 1.1rem; height: 1.1rem; }

/* ── HERO SECTION ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

/* Full-bleed creative.jpeg background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.35) contrast(1.15) saturate(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(2,14,8,0.75) 0%,
      rgba(2,14,8,0.35) 40%,
      rgba(2,14,8,0.6) 70%,
      rgba(2,14,8,0.98) 100%
    ),
    linear-gradient(90deg,
      rgba(2,14,8,0.85) 0%,
      transparent 50%,
      rgba(2,14,8,0.4) 100%
    );
}

/* Animated emerald/gold scan-line */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0,135,81,0.06) 50%,
    transparent 100%
  );
  animation: hero-scan 8s ease-in-out infinite;
}
@keyframes hero-scan {
  0%, 100% { transform: translateY(-100%); }
  50%      { transform: translateY(100%); }
}

.hero > .container { position: relative; z-index: 2; }

/* Hero Layout: Two Columns */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* ── Left: Hero Content ──────────────────────────────────────────────── */
.hero-content { max-width: 600px; }

.hero-overline {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 1.15rem;
  background: rgba(245,183,0,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fade-slide-up 0.8s var(--ease) both;
}
.hero-overline svg { width: 14px; height: 14px; fill: var(--gold); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  animation: fade-slide-up 0.8s 0.15s var(--ease) both;
}
.hero-title .gold {
  background: linear-gradient(135deg, #fff 5%, #fde047 45%, #f5b700 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-pillars {
  display: flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  animation: fade-slide-up 0.8s 0.3s var(--ease) both;
}
.pillar-chip {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-xs);
  background: var(--bg-glass);
  border: 1px solid rgba(255,255,255,0.1);
}
.pillar-chip.u { color: #6ee7b7; border-color: rgba(110,231,183,0.3); }
.pillar-chip.d { color: #fde047; border-color: rgba(253,224,71,0.3); }
.pillar-chip.p { color: #93c5fd; border-color: rgba(147,197,253,0.3); }

.pillar-dot { color: var(--gold); font-size: 1rem; }

.hero-desc {
  font-size: clamp(0.92rem, 1.5vw, 1.06rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
  animation: fade-slide-up 0.8s 0.45s var(--ease) both;
}
.hero-desc strong { color: var(--gold); font-weight: 700; }

.hero-actions {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  animation: fade-slide-up 0.8s 0.6s var(--ease) both;
}

@keyframes fade-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Right: Countdown Card ───────────────────────────────────────────── */
.countdown-card {
  background: rgba(6,30,20,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
  animation: fade-slide-up 0.9s 0.5s var(--ease) both;
}
.countdown-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.cd-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 0.6rem;
}
.cd-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  color: var(--gold-light);
  display: flex; align-items: center; gap: 0.45rem;
}
.cd-target {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-gold);
  background: rgba(245,183,0,0.1);
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cd-cell {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.4rem;
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.cd-cell:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.cd-cell::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cd-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1;
  color: #fff;
  text-shadow: 0 0 22px rgba(245,183,0,0.25);
  margin-bottom: 0.35rem;
}
.cd-lbl {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--emerald-light);
}

/* Progress Bar */
.cd-progress { margin-top: 0.25rem; }
.cd-progress-labels {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.cd-track {
  width: 100%; height: 8px;
  background: rgba(0,0,0,0.55);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.cd-fill {
  height: 100%; width: 92%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light), var(--gold));
  border-radius: var(--radius-full);
  box-shadow: 0 0 14px rgba(245,183,0,0.55);
  position: relative;
  transition: width 1.5s ease-out;
}
.cd-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── ACTIONS HUB (Subscribe + Register) ─────────────────────────────── */
.actions-hub {
  padding: 4rem 0 5rem;
  position: relative;
}

.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: stretch;
}

.act-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-normal), border-color var(--t-normal), box-shadow var(--t-normal);
}
.act-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.act-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem; align-self: flex-start;
}
.act-badge.gold   { background: rgba(245,183,0,0.12); color: var(--gold-light); border: 1px solid var(--border-gold); }
.act-badge.green  { background: rgba(0,135,81,0.18); color: var(--emerald-light); border: 1px solid var(--border-emerald); }

.act-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 0.55rem;
}
.act-card p.desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 1.5rem;
}

/* Notify form inline */
.notify-form { display: flex; flex-direction: column; gap: 0.7rem; }
.form-inline {
  display: flex; position: relative;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-inline:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,183,0,0.12);
}
.form-inline input {
  flex: 1; background: transparent; border: none;
  padding: 0.7rem 1.2rem; color: #fff;
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none;
}
.form-inline input::placeholder { color: #556270; }

.form-note {
  font-size: 0.72rem; color: #556270;
  display: flex; align-items: center; gap: 0.35rem;
}

/* Perks list */
.perks { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.perks li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.86rem; color: var(--text-secondary);
}
.perks .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,179,107,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-light); flex-shrink: 0; font-size: 0.72rem;
}

.act-card-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.act-card-btns .btn { flex: 1; }

/* ── PILLARS (Bento Grid) ───────────────────────────────────────────── */
.pillars-section { padding: 4rem 0; }

.sec-header {
  text-align: center;
  max-width: 680px; margin: 0 auto 3rem;
}
.sec-sub {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.45rem;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: all var(--t-normal);
  position: relative; overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  opacity: 0; transition: opacity var(--t-normal);
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-emerald);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 0 24px rgba(0,135,81,0.18);
}
.bento-card:hover::before { opacity: 1; }

.bento-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.bento-icon.emerald { background: rgba(0,135,81,0.18); border: 1px solid var(--border-emerald); color: var(--emerald-light); }
.bento-icon.gold    { background: rgba(245,183,0,0.16); border: 1px solid var(--border-gold); color: var(--gold); }
.bento-icon.blue    { background: rgba(59,130,246,0.16); border: 1px solid rgba(59,130,246,0.35); color: #60a5fa; }

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  margin-bottom: 0.65rem;
}
.bento-card p {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.65; flex-grow: 1;
}
.bento-tag {
  display: inline-block; margin-top: 1.2rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-xs);
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── ROADMAP ────────────────────────────────────────────────────────── */
.roadmap-section { padding: 3rem 0 4.5rem; }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.roadmap-item {
  background: rgba(6,26,17,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--t-fast);
}
.roadmap-item:hover {
  background: rgba(10,42,28,0.8);
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.roadmap-item .module {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 0.45rem;
}
.roadmap-item h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.4rem;
}
.roadmap-item p {
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.55;
}

/* ── CONTACT HUB ────────────────────────────────────────────────────── */
.contact-section { padding: 4rem 0; }

.contact-main {
  background: linear-gradient(135deg, rgba(8,38,26,0.88), rgba(4,20,13,0.94));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem; align-items: start;
}

.contact-block { display: flex; flex-direction: column; gap: 0.7rem; }
.contact-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.4rem;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
}
.contact-detail {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65;
}

.contact-links { display: flex; flex-direction: column; gap: 0.55rem; }
.contact-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: #fff; font-size: 0.88rem; font-weight: 500;
  padding: 0.4rem 0.6rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  cursor: pointer;
}
.contact-link:hover {
  background: rgba(245,183,0,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateX(4px);
}
.copy-tag {
  margin-left: auto;
  font-size: 0.67rem; padding: 2px 6px;
  background: rgba(0,0,0,0.4);
  border-radius: 4px; color: var(--gold);
}

.socials { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.4rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  color: #fff; font-size: 0.78rem; font-weight: 600;
  transition: all var(--t-fast);
}
.social-pill:hover {
  background: var(--gold); color: #0b1a0f;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  margin-top: auto;
  background: #010a05;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  text-align: center;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
}
.footer-logo {
  height: 46px; background: #fff;
  padding: 3px 7px; border-radius: var(--radius-xs);
}
.footer-motto {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--gold);
}
.footer-copy {
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-copy a { color: var(--text-gold); }



/* ── MODALS ─────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(2,10,6,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; z-index: 1200;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-normal), visibility var(--t-normal);
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 580px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg), 0 0 55px rgba(0,135,81,0.18);
  transform: scale(0.94) translateY(22px);
  transition: transform var(--t-normal);
}
.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-box.wide { max-width: 920px; }

.modal-head {
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start;
  justify-content: space-between;
}
.modal-head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
}
.modal-head p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }

.modal-close {
  background: rgba(255,255,255,0.08);
  border: none; width: 30px; height: 30px;
  border-radius: 50%; color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t-fast);
}
.modal-close:hover {
  background: rgba(255,255,255,0.2);
  color: var(--gold); transform: rotate(90deg);
}

.modal-body { padding: 1.5rem 1.75rem; }

/* Form Controls */
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
}
.form-control {
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.85rem;
  font-family: var(--font-body); font-size: 0.86rem;
  color: #fff; outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,183,0,0.12);
}
.form-control option { background: var(--bg-deep); color: #fff; }

/* Share Modal Grid & Options */
.share-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1rem;
}
.share-opt {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.7rem 0.95rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 600;
  color: #fff;
  transition: all var(--t-fast);
}
.share-opt svg {
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.share-opt:hover svg {
  transform: scale(1.15);
}

.share-opt-wa:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
  color: #a7f3d0;
  transform: translateY(-2px);
}
.share-opt-wa svg { color: #25D366; }

.share-opt-fb:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: #1877F2;
  color: #bfdbfe;
  transform: translateY(-2px);
}
.share-opt-fb svg { color: #1877F2; }

.share-opt-x:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}
.share-opt-x svg { color: #ffffff; }

.share-opt-ig:hover {
  background: rgba(228, 64, 95, 0.15);
  border-color: #E4405F;
  color: #fbcfe8;
  transform: translateY(-2px);
}
.share-opt-ig svg { color: #E4405F; }

.share-opt-tg:hover {
  background: rgba(34, 158, 217, 0.15);
  border-color: #229ED9;
  color: #bae6fd;
  transform: translateY(-2px);
}
.share-opt-tg svg { color: #229ED9; }

.share-opt-li:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: #0A66C2;
  color: #bfdbfe;
  transform: translateY(-2px);
}
.share-opt-li svg { color: #0A66C2; }

/* ── ADMIN DATA HUB ─────────────────────────────────────────────────── */
.admin-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 1.5rem;
}
.stat-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem; text-align: center;
}
.stat-val {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800;
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
}

.admin-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.admin-tabs { display: flex; gap: 0.5rem; }
.admin-tab-btn {
  padding: 0.42rem 0.95rem;
  font-size: 0.82rem; font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  color: var(--text-muted);
  border: 1px solid transparent;
  cursor: pointer; transition: all var(--t-fast);
}
.admin-tab-btn.active {
  background: var(--emerald-dark);
  color: #fff; border-color: var(--border-emerald);
}

.admin-export { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.data-table-wrap {
  max-height: 320px; overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.3);
}
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.8rem; text-align: left;
}
.data-table th {
  position: sticky; top: 0;
  background: var(--bg-surface);
  padding: 0.55rem 0.8rem;
  color: var(--gold); font-weight: 700;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: #e2e8f0;
}
.data-table tr:hover td { background: rgba(255,255,255,0.025); }

.empty-notice {
  padding: 2rem; text-align: center;
  color: var(--text-muted); font-size: 0.86rem;
}

/* ── TOASTS ─────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem;
  display: flex; flex-direction: column;
  gap: 0.7rem; z-index: 2200;
  pointer-events: none;
}
.toast {
  background: rgba(6,30,20,0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  color: #fff; font-size: 0.86rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  animation: toast-in 0.3s var(--ease);
}
@keyframes toast-in {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);   opacity: 1; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-pillars { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .countdown-card { max-width: 540px; margin: 0 auto; }
  .bento-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .admin-stats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 6rem 0 2.5rem; min-height: auto; }
  .hero-title { font-size: 2rem; }
  .hero-bg img { object-position: center 30%; }
  .hero-overline { font-size: 0.68rem; padding: 0.3rem 0.8rem; }
  .hero-overline span { display: inline; }
  .hero-pillars { gap: 0.4rem; }
  .pillar-chip { font-size: 0.72rem; padding: 0.22rem 0.7rem; }
  .hero-desc { font-size: 0.88rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .actions-grid { grid-template-columns: 1fr; }

  /* Countdown: compact 2x2 grid on mobile */
  .countdown-card { padding: 1.5rem; }
  .cd-header { flex-direction: column; align-items: flex-start; gap: 0.4rem; margin-bottom: 1rem; padding-bottom: 0.65rem; }
  .cd-title { font-size: 0.88rem; }
  .cd-target { font-size: 0.72rem; }
  .cd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .cd-cell {
    padding: 1rem 0.5rem;
    border-radius: var(--radius-sm);
  }
  .cd-num {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
  }
  .cd-lbl { font-size: 0.65rem; letter-spacing: 0.1em; }
  .cd-progress-labels { font-size: 0.72rem; }
  .cd-track { height: 6px; }

  .form-row { grid-template-columns: 1fr; }
  .nav-actions { display: none !important; }
  .live-badge { display: none !important; }
  .brand-name { font-size: 0.88rem; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .share-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.85rem; }
  .hero { padding: 5rem 0 1.5rem; }
  .hero-title { font-size: 1.7rem; letter-spacing: -0.015em; }
  .hero-overline { font-size: 0.62rem; padding: 0.25rem 0.7rem; }
  .hero-pillars { gap: 0.3rem; }
  .pillar-chip { font-size: 0.68rem; padding: 0.18rem 0.55rem; }
  .hero-desc { font-size: 0.82rem; }

  /* Countdown: even more compact */
  .countdown-card { padding: 1.15rem 0.85rem; }
  .cd-grid { gap: 0.45rem; }
  .cd-cell { padding: 0.85rem 0.3rem; }
  .cd-num { font-size: 1.85rem; }
  .cd-lbl { font-size: 0.6rem; }

  .act-card { padding: 1.35rem; }
  .contact-main { padding: 1.5rem 1.15rem; }
  .contact-heading { font-size: 1rem; }
  .contact-link { font-size: 0.78rem; padding: 0.35rem 0.5rem; }
  .footer-copy { font-size: 0.7rem; }
}
