/* ================================================================
   PRO IN 4.0 Research Hub — styles.css
   WIPO-inspired institutional design system
   Fonts: Libre Baskerville (serif display) + Source Sans 3 (body)
   Palette: White · Deep Navy #0B2040 · Accent Orange #D4580A
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:        #0B2040;
  --navy-mid:    #183258;
  --navy-lt:     #25497A;
  --orange:      #D4580A;
  --orange-lt:   #E87030;
  --orange-pale: #FDF2EA;

  /* Neutral */
  --white:       #FFFFFF;
  --off-white:   #F8F7F5;
  --tint:        #F2F4F7;
  --border:      #DDE1E9;
  --border-lt:   #EEF0F4;

  /* Text */
  --text-dark:   #111820;
  --text-mid:    #354256;
  --text-muted:  #6B7A90;
  --text-light:  #9AAABB;

  /* Utility bar */
  --ub-bg:       #0B2040;

  /* Fonts */
  --serif:   'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-w:       1160px;
  --ub-h:        36px;
  --nav-h:       64px;
  --total-offset: calc(var(--ub-h) + var(--nav-h));

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;

  /* Shadows — subtle, institutional */
  --shadow-card: 0 2px 12px rgba(11,32,64,.07);
  --shadow-nav:  0 2px 20px rgba(11,32,64,.12);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  padding-top: var(--total-offset);
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem; }

.page-section { padding: 5rem 0; }
.bg-tint      { background: var(--tint); }
.bg-dark      { background: var(--navy); }

.section-rule {
  width: 48px; height: 3px;
  background: var(--orange);
  margin-bottom: 2rem;
  border-radius: 2px;
}
.section-rule.light { background: rgba(255,255,255,.4); }

.section-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.section-label.light { color: rgba(255,255,255,.5); }

.section-headline {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section-headline.light { color: #fff; }

.section-intro { margin-bottom: 3rem; }

.section-intro-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

.body-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.body-text {
  font-size: .975rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.body-text.light { color: rgba(255,255,255,.65); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .75rem 1.8rem;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-lg:hover {
  background: #B8460A;
  border-color: #B8460A;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,88,10,.25);
}

.btn-text-lg {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border: 2px solid var(--border);
  padding: .75rem 1.4rem;
  border-radius: var(--r-md);
  transition: all .2s;
}
.btn-text-lg:hover { border-color: var(--navy); color: var(--navy); background: var(--tint); }
.btn-arrow { transition: transform .2s; }
.btn-text-lg:hover .btn-arrow { transform: translateX(3px); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.35);
  padding: .65rem 1.4rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all .2s;
  margin-top: 1.5rem;
}
.btn-outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.07); }

.btn-header-cta {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .5rem 1.2rem;
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-header-cta:hover { background: #B8460A; color: #fff; }

/* ── UTILITY BAR ─────────────────────────────────────────────── */
.utility-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ub-h);
  background: var(--navy);
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: .72rem;
  font-weight: 500;
}
.ub-left { color: rgba(255,255,255,.45); display: flex; align-items: center; gap: .5rem; }
.ub-right { display: flex; align-items: center; gap: .75rem; }
.ub-right a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .72rem; transition: color .2s; }
.ub-right a:hover { color: rgba(255,255,255,.9); }
.ub-sep { color: rgba(255,255,255,.2); }

