/* ═══════════════════════════════════════════════════════
   KADRI HAMZAT  ░  Campaign landing page
═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #ffffff;
  color: #0f1d17;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.55;
}

h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; }
img { display: block; max-width: 100%; }

/* ─── ICONS ──────────────────────────────────────────── */
.icon-xs { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }
.icon-md { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.9; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════
   TOP UTILITY STRIP
═══════════════════════════════════════════════════════ */
.top-strip {
  background: #082e21;
  color: #d6e8de;
  padding: 8px 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(163, 230, 53, 0.08);
}
.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d6e8de;
  text-decoration: none;
  transition: color 0.2s;
}
.top-link:hover { color: #a3e635; }
.top-sep { color: rgba(163, 230, 53, 0.25); }

.top-socials {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.top-socials a {
  color: #d6e8de;
  transition: color 0.2s, transform 0.2s;
}
.top-socials a:hover { color: #a3e635; transform: translateY(-1px); }


/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
#navbar {
  background: #ffffff;
  border-bottom: 1px solid #eef0ec;
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 22px rgba(15, 29, 23, 0.06); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1f8a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(31, 138, 79, 0.25);
}
.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #0e3b2a;
  letter-spacing: 0.04em;
}
.brand-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  color: #1f8a4f;
  letter-spacing: 0.22em;
  margin-top: 4px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  padding: 6px 0;
}
.nav-link.active,
.nav-link:hover { color: #0e3b2a; }
.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1f8a4f;
  border-radius: 2px;
}

/* Hamburger */
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #0e3b2a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
#hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #eef0ec;
  padding: 18px 24px;
  z-index: 850;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 18px 40px rgba(15, 29, 23, 0.08);
}
#mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 12px 6px;
  color: #334155;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f3;
}
.mobile-nav-link:hover { color: #0e3b2a; }


/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: #1f8a4f;
  color: #ffffff;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-green:hover {
  background: #167040;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 138, 79, 0.3);
}

.btn-green-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #ffffff;
  color: #0e3b2a;
  border: 1.5px solid #1f8a4f;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-green-outline:hover { background: #1f8a4f; color: #fff; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #a3e635;
  color: #0e3b2a;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-lime:hover {
  background: #bef264;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(163, 230, 53, 0.4);
}


/* ═══════════════════════════════════════════════════════
   PILLS / TAGS
═══════════════════════════════════════════════════════ */
.pill-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(163, 230, 53, 0.15);
  border: 1px solid rgba(163, 230, 53, 0.45);
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #a3e635;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.pill-dot {
  width: 6px;
  height: 6px;
  background: #a3e635;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.tag-green {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(31, 138, 79, 0.1);
  border: 1px solid rgba(31, 138, 79, 0.25);
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #1f8a4f;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════
   HEADINGS HELPERS
═══════════════════════════════════════════════════════ */
.h2-dark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: #0e3b2a;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.h3-dark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #0e3b2a;
  font-size: 1.25rem;
}
.lead-dark {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}
.text-green-accent { color: #1f8a4f; }


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero-wrap {
  position: relative;
  min-height: 92vh;
  padding: 70px 0 140px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,46,33,0.9) 0%, rgba(14,59,42,0.78) 50%, rgba(8,46,33,0.92) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(163,230,53,0.06) 0%, transparent 60%);
}

.hero-inner { padding-top: 30px; }

.hero-copy { color: #ffffff; }
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 18px;
}
.hero-name-accent {
  display: block;
  background: linear-gradient(135deg, #fde047 0%, #a3e635 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 460px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(163, 230, 53, 0.2);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Stats panel — sits below hero text/portrait, overflows into next section */
.stat-panel {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 5;
}
.stat-cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px solid #e8edea;
}
.stat-cell:last-child { border-right: none; }

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(31, 138, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg {
  width: 20px; height: 20px;
  stroke: #1f8a4f; stroke-width: 2;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  color: #0e3b2a;
  line-height: 1;
}
.stat-num span {
  color: #1f8a4f;
  margin-left: 2px;
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #0e3b2a;
  margin-top: 6px;
}
.stat-desc {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 3px;
}


/* ═══════════════════════════════════════════════════════
   ABOUT HAMZAT
═══════════════════════════════════════════════════════ */
.bg-cream { background: #faf8f1; }

.about-right {
  position: relative;
  display: grid;
  gap: 18px;
}
.about-photo {
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 29, 23, 0.18);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.drives-card {
  background: #0e3b2a;
  color: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}
.drives-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(163,230,53,0.18) 0%, transparent 70%);
}
.drives-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a3e635;
  margin-bottom: 14px;
}
.drives-list {
  list-style: none;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.drives-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}
.drives-list li i {
  flex-shrink: 0;
  margin-top: 4px;
  width: 16px;
  height: 16px;
  stroke: #a3e635;
  stroke-width: 2.5;
}


