/* Leadership deck — matches Cursor FEM presentation theme */
.leadership-panel { max-width: none; padding: 0 1rem 2rem; }
.leadership-deck-wrap { max-width: 1000px; margin: 0 auto; }
.leadership-deck {
  background: #16181d;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
}
.lead-slide {
  display: none;
  padding: 2rem 2.25rem 2.5rem;
  min-height: 520px;
  animation: leadFade 0.25s ease;
}
.lead-slide.active { display: block; }
@keyframes leadFade { from { opacity: 0; } to { opacity: 1; } }

.lead-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2dd4bf;
  margin-bottom: 1.25rem;
}
.lead-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
}
.lead-subtitle { font-size: 1rem; color: #9aa4b2; margin-bottom: 1.5rem; }
.lead-body { font-size: 0.95rem; color: #c5cdd8; line-height: 1.55; }
.lead-slide-num {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-size: 0.75rem;
  color: #4a5568;
  font-weight: 600;
}
.lead-slide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
.lead-slide-image.full img { max-height: 460px; object-fit: contain; }
.lead-slide-image.triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.lead-slide-image.triple img { width: 100%; object-fit: cover; border-radius: 6px; }

.lead-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.lead-col-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2dd4bf;
  margin-bottom: 0.75rem;
}
.lead-col ul { list-style: none; padding: 0; }
.lead-col li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: #c5cdd8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lead-col li:last-child { border-bottom: none; }

.lead-pill-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.lead-pill {
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.lead-pill h4 { font-size: 0.85rem; color: #2dd4bf; margin-bottom: 0.35rem; }
.lead-pill p { font-size: 0.82rem; color: #9aa4b2; line-height: 1.45; }

.lead-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem; }
.lead-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.lead-card img { width: 36px; height: 36px; flex-shrink: 0; }
.lead-card h4 { font-size: 0.88rem; color: #fff; margin-bottom: 0.25rem; }
.lead-card p { font-size: 0.8rem; color: #9aa4b2; line-height: 1.4; }

.lead-steps { margin-top: 1rem; }
.lead-step {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lead-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2dd4bf;
  color: #16181d;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-step h4 { font-size: 0.9rem; color: #fff; margin-bottom: 0.2rem; }
.lead-step p { font-size: 0.82rem; color: #9aa4b2; }

.lead-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.25rem 0; }
.lead-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(45, 212, 191, 0.06);
  border-radius: 10px;
}
.lead-stat strong { display: block; font-size: 1.75rem; color: #2dd4bf; margin-bottom: 0.35rem; }
.lead-stat span { font-size: 0.78rem; color: #9aa4b2; line-height: 1.35; }

.lead-points { margin-top: 1rem; }
.lead-point {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}
.lead-point-num {
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2dd4bf;
  min-width: 1.5rem;
}
.lead-point p { font-size: 0.88rem; color: #c5cdd8; }

.lead-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}
.lead-thanks h2 { font-size: 2.5rem; color: #fff; font-weight: 700; }

.lead-with-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.lead-with-visual img { max-width: 100%; border-radius: 8px; }

.deck-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 0.5rem;
}
.deck-nav button {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.deck-nav button:hover:not(:disabled) { border-color: #2dd4bf; color: #2dd4bf; }
.deck-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
.deck-counter { font-size: 0.85rem; color: var(--muted); min-width: 4rem; text-align: center; }

@media (max-width: 768px) {
  .lead-slide { padding: 1.25rem 1rem 2rem; min-height: 420px; }
  .lead-cols-2, .lead-pill-row, .lead-cards, .lead-stats, .lead-with-visual { grid-template-columns: 1fr; }
  .lead-slide-image.triple { grid-template-columns: 1fr; }
}
