/* ==========================================================================
   Gather Growth (GaGro) — Core Stylesheet
   Dark-mode-first, minimal, premium tech aesthetic
   ========================================================================== */

:root {
  --black: #050507;
  --bg: #060608;
  --surface-0: #0a0a0d;
  --surface-1: #0e0e13;
  --surface-2: #131319;
  --surface-3: #1a1a22;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --gray-100: #f4f4f6;
  --gray-300: #b7b7c2;
  --gray-400: #9494a1;
  --gray-500: #74747f;
  --gray-600: #55555f;

  /* Brand palette — sophisticated teal-green (Gather Growth identity)
     Gradients across the site blend exactly three tones: Teal → Soft Cyan → White.
     No purple, orange, gold, or other unrelated accent hues are used anywhere. */
  --teal-deep: #0c4a3d;
  --teal: #1f8f76;
  --teal-light: #4fb8a0;
  --teal-soft: #8fd9c4;
  --cyan-soft: #6fe3d6;
  --accent-highlight: #38d9c0; /* brighter teal-cyan, used sparingly for hover/flagship emphasis — same brand family */

  /* Legacy aliases — kept so existing var(--blue)/var(--purple) usage across the
     site automatically inherits the new teal-green brand identity (no purple remains). */
  --blue: var(--teal);
  --purple: var(--teal-light);

  --gradient-brand: linear-gradient(135deg, var(--teal) 0%, var(--cyan-soft) 100%);
  --gradient-brand-hover: linear-gradient(135deg, var(--teal-light) 0%, var(--accent-highlight) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(31,143,118,0.16) 0%, rgba(111,227,214,0.16) 100%);
  --gradient-text: linear-gradient(90deg, #ffffff 0%, var(--cyan-soft) 45%, var(--teal-light) 100%);
  --gradient-highlight: linear-gradient(135deg, var(--accent-highlight) 0%, var(--cyan-soft) 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 60px -20px rgba(31,143,118,0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--gray-100);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Background ambient glows */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
body::before {
  width: 700px; height: 700px;
  top: -250px; left: -200px;
  background: radial-gradient(circle, rgba(31,143,118,0.45), transparent 70%);
}
body::after {
  width: 800px; height: 800px;
  bottom: -350px; right: -250px;
  background: radial-gradient(circle, rgba(79,184,160,0.4), transparent 70%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

/* Headline / typography helpers */
h1, h2, h3, h4 {
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(31,143,118,0.8);
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-tag {
  color: var(--gray-400);
  font-size: 15px;
  max-width: 620px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
}
.section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 8px 30px -8px rgba(31,143,118,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(79,184,160,0.6); }
.btn-secondary {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-strong);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-ghost { color: var(--gray-300); padding: 14px 8px; }
.btn-ghost:hover { color: var(--white); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ==================== PRELOADER ==================== */
#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#site-preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
#site-preloader .preloader-mark {
  width: 84px; height: 84px;
  border-radius: 20px;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  box-shadow: 0 8px 40px -8px rgba(31,143,118,0.5);
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
#site-preloader .preloader-mark img { width: 100%; height: 100%; object-fit: contain; }
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* ==================== NAV ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6,6,8,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.brand .mark {
  height: 40px;
  width: auto;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 9px;
  padding: 3px 5px;
  box-shadow: 0 4px 20px -4px rgba(31,143,118,0.4);
}
.brand .mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand .brand .mark { height: 46px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 9px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6,6,8,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s var(--ease);
}
.mobile-menu.open { display: flex; opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-size: 22px; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid var(--border); color: var(--white); }
.mobile-menu .btn { margin-top: 24px; }

/* ==================== HERO ==================== */
.hero {
  padding: 190px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  margin-bottom: 26px;
}
.hero-sub {
  font-size: 19px;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 30px 80px rgba(31,143,118,0.35));
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-stat .label { font-size: 13.5px; color: var(--gray-500); margin-top: 4px; }

/* ==================== MARQUEE ==================== */
.marquee-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-label { text-align: center; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 28px; }
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scrollX 32s linear infinite; }
.marquee-track span { font-size: 20px; font-weight: 600; color: var(--gray-500); white-space: nowrap; letter-spacing: -0.01em; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================== CARDS / GLASS ==================== */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.glass-card::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--gradient-brand-soft);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.pillar-card {
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--blue);
}
.pillar-card h3 { font-size: 17px; margin-bottom: 2px; }
.pillar-card p { font-size: 14px; color: var(--gray-400); }

/* Programs grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.program-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.program-card .index { font-size: 13px; color: var(--gray-500); font-weight: 600; letter-spacing: 0.05em; }
.program-card h3 { font-size: 22px; }
.program-card p { color: var(--gray-400); font-size: 15px; flex-grow: 1; }
.program-card .tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--gray-400);
  background: rgba(255,255,255,0.03);
}
.program-card a.card-link { color: var(--white); font-size: 14.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.program-card a.card-link i { transition: transform 0.3s var(--ease); }
.program-card:hover a.card-link i { transform: translateX(4px); }

/* Global reach */
.global-section { padding: 130px 0; }
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.global-visual { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-glow); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.stat-box { padding: 24px; border-radius: var(--radius-md); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.stat-box .num { font-size: 34px; font-weight: 700; color: var(--white); }
.stat-box .label { font-size: 13.5px; color: var(--gray-500); margin-top: 6px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; }
.testimonial-card .quote { font-size: 15.5px; color: var(--gray-300); line-height: 1.7; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 15px;
}
.testimonial-person .name { font-size: 14.5px; font-weight: 600; color: var(--white); }
.testimonial-person .role { font-size: 13px; color: var(--gray-500); }

/* CTA band */
.cta-band {
  margin: 60px auto 0;
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(31,143,118,0.14), rgba(79,184,160,0.12));
  border: 1px solid var(--border-strong);
}
.cta-band::before {
  content: ""; position: absolute; inset: -2px;
  background: radial-gradient(600px circle at 30% 20%, rgba(31,143,118,0.25), transparent 60%),
              radial-gradient(600px circle at 80% 80%, rgba(111,227,214,0.2), transparent 60%);
  pointer-events: none;
}
.cta-band .brand-motif.motif-cta {
  top: 50%; right: -40px;
  width: 260px; height: 260px;
  transform: translateY(-50%);
  opacity: 0.16;
}
@media (max-width: 860px) { .cta-band .brand-motif.motif-cta { display: none; } }
.cta-band h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.cta-band p { color: var(--gray-300); max-width: 560px; margin: 0 auto 36px; font-size: 16.5px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ==================== BRAND MOTIFS ====================
   Subtle abstract SVG graphics inspired by the GaGro logo's flowing tree/network
   mark — used sparingly (a handful of placements site-wide) to reinforce growth,
   connection, innovation, and community without becoming decorative clutter. */
.brand-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  user-select: none;
}
.brand-motif img { width: 100%; height: 100%; display: block; }
.brand-motif.motif-footer {
  bottom: -10px; right: 4%;
  width: 340px; height: 380px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 25%, #000 100%);
}
@media (max-width: 860px) { .brand-motif.motif-footer { display: none; } }

/* Footer */
.site-footer { position: relative; padding: 90px 0 40px; border-top: 1px solid var(--border); margin-top: 120px; overflow: hidden; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 60px; }
.footer-brand p { color: var(--gray-500); font-size: 14.5px; margin: 18px 0 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); transition: all 0.3s var(--ease);
}
.footer-social a:hover { color: #fff; border-color: var(--border-strong); background: rgba(255,255,255,0.05); }
.footer-col h4 { font-size: 13.5px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--gray-400); font-size: 14.5px; transition: color 0.25s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 30px; border-top: 1px solid var(--border);
  font-size: 13.5px; color: var(--gray-600);
}
.footer-legal { display: flex; gap: 20px; }

/* Newsletter */
.newsletter-form { display: flex; gap: 10px; margin-top: 10px; }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--white);
  font-size: 14px;
}
.newsletter-form input::placeholder { color: var(--gray-600); }
.newsletter-form input:focus { outline: none; border-color: var(--blue); }
.newsletter-form button {
  border: none; border-radius: 999px; padding: 11px 20px;
  background: var(--gradient-brand); color: #fff; font-weight: 600; font-size: 14px;
}

/* ==================== PAGE HERO (subpages) ==================== */
.page-hero {
  padding: 170px 0 90px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 20px; }
.page-hero p { color: var(--gray-300); max-width: 640px; margin: 0 auto; font-size: 17.5px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }

/* Generic section spacing */
.section { padding: 110px 0; }
.section.tight { padding: 70px 0; }
.section.divider-top { border-top: 1px solid var(--border); }

/* Values / feature list */
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-item { padding: 30px; }
.feature-item .num-badge {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong);
  margin-bottom: 18px; font-size: 15px;
}
.feature-item h3 { font-size: 18px; margin-bottom: 10px; }
.feature-item p { color: var(--gray-400); font-size: 14.5px; }

/* Timeline (About) */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 30px; padding: 30px 0; border-top: 1px solid var(--border); }
.timeline-item:first-child { border-top: none; }
.timeline-item .year { font-size: 20px; font-weight: 700; color: var(--blue); }
.timeline-item h4 { font-size: 18px; margin-bottom: 8px; }
.timeline-item p { color: var(--gray-400); font-size: 14.5px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { padding: 26px; text-align: left; }
.team-avatar { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-md); background: var(--gradient-brand-soft); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.team-card h4 { font-size: 16.5px; margin-bottom: 2px; }
.team-card .role { font-size: 13.5px; color: var(--blue); margin-bottom: 10px; }
.team-card p.bio { font-size: 13.5px; color: var(--gray-500); }

/* Values grid (About) */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Membership tiers (Community page) */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tier-card { padding: 32px 26px; display: flex; flex-direction: column; gap: 18px; }
.tier-card.featured { border-color: rgba(79,184,160,0.5); box-shadow: var(--shadow-glow); }
.tier-card .tier-name { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); font-weight: 600; }
.tier-card h3 { font-size: 26px; }
.tier-card ul { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 10px; }
.tier-card ul li { font-size: 14px; color: var(--gray-300); display: flex; gap: 8px; align-items: flex-start; }
.tier-card ul li i { color: var(--blue); margin-top: 3px; font-size: 12px; }
.badge-popular { position: absolute; top: 18px; right: 18px; font-size: 11px; background: var(--gradient-brand); color: #fff; padding: 5px 12px; border-radius: 999px; font-weight: 700; letter-spacing: 0.03em; }

/* Partners grid */
.partner-logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.partner-logo-box { padding: 30px 16px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gray-400); font-size: 15px; letter-spacing: -0.01em; text-align: center; }

