/* ============================================
   FOUNDERS — Who You're Dealing With
   ============================================ */

.founders {
  position: relative;
  z-index: 2;
  padding: var(--space-32) var(--space-6);
  overflow: hidden;
}

.founders__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.founders__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.founders__header .section-label {
  justify-content: center;
}

.founders__header .section-headline {
  max-width: 600px;
  margin-inline: auto;
}

/* ── Two-column layout ── */
.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

/* ════════════════════════
   LEFT — Founder Cards
   ════════════════════════ */
.founders__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.founders__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition:
    background var(--duration-normal) var(--ease-out),
    border-color var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.founders__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
}

.founders__card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

.founders__card:hover::before {
  left: 150%;
}

/* Avatar — reused from stories pattern */
.founders__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 163, 255, 0.2), rgba(0, 102, 255, 0.2));
  border: 1px solid rgba(0, 163, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--blue-electric);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 163, 255, 0.1);
}

.founders__info {
  flex: 1;
  min-width: 0;
}

.founders__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.founders__role {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--blue-electric);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.founders__bio {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Note paragraph below cards */
.founders__note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: 1.7;
}

/* ════════════════════════
   RIGHT — Guarantees
   ════════════════════════ */
.founders__right {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(0, 163, 255, 0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
}

.founders__guarantee-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--glass-border);
}

.founders__guarantees {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.founders__guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.founders__guarantee-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--blue-electric);
  margin-top: 1px;
}

.founders__guarantee-icon svg {
  width: 18px;
  height: 18px;
}

.founders__guarantee-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .founders__grid {
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .founders {
    padding: var(--space-20) var(--space-4);
  }

  .founders__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .founders__right {
    padding: var(--space-8);
  }
}
