:root{
  --navy:#06111f;
  --slate:#0f1f33;
  --cyan:#22d3ee;
  --teal:#14b8a6;
  --white:#f8fafc;
  --muted:#94a3b8;
  --card:rgba(255,255,255,.07);
  --border:rgba(255,255,255,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:var(--navy);
  color:var(--white);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,92%);margin:auto}
.narrow{width:min(850px,92%);margin:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(6,17,31,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
}
.brand strong{display:block;letter-spacing:.12em}
.brand span{display:block;color:var(--muted);font-size:.82rem}
.nav{
  display:flex;
  gap:22px;
  color:#cbd5e1;
  font-size:.92rem;
}
.nav a:hover{color:var(--cyan)}

.hero{
  min-height:88vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 70% 20%,rgba(34,211,238,.22),transparent 32%),
    radial-gradient(circle at 10% 80%,rgba(20,184,166,.18),transparent 30%),
    linear-gradient(135deg,#06111f,#0b1728 55%,#081423);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,black,transparent);
}
.hero-content{position:relative;z-index:2;padding:100px 0}
.eyebrow{
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  font-weight:700;
}
h1{
  font-size:clamp(2.5rem,6vw,5.8rem);
  line-height:1.02;
  max-width:1100px;
  margin:18px 0;
}
h2{
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:1.08;
  margin:8px 0 18px;
}
h3{margin:0 0 8px}
.hero-text{
  max-width:850px;
  color:#cbd5e1;
  font-size:1.18rem;
}
.hero-actions{
  display:flex;
  gap:14px;
  margin-top:32px;
  flex-wrap:wrap;
}
.btn{
  padding:13px 20px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:700;
}
.btn.primary{
  background:linear-gradient(135deg,var(--cyan),var(--teal));
  color:#03121d;
}
.btn.secondary:hover{border-color:var(--cyan);color:var(--cyan)}

.section{padding:96px 0;background:#081423}
.dark-section{background:#050d18}
.section-heading{max-width:880px;margin-bottom:42px}
.section-heading p,.narrow p{color:#cbd5e1;font-size:1.05rem}

.grid{
  display:grid;
  gap:22px;
}
.grid.six{grid-template-columns:repeat(3,1fr)}
.grid.four{grid-template-columns:repeat(4,1fr)}
.grid.three{grid-template-columns:repeat(3,1fr)}
.readiness-grid{grid-template-columns:repeat(4,1fr)}

.card,.program-card,.stat,.leader,.contact-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:26px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}
.card:hover,.program-card:hover,.stat:hover,.leader:hover{
  border-color:rgba(34,211,238,.55);
  transform:translateY(-4px);
}
.card,.program-card,.stat,.leader{transition:.25s ease}
.card span{
  font-size:2rem;
  display:block;
  margin-bottom:14px;
}
.card p,.program-card p,.leader p,.contact-card p{color:#cbd5e1}

.stat span{
  color:var(--muted);
  display:block;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.stat strong{
  display:block;
  margin-top:8px;
  color:var(--white);
  font-size:1.1rem;
}

.program-card{
  min-height:230px;
  background:
    linear-gradient(180deg,rgba(34,211,238,.10),rgba(255,255,255,.04));
}

.quote-section{
  background:linear-gradient(135deg,rgba(34,211,238,.12),rgba(20,184,166,.08)),#06111f;
  text-align:center;
}
.quote-section p{
  font-size:1.35rem;
  color:#dbeafe;
}

.disclaimer{
  color:var(--muted);
  font-size:.88rem;
  margin-top:24px;
}

.leadership-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.leader.featured{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  gap:28px;
}
.profile-photo{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid var(--cyan);
}
.avatar{
  width:62px;
  height:62px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--cyan),var(--teal));
  color:#03121d;
  font-weight:900;
  margin-bottom:14px;
}
.role{color:var(--cyan)!important;font-weight:700}

.contact-section{
  background:
    radial-gradient(circle at 50% 0%,rgba(34,211,238,.16),transparent 36%),
    #081423;
}

.site-footer{
  padding:34px 0;
  background:#020817;
  border-top:1px solid var(--border);
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:24px;
  color:#cbd5e1;
}
.footer-wrap strong{color:var(--white)}

@media(max-width:900px){
  .nav{display:none}
  .grid.six,.grid.four,.grid.three,.readiness-grid,.leadership-grid{
    grid-template-columns:1fr;
  }
  .leader.featured{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-wrap{flex-direction:column}
  h1{font-size:2.65rem}
}
.mission-section{
  background:
    radial-gradient(circle at 50% 0%,rgba(34,211,238,.18),transparent 36%),
    linear-gradient(135deg,#06111f,#0b1728);
  text-align:center;
}

.site-footer{
  background:
    linear-gradient(180deg,#07111f,#030814 80%);
  border-top:1px solid rgba(34,211,238,.35);
  padding:70px 0 24px;
  color:#cbd5e1;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr repeat(5,1fr);
  gap:34px;
}

.footer-logo{
  width:76px;
  height:76px;
  object-fit:contain;
  margin-bottom:16px;
}

.footer-brand h3{
  color:#fff;
  margin:0;
  letter-spacing:.12em;
}

.footer-tagline{
  color:#22d3ee;
  font-weight:700;
}

.site-footer h4{
  color:#14b8a6;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  margin-bottom:16px;
}

.site-footer a,
.site-footer p{
  display:block;
  color:#cbd5e1;
  margin:8px 0;
}

.site-footer a:hover{
  color:#22d3ee;
}

.footer-integrity{
  margin-top:48px;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}

.footer-integrity strong{
  color:#fff;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:22px;
  color:#94a3b8;
  font-size:.9rem;
}

@media(max-width:1000px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .footer-bottom{
    flex-direction:column;
  }
}

@media(max-width:640px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}
.program-card{
    display:block;
    text-decoration:none;
    color:inherit;
    transition:.35s ease;
}

.program-card:hover{
    transform:translateY(-8px);
    border-color:#22d3ee;
}

.learn-more{
    display:inline-block;
    margin-top:18px;
    color:#22d3ee;
    font-weight:700;
    transition:.3s;
}

.program-card:hover .learn-more{
    transform:translateX(6px);
}
