/* ============================================================
   AfroTech Innovation Quest — Static Site Stylesheet
   Design: "Adinkra Circuit" — Afrofuturism + deep emerald + neon lime
   Domain: afrotech26.retrograde.space
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #1A1A1A;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
code, pre { font-family: 'JetBrains Mono', monospace; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* --- Utility --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1A1A1A; }
::-webkit-scrollbar-thumb { background: #0D6B3F; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #A8E10C; }

/* --- Glow Effects --- */
.glow-lime { box-shadow: 0 0 20px rgba(168,225,12,0.3), 0 0 40px rgba(168,225,12,0.1); }
.glow-lime-sm { box-shadow: 0 0 10px rgba(168,225,12,0.2), 0 0 20px rgba(168,225,12,0.05); }
.text-glow-lime { text-shadow: 0 0 20px rgba(168,225,12,0.5); }
.glow-gold { box-shadow: 0 0 20px rgba(212,168,67,0.3), 0 0 40px rgba(212,168,67,0.1); }

/* --- Animations --- */
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(168,225,12,0.3); }
  50% { box-shadow: 0 0 20px rgba(168,225,12,0.6); }
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounce-arrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.animate-ticker { animation: ticker 30s linear infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translate(0, 0); }

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,31,20,0.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(13,107,63,0.3); overflow: hidden;
}
.ticker-bar__inner { white-space: nowrap; padding: 0.5rem 0; font-size: 0.75rem; letter-spacing: 0.25em; font-family: 'JetBrains Mono', monospace; }
.ticker-bar__item { display: inline; margin: 0 0.75rem; }
.ticker-bar__item--star { color: #A8E10C; }
.ticker-bar__item--text { color: rgba(212,168,67,0.8); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 40;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: rgba(10,31,20,0.95); backdrop-filter: blur(12px); box-shadow: 0 4px 20px rgba(13,107,63,0.1); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.navbar__logo { display: flex; align-items: center; gap: 0.5rem; }
.navbar__logo-icon { color: #A8E10C; font-size: 1.125rem; }
.navbar__logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.15em; color: #fff; }
.navbar__logo-text span { color: #A8E10C; }
.navbar__links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .navbar__links { display: flex; } }
.navbar__link {
  padding: 0.5rem 0.75rem; font-size: 0.75rem; letter-spacing: 0.15em;
  font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.6);
  transition: color 0.2s; background: none; border: none; cursor: pointer;
}
.navbar__link:hover { color: #A8E10C; }
.navbar__external { display: none; align-items: center; gap: 0.375rem; font-size: 0.75rem; letter-spacing: 0.1em; font-family: 'JetBrains Mono', monospace; color: #D4A843; transition: color 0.2s; }
.navbar__external:hover { color: #A8E10C; }
@media (min-width: 768px) { .navbar__external { display: flex; } }
.navbar__mobile-btn { display: block; color: rgba(255,255,255,0.6); background: none; border: none; cursor: pointer; }
.navbar__mobile-btn:hover { color: #A8E10C; }
@media (min-width: 768px) { .navbar__mobile-btn { display: none; } }
.navbar__mobile-menu { display: none; padding-bottom: 1rem; border-top: 1px solid rgba(13,107,63,0.3); }
.navbar__mobile-menu.open { display: block; }
.navbar__mobile-link { display: block; width: 100%; text-align: left; padding: 0.75rem; font-size: 0.75rem; letter-spacing: 0.15em; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.6); background: none; border: none; cursor: pointer; transition: color 0.2s; }
.navbar__mobile-link:hover { color: #A8E10C; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 6rem; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero__overlay-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,31,20,0.7), rgba(10,31,20,0.4), #1A1A1A); }
.hero__overlay-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,31,20,0.6), transparent, rgba(10,31,20,0.6)); }
.hero__content { position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; margin-bottom: 2rem; border: 1px solid rgba(168,225,12,0.3); background: rgba(168,225,12,0.05); backdrop-filter: blur(4px); }
.hero__badge-dot { width: 0.5rem; height: 0.5rem; background: #A8E10C; border-radius: 50%; animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.hero__badge-text { font-size: 0.75rem; letter-spacing: 0.2em; font-family: 'JetBrains Mono', monospace; color: #A8E10C; }
.hero__title { font-weight: 700; line-height: 0.95; margin-bottom: 1.5rem; }
.hero__title-line { display: block; font-size: clamp(2.5rem, 8vw, 5rem); color: #fff; }
.hero__title-accent { color: #A8E10C; }
.hero__subtitle { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 42rem; margin: 0 auto 2.5rem; font-family: 'DM Sans', sans-serif; }
@media (min-width: 640px) { .hero__subtitle { font-size: 1.125rem; } }
.hero__cta-row { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .hero__cta-row { flex-direction: row; } }
.hero__btn-primary { padding: 0.75rem 2rem; background: #A8E10C; color: #1A1A1A; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.1em; transition: background 0.2s; }
.hero__btn-primary:hover { background: #B8F11C; }
.hero__btn-secondary { padding: 0.75rem 2rem; border: 1px solid rgba(168,225,12,0.4); color: #A8E10C; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 0.875rem; letter-spacing: 0.1em; transition: background 0.2s; }
.hero__btn-secondary:hover { background: rgba(168,225,12,0.1); }
.hero__meta { display: flex; align-items: center; justify-content: center; gap: 1.5rem; font-size: 0.75rem; letter-spacing: 0.15em; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.4); }
.hero__meta-item { display: flex; align-items: center; gap: 0.375rem; }
.hero__meta-icon { width: 0.875rem; height: 0.875rem; color: #0D6B3F; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(168,225,12,0.4); font-size: 1.5rem; animation: bounce-arrow 1.5s infinite; }

/* ============================================================
   CHALLENGE SECTION
   ============================================================ */
.challenge { padding: 6rem 0; background: #1A1A1A; }
.section-num { font-size: 0.75rem; letter-spacing: 0.3em; font-family: 'JetBrains Mono', monospace; color: #0D6B3F; margin-bottom: 1rem; }
.challenge__grid { display: grid; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .challenge__grid { grid-template-columns: 1fr 1fr; } }
.challenge__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1.5rem; }
.challenge__title span { color: #A8E10C; }
.challenge__text { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; font-family: 'DM Sans', sans-serif; }
.challenge__text span { color: #A8E10C; font-weight: 600; }
.challenge__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.challenge__stat { text-align: center; padding: 1rem; border: 1px solid rgba(13,107,63,0.3); background: rgba(13,107,63,0.05); }
.challenge__stat-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: #A8E10C; }
.challenge__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; }
.challenge__problems { display: flex; flex-direction: column; gap: 1.5rem; }
.challenge__problem { padding: 1.5rem; border-left: 2px solid rgba(212,168,67,0.4); background: rgba(13,42,28,0.5); }
.challenge__problem-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.125rem; color: #D4A843; margin-bottom: 0.5rem; }
.challenge__problem-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; font-family: 'DM Sans', sans-serif; }

/* ============================================================
   SOLUTION SECTION
   ============================================================ */
.solution { padding: 6rem 0; background: #0D2A1C; }
.solution__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.solution__title span { color: #A8E10C; }
.solution__text { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 48rem; margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif; }
.solution__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1px solid rgba(212,168,67,0.3); background: rgba(212,168,67,0.05); margin-bottom: 3rem; }
.solution__badge-text { font-size: 0.75rem; letter-spacing: 0.15em; font-family: 'JetBrains Mono', monospace; color: #D4A843; }
.solution__pillars { display: grid; gap: 2rem; }
@media (min-width: 768px) { .solution__pillars { grid-template-columns: repeat(3, 1fr); } }
.solution__pillar { padding: 2rem; background: rgba(10,31,20,0.8); border: 1px solid rgba(13,107,63,0.2); transition: border-color 0.2s; }
.solution__pillar:hover { border-color: rgba(168,225,12,0.3); }
.solution__pillar-icon { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; border-width: 1px; border-style: solid; }
.solution__pillar-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; }
.solution__pillar-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; font-family: 'DM Sans', sans-serif; }

/* ============================================================
   BINGO BOARD
   ============================================================ */
.bingo { position: relative; padding: 6rem 0; overflow: hidden; }
.bingo__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; }
.bingo__overlay { position: absolute; inset: 0; background: rgba(10,31,20,0.9); }
.bingo__content { position: relative; z-index: 10; }
.bingo__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.bingo__title span { color: #A8E10C; }
.bingo__subtitle { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 2rem; font-family: 'DM Sans', sans-serif; }
.bingo__stats { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.bingo__stat { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; }
.bingo__stat--squares { background: rgba(13,107,63,0.1); border: 1px solid rgba(13,107,63,0.3); }
.bingo__stat--points { background: rgba(168,225,12,0.05); border: 1px solid rgba(168,225,12,0.2); }
.bingo__stat--team { background: rgba(212,168,67,0.05); border: 1px solid rgba(212,168,67,0.2); }
.bingo__stat-value { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; }
.bingo__stat-label { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.6); }
.bingo__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; max-width: 56rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .bingo__grid { gap: 0.75rem; } }
.bingo__square {
  position: relative; aspect-ratio: 1; padding: 0.375rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; transition: all 0.2s; cursor: pointer;
  border: 1px solid transparent; background: transparent;
}
@media (min-width: 640px) { .bingo__square { padding: 0.75rem; } }
.bingo__square--completed { background: rgba(168,225,12,0.15); border-color: rgba(168,225,12,0.5); }
.bingo__square--active { background: rgba(13,107,63,0.2); border-color: rgba(13,107,63,0.5); }
.bingo__square--active:hover { background: rgba(13,107,63,0.3); }
.bingo__square--locked { background: rgba(10,31,20,0.6); border-color: rgba(13,107,63,0.1); opacity: 0.5; }
.bingo__square--selected { outline: 2px solid #A8E10C; outline-offset: -2px; }
.bingo__square-name { font-size: 0.5625rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 0.125rem; }
@media (min-width: 640px) { .bingo__square-name { font-size: 0.75rem; margin-bottom: 0.25rem; } }
.bingo__square-cat { font-size: 0.5rem; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
@media (min-width: 640px) { .bingo__square-cat { font-size: 0.625rem; } }
.bingo__square-pts { font-size: 0.5rem; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.3); }
@media (min-width: 640px) { .bingo__square-pts { font-size: 0.625rem; } }
.bingo__square-dot { position: absolute; top: 0.25rem; right: 0.25rem; width: 0.5rem; height: 0.5rem; background: #A8E10C; border-radius: 50%; }
.bingo__detail { max-width: 56rem; padding: 1.5rem; background: #0D2A1C; border: 1px solid rgba(13,107,63,0.3); margin-bottom: 2rem; display: none; }
.bingo__detail.open { display: block; }
.bingo__detail-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.75rem; }
.bingo__detail-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.125rem; color: #fff; }
.bingo__detail-meta { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; }
.bingo__detail-status { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; padding: 0.25rem 0.5rem; }
.bingo__detail-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-family: 'DM Sans', sans-serif; }
.bingo__legend { display: flex; flex-wrap: wrap; gap: 1rem; max-width: 56rem; }
.bingo__legend-item { display: flex; align-items: center; gap: 0.5rem; }
.bingo__legend-swatch { width: 0.75rem; height: 0.75rem; }
.bingo__legend-label { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.4); }
.bingo__legend-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; }

/* ============================================================
   CHALLENGE TYPES
   ============================================================ */
.challenges { padding: 6rem 0; background: #1A1A1A; }
.challenges__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 4rem; }
.challenges__title span { color: #A8E10C; }
.challenges__list { display: flex; flex-direction: column; gap: 5rem; }
.challenges__item { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .challenges__item { grid-template-columns: 1fr 1fr; } }
.challenges__item--reverse .challenges__text-col { order: 2; }
.challenges__item--reverse .challenges__code-col { order: 1; }
@media (max-width: 1023px) { .challenges__item--reverse .challenges__text-col { order: 1; } .challenges__item--reverse .challenges__code-col { order: 2; } }
.challenges__type-badge { display: inline-block; font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.2em; padding: 0.25rem 0.5rem; border-width: 1px; border-style: solid; margin-bottom: 1rem; }
.challenges__item-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.875rem); color: #fff; margin-bottom: 0.5rem; }
.challenges__item-subtitle { color: rgba(255,255,255,0.4); font-size: 0.875rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; margin-bottom: 1rem; }
.challenges__item-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; font-family: 'DM Sans', sans-serif; }
.challenges__bullets { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.challenges__bullet { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; }
.challenges__bullet-icon { margin-top: 0.375rem; font-size: 0.75rem; }
.challenges__code-block { background: #0D2A1C; border: 1px solid rgba(13,107,63,0.2); overflow: hidden; }
.challenges__code-header { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: #1A1A1A; border-bottom: 1px solid rgba(13,107,63,0.2); }
.challenges__code-dots { display: flex; gap: 0.375rem; }
.challenges__code-dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; }
.challenges__code-dot--red { background: rgba(255,95,87,0.6); }
.challenges__code-dot--yellow { background: rgba(255,189,46,0.6); }
.challenges__code-dot--green { background: rgba(40,200,64,0.6); }
.challenges__code-lang { font-size: 0.625rem; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; margin-left: 0.5rem; }
.challenges__code-body { padding: 1rem 1.5rem; overflow-x: auto; }
.challenges__code-body pre { margin: 0; }
.challenges__code-body code { font-size: 0.8125rem; line-height: 1.7; color: rgba(168,225,12,0.8); font-family: 'JetBrains Mono', monospace; white-space: pre; }
@media (min-width: 640px) { .challenges__code-body { padding: 1.5rem; } .challenges__code-body code { font-size: 0.875rem; } }

/* ============================================================
   TECH STACK
   ============================================================ */
.tech { position: relative; padding: 6rem 0; overflow: hidden; }
.tech__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; }
.tech__overlay { position: absolute; inset: 0; background: rgba(13,42,28,0.9); }
.tech__content { position: relative; z-index: 10; }
.tech__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.tech__title span { color: #A8E10C; }
.tech__text { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 48rem; margin-bottom: 3rem; font-family: 'DM Sans', sans-serif; }
.tech__grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .tech__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech__grid { grid-template-columns: repeat(3, 1fr); } }
.tech__card { padding: 1.5rem; background: rgba(10,31,20,0.8); border: 1px solid rgba(13,107,63,0.15); transition: border-color 0.2s; }
.tech__card:hover { border-color: rgba(168,225,12,0.2); }
.tech__card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.tech__card-icon { font-size: 1.5rem; }
.tech__card-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #fff; font-size: 1.125rem; }
.tech__card-subtitle { font-size: 0.625rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.2em; }
.tech__card-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.6; font-family: 'DM Sans', sans-serif; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { padding: 6rem 0; background: #1A1A1A; }
.timeline__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.timeline__title span { color: #A8E10C; }
.timeline__text { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 48rem; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
.timeline__reqs { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.timeline__req { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; padding: 0.375rem 0.75rem; border: 1px solid rgba(13,107,63,0.2); }
.timeline__track { position: relative; padding-left: 2rem; }
@media (min-width: 640px) { .timeline__track { padding-left: 2.5rem; } }
.timeline__line { position: absolute; left: 1rem; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, rgba(13,107,63,0.5), rgba(168,225,12,0.3), rgba(212,168,67,0.5)); }
@media (min-width: 640px) { .timeline__line { left: 2rem; } }
.timeline__steps { display: flex; flex-direction: column; gap: 2rem; }
.timeline__step { position: relative; display: flex; gap: 1.5rem; }
@media (min-width: 640px) { .timeline__step { gap: 2rem; } }
.timeline__node { position: relative; z-index: 10; flex-shrink: 0; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; background: #1A1A1A; border: 1px solid rgba(168,225,12,0.4); font-size: 0.875rem; }
.timeline__step-time { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: rgba(168,225,12,0.6); letter-spacing: 0.1em; }
.timeline__step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.125rem; color: #fff; margin-top: 0.25rem; margin-bottom: 0.5rem; }
.timeline__step-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; font-family: 'DM Sans', sans-serif; }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes { padding: 6rem 0; background: #0D2A1C; }
.outcomes__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.outcomes__title span { color: #A8E10C; }
.outcomes__text { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 48rem; margin-bottom: 3rem; font-family: 'DM Sans', sans-serif; }
.outcomes__grid { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 640px) { .outcomes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .outcomes__grid { grid-template-columns: repeat(4, 1fr); } }
.outcomes__card { padding: 1.5rem; background: rgba(10,31,20,0.8); border: 1px solid rgba(13,107,63,0.15); }
.outcomes__card-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2.5rem; margin-bottom: 0.75rem; }
.outcomes__card-label { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.outcomes__card-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; font-family: 'DM Sans', sans-serif; }
.outcomes__alignment { padding: 2rem; border: 1px solid rgba(212,168,67,0.2); background: rgba(212,168,67,0.05); }
.outcomes__alignment-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.125rem; color: #D4A843; margin-bottom: 1rem; }
.outcomes__tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.outcomes__tag { padding: 0.5rem 1rem; font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; color: rgba(212,168,67,0.8); border: 1px solid rgba(212,168,67,0.2); background: rgba(212,168,67,0.05); }

/* ============================================================
   FACILITATORS
   ============================================================ */
.facilitators { padding: 6rem 0; background: #1A1A1A; }
.facilitators__title { font-weight: 700; font-size: clamp(1.75rem, 4vw, 3rem); color: #fff; line-height: 1.15; margin-bottom: 3rem; }
.facilitators__title span { color: #A8E10C; }
.facilitators__grid { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .facilitators__grid { grid-template-columns: repeat(2, 1fr); } }
.facilitators__card { padding: 2rem; background: rgba(13,42,28,0.5); border: 1px solid rgba(13,107,63,0.2); }
.facilitators__card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.facilitators__avatar { width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; background: rgba(168,225,12,0.1); border: 1px solid rgba(168,225,12,0.3); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; color: #A8E10C; }
.facilitators__card-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.25rem; color: #fff; }
.facilitators__card-role { font-size: 0.875rem; color: rgba(168,225,12,0.7); font-family: 'JetBrains Mono', monospace; }
.facilitators__card-org { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-family: 'JetBrains Mono', monospace; }
.facilitators__card-bio { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
.facilitators__card-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: #D4A843; letter-spacing: 0.1em; transition: color 0.2s; }
.facilitators__card-link:hover { color: #A8E10C; }
.facilitators__track-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.25rem; color: #fff; margin-bottom: 1.5rem; }
.facilitators__events { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .facilitators__events { grid-template-columns: repeat(2, 1fr); } }
.facilitators__event { padding: 1.5rem; border-left: 2px solid rgba(168,225,12,0.3); background: rgba(13,42,28,0.3); }
.facilitators__event-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.facilitators__event-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: #fff; }
.facilitators__event-count { font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; color: #A8E10C; }
.facilitators__event-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; font-family: 'DM Sans', sans-serif; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta { position: relative; padding: 8rem 0; overflow: hidden; }
.cta__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, #1A1A1A, #0D3D2A, #1A1A1A); }
.cta__radial { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(168,225,12,0.08) 0%, transparent 70%); }
.cta__content { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; text-align: center; }
.cta__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; margin-bottom: 2rem; border: 1px solid rgba(212,168,67,0.4); background: rgba(212,168,67,0.05); }
.cta__badge-star { color: #D4A843; font-size: 0.875rem; }
.cta__badge-text { font-size: 0.75rem; letter-spacing: 0.25em; font-family: 'JetBrains Mono', monospace; color: #D4A843; }
.cta__title { font-weight: 700; font-size: clamp(2rem, 5vw, 3.75rem); color: #fff; line-height: 1.15; margin-bottom: 1.5rem; }
.cta__title span { color: #A8E10C; }
.cta__text { color: rgba(255,255,255,0.6); font-size: 1.125rem; max-width: 42rem; margin: 0 auto 2.5rem; font-family: 'DM Sans', sans-serif; }
.cta__buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .cta__buttons { flex-direction: row; } }
.cta__btn-primary { padding: 0.75rem 2rem; background: #A8E10C; color: #1A1A1A; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.1em; transition: background 0.2s; }
.cta__btn-primary:hover { background: #B8F11C; }
.cta__btn-secondary { padding: 0.75rem 2rem; border: 1px solid rgba(168,225,12,0.4); color: #A8E10C; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 0.875rem; letter-spacing: 0.1em; transition: background 0.2s; }
.cta__btn-secondary:hover { background: rgba(168,225,12,0.1); }
.cta__facilitators { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
@media (min-width: 640px) { .cta__facilitators { flex-direction: row; } }
.cta__facilitator { text-align: center; }
.cta__facilitator-name { color: #fff; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.cta__facilitator-org { color: rgba(255,255,255,0.4); font-size: 0.75rem; font-family: 'JetBrains Mono', monospace; }
.cta__divider { display: none; color: #0D6B3F; }
@media (min-width: 640px) { .cta__divider { display: block; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 3rem 0; background: #1A1A1A; border-top: 1px solid rgba(13,107,63,0.2); }
.footer__grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
.footer__brand-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer__brand-icon { color: #A8E10C; font-size: 1.125rem; }
.footer__brand-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.15em; color: #fff; }
.footer__brand-text span { color: #A8E10C; }
.footer__brand-desc { color: rgba(255,255,255,0.3); font-size: 0.75rem; line-height: 1.6; font-family: 'DM Sans', sans-serif; }
.footer__heading { font-size: 0.75rem; letter-spacing: 0.2em; font-family: 'JetBrains Mono', monospace; color: #0D6B3F; margin-bottom: 0.75rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link { font-size: 0.875rem; color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif; transition: color 0.2s; }
.footer__link:hover { color: #A8E10C; }
.footer__info { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__info-item { font-size: 0.875rem; color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif; }
.footer__bottom { padding-top: 1.5rem; border-top: 1px solid rgba(13,107,63,0.1); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; } }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); font-family: 'JetBrains Mono', monospace; }