/* ── SITE HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--ub-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-nav); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { display: flex; align-items: center; }
.lm-hex {
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: .01em;
}
.logo-name strong { font-weight: 700; color: var(--orange); }
.logo-sub {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .15rem;
}

/* Primary nav */
.primary-nav { flex: 1; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  height: var(--nav-h);
}
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: 0 .85rem;
  height: 100%;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-item:hover > .nav-link {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.nav-caret { font-size: .55rem; color: var(--text-muted); margin-top: .1rem; }

/* Megamenu panel */
.mega-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 40px rgba(11,32,64,.12);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  z-index: 999;
}
.nav-item.has-mega:hover .mega-panel { display: block; }
.mega-inner { display: flex; gap: 0; padding: 2rem 0; }
.mega-col {
  flex: 1;
  padding: 0 1.5rem;
  border-right: 1px solid var(--border-lt);
}
.mega-col:last-child { border-right: none; }
.mega-heading {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .8rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border-lt);
}
.mega-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 0;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .15s;
  border-bottom: none;
}
.mega-link:hover { color: var(--orange); }
.ml-icon {
  width: 22px; height: 22px;
  border-radius: var(--r-sm);
  font-size: .6rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-featured { background: var(--tint); border-radius: var(--r-md); padding: 1.2rem 1.4rem; }
.mega-featured-card { display: flex; flex-direction: column; gap: .4rem; }
.mfc-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.mfc-title {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.mfc-desc {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.mfc-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-top: .3rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: var(--white);
  z-index: 2000;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mn-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
}
.mn-title { font-family: var(--sans); font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; }
.mn-close { background: rgba(255,255,255,.1); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: .85rem; }
.mn-body { flex: 1; padding: 1rem 0; }
.mn-section { padding: .5rem 0; border-bottom: 1px solid var(--border-lt); }
.mn-section:last-child { border-bottom: none; }
.mn-label { padding: .6rem 1.5rem .3rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.mn-section a { display: block; padding: .55rem 1.5rem; font-size: .9rem; color: var(--text-mid); transition: all .15s; }
.mn-section a:hover { color: var(--orange); background: var(--tint); }
.mn-cta { background: var(--orange) !important; color: #fff !important; border-radius: var(--r-md); margin: 1rem 1.5rem; font-weight: 700 !important; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(11,32,64,.5); z-index: 1999; }
.mobile-overlay.open { display: block; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-lt) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-lt) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .5;
}
.hero-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #E87030 40%, var(--navy) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.hk-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 1.4rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.2rem;
}

.hero-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Hero sidebar — quick links */
.hero-quick-links {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hql-title {
  padding: .85rem 1.2rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hql-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.2rem;
  border-bottom: 1px solid var(--border-lt);
  text-decoration: none;
  transition: background .15s;
}
.hql-item:last-child { border-bottom: none; }
.hql-item:hover { background: var(--white); }
.hql-item:hover .hql-arrow { transform: translateX(3px); color: var(--hql-color); }
.hql-abbr {
  width: 30px; height: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hql-color, var(--navy));
  flex-shrink: 0;
}
.hql-name { flex: 1; font-size: .875rem; font-weight: 600; color: var(--text-dark); }
.hql-arrow { font-size: .75rem; color: var(--text-muted); transition: transform .2s, color .2s; }

/* Hero metrics bar */
.hero-metrics-bar {
  background: var(--navy);
  margin-top: 4rem;
}
.hmb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.hmb-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .6rem 2rem;
  flex: 1;
  min-width: 160px;
}
.hmb-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hmb-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hmb-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* ── ABOUT ─────────────────────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 200px 1fr; gap: 4rem; }
.about-label-col { padding-top: .4rem; }
.about-content-col {}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.5rem;
  background: var(--tint);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pillar-icon { font-size: 1.3rem; margin-bottom: .5rem; color: var(--orange); }
.pillar-title { font-family: var(--serif); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.pillar-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ── DIVISIONS GRID ─────────────────────────────────────────── */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.div-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-decoration: none;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.div-tile:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: var(--tile-accent, var(--orange));
}
.dt-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tile-accent, var(--orange));
}
.featured-tile {
  background: var(--tile-bg, var(--tint));
  border-color: var(--tile-accent);
}
.dt-featured-badge {
  position: absolute;
  top: .9rem; right: .9rem;
  background: var(--orange);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 100px;
}
.dt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .4rem; }
.dt-number {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dt-abbr {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dt-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.dt-desc { font-size: .855rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.dt-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-top: .2rem; }
.dt-tags span {
  background: var(--tint);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 100px;
}
.dt-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--tile-accent, var(--orange));
  margin-top: .3rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s;
}
.div-tile:hover .dt-link { gap: .5rem; }

