/* Meridian6 V2 — About Page Styles */

/* FOUNDER HERO */
.about-hero{max-width:900px;margin:0 auto;padding:140px 48px 0;position:relative;z-index:2}
.about-hero .section-label{color:var(--copper2)}

.founder-card{margin-top:48px;display:grid;grid-template-columns:200px 1fr;gap:44px;align-items:start}
.founder-photo{width:200px;height:200px;border-radius:50%;object-fit:cover;display:block;border:1px solid var(--line)}
.founder-avatar{
  width:140px;height:140px;border-radius:50%;background:var(--warm);border:2px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--mono);font-size:36px;font-weight:700;color:var(--copper);flex-shrink:0;
}
.founder-name{font-size:32px;font-weight:700;color:var(--text);margin-bottom:4px;letter-spacing:-.5px}
.founder-name em{font-style:italic;color:var(--copper);font-weight:300}
.founder-role{font-family:var(--mono);font-size:12px;letter-spacing:3px;text-transform:uppercase;color:var(--text2);margin-bottom:20px}
.founder-bio{font-size:23px;line-height:1.85;color:var(--text2);font-weight:400;margin-bottom:20px}
.founder-bio strong{color:var(--text2);font-weight:500}

/* WHY SECTION */
.why{position:relative;z-index:2;border-top:1px solid var(--line);margin-top:80px}
.why-inner{max-width:900px;margin:0 auto;padding:100px 48px}
.why .section-label{color:var(--copper)}
.why-title{font-size:36px;font-weight:200;letter-spacing:-1px;line-height:1.12;margin-bottom:20px;color:var(--text2)}
.why-title strong{font-weight:700;color:var(--text)}
.why-intro{color:var(--text2);font-size:21px;line-height:1.85;font-weight:400;margin-bottom:48px;max-width:600px}
.why-list{display:flex;flex-direction:column}
.why-item{display:flex;gap:20px;padding:24px 0;border-bottom:1px solid var(--line2)}
.why-item:first-child{border-top:1px solid var(--line2)}
.why-item:last-child{border-bottom:none}
.why-idx{font-family:var(--mono);font-size:12px;min-width:28px;padding-top:4px;letter-spacing:2px;font-weight:400}
.why-item:nth-child(1) .why-idx{color:var(--copper)}
.why-item:nth-child(2) .why-idx{color:var(--slate)}
.why-item:nth-child(3) .why-idx{color:var(--sage)}
.why-item:nth-child(4) .why-idx{color:var(--copper2)}
.why-item h4{font-size:16px;font-weight:600;margin-bottom:5px;color:var(--text2)}
.why-item p{font-size:22px;line-height:1.7;color:var(--text2);font-weight:400}

/* STATS */
.stats{border-top:1px solid var(--line);position:relative;z-index:2}
.stats-inner{
  max-width:900px;margin:0 auto;padding:80px 48px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.stat{text-align:center;padding:24px 0;border-right:1px solid var(--line)}
.stat:last-child{border-right:none}
.stat h3{font-family:var(--mono);font-size:28px;font-weight:400;letter-spacing:-1px}
.stat:nth-child(1) h3{color:var(--copper)}
.stat:nth-child(2) h3{color:var(--slate)}
.stat:nth-child(3) h3{color:var(--sage)}
.stat:nth-child(4) h3{color:var(--copper2)}
.stat p{font-size:12px;color:var(--text2);margin-top:6px;text-transform:uppercase;letter-spacing:2px;font-weight:500}

/* ============ RESPONSIVE ============ */
@media(max-width:900px){
  .about-hero{padding:100px 24px 0}
  .founder-card{grid-template-columns:1fr;gap:24px;text-align:center;justify-items:center}
  .founder-avatar{margin:0 auto}
  .why-inner{padding:64px 24px}
  .stats-inner{grid-template-columns:1fr 1fr;padding:56px 24px}
  .stat{padding:20px 0}
  /* Mobile typography: scale body copy down from desktop's 21-23px */
  .founder-bio{font-size:18px;line-height:1.75}
  .why-intro,.why-item p{font-size:17px;line-height:1.7}
}
@media(max-width:480px){
  .stats-inner{grid-template-columns:1fr}
  .stat{border-right:none;border-bottom:1px solid var(--line);padding:16px 0}
  .stat:last-child{border-bottom:none}
}
