:root {
  --ink: #081b46;
  --muted: #5b6680;
  --cream: #f4f7fb;
  --paper: #ffffff;
  --green: #071d55;
  --mint: #f47b20;
  --line: rgba(7, 29, 85, 0.13);
  --shadow: 0 20px 60px rgba(7, 29, 85, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 16px 0;
  transition: background .25s, box-shadow .25s;
}
header.scrolled {
  background: rgba(247, 245, 239, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.03em; font-size: 1.1rem; }
.header-logo { display: block; width: clamp(155px, 19vw, 228px); height: auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 11px;
  color: var(--green);
  background: var(--mint);
  font-size: 1rem;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 10px 14px; color: var(--muted); font-size: .92rem; font-weight: 600; border-radius: 999px; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(255,255,255,.62); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; color: var(--ink); }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px; background: currentColor; transition: .25s; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
}
.hero-ai-field { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; opacity: .88; }
.hero-grid { position: relative; z-index: 1; }
.hero-copy { position: relative; }
.hero-copy::after { content: ""; position: absolute; z-index: -1; width: 320px; height: 320px; left: -110px; top: 8%; background: radial-gradient(circle, rgba(255,255,255,.88), rgba(255,255,255,0) 70%); pointer-events: none; }
.hero::after { content: ""; position: absolute; z-index: 0; top: 0; bottom: 0; width: 34%; left: -34%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(244,123,32,.055), rgba(255,255,255,.18), transparent); transform: skewX(-18deg); animation: ai-scan 7s ease-in-out infinite; }
@keyframes ai-scan { 0%, 12% { left: -38%; opacity: 0; } 28% { opacity: 1; } 70% { opacity: .8; } 88%, 100% { left: 112%; opacity: 0; } }
.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -180px;
  top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,.25), rgba(244,123,32,0) 68%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--mint); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(2.75rem, 5.6vw, 5.3rem); line-height: .98; letter-spacing: -.06em; }
h1 span { color: var(--green); }
.hero-copy > p { max-width: 590px; margin-bottom: 32px; color: var(--muted); font-size: 1.08rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 20px; border-radius: 999px; font-weight: 750; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--green); box-shadow: 0 12px 30px rgba(7,29,85,.24); }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.5); }

.hero-card {
  position: relative;
  min-height: 460px;
  padding: 0;
  overflow: hidden;
  color: white;
  background: var(--green);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 44%, rgba(7,29,85,.94) 100%); }
