/* ── EXO Talent Partners — home.css (fixed) ── */
:root{--navy:#05091A;--navy-mid:#0B1530;--navy-light:#122040;--gold:#C8A84B;--gold-light:#E2C97E;--white:#F0F2F8;--gray:#7A8AAA;--border:rgba(200,168,75,0.14);}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}

/* FIX #1: Remove overflow-x:clip from html — causes blank gaps on desktop */
html{}
body{overflow-x:hidden;background:var(--navy);color:var(--white);font-family:'DM Sans',sans-serif;font-size:16px;line-height:1.65;-webkit-font-smoothing:antialiased;}

a{color:inherit;text-decoration:none;}

/* ── Nav ── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;transition:background .3s,border-color .3s;padding:0 5%;border-bottom:1px solid transparent;}
nav.scrolled{background:#060B1E;border-color:var(--border);}
.nav-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:80px;}
.nav-logo{display:flex;align-items:center;gap:.85rem;text-decoration:none;}
.nav-logo-img{width:54px;height:54px;object-fit:contain;}
.nav-logo-words{line-height:1.2;}
.nlw-main{display:block;font-family:'Bebas Neue',sans-serif;font-size:1.28rem;letter-spacing:.13em;color:#F0F2F8;}
.nlw-sub{display:block;font-size:.6rem;font-weight:700;letter-spacing:.24em;text-transform:uppercase;color:#C8A84B;margin-top:.05rem;}
.nav-links{display:flex;gap:2.4rem;align-items:center;}
.nav-links a{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gray);transition:color .2s;}
.nav-links a:hover,.nav-links a.active{color:var(--white);}
.nav-cta{border:1px solid var(--gold)!important;color:var(--gold)!important;padding:.48rem 1.3rem;border-radius:2px;font-weight:700!important;letter-spacing:.1em;transition:background .2s,color .2s!important;}
.nav-cta:hover{background:var(--gold)!important;color:var(--navy)!important;}
.nav-hamburger{display:none;background:none;border:none;cursor:pointer;padding:8px;flex-direction:column;gap:5px;z-index:1001;}
.nav-hamburger span{display:block;width:24px;height:2px;background:var(--gold);transition:all .3s;}
.nav-open .nav-hamburger span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.nav-open .nav-hamburger span:nth-child(2){opacity:0;}
.nav-open .nav-hamburger span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

@media(max-width:900px){
  .nav-hamburger{display:flex;}
  .nav-links{display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:var(--navy);flex-direction:column;align-items:center;justify-content:center;gap:2rem;z-index:1000;}
  .nav-open .nav-links{display:flex;}
  .nav-links a{font-size:1.1rem;padding:.5rem 1rem;}
  .nav-links .nav-cta{margin-top:1rem;}
}

/* ── Hero ── */
.hero{background:linear-gradient(135deg, #05091A 0%, #0B1530 40%, #0d1a3a 70%, #05091A 100%);min-height:min(100vh,800px);display:flex;flex-direction:column;justify-content:flex-end;position:relative;padding-top:100px;padding-bottom:56px;z-index:auto;}
.hero-inner{max-width:1280px;margin:0 auto;padding:0 5%;position:relative;z-index:1;width:100%;}
.hero-kicker{display:inline-flex;align-items:center;gap:.7rem;font-size:.7rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:1.6rem;}
.hero-kicker::before{content:'';display:block;width:32px;height:1px;background:var(--gold);}
.hero h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(3.5rem,8vw,7rem);letter-spacing:.02em;line-height:.95;margin-bottom:1.8rem;max-width:860px;}
.hero h1 .gold{color:var(--gold);}
.hero-sub{font-size:1.05rem;color:rgba(240,242,248,.72);line-height:1.85;max-width:540px;margin-bottom:2.8rem;font-weight:300;}
.hero-actions{display:flex;gap:1.2rem;flex-wrap:wrap;}
.btn-primary{background:var(--gold);color:var(--navy);padding:.88rem 2.4rem;border-radius:2px;font-weight:700;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;transition:background .2s,transform .15s;display:inline-block;}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);}
.btn-ghost{border:1px solid rgba(240,242,248,.22);color:rgba(240,242,248,.75);padding:.88rem 2.4rem;border-radius:2px;font-weight:600;font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;transition:border-color .2s,color .2s;display:inline-block;}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold);}