/* Events */
.event-card { display: grid; grid-template-columns: 140px 1fr auto; gap: 26px; align-items: center; padding: 28px 30px; margin-bottom: 16px; }
.event-date { text-align: center; padding: 14px 8px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.event-date .day { font-size: 26px; font-weight: 700; color: var(--white); line-height: 1; }
.event-date .month { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.event-info h3 { font-size: 19px; margin-bottom: 6px; }
.event-info p { color: var(--gray-400); font-size: 14px; }
.event-meta { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.event-meta span { font-size: 13px; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }

/* Forms */
.form-card { padding: 44px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--gray-300); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-size: 14.5px;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group select option { background: var(--surface-1); }
.form-note { font-size: 13px; color: var(--gray-500); margin-top: 6px; }
.form-success {
  display: none;
  align-items: center; gap: 12px;
  padding: 18px 22px; border-radius: var(--radius-md);
  background: rgba(31,143,118,0.12); border: 1px solid rgba(31,143,118,0.35);
  color: var(--gray-100); font-size: 14.5px; margin-top: 20px;
}
.form-success.show { display: flex; }

/* Contact info cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.contact-info-card { padding: 28px; text-align: center; }
.contact-info-card .pillar-icon { margin: 0 auto 16px; }
.contact-info-card h3 { font-size: 16px; margin-bottom: 6px; }
.contact-info-card p { color: var(--gray-500); font-size: 14px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.30s; }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.hide-mobile { display: inline; }
@media (max-width: 620px) { .hide-mobile { display: none; } }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(1, 1fr); }
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .container > div[style*="grid-template-columns:0.8fr 1.2fr"] { grid-template-columns: 1fr !important; }
  .container > div[style*="grid-template-columns:0.8fr 1.2fr"] > div:first-child { position: static !important; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .hero-visual img { max-width: 340px; margin: 0 auto; }
  .global-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; text-align: left; }
  .event-date { width: 80px; }
}
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .hero { padding: 150px 0 80px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 24px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .cta-band { padding: 50px 26px; }
  .form-card { padding: 26px; }
  .newsletter-form { flex-direction: column; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
