.founder {
  width: 100%;
  background: var(--surface-inverse);
  padding: var(--space-96) 0;
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(var(--accent-rgb) / 0.35), transparent);
}

.founder-ambient {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.founder-container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-96);
  align-items: center;
}

.founder-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.founder-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.founder-eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--olive);
  display: inline-block;
  flex-shrink: 0;
}

.founder-quote {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  position: relative;
  padding-left: var(--space-32);
}

.founder-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  line-height: 1;
  color: var(--olive);
  opacity: 0.6;
  font-style: normal;
  font-weight: 900;
}

.founder-quote .olive-accent {
  color: var(--olive);
  font-style: normal;
}

.founder-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--space-32);
}

.founder-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.founder-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.founder-message {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 52ch;
  padding-left: var(--space-32);
}

.founder-right {
  position: relative;
}

.founder-photo-wrap {
  position: relative;
  display: block;
}

.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10) 0%,
    transparent 50%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.5s ease;
}

.founder-photo:hover {
  filter: grayscale(0%) contrast(1);
}

.founder-photo-label {
  position: absolute;
  bottom: var(--space-24);
  left: var(--space-24);
  z-index: 2;
  background: rgb(var(--ink-rgb) / 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-photo-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.founder-photo-role {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team {
  width: 100%;
  background: var(--bg);
  padding: var(--space-96) 0;
  border-top: 1px solid var(--border-light);
}

.team-container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-64);
  gap: var(--space-32);
  flex-wrap: wrap;
}

.team-header-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.team-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.team-eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--olive);
  display: inline-block;
  flex-shrink: 0;
}

.team-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
}

.team-heading .olive-accent {
  color: var(--olive);
}

.team-count {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 30ch;
  text-align: right;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
}

.team-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  group: team-card;
}

.team-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface-subtle);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: grayscale(100%) contrast(1.05);
}

.team-card:hover .team-photo {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-info {
  padding: var(--space-16) var(--space-24);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.team-card:hover .team-info {
  border-top-color: var(--olive);
}

.team-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.team-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .founder-container {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }

  .founder-right {
    max-width: 380px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .founder {
    padding: var(--space-64) 0;
  }

  .founder-right {
    max-width: 100%;
  }

  .founder-quote {
    font-size: 1.4rem;
  }

  .team {
    padding: var(--space-64) 0;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--space-48);
  }

  .team-count {
    text-align: left;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-info {
    padding: var(--space-16);
  }
}