/* ── Stat Bar ── */
.stat-bar{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:0 5%;position:relative;z-index:1;}
.stat-bar-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);}
.stat-item{padding:2rem 1.5rem;text-align:center;border-right:1px solid var(--border);}
.stat-item:last-child{border-right:none;}
.stat-item .num{font-family:'Bebas Neue',sans-serif;font-size:2.8rem;color:var(--gold);letter-spacing:.04em;line-height:1;}
.stat-item .lbl{font-size:.78rem;color:var(--gray);margin-top:.4rem;line-height:1.45;}

@media(max-width:700px){
  .stat-bar-inner{grid-template-columns:1fr 1fr;}
  .stat-item:nth-child(2){border-right:none;}
  .stat-item{border-bottom:1px solid var(--border);}
  .stat-item:nth-child(3),.stat-item:nth-child(4){border-bottom:none;}
}

/* ── Sections — FIX #1: add position:relative;z-index:1 to all sections ── */
section{padding:100px 5%;background:var(--navy);position:relative;}
.section-inner{max-width:1280px;margin:0 auto;}
.eyebrow{font-size:.7rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;display:flex;align-items:center;gap:.7rem;}
.eyebrow::before{content:'';display:block;width:24px;height:1px;background:var(--gold);}
.section-h{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.2rem,4.5vw,3.6rem);letter-spacing:.03em;line-height:1.05;margin-bottom:1.4rem;}
.section-h .gold{color:var(--gold);}
.section-lead{color:var(--gray);font-size:1rem;line-height:1.85;max-width:580px;margin-bottom:3.5rem;font-weight:300;}

/* ── Position / Proof ── */
.position-wrap{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start;}
@media(max-width:900px){.position-wrap{grid-template-columns:1fr;gap:3rem;}}
.position-copy p{color:var(--gray);font-size:1rem;line-height:1.9;margin-bottom:1.4rem;font-weight:300;}
.position-copy strong{color:var(--white);font-weight:600;}
.proof-stack{display:flex;flex-direction:column;gap:1px;}
.proof-item{background:var(--navy-mid);border-left:3px solid var(--gold);padding:1.6rem 1.8rem;transition:background .2s;}
.proof-item:hover{background:var(--navy-light);}
.p-label{font-size:.68rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem;}
.p-headline{font-family:'Bebas Neue',sans-serif;font-size:1.3rem;letter-spacing:.05em;margin-bottom:.4rem;}
.p-body{color:var(--gray);font-size:.87rem;line-height:1.65;font-weight:300;}
.svc-link{display:inline-flex;align-items:center;gap:.5rem;font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-top:1rem;transition:gap .2s;}
.svc-link:hover{gap:.8rem;}
.svc-link::after{content:'\2192';}

/* ── Sectors ── */
.sectors-bg{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;z-index:1;}
.sector-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);}
@media(max-width:900px){.sector-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.sector-grid{grid-template-columns:1fr;}}
.sector-cell{background:var(--navy-mid);padding:2.2rem;transition:background .2s;}
.sector-cell:hover{background:var(--navy-light);}
.sc-icon{font-size:1.3rem;margin-bottom:.9rem;opacity:.75;}
.sector-cell h3{font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:.07em;margin-bottom:.5rem;}
.sector-cell p{color:var(--gray);font-size:.86rem;line-height:1.7;font-weight:300;}