.hero-card > img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: 63% center; display: block; }
.hero-badge { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 2; display: flex; align-items: center; gap: 13px; text-align: left; }
.hero-badge strong { display: block; font-size: 1rem; }
.hero-badge span { display: block; color: rgba(255,255,255,.72); font-size: .78rem; }
.hero-badge-mark { display: grid; place-items: center; flex: 0 0 48px; height: 48px; color: white; background: var(--mint); border-radius: 15px; font-weight: 900; }
.card-label { color: rgba(255,255,255,.62); font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; }
.metric { margin-top: 45px; font-size: clamp(4.2rem, 8vw, 7rem); font-weight: 800; line-height: 1; letter-spacing: -.07em; }
.metric sup { color: var(--mint); font-size: .35em; letter-spacing: 0; }
.hero-card p { max-width: 270px; color: rgba(255,255,255,.72); }
.mini-grid { position: absolute; inset: auto 34px 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; z-index: 1; }
.mini { padding: 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.mini strong { display: block; font-size: 1.4rem; }
.mini span { color: rgba(255,255,255,.62); font-size: .78rem; }

section { padding: 110px 0; scroll-margin-top: 60px; }
.section-head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.section-head h2 { margin-bottom: 0; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.055em; }
.section-head p { max-width: 520px; justify-self: end; margin-bottom: 4px; color: var(--muted); }

.about { background: var(--paper); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s, box-shadow .25s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 54px; color: var(--green); background: var(--mint); border-radius: 15px; font-size: 1.2rem; font-weight: 900; }
.value-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }
.centre-showcase { display: grid; grid-template-columns: .7fr 1.3fr; gap: 28px; align-items: stretch; margin-top: 28px; padding: 28px; color: white; background: var(--green); border-radius: 30px; overflow: hidden; }
.bunting-frame { min-height: 430px; overflow: hidden; background: white; border-radius: 20px; }
.bunting-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.showcase-copy { align-self: center; padding: 32px; }
.showcase-copy .eyebrow { color: var(--mint); }
.showcase-copy h3 { max-width: 600px; margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.02; letter-spacing: -.05em; }
.showcase-copy p { max-width: 590px; color: rgba(255,255,255,.7); }
.showcase-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.showcase-points span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .75rem; }
.excellence { background: #edf2f8; }
.excellence-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.excellence-card { min-height: 310px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 12px 36px rgba(7,29,85,.06); transition: transform .25s, box-shadow .25s; }
.excellence-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.excellence-card.featured { color: white; background: var(--green); border-color: var(--green); }
.excellence-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 45px; color: var(--green); background: rgba(244,123,32,.18); border-radius: 16px; }
.excellence-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.excellence-card.featured .excellence-icon { color: white; background: var(--mint); }
.excellence-card > span { color: var(--mint); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.excellence-card h3 { margin: 10px 0 12px; font-size: 1.45rem; }
.excellence-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.excellence-card.featured p { color: rgba(255,255,255,.68); }
.coe-card { padding: 0; overflow: hidden; }
.coe-image { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--green); }
.coe-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(7,29,85,.62)); }
.coe-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.coe-card:hover .coe-image img { transform: scale(1.035); }
.coe-content { padding: 27px 28px 30px; }
.coe-content > span { color: var(--mint); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.coe-content h3 { max-width: 470px; margin: 10px 0 13px; font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.15; }
.coe-content p { min-height: 70px; }
.coe-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.coe-tags span { padding: 6px 9px; color: var(--green); background: #eef3f8; border-radius: 999px; font-size: .68rem; font-weight: 700; }
.news { background: var(--paper); }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.news-card { display: grid; grid-template-columns: 180px 1fr; min-height: 285px; overflow: hidden; background: var(--cream); border: 1px solid var(--line); border-radius: 24px; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-visual { position: relative; overflow: hidden; background: var(--green); }
.news-visual::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(7,29,85,.3)); pointer-events: none; }
.news-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform .45s ease; }
.news-card:hover .news-visual img { transform: scale(1.04); }
.news-content { display: flex; flex-direction: column; padding: 24px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 17px; color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.news-content h3 { margin-bottom: 11px; font-size: 1.18rem; line-height: 1.25; }
.news-content p { margin-bottom: 20px; color: var(--muted); font-size: .84rem; }
.news-content a { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--green); font-size: .78rem; font-weight: 800; }
.news-content a:hover { color: var(--mint); }
.contact { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-intro h2 { max-width: 520px; margin-bottom: 22px; font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: .98; letter-spacing: -.06em; }
.contact-intro > p { max-width: 520px; color: var(--muted); }
.contact-options { display: grid; gap: 14px; margin-top: 38px; }
.contact-option { display: flex; align-items: flex-start; gap: 15px; padding: 17px; border: 1px solid var(--line); border-radius: 17px; }
.contact-option > span { display: grid; place-items: center; flex: 0 0 38px; height: 38px; color: white; background: var(--green); border-radius: 12px; font-size: .7rem; font-weight: 800; }
.contact-option > span svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-option strong { display: block; margin-bottom: 2px; }
.contact-option p { margin: 0; color: var(--muted); font-size: .82rem; }
.contact-form { display: grid; gap: 18px; padding: 32px; background: var(--cream); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 7px; }
.form-row label { font-size: .76rem; font-weight: 800; }
.form-row input, .form-row select, .form-row textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: .9rem; outline: none; transition: border-color .2s, box-shadow .2s; }
.form-row textarea { resize: vertical; min-height: 125px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--mint); box-shadow: 0 0 0 3px rgba(244,123,32,.15); }
.contact-form .button { justify-self: start; border: 0; cursor: pointer; }
.form-status { min-height: 24px; margin: 0; color: var(--green); font-size: .82rem; font-weight: 700; }

