:root{
  --navy:#0B1B3F;
  --navy-light:#16285c;
  --gold:#D4A437;
  --gold-light:#e8c468;
  --green:#1F7A4D;
  --cream:#FAF8F4;
  --charcoal:#1A1A1A;
  --white:#FFFFFF;
  --line: rgba(11,27,63,0.12);
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background:var(--cream);
  color:var(--charcoal);
  line-height:1.6;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
:focus-visible{outline:3px solid var(--green); outline-offset:2px;}

/* HEADER */
header.site-header{position:sticky; top:0; z-index:100; background:var(--white); border-bottom:1px solid var(--line);}
.nav-wrap{max-width:1280px; margin:0 auto; padding:14px 24px; display:flex; align-items:center; justify-content:space-between;}
.logo-row img{height:46px; width:auto;}
nav ul{display:flex; gap:22px; list-style:none; flex-wrap:wrap;}
nav a{font-weight:600; font-size:14.5px; color:var(--navy); transition:color .2s;}
nav a:hover, nav a.active{color:var(--gold);}
.nav-cta{background:var(--navy); color:var(--white)!important; padding:10px 20px; border-radius:4px; font-weight:700; font-size:13.5px;}
.nav-cta:hover{background:var(--gold); color:var(--navy)!important;}
.menu-toggle{display:none; background:none; border:none; font-size:26px; color:var(--navy); cursor:pointer;}
@media (max-width:980px){
  nav ul{position:fixed; top:76px; left:0; right:0; background:var(--white); flex-direction:column; padding:20px 24px; gap:16px; border-bottom:1px solid var(--line); transform:translateY(-110%); transition:transform .25s ease; z-index:99; max-height:80vh; overflow-y:auto;}
  nav ul.open{transform:translateY(0);}
  .menu-toggle{display:block;}
}

/* PAGE HERO (non-home pages) */
.page-hero{background:var(--navy); color:var(--white); padding:60px 24px;}
.page-hero .inner{max-width:1280px; margin:0 auto;}
.page-hero .eyebrow{color:var(--gold); font-weight:700; font-size:12.5px; letter-spacing:2px; text-transform:uppercase;}
.page-hero h1{font-size:34px; font-weight:800; margin-top:10px;}
.page-hero p{color:rgba(255,255,255,0.8); margin-top:10px; max-width:640px;}

/* SECTIONS */
section{padding:70px 24px;}
.section-inner{max-width:1280px; margin:0 auto;}
.section-head{max-width:700px; margin-bottom:42px;}
.section-eyebrow{color:var(--gold); font-weight:700; font-size:12.5px; letter-spacing:2px; text-transform:uppercase;}
.section-head h2{font-size:30px; color:var(--navy); margin-top:8px; font-weight:800;}
.section-head p{color:#555; margin-top:10px; font-size:15.5px;}
.alt-bg{background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}

/* BUTTONS */
.btn{display:inline-block; padding:13px 26px; border-radius:4px; font-weight:700; font-size:14.5px; transition:all .2s; cursor:pointer; border:none;}
.btn-gold{background:var(--gold); color:var(--navy);}
.btn-gold:hover{background:var(--gold-light);}
.btn-navy{background:var(--navy); color:var(--white);}
.btn-navy:hover{background:var(--navy-light);}
.btn-outline{border:1.5px solid var(--navy); color:var(--navy); background:transparent;}
.btn-outline:hover{border-color:var(--gold); color:var(--gold);}
.btn-outline-light{border:1.5px solid rgba(255,255,255,0.5); color:var(--white); background:transparent;}
.btn-outline-light:hover{border-color:var(--gold); color:var(--gold);}
.btn-row{display:flex; gap:14px; flex-wrap:wrap;}

/* CARDS - generic */
.card{background:var(--white); border:1px solid var(--line); border-radius:8px; padding:24px;}
.card-cream{background:var(--cream); border:1px solid var(--line); border-radius:8px; padding:24px;}

/* GRID UTILITIES */
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:22px;}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media (max-width:960px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr);} .grid-2{grid-template-columns:1fr;}}
@media (max-width:640px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}}

