/* ── Founders Hero ── */
.founders-hero {
  width: 100%;
  min-height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.founders-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.6) 100%);
}

.founders-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}

/* ── Founders Photo Section ── */
.founders-photo-section {
  width: 100%;
  background: var(--color-bg);
  border-top: 1px solid var(--color-glass-border);
}

.founders-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.founders-photo {
  max-width: min(400px, 90vw);
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--color-glass-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: cover;
}

/* ── Founder Cards ── */
.founders-cards-section {
  width: 100%;
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-glass-border);
}

.founders-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.founder-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: rgba(63,185,80,0.25);
}

.founder-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-accent-green);
  margin-bottom: 0.3rem;
}

.founder-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.founder-card-bio {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.founder-card-bio p {
  margin-bottom: 1rem;
}

.founder-card-bio p:last-child {
  margin-bottom: 0;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.founder-linkedin:hover {
  color: #79c0ff;
}

/* ── Responsive ── */
@media (width < 768px) {
  .founders-cards-grid {
    grid-template-columns: 1fr;
  }
}
