/**
 * Learning Hub — Elegant Light Theme v2
 * All selectors prefixed with `.lh-home` / `body.lh-home-active` to win
 * specificity against globally-enqueued theme CSS.
 */

/* ============ TOKENS ============ */
body.lh-home-active,
.lh-home {
  --lh-bg: #f8fafc;
  --lh-bg2: #f1f5f9;
  --lh-bg3: #e2e8f0;
  --lh-surface: #ffffff;
  --lh-border: rgba(15, 23, 42, 0.08);
  --lh-border-strong: rgba(15, 23, 42, 0.14);
  --lh-border-glow: rgba(0, 112, 243, 0.25);

  --lh-cyan: #0070f3;
  --lh-cyan-dim: rgba(0, 112, 243, 0.08);
  --lh-cyan-mid: rgba(0, 112, 243, 0.15);
  --lh-gold: #b48600;
  --lh-gold-dim: rgba(180, 134, 0, 0.08);
  --lh-green: #10b981;

  --lh-text: #0f172a;
  --lh-muted: #64748b;
  --lh-muted2: #475569;

  --lh-font-display: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --lh-font-body: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* Legacy `--lh-font-mono` token → resolves to Inter (not a monospace). */
  --lh-font-mono: 'Inter', 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --lh-font-serif: 'Instrument Serif', 'Playfair Display', Georgia, serif;

  --lh-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --lh-shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --lh-shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* ============ BODY & HIDE DEFAULT CHROME ============ */
body.lh-home-active {
  background: var(--lh-bg);
  color: var(--lh-text);
  font-family: var(--lh-font-display);
  overflow-x: hidden;
  min-height: 100vh;
}
body.lh-home-active .gcc-header,
body.lh-home-active .gcc-footer,
body.lh-home-active .gcc-scroll-progress {
  display: none !important;
}

/* Ribbon now lives in normal flow; nav sits flush below it. Only the WP
   admin bar requires a sticky-top offset. */
body.lh-home-active { font-family: var(--lh-font-body); }
body.lh-home-active main.lh-home { margin: 0; padding: 0; }
body.lh-home-active main.lh-home > .lh-home-nav:first-child { margin-top: 0; }
body.lh-home-active.admin-bar .lh-home-nav { top: 32px; }
@media (max-width: 782px) {
  body.lh-home-active.admin-bar .lh-home-nav { top: 46px; }
}

.lh-home,
.lh-home *,
.lh-home *::before,
.lh-home *::after {
  box-sizing: border-box;
}
.lh-home { color: var(--lh-text); }
.lh-home img { max-width: 100%; display: block; }

.lh-home .lh-accent-cyan { color: var(--lh-cyan); }

/* ============ NAV ============ */
.lh-home-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lh-border);
}

.lh-home .lh-logo,
.lh-home-nav .lh-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--lh-text);
}
.lh-home .lh-logo-mark,
.lh-home-nav .lh-logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--lh-cyan), #005bb5);
  border: 1px solid rgba(0, 112, 243, 0.4);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--lh-shadow-sm);
}
.lh-home .lh-logo-text,
.lh-home-nav .lh-logo-text {
  font-family: var(--lh-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--lh-text);
}
.lh-home .lh-logo-text span,
.lh-home-nav .lh-logo-text span { color: var(--lh-cyan); }