/* STAT STRIP */
.stat-strip{background:var(--white); border-bottom:1px solid var(--line);}
.stat-row{max-width:1280px; margin:0 auto; padding:26px 24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px; text-align:center;}
.stat{flex:1; min-width:140px;}
.stat .num{font-size:28px; font-weight:800; color:var(--navy);}
.stat .num span{color:var(--gold);}
.stat .label{font-size:12.5px; color:#555; text-transform:uppercase; letter-spacing:.5px; margin-top:4px;}

/* PILLARS / FEATURE BLOCKS */
.pillar{background:var(--white); border:1px solid var(--line); border-radius:8px; padding:26px 22px; border-top:3px solid var(--gold);}
.pillar.green-top{border-top-color:var(--green);}
.pillar .icon{font-size:26px; margin-bottom:12px;}
.pillar h3{color:var(--navy); font-size:16.5px; margin-bottom:8px;}
.pillar p{font-size:14px; color:#555;}

/* BADGES */
.badge{font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; padding:4px 10px; border-radius:20px; display:inline-block;}
.badge-bronze{background:#e7d3bb; color:#7a4a1f;}
.badge-silver{background:#dfe3e8; color:#4b5663;}
.badge-gold{background:rgba(212,164,55,0.2); color:var(--navy);}
.badge-platinum{background:rgba(31,122,77,0.18); color:var(--green);}
.tag{font-size:11px; background:var(--cream); border:1px solid var(--line); padding:3px 9px; border-radius:20px; color:var(--navy); margin-right:5px; display:inline-block; margin-bottom:5px;}

/* DIRECTORY / MARKETPLACE / FUNDING CARDS */
.filter-bar{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:30px;}
.filter-bar input, .filter-bar select{padding:11px 14px; border:1px solid var(--line); border-radius:4px; font-size:14px; background:var(--cream); color:var(--charcoal);}
.filter-bar input{flex:1; min-width:200px;}

.listing-card{background:var(--cream); border:1px solid var(--line); border-radius:8px; padding:22px; transition:transform .2s, box-shadow .2s;}
.listing-card:hover{transform:translateY(-3px); box-shadow:0 12px 24px rgba(11,27,63,0.08);}
.listing-card h3{color:var(--navy); font-size:17px; margin:8px 0 4px;}
.listing-card .meta{font-size:12.5px; color:#777; margin-bottom:10px;}
.listing-card p.desc{font-size:13.5px; color:#444; margin-bottom:12px;}
.listing-card .link{font-size:13px; font-weight:700; color:var(--navy);}
.listing-card .link:hover{color:var(--gold);}
.empty-note{font-size:13px; color:#777; text-align:center; margin-top:24px;}

.opp-card{background:var(--white); border:1px solid var(--line); border-radius:8px; padding:24px 26px; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;}
.opp-card .opp-type{font-size:11px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:.5px;}
.opp-card h3{color:var(--navy); font-size:17px; margin:6px 0;}
.opp-card p{font-size:14px; color:#555;}
.opp-meta{font-size:12.5px; color:#777; margin-top:6px;}

/* FORMS */
form.app-form{display:flex; flex-direction:column; gap:16px; max-width:760px;}
form.app-form label{font-size:13.5px; font-weight:700; color:var(--navy); margin-bottom:6px; display:block;}
form.app-form input, form.app-form select, form.app-form textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:4px; font-size:14.5px; background:var(--white); color:var(--charcoal); font-family:inherit;
}
form.app-form .field{display:flex; flex-direction:column;}
form.app-form .field-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:640px){form.app-form .field-row{grid-template-columns:1fr;}}
.verif-options{display:grid; grid-template-columns:repeat(4,1fr); gap:12px;}
@media (max-width:640px){.verif-options{grid-template-columns:1fr 1fr;}}
.verif-card{border:1.5px solid var(--line); border-radius:6px; padding:14px; text-align:center; cursor:pointer; font-size:13px; font-weight:700;}
.verif-card.bronze{color:#7a4a1f;} .verif-card.silver{color:#4b5663;} .verif-card.gold{color:var(--navy);} .verif-card.platinum{color:var(--green);}
.form-note{font-size:13px; color:#777;}

/* JOIN / CTA BAND */
.cta-band{background:var(--navy); color:var(--white); text-align:center;}
.cta-band h2{font-size:30px; font-weight:800; margin-bottom:12px;}
.cta-band h2 span{color:var(--gold);}
.cta-band p{max-width:580px; margin:0 auto 26px; color:rgba(255,255,255,0.85);}
.cta-band .btn-row{justify-content:center;}

/* TIMELINE / ABOUT */
.profile-card{display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap;}
.profile-card .avatar{width:110px; height:110px; border-radius:50%; background:var(--navy); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:34px; font-weight:800; flex-shrink:0;}

/* FOOTER */
footer.site-footer{background:#080f24; color:rgba(255,255,255,0.7); padding:60px 24px 30px;}
.footer-inner{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;}
footer.site-footer img{height:58px; margin-bottom:14px;}
footer.site-footer h4{color:var(--white); font-size:14px; margin-bottom:16px; letter-spacing:.5px;}
footer.site-footer ul{list-style:none;}
footer.site-footer li{margin-bottom:10px; font-size:13.5px;}
footer.site-footer a:hover{color:var(--gold);}
.footer-bottom{max-width:1280px; margin:40px auto 0; padding-top:24px; border-top:1px solid rgba(255,255,255,0.1); font-size:12.5px; text-align:center; color:rgba(255,255,255,0.4);}
@media (max-width:960px){.footer-inner{grid-template-columns:1fr 1fr;}}
@media (max-width:640px){.footer-inner{grid-template-columns:1fr;}}
