/* ===== FOUNDER PAGE ===== */

/* Header */
.founder-header {
  background: var(--color-bg-dark, #0A0F1C);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.founder-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.founder-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 700;
  font-size: 1rem;
}

.founder-header__logo img {
  border-radius: 6px;
}

.founder-header__back {
  color: var(--color-text-muted, #8a8f98);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.founder-header__back:hover {
  color: #fff;
}

/* Hero */
.founder-hero {
  background: var(--color-bg-dark, #0A0F1C);
  padding: 5rem 0 4rem;
}

.founder-hero__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.founder-hero__photo {
  flex-shrink: 0;
}

.founder-hero__photo img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.founder-hero__label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary, #0088CC);
  margin-bottom: 0.75rem;
}

.founder-hero__name {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.founder-hero__role {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.125rem;
  color: var(--color-text-muted, #8a8f98);
  line-height: 1.5;
}

/* Story */
.founder-story {
  background: #fff;
  padding: 5rem 0;
}

.founder-story__inner {
  max-width: 720px;
  margin: 0 auto;
}

.founder-story__text p {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

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

.founder-story__text strong {
  color: #0A0F1C;
}

/* Connect */
.founder-connect {
  background: var(--color-bg-light, #F5F6F8);
  padding: 4rem 0;
}

.founder-connect__inner {
  text-align: center;
}

.founder-connect__headline {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A0F1C;
  margin-bottom: 2rem;
}

.founder-connect__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.founder-connect__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #2c2c2c;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.founder-connect__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.founder-connect__link svg {
  flex-shrink: 0;
  color: var(--color-primary, #0088CC);
}

/* CTA */
.founder-cta {
  background: var(--color-bg-dark, #0A0F1C);
  padding: 5rem 0;
  text-align: center;
}

.founder-cta__inner h2 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.founder-cta .btn--primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-primary, #0088CC);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-weight: 700;
  font-size: 1.125rem;
  transition: background 0.2s, transform 0.2s;
}

.founder-cta .btn--primary:hover {
  background: #006ba1;
  transform: translateY(-1px);
}

.founder-cta__micro {
  margin-top: 1rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  color: var(--color-text-muted, #8a8f98);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .founder-hero {
    padding: 3rem 0;
  }

  .founder-hero__inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .founder-hero__photo img {
    width: 200px;
    height: 250px;
  }

  .founder-hero__name {
    font-size: 2rem;
  }

  .founder-hero__role {
    font-size: 1rem;
  }

  .founder-story {
    padding: 3rem 0;
  }

  .founder-story__text p {
    font-size: 1rem;
  }

  .founder-connect {
    padding: 3rem 0;
  }

  .founder-connect__links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .founder-connect__link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .founder-cta {
    padding: 3rem 0;
  }

  .founder-cta__inner h2 {
    font-size: 1.5rem;
  }
}