.lh-home-nav .lh-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lh-home-nav .lh-nav-links li { margin: 0; padding: 0; }
.lh-home-nav .lh-nav-links a {
  font-family: var(--lh-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--lh-muted2);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.lh-home-nav .lh-nav-links a:hover,
.lh-home-nav .lh-nav-links a.active,
.lh-home-nav .lh-nav-links .current-menu-item > a { color: var(--lh-cyan); }

.lh-home-nav .lh-nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ============ BUTTONS ============ */
.lh-home .lh-btn,
.lh-home-nav .lh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: var(--lh-font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.lh-home .lh-btn-ghost,
.lh-home-nav .lh-btn-ghost {
  background: transparent;
  color: var(--lh-muted2);
  border-color: var(--lh-border);
}
.lh-home .lh-btn-ghost:hover,
.lh-home-nav .lh-btn-ghost:hover {
  color: var(--lh-text);
  border-color: rgba(0, 112, 243, 0.3);
  background: var(--lh-surface);
}
.lh-home .lh-btn-primary,
.lh-home-nav .lh-btn-primary {
  background: linear-gradient(135deg, var(--lh-cyan), #005bb5);
  border-color: rgba(0, 112, 243, 0.3);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.15);
}
.lh-home .lh-btn-primary:hover,
.lh-home-nav .lh-btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.25);
  transform: translateY(-1px);
}
.lh-home .lh-btn-ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.lh-home .lh-btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}
.lh-home .lh-btn-lg { padding: 14px 32px; font-size: 13px; border-radius: 8px; }
.lh-home .lh-btn-round { border-radius: 100px; }

/* ============ HERO ============ */
.lh-home .lh-hub-hero {
  position: relative;
  padding: 100px 24px 140px;
  text-align: center;
  background: radial-gradient(circle at top center, rgba(0, 112, 243, 0.04) 0%, var(--lh-bg) 60%);
}
.lh-home .lh-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lh-surface);
  border: 1px solid var(--lh-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--lh-muted2);
  text-transform: uppercase;
  margin-bottom: 32px;
  box-shadow: var(--lh-shadow-sm);
}
.lh-home .lh-top-badge .lh-dot-pulse {
  color: var(--lh-cyan);
  font-size: 12px;
  line-height: 1;
  animation: lh-pulse 1.8s ease-in-out infinite;
}
@keyframes lh-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.lh-home .lh-hero-title {
  font-family: var(--lh-font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto 24px;
  color: var(--lh-text);
  max-width: 900px;
}
.lh-home .lh-hero-sub {
  font-family: var(--lh-font-display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--lh-muted2);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 400;
}
.lh-home .lh-hero-sub strong { color: var(--lh-text); font-weight: 600; }

.lh-home .lh-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
.lh-home .lh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--lh-font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--lh-surface);
  border: 1px solid var(--lh-border);
  color: var(--lh-muted2);
  transition: all 0.2s ease;
  box-shadow: var(--lh-shadow-sm);
}
.lh-home .lh-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 112, 243, 0.3);
  color: var(--lh-cyan);
  box-shadow: var(--lh-shadow-md);
}

