/* =========================================================================
   TheAdvanced — shared stylesheet
   Faithful clone of theadvanced.org (Wix) for Cloudflare Pages static host.
   Single source of truth for tokens + components. Header/footer markup is
   injected by assets/js/site.js so every page shares one chrome definition.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root{
  --navy-900:#0a1c3c;       /* darkest band (Community Crafters / Accelerated band) */
  --navy-800:#11264a;       /* dark navy band (Exclusive Integration / Org band) */
  --ink-band:#2e2f33;       /* charcoal band (Advanced Development Programs) */
  --navy-text:#1c3a5e;      /* navy headings on light sections */
  --brand:#0074c8;          /* primary blue — CTAs, accent headings */
  --brand-strong:#025a9e;
  --brand-light:#57b6e3;    /* blue accents on dark bands */
  --text:#2b2b2b;
  --muted:#5c6470;
  --muted-2:#7b828d;
  --line:#e6e8ec;
  --bg:#ffffff;
  --bg-alt:#f4f5f7;         /* light gray alternating sections */
  --card:#ffffff;
  --danger:#e23b3b;
  --radius:4px;
  --radius-card:6px;
  --shadow-card:0 1px 3px rgba(16,32,64,.08), 0 8px 24px rgba(16,32,64,.06);
  --shadow-soft:0 10px 30px rgba(10,28,60,.12);
  --container:1200px;
  --header-h:74px;
  --font-display:"Roboto",system-ui,-apple-system,"Segoe UI",sans-serif;
  --font-body:"Roboto",system-ui,-apple-system,"Segoe UI",sans-serif;
}

/* ---------- Reset / base ---------- */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}
h1,h2,h3,h4{font-family:var(--font-display);margin:0;color:var(--navy-text);font-weight:600;line-height:1.2}
p{margin:0 0 1rem}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}
.text-center{text-align:center}
.eyebrow{letter-spacing:.04em}

/* ---------- Buttons ---------- */
.btn{display:inline-block;border:none;border-radius:var(--radius);padding:13px 26px;
  font-weight:600;font-size:.95rem;line-height:1;transition:background .18s,color .18s,border-color .18s,transform .18s}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--brand);color:#fff}
.btn-primary:hover{background:var(--brand-strong)}
.btn-navy{background:var(--navy-900);color:#fff}
.btn-navy:hover{background:#06142b}
.btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.85);
  padding:13px 30px}
.btn-ghost:hover{background:rgba(255,255,255,.12)}
.btn-block{display:block;width:100%;text-align:center}