/* ── PIPELINE ──────────────────────────────────────────────── */
.pipeline-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.pipeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pipeline-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-inline: .5rem;
}
.pc-arrow { font-size: 1.2rem; color: var(--border); }
.pc-stage-num {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .2rem;
}
.pc-icon-wrap { margin-bottom: .2rem; }
.pc-icon { font-size: 1.6rem; }
.pc-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.pc-desc { font-size: .845rem; color: var(--text-mid); line-height: 1.6; flex: 1; }
.pc-sources { display: flex; flex-direction: column; gap: .3rem; margin-top: .2rem; }
.pc-src {
  font-size: .77rem;
  color: var(--text-muted);
  padding-left: .9rem;
  position: relative;
}
.pc-src::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.pc-div-badge {
  display: inline-block;
  background: var(--pb-bg, #FDF2EA);
  color: var(--pb-color, var(--orange));
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-top: .4rem;
  align-self: flex-start;
}

/* ── FINANCIAL VISION ─────────────────────────────────────── */
.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.revenue-phases { display: flex; flex-direction: column; gap: 1.5rem; }
.rev-phase { display: flex; flex-direction: column; gap: .5rem; }
.rp-period {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.rp-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  overflow: hidden;
}
.rp-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 100px;
  transition: width .8s ease;
}
.rp-details { display: flex; flex-direction: column; gap: .15rem; }
.rp-amount {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.rp-sources { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ── FUNDING ECOSYSTEM ─────────────────────────────────────── */
.funding-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.fc-heading {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
}
.fc-flag { font-size: .9rem; }
.funding-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.funding-list li {
  font-size: .855rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.funding-list li::before { content: '▸'; position: absolute; left: 0; color: var(--orange); font-size: .65rem; top: .2em; }

/* IPO stages */
.ipo-stages { display: flex; flex-direction: column; gap: .8rem; }
.ipo-stage {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.is-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.is-title { font-size: .855rem; font-weight: 700; color: var(--navy); }
.is-desc { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

/* ── CAMPUS ─────────────────────────────────────────────────── */
.campus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.campus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
}
.cc-phase-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.cc-size {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: .3rem;
}
.cc-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .7rem;
}
.cc-desc { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.cc-features { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.cc-features li { font-size: .8rem; color: var(--text-muted); padding-left: .9rem; position: relative; }
.cc-features li::before { content: '—'; position: absolute; left: 0; color: var(--orange); font-size: .7rem; }

/* ── GOVERNANCE ─────────────────────────────────────────────── */
.governance-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.gov-bodies { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.gb-item { padding: 1.2rem 1.4rem; background: var(--tint); border-radius: var(--r-md); border-left: 3px solid var(--orange); }
.gb-title { font-family: var(--serif); font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.gb-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

.org-chart { background: var(--tint); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem; }
.oc-top { display: flex; justify-content: center; margin-bottom: .75rem; }
.oc-branch-line { width: 1px; height: 24px; background: var(--border); margin: 0 auto .75rem; }
.oc-row { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.oc-role {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: .75rem 1rem;
  min-width: 100px;
  flex: 1;
  text-align: center;
}
.oc-role.top-role {
  border-radius: 0 0 var(--r-md) var(--r-md);
  background: var(--navy);
  border-color: var(--navy);
  padding: 1rem 1.4rem;
  min-width: 240px;
  flex: none;
}
.oc-role.top-role .ocr-title { color: #fff; }
.oc-role.top-role .ocr-sub { color: rgba(255,255,255,.55); }
.ocr-title { font-family: var(--sans); font-size: .82rem; font-weight: 700; color: var(--navy); }
.ocr-sub { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; line-height: 1.4; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.cil-item { padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-lt); }
.cil-item:last-child { border-bottom: none; }
.cil-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .25rem; }
.cil-value { font-size: .95rem; color: var(--text-dark); font-weight: 500; }
.cil-value a { color: var(--navy); font-weight: 600; }
.cil-value a:hover { color: var(--orange); }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.contact-card-header {
  background: var(--navy);
  padding: 2rem;
}
.cch-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: .4rem; }
.cch-sub { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.contact-card > .btn-primary-lg { margin: 1.5rem; }

.contact-card-divs { padding: 0 1.5rem 1.5rem; }
.ccd-title { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; }
.ccd-grid { display: flex; flex-direction: column; gap: .35rem; }
.ccd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .85rem;
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  font-size: .845rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: all .15s;
  border-left: 2px solid var(--ccd-color, var(--orange));
}
.ccd-item:hover { background: var(--tint); color: var(--ccd-color, var(--orange)); border-color: var(--ccd-color, var(--orange)); }

/* ── SITE FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-main { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-main-inner {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer-hex { font-size: 1.6rem; color: var(--orange); }
.footer-name { font-family: var(--serif); font-size: 1rem; color: #fff; }
.footer-name strong { color: var(--orange); }
.footer-fullname { font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .1rem; }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: all .2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-col .fc-title {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col a {
  display: block;
  font-size: .845rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
  text-decoration: none;
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .72rem;
  color: rgba(255,255,255,.28);
}
.fb-links { display: flex; gap: 1.5rem; }
.fb-links a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .15s; }
.fb-links a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .mega-panel { display: none !important; }

  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-sidebar { order: -1; }
  .hero-quick-links { display: grid; grid-template-columns: repeat(2,1fr); }
  .hql-item { border-bottom: 1px solid var(--border-lt); }

  .about-layout { grid-template-columns: 1fr; gap: 0; }
  .about-label-col { margin-bottom: .5rem; }

  .divisions-grid { grid-template-columns: 1fr 1fr; }

  .pipeline-grid { grid-template-columns: 1fr; gap: 0; }
  .pipeline-connector { display: none; }
  .pipeline-card { border-radius: 0; border-top: none; border-left: 3px solid var(--orange); margin-bottom: 1px; }
  .pipeline-card:first-child { border-top: 3px solid var(--orange); border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .pipeline-card:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }

  .vision-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .funding-grid { grid-template-columns: 1fr; }
  .campus-grid { grid-template-columns: 1fr; }
  .governance-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { padding-top: calc(var(--ub-h) + var(--nav-h)); }
  .ub-left span:not(:first-child) { display: none; }
  .container { padding-inline: 1.2rem; }
  .page-section { padding: 3.5rem 0; }

  .hero-layout { padding-top: 3rem; }
  .hero-quick-links { grid-template-columns: 1fr; }
  .hmb-inner { gap: 0; }
  .hmb-item { padding: .5rem 1rem; min-width: 120px; }
  .hmb-divider { display: none; }

  .divisions-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }

  .footer-main-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .fb-links { flex-wrap: wrap; gap: 1rem; }
}
