/* -----------------------------------------
   FOUNDER SECTION — PREMIUM CINEMATIC
----------------------------------------- */
.founder {
  position: relative;
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #142850 0%, #0f1e3c 100%);
  overflow: hidden;
}

/* Ambient glow behind content */
.founder-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 200, 150, 0.35) 0%,
    rgba(40, 70, 120, 0.15) 60%,
    rgba(20, 40, 80, 0) 100%
  );
  filter: blur(50px);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.45;
  z-index: 0;
}

/* Inner layout */
.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Text block */
.founder-text-block {
  flex: 1;
  max-width: 600px;
}

.founder-heading {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0px 3px 8px rgba(0,0,0,0.45);
}

.founder-bio {
  font-size: 1.25rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
  opacity: 0.92;
}

.founder-line {
  font-size: 1.25rem;
  font-style: italic;
  color: #ffd2a0;
  margin-top: 1rem;
  margin-bottom: 2.4rem;
}

/* Signature */
.founder-signature {
  margin-top: 1.6rem;
}

.signature-name {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

.signature-title {
  display: block;
  font-size: 1.05rem;
  opacity: 0.8;
  margin-top: 0.2rem;
}

/* Image block */
.founder-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.founder-image {
  width: 380px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.45);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.founder-image:hover {
  transform: translateY(-6px);
}

/* Mobile */
@media (max-width: 900px) {
  .founder-inner {
    flex-direction: column;
    text-align: center;
  }

  .founder-image {
    width: 300px;
  }
}