/* ---------- Header (injected) ---------- */
.site-header{position:sticky;top:0;z-index:60;background:#fff;border-bottom:1px solid var(--line)}
.site-header .bar{display:flex;align-items:center;gap:28px;height:var(--header-h)}
.brand{display:flex;align-items:center;gap:9px;font-family:var(--font-display);font-weight:600;
  font-size:1.18rem;color:var(--navy-text)}
.brand svg{width:26px;height:26px;flex:none}
.brand b{font-weight:600}
.brand-logo{height:20px;width:auto;display:block}
.nav{display:flex;align-items:center;gap:6px;margin-left:8px}
.nav-item{position:relative}
.nav-link{display:inline-flex;align-items:center;gap:6px;padding:10px 14px;border-radius:var(--radius);
  color:#3a4250;font-weight:400;font-size:.96rem}
.nav-link:hover{color:var(--brand)}
.nav-item.active>.nav-link{color:var(--brand)}
.nav-link .caret{width:10px;height:10px;transition:transform .2s}
.nav-item:hover .nav-link .caret{transform:rotate(180deg)}
.dropdown{position:absolute;top:calc(100% - 4px);left:0;min-width:220px;background:#fff;
  border:1px solid var(--line);border-radius:8px;box-shadow:var(--shadow-soft);padding:8px;
  opacity:0;visibility:hidden;transform:translateY(6px);transition:.18s;z-index:70}
.nav-item:hover .dropdown,.nav-item:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown a{display:block;padding:9px 12px;border-radius:6px;color:#3a4250;font-size:.93rem;font-weight:500}
.dropdown a:hover{background:var(--bg-alt);color:var(--brand)}
.header-cta{margin-left:auto;display:flex;align-items:center;gap:10px}
.menu-toggle{display:none;background:none;border:none;padding:8px;color:var(--navy-text)}
.menu-toggle svg{width:26px;height:26px}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:clamp(480px,68vh,640px);display:flex;align-items:center;color:#fff;overflow:hidden}
.hero--tall{min-height:640px}
.hero--mid{min-height:clamp(560px,80vh,820px)}
.hero__media{position:absolute;inset:0}
.hero__media img{width:100%;height:100%;object-fit:cover}
.hero__media video,.hero__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.hero::after{content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(6,16,34,.72) 0%,rgba(6,16,34,.45) 45%,rgba(6,16,34,.15) 100%)}
.hero__inner{position:relative;z-index:2;width:100%}
.hero__inner .container{padding-top:48px;padding-bottom:48px}
.hero h1{color:#fff;font-weight:300;text-transform:uppercase;letter-spacing:.02em;
  font-size:clamp(2.5rem,5.4vw,4.6rem);line-height:1.04;margin:0 0 18px;max-width:14ch}
.hero p{color:rgba(255,255,255,.9);max-width:46ch;font-size:1.02rem;margin-bottom:26px;font-weight:100}
.hero--center{text-align:center}
.hero--center .hero h1,.hero--center h1{margin-left:auto;margin-right:auto}

/* full-width photo hero (Code of Ethics / Contact use a contained image variant) */
.hero--framed{min-height:auto;color:#fff}
.hero--framed .hero__media{position:relative;height:clamp(360px,46vw,640px)}
.hero--framed::after{display:none}
.hero--framed .frame-scrim{position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(10,28,60,.5),rgba(10,28,60,.05))}
.hero--framed .hero__inner{position:absolute;inset:0;display:flex;align-items:center}

/* ---------- Sections / bands ---------- */
.section{padding:96px 0}
.section--tight{padding:54px 0}
.section--alt{background:var(--bg-alt)}
.band{padding:74px 0;color:#fff}
.band--navy{background:var(--navy-800)}
.band--navy-deep{background:var(--navy-900)}
.band--ink{background:var(--ink-band)}
.band h1,.band h2,.band h3{color:#fff}
.section-title{text-align:center;font-size:clamp(1.7rem,3.2vw,2.4rem);margin-bottom:14px;font-weight:300}
.section-title--brand{color:var(--brand)}
.section-lead{text-align:center;max-width:60ch;margin:0 auto 48px;color:var(--muted)}
.band .section-lead{color:rgba(255,255,255,.82)}

/* ---------- 4-up feature columns ---------- */
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:34px}
.feature{text-align:center}
.feature__icon{width:70px;height:70px;margin:0 auto 18px;color:var(--brand);
  display:flex;align-items:center;justify-content:center}
.band .feature__icon{color:var(--brand-light)}
.feature h3{font-size:1.14rem;margin-bottom:12px;color:var(--brand);font-weight:700}
.band .feature h3{color:#fff}
.feature p{font-size:.9rem;color:var(--muted);margin:0}
.band .feature p{color:rgba(255,255,255,.78)}
.feature--brandtitle h3{color:var(--brand)}

/* ---------- Stat row ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;text-align:center}
.stat__num{font-family:var(--font-display);font-size:clamp(2.2rem,4vw,3rem);font-weight:600;color:#fff}
.stat__label{color:var(--brand-light);font-weight:600;margin:4px 0 12px}
.stat p{font-size:.86rem;color:rgba(255,255,255,.75);margin:0}

/* ---------- Split (text + media) ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
.split--media-left{direction:rtl}
.split--media-left>*{direction:ltr}
.split h2{font-size:clamp(1.7rem,3vw,2.3rem);margin-bottom:18px}
.split p{color:var(--muted)}
.band .split p{color:rgba(255,255,255,.82)}
.split__media img{border-radius:var(--radius-card);width:100%}

/* ---------- Program cards ---------- */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.cards--center{max-width:830px;margin:28px auto 0;grid-template-columns:repeat(2,1fr)}
.card{background:var(--card);border-radius:var(--radius-card);box-shadow:var(--shadow-card);
  overflow:hidden;display:flex;flex-direction:column}
.card__img{aspect-ratio:16/10}
.card__img img{width:100%;height:100%;object-fit:cover}
.card__body{padding:24px 24px 28px;display:flex;flex-direction:column;flex:1}
.card__body h3{font-size:1.18rem;margin-bottom:12px;color:var(--text);font-weight:600}
.card__body p{font-size:.9rem;color:var(--muted);flex:1}
.card__body .btn{align-self:flex-start;margin-top:14px}

/* ---------- Competency tiles (image + text, no card chrome) ---------- */
.tiles{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}
.tile__img{aspect-ratio:16/10;border-radius:var(--radius);overflow:hidden;margin-bottom:16px}
.tile__img img{width:100%;height:100%;object-fit:cover}
.tile h3{font-size:1.05rem;margin-bottom:10px;color:var(--text);font-weight:600}
.tile p{font-size:.88rem;color:var(--muted);margin:0}

/* ---------- Quote / testimonial ---------- */
.quote-row{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.quote blockquote{font-size:clamp(1.75rem,3.4vw,2.7rem);font-style:italic;font-weight:400;
  color:var(--navy-text);font-family:var(--font-display);line-height:1.25;margin:0 0 18px}
.quote .cite{color:var(--muted);font-size:.95rem}
.quote .cite strong{display:block;color:var(--text);font-weight:600}

/* ---------- Video placeholder ---------- */
.video-ph{position:relative;aspect-ratio:16/10;background:#d9dde2;border-radius:var(--radius);
  overflow:hidden;display:flex;align-items:center;justify-content:center}
.video-ph img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.video-ph video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;background:#000;border-radius:inherit}
.video-ph .play{position:relative;z-index:2;width:74px;height:74px;border-radius:50%;
  background:rgba(31,111,224,.85);display:flex;align-items:center;justify-content:center}
.video-ph .play svg{width:30px;height:30px;color:#fff;margin-left:4px}
.video-ph--dark .play{background:rgba(20,24,30,.78)}

/* ---------- Experts grid ---------- */
.expert-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.expert-grid--last{max-width:560px;margin:26px auto 0;grid-template-columns:repeat(2,1fr)}
.expert-card{background:#fff;box-shadow:var(--shadow-card);border-radius:var(--radius)}
.expert-card .thumb{position:relative;aspect-ratio:5/4;overflow:hidden}
.expert-card .thumb img{width:100%;height:100%;object-fit:cover}
.expert-card .thumb .play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:48px;height:48px;border-radius:50%;border:2px solid var(--brand);
  background:rgba(255,255,255,.25);display:flex;align-items:center;justify-content:center}
.expert-card .thumb .play svg{width:18px;height:18px;color:var(--brand);margin-left:2px}
.expert-card .meta{padding:12px 14px 16px}
.expert-card .meta .name{font-weight:600;color:var(--text)}
.expert-card .meta .role{font-size:.84rem;color:var(--muted);line-height:1.4}

/* ---------- Mentors / Instructors two-col ---------- */
.dual{display:grid;grid-template-columns:1fr 1fr;gap:50px;text-align:center;max-width:980px;margin:0 auto}
.dual h2{font-size:1.7rem;margin-bottom:14px}
.dual p{color:var(--muted);font-size:.92rem}

/* ---------- FAQ accordion ---------- */
.faq{max-width:920px;margin:0 auto;border:1px solid var(--line);border-radius:8px;overflow:hidden}
.faq__item+.faq__item{border-top:1px solid var(--line)}
.faq__q{width:100%;background:#fff;border:none;text-align:left;padding:18px 22px;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-size:.98rem;color:var(--text);font-weight:500}
.faq__q:hover{background:var(--bg-alt)}
.faq__q .chev{width:16px;height:16px;flex:none;transition:transform .2s;color:var(--muted)}
.faq__item.open .faq__q .chev{transform:rotate(180deg)}
.faq__a{max-height:0;overflow:hidden;transition:max-height .25s ease}
.faq__a .inner{padding:0 22px 20px;color:var(--muted);font-size:.92rem}

/* ---------- Forms ---------- */
.form{max-width:760px}
.form--wide{max-width:880px}
.form-title{font-size:1.35rem;color:var(--navy-text);margin-bottom:22px;font-weight:600}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px 32px}
.field{display:flex;flex-direction:column;gap:6px}
.field--full{grid-column:1 / -1}
.field label{font-size:.82rem;color:#3a4250;font-weight:500}
.field .req{color:var(--danger)}
.field input,.field select,.field textarea{
  border:none;border-bottom:1px solid #c7ccd4;background:transparent;padding:8px 2px;
  font-family:inherit;font-size:.95rem;color:var(--text);border-radius:0}
.field textarea{resize:vertical;min-height:54px}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-bottom-color:var(--brand)}
.field select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237b828d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 4px center}
.checkrow{display:flex;gap:12px;align-items:flex-start;font-size:.82rem;color:var(--muted);margin:8px 0 4px}
.checkrow input{width:18px;height:18px;flex:none;margin-top:2px;accent-color:var(--brand)}
.checkrow a{color:var(--brand);text-decoration:underline}
.radio-row{display:flex;flex-direction:column;gap:8px;margin-bottom:8px}
.radio-row .legend{font-size:.82rem;color:#3a4250;font-weight:500;margin-bottom:2px}
.radio-row label{display:flex;gap:9px;align-items:center;font-size:.9rem;color:var(--text);font-weight:400}
.radio-row input{width:17px;height:17px;accent-color:var(--brand)}
.upload{border:1px dashed #c7ccd4;border-radius:var(--radius);padding:14px 16px;color:var(--brand);
  font-size:.88rem;display:inline-flex;gap:8px;align-items:center;background:var(--bg-alt)}
.form-note{font-size:.78rem;color:var(--muted-2);margin-top:4px}
.form-status{margin-top:16px;padding:12px 16px;border-radius:var(--radius);font-size:.9rem;display:none}
.form-status.ok{display:block;background:#e7f4ec;color:#1c6b3a;border:1px solid #b8e0c6}
.form-status.err{display:block;background:#fdeaea;color:#9c2a2a;border:1px solid #f3c4c4}

/* ---------- Contact split ---------- */
.contact-head{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:start}
.contact-head h1{font-size:clamp(1.9rem,3.4vw,2.6rem);color:var(--navy-text);margin-bottom:14px}
.contact-head p{color:var(--muted)}
.contact-portrait{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-soft);
  aspect-ratio:4/5;max-width:320px;margin-left:auto}
.contact-portrait img{width:100%;height:100%;object-fit:cover}

/* ---------- Editorial (Code of Ethics) ---------- */
.editorial{max-width:880px;margin:0 auto}
.editorial h2{text-align:center;font-size:clamp(1.7rem,3vw,2.3rem);margin-bottom:36px;color:var(--text)}
.editorial h3{font-size:1.15rem;color:var(--navy-text);margin:30px 0 10px}
.editorial ol{margin:0 0 8px;padding-left:20px}
.editorial li{margin-bottom:12px;color:var(--muted)}
.editorial li b{color:var(--text)}
.editorial p{color:var(--muted)}

/* ---------- Footer (injected) ---------- */
.site-footer{padding:0 0 40px;background:#fff}
.site-footer .container{border-top:1px solid var(--line);padding-top:48px}
.footer-grid{display:grid;grid-template-columns:repeat(3,1fr) 1.2fr;gap:30px}
.footer-col h4{font-size:.95rem;color:var(--brand);margin-bottom:14px;font-weight:600}
.footer-col a{display:block;color:var(--brand);font-size:.9rem;padding:5px 0}
.footer-col a:hover{color:var(--brand)}
.footer-right{text-align:center}
.footer-social{display:flex;gap:14px;margin-bottom:14px;color:#5c6470;justify-content:center}
.footer-social a{color:#5c6470}
.footer-social a:hover{color:var(--brand)}
.footer-social svg{width:20px;height:20px}
.footer-legal{font-size:.82rem;color:var(--navy-text)}
.footer-legal a{display:inline;color:var(--brand)}
.footer-legal .dns{display:block;margin-top:10px;text-decoration:underline}

/* ---------- Floating contact button ---------- */
.fab{position:fixed;right:22px;bottom:22px;z-index:50;background:var(--navy-900);color:#fff;
  border-radius:999px;padding:12px 18px;display:flex;gap:8px;align-items:center;font-weight:600;
  font-size:.9rem;box-shadow:var(--shadow-soft)}
.fab svg{width:18px;height:18px}

/* ---------- Image placeholder fallback (until R2 assets land) ---------- */
img.ph.ph--missing{
  background:linear-gradient(135deg,#dfe5ee 0%,#c8d2e0 100%);
  position:relative;min-height:120px;object-fit:cover}
.media-label{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:14px;color:#5b6b86;font-size:.78rem;font-weight:500;
  font-family:var(--font-body);letter-spacing:.02em;pointer-events:none}

/* ---------- Mobile menu drawer ---------- */
.mobile-menu{display:none}

/* ---------- Responsive ---------- */
@media (max-width:1000px){
  /* nav -> hamburger (Wix collapses at <=1000) */
  .nav,.header-cta .btn{display:none}
  .menu-toggle{display:block;margin-left:auto}
  .brand-logo{height:22px}
  .mobile-menu{display:block;position:fixed;inset:var(--header-h) 0 0;background:#fff;z-index:55;
    padding:18px 24px;overflow-y:auto;transform:translateX(100%);transition:transform .25s}
  body.menu-open .mobile-menu{transform:translateX(0)}
  body.menu-open{overflow:hidden}
  .mobile-menu a{display:block;padding:13px 0;border-bottom:1px solid var(--line);color:#3a4250;font-weight:500}
  .mobile-menu .mm-sub a{padding-left:16px;font-size:.92rem;color:var(--muted)}
  .mobile-menu .btn{margin-top:18px}
  /* hero: centered + large headline (Wix tablet) */
  .hero__inner .container{text-align:center}
  .hero h1{font-size:clamp(2.6rem,9.2vw,4.6rem);max-width:none;margin-left:auto;margin-right:auto}
  .hero p{margin-left:auto;margin-right:auto}
  /* grids: pillars single-column (Wix), others 2-up */
  .features{grid-template-columns:1fr;gap:38px;max-width:460px;margin-left:auto;margin-right:auto}
  .stats,.cards,.tiles,.expert-grid{grid-template-columns:repeat(2,1fr)}
  .cards--center,.expert-grid--last{grid-template-columns:repeat(2,1fr)}
  .split,.quote-row,.contact-head,.dual{grid-template-columns:1fr;gap:32px}
  .split--media-left{direction:ltr}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .contact-portrait{margin:0 auto}
}
@media (max-width:750px){
  /* hero: back to left-aligned + smaller headline (Wix mobile) */
  .brand-logo{height:20px}
  .hero__inner .container{text-align:left}
  .hero h1{font-size:clamp(1.7rem,8vw,2.3rem);max-width:18ch;margin-left:0;margin-right:0}
  .hero p{margin-left:0;margin-right:0}
  .features,.stats,.cards,.cards--center,.tiles,.expert-grid,.expert-grid--last{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .section{padding:60px 0}
  .band{padding:52px 0}
  .hero,.hero--mid,.hero--tall{min-height:440px}
  .hero::after{background:linear-gradient(180deg,rgba(6,16,34,.55),rgba(6,16,34,.65))}
}

@media (prefers-reduced-motion:reduce){
  *{transition:none!important;scroll-behavior:auto!important}
}

/* ---------- Mockup hero (faithful full image with original baked text) ---------- */
.hero-shot{display:block;padding:0;margin:0;background:#fff}
.hero-shot .container{max-width:none;width:100%;padding:0}
.hero-shot img{display:block;width:100%;height:auto;border-radius:0}

/* ---------- Program detail (hidden pages) ---------- */
.prog-hero .hero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(8,16,30,.85),rgba(8,16,30,.55))}
.prog-word{position:absolute;top:7%;left:0;right:0;text-align:center;font-family:var(--font-display);font-weight:700;font-size:clamp(3rem,12vw,11rem);letter-spacing:.04em;color:rgba(255,255,255,.06);text-transform:uppercase;pointer-events:none;z-index:1;line-height:1}
.prog-hero .hero__inner{position:relative;z-index:2}
.prog-bullets{list-style:none;margin:22px 0 0;padding:0;max-width:56ch;display:grid;gap:11px}
.prog-bullets li{color:rgba(255,255,255,.9);font-size:.93rem;line-height:1.5}
.prog-bullets b{color:#fff;font-weight:600}
.stat__num{font-family:var(--font-display);font-size:clamp(2.4rem,4vw,3.2rem);font-weight:300;color:var(--brand);line-height:1}
.stat__desc{color:var(--muted);font-size:.84rem;margin-top:8px;line-height:1.45}
.prog-tabs{display:flex;justify-content:center;gap:34px;border-bottom:1px solid var(--line);background:var(--bg-alt);flex-wrap:wrap}
.prog-tabs a{padding:15px 4px;color:var(--muted);font-size:.92rem;font-weight:500;border-bottom:2px solid transparent}
.prog-tabs a:hover{color:var(--brand);border-bottom-color:var(--brand)}
.prog-list{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:13px}
.prog-list li{padding-left:26px;position:relative;color:#4a5260;line-height:1.5}
.prog-list li::before{content:"";position:absolute;left:0;top:7px;width:10px;height:10px;border-radius:3px;background:var(--brand)}
.prog-list li b{color:var(--navy-text)}

/* program detail: curriculum + program-details grid */
.prog-curriculum{max-width:880px}
.prog-curriculum .prog-sub{margin-top:20px;color:var(--navy-text);font-weight:600}
.prog-curriculum p{color:#4a5260;margin:6px 0;line-height:1.55}
.prog-ul{margin:8px 0 14px;padding-left:0;list-style:none;display:grid;gap:7px}
.prog-ul li{padding-left:22px;position:relative;color:#4a5260;line-height:1.5}
.prog-ul li::before{content:"";position:absolute;left:0;top:8px;width:7px;height:7px;border-radius:50%;background:var(--brand)}
.pd-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.pd-card{background:var(--bg-alt);border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.pd-card h4{color:var(--brand);font-size:1rem;margin-bottom:8px}
.pd-card p{color:#4a5260;font-size:.9rem;line-height:1.5}
.pd-fee{text-align:center;margin-top:30px;font-weight:600;color:var(--navy-text);font-size:1.1rem}
.pd-fineprint{text-align:center;color:var(--muted);font-size:.9rem;margin-top:6px}
@media(max-width:1000px){.pd-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:750px){.pd-grid{grid-template-columns:1fr}}

/* Advisory board + partners (hidden pages) */
.page-hero{background:var(--navy-900);color:#fff;padding:92px 0 72px;text-align:center}
.page-hero h1{color:#fff;font-weight:300;font-size:clamp(2.2rem,4.5vw,3.4rem)}
.page-hero p{color:rgba(255,255,255,.82);margin-top:14px;max-width:62ch;margin-left:auto;margin-right:auto}
.advisor-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.advisor-card{text-align:center;text-decoration:none;display:block}
.advisor-card img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:12px;background:#e6e9ee}
.advisor-card h3{color:var(--navy-text);font-size:1.05rem;margin-top:14px}
.advisor-card .role{color:var(--brand);font-size:.9rem;margin-top:4px}
.advisor-card .org{color:var(--muted);font-size:.85rem;margin-top:2px}
.advisor-card:hover h3{color:var(--brand)}
.profile{display:grid;grid-template-columns:320px 1fr;gap:46px;align-items:start}
.profile__photo img{width:100%;border-radius:14px;background:#e6e9ee}
.profile__meta h1{color:var(--navy-text);font-weight:400}
.profile__meta .role{color:var(--brand);font-weight:600;margin-top:10px}
.profile__meta .org{color:var(--muted);margin-top:2px}
.profile__bio{margin-top:22px;color:#4a5260;line-height:1.65}
.profile__bio p{margin:0 0 14px}
.partner-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.partner-card{border:1px solid var(--line);border-radius:12px;padding:28px;display:flex;flex-direction:column;align-items:center;gap:14px;text-decoration:none;background:#fff}
.partner-card img{height:66px;max-width:100%;object-fit:contain}
.partner-card .pname{color:var(--navy-text);font-weight:600;font-size:.95rem;text-align:center}
.partner-card .plevel{color:var(--muted);font-size:.82rem}
.partner-card:hover{border-color:var(--brand)}
@media(max-width:1000px){.advisor-grid,.partner-grid{grid-template-columns:repeat(2,1fr)}.profile{grid-template-columns:1fr;gap:28px}.profile__photo{max-width:300px}}
@media(max-width:750px){.advisor-grid,.partner-grid{grid-template-columns:1fr}}

/* Global Presence / Nexuses (hidden page) */
.continent-group{margin-top:50px}
.continent-group h2{font-size:1.35rem;color:var(--navy-text);font-weight:500;border-bottom:1px solid var(--line);padding-bottom:12px;margin-bottom:26px}
.nexus-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.nexus-card{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#fff;transition:border-color .15s}
.nexus-card:hover{border-color:var(--brand)}
.nexus-card__img{height:150px;background:#e6e9ee center/cover no-repeat}
.nexus-card__body{padding:18px 20px}
.nexus-card h3{color:var(--navy-text);font-size:1.1rem}
.nexus-card .loc{color:var(--muted);font-size:.88rem;margin-top:3px}
.nexus-card .meta{display:flex;gap:18px;margin-top:12px;font-size:.82rem;color:#4a5260}
.nexus-card .meta b{color:var(--navy-text);font-weight:600}
.nexus-badge{display:inline-block;margin-top:14px;padding:4px 13px;border-radius:20px;font-size:.74rem;font-weight:600;letter-spacing:.01em}
.nexus-badge.formation{background:#fff3e0;color:#d97e00}
.nexus-badge.leadership{background:#e3f2fd;color:#1565c0}
.nexus-badge.launch{background:#e8f5e9;color:#2e7d32}
@media(max-width:1000px){.nexus-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:680px){.nexus-grid{grid-template-columns:1fr}}

/* Mobile sticky CTA bar (Join A Program / Become A Member) — pinned to bottom */
.footer-cta{display:none}
.btn-member{background:#4f4f4f;color:#fff;border:1px solid #4f4f4f}
.btn-member:hover{background:#3a3a3a;border-color:#3a3a3a;color:#fff}
@media(max-width:750px){
  .footer-cta{display:flex;gap:0;position:fixed;left:0;right:0;bottom:0;z-index:60;margin:0}
  .footer-cta .btn{flex:1;height:46px;display:flex;align-items:center;justify-content:center;text-align:center;font-size:13px;font-weight:500;padding:0;border:none;box-shadow:none;border-radius:0}
  .footer-cta .btn-primary{border-radius:5px 0 0 0}
  .footer-cta .btn-member{border-radius:0 5px 0 0;color:#fff}
}
/* keep footer content clear of the fixed CTA bar; lift the contact button above it */
@media(max-width:750px){.site-footer{padding-bottom:62px}.fab{bottom:58px}}

/* Text / content pages (hidden) */
.content-body{max-width:820px;margin:0 auto}
.content-body h2{font-size:1.4rem;color:var(--navy-text);font-weight:500;margin:34px 0 12px}
.content-body h3{font-size:1.1rem;color:var(--navy-text);font-weight:600;margin:24px 0 10px}
.content-body p{color:#4a5260;line-height:1.7;margin:0 0 14px}
.content-body ul{margin:0 0 16px;padding-left:0;list-style:none;display:grid;gap:9px}
.content-body li{padding-left:24px;position:relative;color:#4a5260;line-height:1.6}
.content-body li::before{content:"";position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:50%;background:var(--brand)}
.content-body img{max-width:100%;border-radius:12px;margin:20px auto;display:block}

/* Nexus event pages (hidden) */
.event-details{background:var(--bg-alt);border:1px solid var(--line);border-radius:14px;padding:28px 34px;max-width:600px;margin:34px auto;text-align:center}
.event-details h3{color:var(--brand);font-size:1.15rem;margin-bottom:12px}
.event-details p{color:var(--navy-text);margin:5px 0}
.event-sponsors{text-align:center;margin-top:44px}
.event-sponsors h3{color:var(--navy-text);font-weight:600;margin:26px 0 16px;font-size:1.1rem}
.sponsor-logos{display:flex;justify-content:center;align-items:center;gap:40px;flex-wrap:wrap}
.sponsor-logos img{height:46px;max-width:190px;object-fit:contain}
.rsvp-banner{background:var(--navy-900);color:#fff;border-radius:14px;padding:44px;text-align:center;margin:46px auto 0;max-width:820px}
.rsvp-banner h2{color:#fff}
.rsvp-banner p{color:rgba(255,255,255,.85);max-width:60ch;margin:14px auto 0;line-height:1.6}
.rsvp-banner .btn{margin-top:24px}
.event-intro .prog-list li b{color:var(--navy-text)}
