:root{
  --bg: #f6f9ff;
  --surface: #ffffff;
  --text: #0b1220;
  --muted: #536079;

  /* Banner-inspired blues */
  --primary: #003e99;
  --primary-2: #0141a8;
  --primary-3: #1a4ea0;

  /* Accent (banner red “Q”) */
  --accent: #e53935;

  /* Initiative accents (inspired by logo ring) */
  --green: #2e9d4d;
  --teal: #13a3b5;
  --purple: #6d4bb3;
  --orange: #f29b2e;

  --border: rgba(16, 24, 40, 0.12);
  --shadow: 0 14px 40px rgba(0,0,0,0.10);
  --radius: 18px;
  --radius-lg: 22px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #ffffff 100%);
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none !important; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Top bar */
.topbar{
  background: rgba(0, 62, 153, 0.08);
  border-bottom: 1px solid rgba(0, 62, 153, 0.12);
  font-size: 13px;
}
.topbar__inner{
  padding: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #0b2a66;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.18);
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16,24,40,0.08);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.brand__logo{
  width: 100px;
  /* height: 44px; */
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.brand__name{
  font-weight: 800;
  color: #000;
  letter-spacing: -0.02em;
  font-size: 35px;
}
.brand__tagline{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
  color: #1a2b45;
  font-weight: 600;
  font-size: 14px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 10px;
  color: #0b1220;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover{
  background: rgba(0,62,153,0.08);
  color: var(--primary);
}

.header__actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn--primary{
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 55%, var(--primary-3) 100%) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(0,62,153,0.22) !important;
  font-weight: 600 !important;
}
.btn--primary:hover{ box-shadow: 0 14px 36px rgba(0,62,153,0.28); }

.btn--ghost{
  background: rgba(0,62,153,0.06) !important;
  border-color: rgba(0,62,153,0.14) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.btn--ghost:hover{
  background: rgba(0,62,153,0.10) !important;
}

.btn--light{
  background: #fff;
  color: #08306f;
  border-color: rgba(255,255,255,0.18);
}
.btn--outlineLight{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn--outlineLight:hover{
  background: rgba(255,255,255,0.08);
}

/* Hamburger (optional; CSS-only mobile nav shows below) */
.hamburger{
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
}
.hamburger span{
  display: block;
  width: 22px;
  height: 2px;
  background: #14335f;
  margin: 4px 0;
  border-radius: 999px;
}

/* Mobile nav */
.mobileNav{
  display: none;
  padding: 0 0 14px 0;
  gap: 10px;
  flex-wrap: wrap;
}
.mobileNav a{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,62,153,0.06);
  border: 1px solid rgba(0,62,153,0.12);
  font-weight: 700;
  font-size: 14px;
  color: #0b2a66;
}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding: 54px 0 26px;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 450px at 10% 10%, rgba(0,62,153,0.16) 0%, rgba(0,62,153,0) 60%),
    radial-gradient(700px 380px at 85% 15%, rgba(229,57,53,0.14) 0%, rgba(229,57,53,0) 55%),
    radial-gradient(900px 520px at 65% 80%, rgba(1,65,168,0.12) 0%, rgba(1,65,168,0) 62%);
  pointer-events: none;
}
.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(16,24,40,0.10);
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.06);
}
.pill__badge{
  background: rgba(0,62,153,0.12);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.pill__text{
  font-size: 13px;
  color: #27416e;
  font-weight: 600;
}

.hero h1{
  margin: 14px 0 12px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.accent{ color: var(--accent); }

.lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #32425d;
  max-width: 62ch;
}

.hero__cta{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}
.stat{
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}
.stat__num{
  font-weight: 900;
  color: #0b2a66;
  letter-spacing: -0.02em;
}
.stat__label{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* Hero visual card */
.hero__visual{
  position: relative;
}
.heroCard{
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.heroCard__banner{
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.heroCard__body{
  padding: 16px 16px 18px;
}
.heroCard__row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge{
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16,24,40,0.10);
}
.badge--blue{ background: rgba(0,62,153,0.10); color: var(--primary); }
.badge--red{ background: rgba(229,57,53,0.10); color: var(--accent); }
.badge--teal{ background: rgba(19,163,181,0.12); color: #087c88; }

.heroCard__text{
  margin: 12px 0 0;
  color: #2f3f5a;
  line-height: 1.7;
  font-size: 14px;
}
.heroCard__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.mini{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #3a4c69;
  font-weight: 700;
}
.mini__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46,157,77,0.18);
}
.link{
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
}
.link:hover{ text-decoration: underline; }

.floating{
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.7;
  pointer-events: none;
}
.floating--one{
  width: 120px; height: 120px;
  top: -24px; right: -26px;
  background: radial-gradient(circle at 30% 30%, rgba(229,57,53,0.55), rgba(229,57,53,0.10) 65%, rgba(229,57,53,0) 70%);
}
.floating--two{
  width: 140px; height: 140px;
  bottom: -36px; left: -38px;
  background: radial-gradient(circle at 30% 30%, rgba(0,62,153,0.55), rgba(0,62,153,0.10) 65%, rgba(0,62,153,0) 70%);
}

/* Sections */
.section{
  padding: 56px 0;
}
.section--tint{
  background: linear-gradient(180deg, rgba(0,62,153,0.05) 0%, rgba(0,62,153,0.02) 65%, rgba(255,255,255,0) 100%);
  border-top: 1px solid rgba(16,24,40,0.06);
  border-bottom: 1px solid rgba(16,24,40,0.06);
}
.section__head{
  max-width: 840px;
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: #3a4c69;
  line-height: 1.7;
  font-size: 14px;
}

/* Initiative grid */
.grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.chip{
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.chip::before{
  content:"";
  position:absolute;
  inset: -60px -60px auto auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  opacity: 0.22;
}
.chip__title{
  display:block;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.chip__sub{
  display:block;
  margin-top: 6px;
  color: #3a4c69;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.chip--laqshya::before{ background: var(--purple); }
.chip--musqan::before{ background: var(--accent); }
.chip--vhsnd::before{ background: var(--green); }
.chip--hbpnchbyc::before{ background: var(--teal); }
.chip--zerodose::before{ background: var(--primary); }
.chip--integrated::before{ background: var(--orange); }

/* Feature list */
.featureList{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.feature{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(16,24,40,0.10);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}
.icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0,62,153,0.10);
  border: 1px solid rgba(0,62,153,0.14);
  font-size: 20px;
}
.feature h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.feature p{
  margin: 0;
  color: #3a4c69;
  line-height: 1.7;
  font-size: 14px;
}

/* Impact (dark) */
.section--dark{
  background: linear-gradient(135deg, #062a63 0%, #003e99 35%, #012f6f 100%);
  color: #fff;
}
.impact{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: stretch;
}
.impact__copy h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.impact__copy p{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}
.checklist{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.90);
  line-height: 1.9;
  font-weight: 650;
}
.impact__cta{
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.impact__panel{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 16px 16px;
  backdrop-filter: blur(8px);
}
.panelRow{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.panelRow:last-of-type{ border-bottom: 0; }
.panelKey{
  color: rgba(255,255,255,0.75);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.panelVal{
  font-weight: 750;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  line-height: 1.5;
}
.panelNote{
  margin-top: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  line-height: 1.6;
}

/* Footer */
.footer{
  border-top: 1px solid rgba(16,24,40,0.08);
  background: #fff;
}
.footer__inner{
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  align-items: center;
}
.footer__brand{
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__brand img{
  width: 100px;
  /* height: 42px; */
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.footer__name{
  font-weight: 900;
  letter-spacing: -0.01em;
}
.footer__sub{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  font-weight: 650;
}
.footer__links{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  color: #1a2b45;
  font-weight: 800;
  font-size: 13px;
}
.footer__links a{
  color: #1a2b45;
}
.footer__links a:hover{ color: var(--primary); }
.footer__meta{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.sep{ opacity: 0.6; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .featureList{ grid-template-columns: 1fr; }
  .impact{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr; text-align: left; }
  .footer__links{ justify-content: flex-start; }
  .footer__meta{ justify-content: flex-start; }
}

@media (max-width: 860px){
  .nav, .header__actions{ display: none; }
  .hamburger{ display: inline-block; }
  .mobileNav{ display: flex; }
  .hero h1{ font-size: 36px; }
}

@media (max-width: 520px){
  .hero h1{ font-size: 32px; }
  .hero__stats{ grid-template-columns: 1fr; }
}