/* ═══════════════════════════════════════════════════════
   TRACK RECORD CARDS
═══════════════════════════════════════════════════════ */
.track-card {
  background: #ffffff;
  border: 1px solid #ecece4;
  border-radius: 14px;
  padding: 26px 22px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 138, 79, 0.3);
  box-shadow: 0 18px 38px rgba(31, 138, 79, 0.1);
}
.track-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(31, 138, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.track-icon svg {
  width: 22px; height: 22px;
  stroke: #1f8a4f; stroke-width: 1.9;
}
.track-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #0e3b2a;
  margin-bottom: 6px;
}
.track-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════
   PRIORITIES (Building a Better Lagos)
═══════════════════════════════════════════════════════ */
.priority-card {
  background: #faf8f1;
  border: 1px solid #ecece4;
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}
.priority-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(31, 138, 79, 0.4);
  box-shadow: 0 20px 50px rgba(31, 138, 79, 0.12);
}
.priority-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #0e3b2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.priority-icon svg {
  width: 24px; height: 24px;
  stroke: #a3e635; stroke-width: 1.9;
}
.priority-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0e3b2a;
  margin-bottom: 6px;
}
.priority-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════
   VISION QUOTE BAND
═══════════════════════════════════════════════════════ */
.vision-band {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(163,230,53,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #082e21 0%, #0e3b2a 60%, #103e2c 100%);
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.vision-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23a3e635' opacity='0.06'/></svg>");
  opacity: 0.5;
}
.quote-mark {
  width: 38px;
  height: 38px;
  stroke: #a3e635;
  stroke-width: 2;
  margin-bottom: 18px;
}
.vision-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 24px;
  position: relative;
}
.vision-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sig-script {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  font-style: italic;
  color: #a3e635;
}
.sig-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.vision-photo {
  width: 220px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(163, 230, 53, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-left: auto;
}
.vision-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}


/* ═══════════════════════════════════════════════════════
   NEWS CARDS
═══════════════════════════════════════════════════════ */
.news-card {
  background: #ffffff;
  border: 1px solid #ecece4;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 29, 23, 0.12);
}
.news-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,46,33,0.5) 100%);
}
.news-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-pill {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  background: rgba(31, 138, 79, 0.12);
  color: #1f8a4f;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  color: #0e3b2a;
  line-height: 1.35;
}
.news-date {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: auto;
}


/* ═══════════════════════════════════════════════════════
   ENDORSEMENTS GRID
═══════════════════════════════════════════════════════ */
.endorse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.endorse-cell {
  background: #ffffff;
  border: 1px solid #ecece4;
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 96px;
  transition: border-color 0.2s, transform 0.2s;
}
.endorse-cell:hover {
  border-color: rgba(31, 138, 79, 0.4);
  transform: translateY(-2px);
}
.endorse-cell img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.endorse-cell span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.04em;
}
.badge-text {
  width: 46px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 138, 79, 0.1);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════ */
.cta-strip {
  background: #0e3b2a;
  color: #ffffff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(163,230,53,0.18) 0%, transparent 70%);
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 4px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer-root {
  background: #082e21;
  color: #d6e8de;
  position: relative;
}
.footer-root::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1f8a4f 0%, #a3e635 50%, #1f8a4f 100%);
}
.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  color: #98b3a6;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 2.1;
  transition: color 0.2s;
}
.footer-link:hover { color: #a3e635; }
.footer-copy {
  color: #98b3a6;
  font-size: 0.88rem;
  line-height: 1.65;
}
.footer-divider {
  height: 1px;
  background: rgba(163, 230, 53, 0.12);
}

.social-pill {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(163, 230, 53, 0.12);
  border: 1px solid rgba(163, 230, 53, 0.18);
  color: #a3e635;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-pill:hover {
  background: #a3e635;
  color: #082e21;
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter-form input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(163, 230, 53, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.newsletter-form input::placeholder { color: #7da591; }
.newsletter-form input:focus {
  border-color: #a3e635;
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-form button {
  background: #a3e635;
  color: #0e3b2a;
  border: none;
  padding: 11px 16px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-form button:hover {
  background: #bef264;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stat-panel { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .stat-cell { border-right: none; padding-right: 0; }
  .stat-cell:nth-child(odd) { border-right: 1px solid #e8edea; padding-right: 22px; }
  .vision-photo { margin: 24px auto 0; }
}

@media (max-width: 768px) {
  .top-strip { font-size: 0.7rem; }
  .top-strip .top-link span,
  .top-strip .top-sep { display: none; }

  .hero-wrap { padding-bottom: 120px; }
  .hero-portrait { height: 360px; margin-top: 30px; }
  .hero-title { font-size: 2.4rem; }
  .stat-panel { grid-template-columns: 1fr; gap: 16px; padding: 20px; }
  .stat-cell { border-right: none !important; padding-right: 0 !important; padding-bottom: 16px; border-bottom: 1px solid #e8edea; }
  .stat-cell:last-child { border-bottom: none; padding-bottom: 0; }

  .endorse-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-band { padding: 50px 0; }
  .vision-photo { width: 180px; height: 220px; }
  .cta-title { font-size: 1.2rem; }

  .brand-tag { font-size: 0.55rem; }
  .brand-name { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .endorse-grid { grid-template-columns: repeat(2, 1fr); }
  .pill-green { font-size: 0.62rem; }
}
