/* ============================================
   ABOUT PAGE — about.css (Bold Redesign)
   ============================================ */

/* --- General --- */
.about-hero,
.about-mission,
.about-values,
.about-story,
.about-founder {
  scroll-margin-top: 80px;
}

/* --- Shared pill label --- */
.about-pill {
  display: inline-block;
  background: #F3F0FF;
  color: #7145D6;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================
   SECTION 1 — HERO (white, bg watermark)
   ============================================ */
.about-hero {
  position: relative;
  padding: 96px 24px 80px;
  text-align: center;
  background: #FFFFFF;
  overflow: hidden;
  margin-bottom: 0;
}

.about-hero__watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  font-weight: 900;
  color: #F3F0FF;
  opacity: 0.4;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

.about-hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: #0F0F0F;
  max-width: 720px;
  line-height: 1.2;
  margin: 16px auto 0;
}

.about-hero__subtitle {
  font-size: 18px;
  color: #7D7FA5;
  max-width: 560px;
  margin: 20px auto 0;
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   SECTION 2 — MISSION SPLIT (#F8F7FF)
   ============================================ */
.about-mission {
  padding: 80px 24px;
  background: #F8F7FF;
}

.about-mission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-mission__text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0F0F0F;
  line-height: 1.3;
  margin: 12px 0 20px;
}

.about-mission__text p {
  font-size: 16px;
  line-height: 1.9;
  color: #3D3D3D;
  margin-bottom: 16px;
}

/* Stats card — alive mini cards */
.about-stats-card {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 24px;
  padding: 32px 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  padding: 20px;
}

.about-stat__number {
  font-size: 40px;
  font-weight: 900;
}

.about-stat__label {
  font-size: 13px;
  color: #7D7FA5;
  margin-top: 4px;
}

/* ============================================
   SECTION 3 — VALUES (white)
   ============================================ */
.about-values {
  padding: 80px 24px;
  background: #FFFFFF;
}

.about-values__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-values__header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0F0F0F;
  margin-top: 12px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-value-card {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 20px;
  padding: 40px 32px;
  min-height: 280px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(113, 69, 214, 0.12);
  border-color: #7145D6;
}

.about-value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.about-value-card__title {
  font-size: 22px;
  font-weight: 800;
  color: #0F0F0F;
  margin-top: 24px;
}

.about-value-card__body {
  font-size: 15px;
  color: #7D7FA5;
  line-height: 1.85;
  margin-top: 10px;
}

/* ============================================
   SECTION 4 — STORY (dark #0F0F0F)
   ============================================ */
.about-story {
  padding: 80px 24px;
  background: #0F0F0F;
}

.about-story .about-pill {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.about-story__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story__inner h2 {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.about-story__quote {
  font-size: 20px;
  line-height: 1.9;
  color: #FFFFFF;
  border-right: 4px solid #7145D6;
  padding: 24px 28px;
  text-align: right;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 16px 16px 0;
}

.about-story__body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
}

/* ============================================
   SECTION 5 — FOUNDER (white)
   ============================================ */
.about-founder {
  padding: 96px 24px;
  background: #FFFFFF;
  scroll-margin-top: 80px;
}

.about-founder__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-founder__header {
  text-align: center;
  margin-bottom: 64px;
}

.about-founder__header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0F0F0F;
  margin-top: 12px;
}

/* Card — two columns */
.about-founder__card {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  align-items: center;
}

/* Photo column */
.about-founder__photo-col {
  position: relative;
}

.about-founder__photo-wrapper {
  position: relative;
}

.about-founder__photo {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
  box-shadow: 0 24px 64px rgba(113, 69, 214, 0.15);
}

.about-founder__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  border-right: 3px solid #7145D6;
}

.about-founder__badge-main {
  font-size: 14px;
  font-weight: 700;
  color: #0F0F0F;
}

.about-founder__badge-sub {
  font-size: 12px;
  color: #7D7FA5;
}

/* Content column */
.about-founder__name {
  font-size: 32px;
  font-weight: 800;
  color: #0F0F0F;
}

.about-founder__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0A66C2;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.about-founder__linkedin:hover {
  opacity: 0.8;
}

.about-founder__title {
  font-size: 16px;
  color: #7145D6;
  font-weight: 600;
  margin-top: 8px;
}

.about-founder__bio {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #3D3D3D;
}

/* Stat pills row */
.about-founder__stats {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.about-founder__stat-pill {
  background: #F8F7FF;
  border: 1px solid #EDE9FF;
  border-radius: 12px;
  padding: 10px 18px;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  gap: 2px;
}

.about-founder__stat-value {
  font-size: 16px;
  font-weight: 800;
}

.about-founder__stat-label {
  font-size: 11px;
  color: #7D7FA5;
}

/* Divider */
.about-founder__divider {
  height: 1px;
  background: #EBEBEB;
  margin: 28px 0;
}

/* Projects label */
.about-founder__projects-label {
  font-size: 13px;
  font-weight: 700;
  color: #7D7FA5;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Projects grid */
.about-founder__projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-founder__project {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.about-founder__project:hover {
  border-color: #7145D6;
  background: #F8F7FF;
}

.about-founder__project--active {
  border-color: #7145D6;
  background: #F3F0FF;
}

.about-founder__project-name {
  font-size: 14px;
  font-weight: 700;
  color: #0F0F0F;
}

.about-founder__project-url {
  font-size: 11px;
  color: #7D7FA5;
}

.about-founder__project-arrow {
  color: #7145D6;
  font-size: 16px;
}

/* Profile + LinkedIn row */
.about-founder__links-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.about-founder__profile-link {
  font-size: 14px;
  color: #7145D6;
  font-weight: 600;
  text-decoration: none;
}

.about-founder__profile-link:hover {
  text-decoration: underline;
}

/* ============================================
   SECTION 6 — CTA BANNER (reuse from home.css)
   ============================================ */

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .about-hero {
    padding: 72px 16px 56px;
  }

  .about-hero__watermark {
    font-size: 100px;
  }

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

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: auto;
  }

  .about-values__header h2,
  .about-story__inner h2,
  .about-team__header h2 {
    font-size: 28px;
  }

  .about-story__inner h2 {
    font-size: 30px;
  }

  .about-story__quote {
    font-size: 17px;
    padding: 20px 22px;
  }

  .about-founder__card {
    grid-template-columns: 1fr;
  }

  .about-founder__photo {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .about-founder__stats {
    flex-wrap: wrap;
  }

  .about-founder__projects-grid {
    grid-template-columns: 1fr;
  }

  .about-mission__text h2 {
    font-size: 26px;
  }
}
