.about-founder {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 100px 40px;
}

.about-founder-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1360px;
  text-align: center;
}

.about-founder-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-founder-badge {
  padding: 8px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 39px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  line-height: 2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.about-founder-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.about-founder-lead {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text);
}

.about-founder-lead .text-highlight {
  color: var(--color-text);
}

.about-founder-bottom {
  display: grid;
  grid-template-columns: 417px minmax(0, 600px);
  justify-content: center;
  gap: 60px;
  width: 100%;
  text-align: left;
}

.about-founder-media {
  position: relative;
  align-self: start;
  width: 100%;
  aspect-ratio: 0.708;
  border-radius: 30px;
  overflow: hidden;
}

.about-founder-arch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 78%;
  background-color: var(--color-accent);
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}

.about-founder-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
}

.about-founder-name-gradient {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38%;
  background: linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, var(--color-bg) 67%);
}

.about-founder-name {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0;
  padding: 0 20px 20px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9em;
  text-align: center;
  color: var(--color-accent);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.8);
}

.about-founder-name-white {
  color: var(--color-text);
}

.about-founder-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.about-founder-content p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}

.about-founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.about-founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
}

.about-founder-tag svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.about-founder-press {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.about-founder-press h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
}

.about-founder-press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-founder-press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.about-founder-press-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .about-founder {
    padding: 70px 24px;
  }

  .about-founder-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-founder-media {
    position: relative;
    top: 0;
    max-width: 340px;
    margin: 0 auto;
  }

  .about-founder-content {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .about-founder { text-align: center; }
}