/* ============ STATS BAR (overlapping card) ============ */
.lh-home .lh-stats-bar-wrapper {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 10;
}
/* Preserve horizontal centering when fade-up runs on the wrapper itself. */
.lh-home .lh-stats-bar-wrapper.fade-up {
  transform: translate(-50%, 24px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lh-home .lh-stats-bar-wrapper.fade-up.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.lh-home .lh-stats-bar {
  background: var(--lh-surface) !important;
  border: 1px solid var(--lh-border);
  border-radius: 24px;
  display: flex;
  justify-content: space-around;
  padding: 40px;
  box-shadow: var(--lh-shadow-lg);
  gap: 16px;
}
.lh-home .lh-stat-item {
  text-align: center;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
.lh-home .lh-stat-num {
  font-family: var(--lh-font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--lh-text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
  -webkit-text-fill-color: var(--lh-text);
  background: none;
}
.lh-home .lh-stat-num span {
  color: var(--lh-cyan);
  -webkit-text-fill-color: var(--lh-cyan);
}
.lh-home .lh-stat-label {
  font-family: var(--lh-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--lh-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ SECTION-WIDE TYPOGRAPHY ============ */
.lh-home .lh-gap-section h2,
.lh-home .lh-grid-section .lh-grid-heading {
  font-family: var(--lh-font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  color: var(--lh-text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lh-home .lh-section-desc {
  font-family: var(--lh-font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lh-muted2);
  max-width: 700px;
  margin: 0 auto 64px;
  font-weight: 400;
}

/* ============ INDUSTRY GAP ============ */
.lh-home .lh-gap-section {
  padding: 140px 72px 80px;
  text-align: center;
  background: var(--lh-bg2);
  border-top: 1px solid var(--lh-border);
}
.lh-home .lh-gap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lh-home .lh-gap-card {
  background: var(--lh-surface) !important;
  border: 1px solid var(--lh-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--lh-shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.lh-home .lh-gap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lh-shadow-md);
  border-color: rgba(0, 112, 243, 0.2);
}
.lh-home .lh-gap-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--lh-cyan-dim);
  border: 1px solid var(--lh-border-glow);
  color: var(--lh-cyan);
}
.lh-home .lh-gap-icon svg {
  width: 24px; height: 24px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}
.lh-home .lh-gap-card p {
  font-family: var(--lh-font-display);
  font-size: 14px;
  color: var(--lh-muted2);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ============ FELLOWSHIP (DARK BLOCK) ============ */
.lh-home .lh-fellowship-section {
  background: #06080d;
  color: #fff;
  padding: 100px 72px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--lh-border);
  border-bottom: 1px solid var(--lh-border);
}
.lh-home .lh-fellowship-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.15) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.lh-home .lh-fellow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

.lh-home .lh-fellow-eyebrow {
  font-family: var(--lh-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--lh-cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lh-home .lh-fellow-title {
  font-family: var(--lh-font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}
.lh-home .lh-fellow-desc {
  color: #94a3b8;
  font-family: var(--lh-font-display);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 400;
}
.lh-home .lh-fellow-desc-sm { font-size: 14px; }
.lh-home .lh-studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  color: #cbd5e1;
}
.lh-home .lh-fellow-subtitle {
  font-family: var(--lh-font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.15;
}
.lh-home .lh-fellow-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.lh-home .lh-fellow-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 112, 243, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 112, 243, 0.05);
}
.lh-home .lh-fc-heading {
  font-family: var(--lh-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.lh-home .lh-syllabus-item { margin-bottom: 24px; }
.lh-home .lh-syllabus-week {
  font-family: var(--lh-font-mono);
  font-size: 10px;
  color: var(--lh-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}
.lh-home .lh-syllabus-text {
  font-family: var(--lh-font-display);
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
  font-weight: 400;
}
.lh-home .lh-fellow-stats-box {
  background: rgba(0, 112, 243, 0.05);
  border: 1px solid rgba(0, 112, 243, 0.15);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}
.lh-home .lh-fellow-stats-box p {
  font-family: var(--lh-font-display);
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 16px;
  font-weight: 400;
}
.lh-home .lh-admissions-pill {
  display: inline-block;
  font-family: var(--lh-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--lh-cyan);
  border: 1px solid rgba(0, 112, 243, 0.3);
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(0, 112, 243, 0.1);
  font-weight: 600;
}

/* ============ GENERIC GRID SECTIONS (Playground / Action Kits) ============ */
.lh-home .lh-grid-section {
  padding: 100px 72px;
  text-align: center;
  background: var(--lh-bg);
}
.lh-home .lh-grid-section-tint {
  background: var(--lh-bg2);
  border-top: 1px solid var(--lh-border);
}
.lh-home .lh-grid-eyebrow {
  font-family: var(--lh-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--lh-cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lh-home .lh-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.lh-home .lh-cards-row-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.lh-home .lh-tool-card {
  background: var(--lh-surface) !important;
  border: 1px solid var(--lh-border);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  box-shadow: var(--lh-shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.lh-home .lh-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lh-shadow-md);
  border-color: rgba(0, 112, 243, 0.3);
}
.lh-home .lh-action-card {
  max-width: 420px;
  width: 100%;
}
.lh-home .lh-tool-icon-bg {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--lh-cyan-dim);
  border: 1px solid var(--lh-border-glow);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.lh-home .lh-tool-title {
  font-family: var(--lh-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--lh-text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.lh-home .lh-tool-desc {
  font-family: var(--lh-font-display);
  font-size: 14px;
  color: var(--lh-muted2);
  line-height: 1.6;
  margin: 0 0 24px;
  font-weight: 400;
}
.lh-home .lh-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lh-bg2);
  border: 1px solid var(--lh-border);
  color: var(--lh-muted2);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  font-weight: 600;
}
.lh-home .lh-status-dot-live {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--lh-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}
.lh-home .lh-status-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ FREE RESOURCES BANNER ============ */
.lh-home .lh-resources-banner-container {
  padding: 40px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}
.lh-home .lh-resources-banner {
  background: var(--lh-surface) !important;
  border: 1px solid var(--lh-border);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
  box-shadow: var(--lh-shadow-lg);
  position: relative;
  overflow: hidden;
}
.lh-home .lh-rb-icon {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1;
}
.lh-home .lh-rb-title {
  font-family: var(--lh-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: var(--lh-text);
}
.lh-home .lh-rb-desc {
  font-family: var(--lh-font-display);
  font-size: 15px;
  line-height: 1.7;
  color: var(--lh-muted2);
  max-width: 600px;
  margin: 0 auto 20px;
  font-weight: 400;
}
.lh-home .lh-rb-desc strong { color: var(--lh-text); font-weight: 600; }
.lh-home .lh-rb-perks {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lh-bg2);
  border: 1px solid var(--lh-border);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--lh-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--lh-cyan);
  margin: 20px 0 40px;
  letter-spacing: 0.05em;
}
.lh-home .lh-rb-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.lh-home .lh-home-footer {
  padding: 56px 72px 40px;
  border-top: 1px solid var(--lh-border);
  background: var(--lh-bg);
}
.lh-home .lh-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  margin: 0 auto 48px;
  max-width: 1280px;
}
.lh-home .lh-footer-brand { max-width: 280px; }
.lh-home .lh-footer-tagline {
  margin-top: 16px;
  font-family: var(--lh-font-mono);
  font-size: 12px;
  color: var(--lh-muted);
  line-height: 1.6;
  font-weight: 400;
}
.lh-home .lh-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lh-home .lh-footer-links-group h4 {
  font-family: var(--lh-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lh-muted);
  margin: 0 0 4px;
}
.lh-home .lh-footer-links-group a {
  font-family: var(--lh-font-mono);
  font-size: 12px;
  color: var(--lh-muted2);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.lh-home .lh-footer-links-group a:hover { color: var(--lh-text); }
.lh-home .lh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--lh-border);
  font-family: var(--lh-font-mono);
  font-size: 11px;
  color: var(--lh-muted);
  letter-spacing: 0.04em;
  max-width: 1280px;
  margin: 0 auto;
}
.lh-home .lh-footer-mono {
  color: var(--lh-muted);
  font-family: var(--lh-font-mono);
}

/* ============ FADE-UP ============ */
.lh-home .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lh-home .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .lh-home .lh-gap-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-home .lh-cards-row { grid-template-columns: repeat(2, 1fr); }
  .lh-home .lh-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .lh-home-nav { padding: 16px 24px; }
  .lh-home-nav .lh-nav-links { display: none; }

  .lh-home .lh-hub-hero { padding: 80px 24px 120px; }
  .lh-home .lh-stats-bar-wrapper { width: 95%; }
  .lh-home .lh-stats-bar {
    flex-direction: column;
    gap: 32px;
    padding: 32px;
  }

  .lh-home .lh-gap-section { padding: 110px 24px 64px; }
  .lh-home .lh-grid-section { padding: 80px 24px; }
  .lh-home .lh-fellowship-section { padding: 80px 24px; }

  .lh-home .lh-gap-grid,
  .lh-home .lh-fellow-grid,
  .lh-home .lh-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lh-home .lh-resources-banner-container { padding: 24px 16px 80px; }
  .lh-home .lh-resources-banner { padding: 40px 24px; border-radius: 24px; }

  .lh-home .lh-home-footer { padding: 40px 24px; }
  .lh-home .lh-footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lh-home .lh-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