.org-chart { --org-line: #9aaba6; position: relative; text-align: center; }
.org-chart > *:not(.org-reporting-lines) { position: relative; z-index: 1; }
.org-reporting-lines { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.report-line { fill: none; stroke: var(--org-line); stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.report-line { marker-end: url(#org-arrow-solid); }
#org-arrow-solid path { fill: var(--org-line); }
.org-level { display: flex; justify-content: center; }
.org-card { position: relative; overflow: hidden; text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 24px rgba(18,55,47,.06); }
.org-card.leadership { width: min(100%, 620px); }
.org-card-head { display: flex; align-items: center; gap: 14px; padding: 16px 20px; color: white; background: var(--accent, var(--green)); }
.org-icon { display: grid; place-items: center; flex: 0 0 48px; height: 48px; border-radius: 15px; color: var(--accent, var(--green)); background: white; font-size: 1.25rem; font-weight: 900; }
.org-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.org-card h3 { margin: 0; font-size: 1.05rem; line-height: 1.2; letter-spacing: -.02em; }
.org-card-head span { display: block; margin-top: 3px; color: rgba(255,255,255,.78); font-size: .76rem; }
.org-card-body { padding: 17px 20px 19px; color: var(--muted); font-size: .84rem; }
.org-card-body p { margin: 0; }
.org-card-body ul { margin: 0; padding-left: 18px; }
.org-card-body li + li { margin-top: 5px; }
.org-note { display: inline-block; margin-bottom: 8px; padding: 4px 9px; color: var(--accent); background: #eef3f1; border-radius: 999px; font-size: .7rem; font-weight: 800; }
.org-line-space { height: 30px; }
.org-line-space.reporting-gap { height: 68px; }
.org-row { position: relative; display: grid; gap: 18px; padding-top: 30px; }
.org-row::before { content: ""; position: absolute; top: 0; height: 1px; background: var(--org-line); }
.org-row > .org-card::before { content: ""; position: absolute; left: 50%; bottom: 100%; width: 1px; height: 30px; background: var(--org-line); }
.org-row.operations { grid-template-columns: repeat(3, 1fr); }
.org-row.operations { padding-top: 0; }
.org-row.operations::before, .org-row.operations > .org-card::before { display: none; }
.org-row.pillars { grid-template-columns: repeat(4, 1fr); }
.org-row.pillars::before { left: 12.5%; right: 12.5%; }
.org-row.pillars .org-card-head { padding: 14px 16px; }
.org-row.pillars .org-card-body { padding: 16px; }
.org-row.pillars .org-icon { flex-basis: 42px; height: 42px; }
.org-row.pillars h3 { font-size: .94rem; }
.org-card[data-org-role="director"] { --accent: #071d55 !important; }
.org-level:nth-of-type(3) .org-card { --accent: #f47b20 !important; }
.org-row.operations .org-card:nth-child(1), .org-row.operations .org-card:nth-child(3) { --accent: #0b2f73 !important; }
.org-row.operations .org-card:nth-child(2) { --accent: #e96816 !important; }
.org-row.pillars .org-card:nth-child(odd) { --accent: #071d55 !important; }
.org-row.pillars .org-card:nth-child(even) { --accent: #f47b20 !important; }

.services { color: white; background: var(--green); background-image: radial-gradient(circle at 8% 18%, rgba(244,123,32,.17), transparent 28%); }
.services .eyebrow { color: var(--mint); }
.services .section-head p { color: rgba(255,255,255,.7); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 350px; padding: 30px; overflow: hidden; color: var(--ink); background: white; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; box-shadow: 0 16px 42px rgba(2,10,35,.18); transition: transform .25s, box-shadow .25s; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--accent); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-number { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 45px; color: white; background: var(--accent); border-radius: 15px; font-weight: 900; }
.service-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.service-card > span { color: var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-card ul { margin: 24px 0 0; padding-left: 19px; color: var(--muted); font-size: .9rem; }
.service-card li + li { margin-top: 8px; }

.roadmap { color: white; background: var(--green); background-image: radial-gradient(circle at 90% 10%, rgba(244,123,32,.18), transparent 30%); }
.roadmap .eyebrow { color: var(--mint); }
.roadmap .section-head p { color: rgba(255,255,255,.65); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.timeline::before { content: ""; position: absolute; top: 30px; left: 4%; right: 4%; height: 1px; background: rgba(255,255,255,.18); }
.milestone { position: relative; padding-top: 66px; }
.dot { position: absolute; top: 22px; left: 24px; width: 17px; height: 17px; border: 4px solid var(--green); border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
.milestone-card { min-height: 230px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.07); }
.quarter { color: var(--mint); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.milestone h3 { margin: 16px 0 10px; }
.milestone p { color: rgba(255,255,255,.62); font-size: .88rem; }
.status { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: rgba(255,255,255,.8); font-size: .75rem; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.roadmap-explorer { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.roadmap-explorer.roadmap-image-view { grid-template-columns: 1fr; }
.roadmap-visual { position: relative; min-height: 660px; padding: 14px; overflow: hidden; background: #eaf4f8; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; }
.roadmap-visual img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 16px; }
.expand-roadmap { position: absolute; right: 28px; bottom: 28px; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; color: white; background: rgba(7,29,85,.92); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; cursor: pointer; box-shadow: 0 8px 24px rgba(7,29,85,.25); }
.roadmap-details { padding: 12px 0; }
.roadmap-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.roadmap-tab { padding: 10px 14px; color: rgba(255,255,255,.68); background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; cursor: pointer; font-weight: 700; font-size: .8rem; transition: .2s; }
.roadmap-tab:hover, .roadmap-tab.active { color: var(--green); background: var(--mint); border-color: var(--mint); }
.roadmap-panel { display: none; padding: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); border-radius: 24px; }
.roadmap-panel.active { display: block; animation: panel-in .35s ease; }
.roadmap-panel .panel-number { color: var(--mint); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.roadmap-panel h3 { margin: 12px 0 14px; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.05; }
.roadmap-panel > p { color: rgba(255,255,255,.68); }
.roadmap-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.roadmap-list li { position: relative; padding: 13px 14px 13px 40px; color: rgba(255,255,255,.8); background: rgba(255,255,255,.06); border-radius: 14px; font-size: .88rem; }
.roadmap-list li::before { content: ""; position: absolute; left: 16px; top: 19px; width: 8px; height: 8px; background: var(--mint); border-radius: 50%; }
.roadmap-dialog { width: min(1180px, calc(100% - 28px)); height: min(92vh, 940px); padding: 0; overflow: hidden; color: white; background: #071d55; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.roadmap-dialog::backdrop { background: rgba(3,10,30,.82); backdrop-filter: blur(7px); }
.dialog-bar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 14px 18px; background: #071d55; border-bottom: 1px solid rgba(255,255,255,.14); }
.zoom-controls { display: flex; gap: 7px; }
.zoom-controls button, .dialog-close { display: grid; place-items: center; min-width: 38px; height: 38px; padding: 0 11px; color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 11px; cursor: pointer; }
.dialog-canvas { height: calc(100% - 67px); overflow: auto; padding: 18px; text-align: center; background: #dfeff5; }
.dialog-canvas img { width: 100%; max-width: none; height: auto; display: block; margin: 0 auto; transition: width .2s ease; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

footer { padding: 34px 0; background: #05143b; color: rgba(255,255,255,.65); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .85rem; }
footer .brand { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 66px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-card { min-height: 400px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head p { justify-self: start; }
  .values { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .excellence-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .value-icon { margin-bottom: 32px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .milestone { padding: 0; }
  .dot { display: none; }
  .centre-showcase { grid-template-columns: .8fr 1.2fr; }
  .roadmap-explorer { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-visual { min-height: 580px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding-top: 115px; }
  h1 { font-size: clamp(3.05rem, 16vw, 4.6rem); }
  section { padding: 82px 0; }
  .hero-card { min-height: 430px; padding: 0; border-radius: 28px; }
  .hero-card > img { min-height: 430px; }
  .mini-grid { inset: auto 26px 26px; }
  .org-row.operations, .org-row.pillars { grid-template-columns: 1fr; padding-top: 0; }
  .org-row::before, .org-row > .org-card::before { display: none; }
  .org-line-space { height: 20px; }
  .org-line-space.reporting-gap { height: 48px; }
  .org-card.leadership { width: calc(100% - 36px); }
  .org-row.operations { margin-inline: 18px; }
  .org-row { gap: 14px; }
  .centre-showcase { grid-template-columns: 1fr; padding: 16px; }
  .bunting-frame { min-height: 360px; }
  .showcase-copy { padding: 24px 10px 18px; }
  .roadmap-visual { min-height: 500px; padding: 8px; }
  .roadmap-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
  .roadmap-tab { flex: 0 0 auto; }
  .roadmap-panel { padding: 23px 18px; }
  .expand-roadmap { right: 18px; bottom: 18px; }
  .news-card { grid-template-columns: 1fr; }
  .news-visual { min-height: 180px; }
  .contact-form { padding: 23px 18px; }
  .timeline { grid-template-columns: 1fr; }
  .milestone-card { min-height: 0; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-ai-field { display: none; }
  .hero::after { display: none; }
}