/* ── Services ── */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
@media(max-width:900px){.svc-grid{grid-template-columns:1fr;}}
.svc-card{border:1px solid var(--border);border-radius:3px;padding:2.4rem;display:flex;flex-direction:column;background:var(--navy-mid);transition:border-color .25s,transform .2s;}
.svc-card:hover{border-color:rgba(200,168,75,.4);transform:translateY(-4px);}
.svc-num{font-family:'Bebas Neue',sans-serif;font-size:3.5rem;color:rgba(200,168,75,.1);letter-spacing:.04em;line-height:1;margin-bottom:1rem;}
.svc-card h3{font-family:'Bebas Neue',sans-serif;font-size:1.45rem;letter-spacing:.05em;margin-bottom:.8rem;}
.svc-card p{color:var(--gray);font-size:.9rem;line-height:1.8;flex:1;font-weight:300;}
.svc-card .svc-link{margin-top:1.8rem;}

/* ── Process ── */
.process-bg{background:linear-gradient(180deg,var(--navy) 0%,var(--navy-mid) 50%,var(--navy) 100%);border-top:1px solid var(--border);border-bottom:1px solid var(--border);position:relative;z-index:1;}
.process-header{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;margin-bottom:4rem;}
@media(max-width:900px){.process-header{grid-template-columns:1fr;gap:2rem;}}
.process-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;}
@media(max-width:700px){.process-steps{grid-template-columns:1fr;}}
.p-step-num{font-family:'Bebas Neue',sans-serif;font-size:5rem;color:rgba(200,168,75,.08);line-height:1;margin-bottom:-.8rem;}
.p-step h3{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;letter-spacing:.06em;margin-bottom:.8rem;color:var(--gold);}
.p-step p{color:var(--gray);font-size:.9rem;line-height:1.8;font-weight:300;}

/* ── Founder ── */
.founder-strip{display:grid;grid-template-columns:260px 1fr;border:1px solid var(--border);border-radius:3px;overflow:hidden;}
@media(max-width:900px){.founder-strip{grid-template-columns:1fr;}}
.founder-photo{overflow:hidden;max-height:360px;}
/* FIX #2: Constrain founder headshot */
.founder-photo img{width:100%;height:100%;max-width:360px;object-fit:cover;object-position:center top;display:block;filter:grayscale(10%);border-radius:0;}
.founder-content{padding:3rem;background:var(--navy-mid);display:flex;flex-direction:column;justify-content:center;}
.founder-name{font-family:'Bebas Neue',sans-serif;font-size:2.2rem;letter-spacing:.06em;line-height:1;}
.founder-role{font-size:.7rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin:.4rem 0 1.8rem;}
.founder-content p{color:var(--gray);font-size:.93rem;line-height:1.9;margin-bottom:1rem;font-weight:300;}
.founder-content strong{color:var(--white);font-weight:600;}
.founder-creds{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.5rem;}
.cred-chip{background:rgba(200,168,75,.07);border:1px solid var(--border);color:var(--gray);padding:.35rem .85rem;border-radius:2px;font-size:.76rem;}

/* ── CTA Section ── */
.cta-section{text-align:center;padding:110px 5%;background:radial-gradient(ellipse at center,rgba(200,168,75,.05) 0%,transparent 60%);border-top:1px solid var(--border);position:relative;z-index:1;}
.cta-section h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.5rem,5vw,4.5rem);letter-spacing:.03em;line-height:1;margin-bottom:1.2rem;}
.cta-section h2 .gold{color:var(--gold);}
.cta-section .sub{color:var(--gray);font-size:1rem;line-height:1.85;max-width:460px;margin:0 auto 2.8rem;font-weight:300;}
.cta-detail{font-size:.8rem;color:var(--gray);margin-top:1.2rem;}
.cta-detail a{color:var(--gold);}

/* ── Footer ── */
footer{background:rgba(3,6,18,.98);border-top:1px solid var(--border);padding:64px 5% 32px;position:relative;z-index:1;}
.footer-inner{max-width:1280px;margin:0 auto;}
.footer-top{display:grid;grid-template-columns:2.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem;}
@media(max-width:900px){.footer-top{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.footer-top{grid-template-columns:1fr!important;text-align:center;gap:2rem;}}
.footer-tagline{font-size:.8rem;color:var(--gray);line-height:1.7;max-width:230px;font-weight:300;margin-top:.5rem;}
.footer-col h4{font-size:.68rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1.2rem;}
.footer-col a{display:block;color:var(--gray);font-size:.86rem;margin-bottom:.55rem;transition:color .2s;}
.footer-col a:hover{color:var(--white);}
.footer-bottom{border-top:1px solid var(--border);padding-top:1.8rem;display:flex;justify-content:space-between;font-size:.75rem;color:var(--gray);}
@media(max-width:600px){.footer-bottom{flex-direction:column;gap:.6rem;text-align:center;}}

/* ── Testimonials ── */
.testimonials-section{padding:100px 5%;position:relative;z-index:1;border-top:1px solid var(--border);}
.testimonials-inner{max-width:1280px;margin:0 auto;}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3.5rem;}
@media(max-width:1100px){.testimonials-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.testimonials-grid{grid-template-columns:1fr;}}
.testimonial-card{background:var(--navy-mid);border:1px solid var(--border);border-radius:4px;padding:2rem 2rem 1.6rem;}
.testimonial-quote{color:var(--gray);font-size:.92rem;line-height:1.75;font-weight:300;font-style:italic;}
.testimonial-quote::before{content:open-quote;font-size:2rem;color:var(--gold);line-height:0;vertical-align:-.35em;margin-right:.15em;}
.testimonial-quote::after{content:close-quote;font-size:2rem;color:var(--gold);line-height:0;vertical-align:-.35em;margin-left:.05em;}
.testimonial-attr{margin-top:1.2rem;font-size:.76rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);}
.proof-metrics{display:flex;justify-content:center;gap:3.5rem;margin-top:3.5rem;flex-wrap:wrap;}
.proof-metric{text-align:center;}
.proof-metric .pm-num{font-family:'Bebas Neue',sans-serif;font-size:3rem;color:var(--gold);letter-spacing:.04em;line-height:1;}
.proof-metric .pm-lbl{font-size:.76rem;color:var(--gray);margin-top:.35rem;line-height:1.45;}

/* ── NEW: Confidentiality Callout ── */
.confidential-callout{background:var(--navy-mid);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:80px 5%;position:relative;z-index:1;visibility:visible!important;opacity:1!important;transform:none!important;display:block!important;}
.confidential-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:auto 1fr;gap:3rem;align-items:center;}
@media(max-width:900px){.confidential-inner{grid-template-columns:1fr;text-align:center;}}
.confidential-icon{font-size:3rem;color:var(--gold);opacity:.7;}
.confidential-inner h3{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;letter-spacing:.05em;margin-bottom:.8rem;color:var(--gold);}
.confidential-inner p{color:var(--gray);font-size:.95rem;line-height:1.85;font-weight:300;max-width:700px;}

/* ── NEW: PE Economics Callout ── */
.pe-callout{background:var(--navy);padding:80px 5%;position:relative;z-index:1;border-bottom:1px solid var(--border);visibility:visible!important;opacity:1!important;transform:none!important;display:block!important;}
.pe-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:auto 1fr;gap:3rem;align-items:center;}
@media(max-width:900px){.pe-inner{grid-template-columns:1fr;text-align:center;}}
.pe-icon{font-size:3rem;color:var(--gold);opacity:.7;}
.pe-inner h3{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;letter-spacing:.05em;margin-bottom:.8rem;color:var(--gold);}
.pe-inner p{color:var(--gray);font-size:.95rem;line-height:1.85;font-weight:300;max-width:700px;}

/* ── Mobile extras ── */
@media(max-width:600px){
  .proof-metrics{flex-direction:column;gap:2rem;}
  .hero-actions{flex-direction:column;gap:1rem;align-items:stretch;}
  .hero-actions a{text-align:center;}
}
