:root {
  --navy: #1a2b6d;
  --navy-deep: #101d50;
  --red: #e8442f;
  --red-dark: #cc3725;
  --gold: #e4aa3a;
  --ink: #12204d;
  --muted: #66708a;
  --paper: #ffffff;
  --soft: #f5f6fa;
  --warm: #fbf7ef;
  --line: #e2e5ee;
  --success: #147a43;
  --shadow: 0 20px 55px rgba(18, 32, 77, .12);
  --font-sans: "Segoe UI Variable", "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  --heading: var(--font-sans);
  --body: var(--font-sans);
  --type-display: clamp(2.875rem, 5vw, 4.375rem);
  --type-section: clamp(2.25rem, 4vw, 3.5rem);
  --type-subsection: clamp(2rem, 3vw, 2.75rem);
  --type-card-title: 1.375rem;
  --type-body: 1rem;
  --type-body-large: 1.0625rem;
  --type-small: .8125rem;
  --type-label: .6875rem;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; font-size: 100%; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: var(--type-body); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.motion-enabled main, .motion-enabled .site-footer { animation: page-enter .3s cubic-bezier(.22,.7,.25,1) both; }
.motion-enabled .site-header { animation: header-enter .3s ease-out both; }
.motion-enabled body.is-page-leaving > *:not(.page-loading-bar) { opacity: 0; transition: opacity .2s ease; }
.page-loading-bar { position: fixed; left: 0; top: 0; z-index: 1000; width: 100%; height: 3px; pointer-events: none; opacity: 0; background: var(--red); transform: scaleX(0); transform-origin: left; will-change: transform, opacity; }
.page-loading-bar.is-loading { opacity: 1; transform: scaleX(.08); }
.page-loading-bar.is-progressing { transform: scaleX(.82); transition: transform .65s cubic-bezier(.22,.7,.25,1); }
.page-loading-bar.is-arriving { opacity: 1; transform: scaleX(.82); }
.page-loading-bar.is-arriving.is-complete { opacity: 0; transform: scaleX(1); transition: transform .22s ease-out, opacity .16s .18s ease-out; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4, strong, .button { font-family: var(--heading); }
h1, h2, h3, h4 { font-weight: 750; text-wrap: balance; }
p { text-wrap: pretty; }
button, input, select, textarea { font: inherit; }
.container { width: min(1280px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-warm { background: var(--warm); }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 200; padding: 12px 16px; color: #fff; background: var(--red); border-radius: 8px; }
.skip-link:focus { top: 18px; }

.site-header { --scroll-progress: 0; position: sticky; top: 0; z-index: 100; color: #fff; background: rgba(26,43,109,.97); border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); transition: background .25s ease, box-shadow .25s ease; }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: linear-gradient(90deg, var(--red), #ff897a, var(--gold)); transform: scaleX(var(--scroll-progress)); transform-origin: left; }
.site-header.scrolled { background: rgba(16,29,80,.96); box-shadow: 0 12px 30px rgba(7,15,46,.14); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; transition: min-height .25s ease; }
.site-header.scrolled .nav-wrap { min-height: 66px; }
.brand { display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 9px; background: #fff; }
.brand img { width: 154px; height: 39px; object-fit: contain; transition: width .25s ease, height .25s ease; }
.site-header.scrolled .brand img { width: 140px; height: 35px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 8px; color: #fff; background: rgba(255,255,255,.1); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: var(--type-small); font-weight: 700; }
.first-home-visit .site-nav > a { animation: nav-item-enter .34s calc(.08s + var(--nav-index, 0) * 60ms) cubic-bezier(.22,.7,.25,1) both; }
.site-nav > a:not(.nav-cta) { position: relative; padding-block: 8px; color: #e4e8f4; transition: color .2s ease, transform .2s ease; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 99px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .25s cubic-bezier(.22,.7,.25,1); }
.site-nav > a:not(.nav-cta):hover, .site-nav > a[aria-current="page"] { color: #ff9d90; transform: translateY(-1px); }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 17px; border-radius: 8px; color: #fff; background: var(--red); box-shadow: 0 10px 24px rgba(232,68,47,.25); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.nav-cta:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 13px 27px rgba(232,68,47,.32); }

.motion-enabled .reveal-item { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.22,.7,.25,1), transform .6s cubic-bezier(.22,.7,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.motion-enabled .reveal-item.is-visible { opacity: 1; transform: translate(0, 0); }
.motion-enabled .page-hero-copy { animation: hero-content-enter .7s .08s cubic-bezier(.22,.7,.25,1) both; }
@keyframes page-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes header-enter { from { opacity: 0; } to { opacity: 1; } }
@keyframes nav-item-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-content-enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.eyebrow { margin-bottom: 12px; color: var(--red); font-size: var(--type-label); font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #ff9d90; }
.hero { min-height: max(680px, calc(100svh - 78px)); position: relative; display: flex; align-items: end; overflow: hidden; color: #fff; background: var(--navy-deep); }
.hero::after { display: none; }
.hero-video { --hero-duration: 18s; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform-origin: center; }
.hero-mobile-poster { display: none; }
.motion-enabled .hero-video { animation: hero-zoom var(--hero-duration) ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 22% 75%, rgba(10,20,60,.72), rgba(16,29,80,.28) 38%, transparent 68%), linear-gradient(90deg, rgba(16,29,80,.28), transparent 72%); }
.hero-copy { position: relative; z-index: 2; width: min(1600px, calc(100% - 96px)); padding: 92px 0 76px; }
.hero-copy-card { width: min(640px, 52vw); padding: 31px 34px 34px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(16,29,80,.58); box-shadow: 0 24px 70px rgba(8,18,55,.18); backdrop-filter: blur(9px); }
.motion-enabled .hero-copy-card > .eyebrow, .motion-enabled .hero-copy-card > h1, .motion-enabled .hero-copy-card > p, .motion-enabled .hero-copy-card > .hero-actions { opacity: 0; transform: translateY(18px); }
.motion-enabled .hero.is-ready .hero-copy-card > .eyebrow { animation: hero-step-in .36s .3s cubic-bezier(.22,.7,.25,1) forwards; }
.motion-enabled .hero.is-ready .hero-copy-card > h1 { animation: hero-step-in .5s .5s cubic-bezier(.22,.7,.25,1) forwards; }
.motion-enabled .hero.is-ready .hero-copy-card > p { animation: hero-step-in .4s .7s cubic-bezier(.22,.7,.25,1) forwards; }
.motion-enabled .hero.is-ready .hero-copy-card > .hero-actions { animation: hero-step-in .4s .9s cubic-bezier(.22,.7,.25,1) forwards; }
.hero h1 { max-width: 620px; margin-bottom: 20px; font-size: var(--type-display); line-height: 1.02; letter-spacing: -.04em; }
.hero h1 em { color: #ff725f; font-style: normal; }
.hero p { max-width: 560px; margin-bottom: 0; color: #e7eaf5; font-size: var(--type-body-large); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-proof { position: absolute; right: 5%; top: 24px; z-index: 2; padding: 16px 19px; border: 1px solid rgba(255,255,255,.18); border-radius: 11px; background: rgba(16,29,80,.58); backdrop-filter: blur(10px); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof span { margin-top: 3px; color: #bbc4df; font-size: var(--type-label); }
@keyframes hero-step-in { to { opacity: 1; transform: translateY(0); } }
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.05); } }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 13px 19px; border: 0; border-radius: 8px; font-size: var(--type-small); font-weight: 750; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active, .nav-cta:active { transform: scale(.97); }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 12px 28px rgba(232,68,47,.25); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.button-secondary:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.16); }
.button-navy { color: #fff; background: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-weight: 750; }

.partner-marquee { padding: 25px 0 31px; overflow: hidden; border-block: 1px solid var(--line); background: #f7f8fc; }
.partner-marquee-heading { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0 auto 19px; }
.partner-marquee-heading p { margin: 0; color: var(--navy); font: 750 var(--type-label)/1.2 var(--heading); letter-spacing: .15em; text-transform: uppercase; }
.canada-flag { width: 25px; height: 16px; display: block; flex: 0 0 25px; overflow: hidden; border: 1px solid rgba(26,43,109,.12); border-radius: 2px; background: #fff; box-shadow: 0 1px 3px rgba(18,32,77,.1); }
.canada-flag img { width: 100%; height: 100%; display: block; object-fit: cover; }
.partner-marquee-window { position: relative; overflow: hidden; padding-block: 5px; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%); }
.partner-marquee-window::before, .partner-marquee-window::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: clamp(28px, 7vw, 120px); pointer-events: none; }
.partner-marquee-window::before { left: 0; background: linear-gradient(90deg, #f7f8fc, rgba(247,248,252,0)); }
.partner-marquee-window::after { right: 0; background: linear-gradient(270deg, #f7f8fc, rgba(247,248,252,0)); }
.partner-marquee-track { display: flex; width: max-content; will-change: transform; animation: partner-marquee 38s linear infinite; }
.partner-marquee-group { display: flex; flex-shrink: 0; align-items: center; gap: 46px; padding-right: 46px; }
.partner-logo { width: 184px; height: 86px; display: grid; flex: 0 0 184px; place-items: center; overflow: hidden; padding: 10px 14px; border: 1px solid transparent; border-radius: 12px; line-height: 0; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.partner-logo img { display: block; width: 152px; height: 52px; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; filter: grayscale(1); opacity: .68; transform: scale(1); transition: filter .3s ease, opacity .3s ease, transform .3s ease; }
.partner-logo-large { padding: 7px 8px; }
.partner-logo-large img { width: 166px; height: 60px; }
.partner-logo:hover, .partner-logo:focus-visible { border-color: rgba(26,43,109,.12); background: #fff; box-shadow: 0 10px 26px rgba(18,32,77,.08); }
.partner-logo:hover img, .partner-logo:focus-visible img { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
@keyframes partner-marquee { to { transform: translate3d(-50%, 0, 0); } }

.global-network { position: relative; isolation: isolate; overflow: hidden; padding: 98px 0 104px; background-color: #f7f8fc; background-image: radial-gradient(circle at 1px 1px, rgba(26,43,109,.07) 1.2px, transparent 1.3px); background-size: 26px 26px; }
.global-network::before { content: ""; position: absolute; z-index: -2; inset: 0; background: radial-gradient(circle at 12% 16%, rgba(232,68,47,.1), transparent 22%), radial-gradient(circle at 86% 78%, rgba(26,43,109,.1), transparent 27%), linear-gradient(180deg, rgba(247,248,252,.42), #f7f8fc 68%); }
.global-network-inner { position: relative; z-index: 2; }
.network-route { position: absolute; z-index: -1; width: 520px; height: 210px; border: 2px dashed rgba(232,68,47,.16); border-radius: 50%; pointer-events: none; }
.network-route::before, .network-route::after { content: ""; position: absolute; width: 9px; height: 9px; border: 3px solid #f7f8fc; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 1px rgba(232,68,47,.14); }
.network-route::before { left: 35px; top: 48px; }
.network-route::after { right: 52px; bottom: 31px; }
.network-route-one { left: -215px; top: 88px; transform: rotate(-19deg); }
.network-route-two { right: -170px; bottom: 130px; transform: rotate(17deg); }
.global-network-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: end; gap: 70px; margin-bottom: 40px; }
.global-network-heading h2 { margin: 0; font-size: var(--type-display); line-height: 1.02; letter-spacing: -.04em; }
.network-intro { display: grid; grid-template-columns: 1fr; align-items: center; gap: 22px; }
.network-intro > p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.7; }
.network-video-frame { position: relative; min-height: 230px; margin: 0; overflow: hidden; border: 1px solid rgba(26,43,109,.16); border-radius: 18px; background: var(--navy-deep); box-shadow: 0 18px 42px rgba(18,32,77,.16); }
.network-video-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 48%, rgba(8,17,48,.78)); }
.network-video-stack { position: absolute; inset: 0; }
.network-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 230px; display: block; object-fit: cover; opacity: 0; transition: opacity .65s ease-in-out; will-change: opacity; }
.network-video-frame video.is-active { opacity: 1; }
.network-video-frame figcaption { position: absolute; left: 20px; right: 20px; bottom: 17px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 18px; color: #fff; }
.network-video-frame figcaption span { color: #ff9d90; font-size: var(--type-label); font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.network-video-frame figcaption strong { font-size: .875rem; text-align: right; }
.passport-mark { width: 122px; height: 122px; display: grid; place-content: center; padding: 15px; color: var(--navy); border: 2px solid rgba(26,43,109,.2); border-radius: 50%; text-align: center; text-transform: uppercase; transform: rotate(7deg); box-shadow: inset 0 0 0 5px #f7f8fc, inset 0 0 0 6px rgba(232,68,47,.22); }
.passport-mark strong { color: var(--red); font-size: 1.5rem; letter-spacing: .08em; line-height: 1; }
.passport-mark span { margin-top: 5px; font-size: .625rem; font-weight: 750; letter-spacing: .1em; }
.passport-mark small { margin-top: 5px; color: var(--muted); font-size: .5625rem; letter-spacing: .08em; }
.country-tabs { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.country-pill-indicator { position: absolute; z-index: 0; display: block; border-radius: 999px; background: var(--navy); box-shadow: 0 12px 28px rgba(26,43,109,.18); pointer-events: none; will-change: transform; }
.country-tab { position: relative; z-index: 1; min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 9px 17px 9px 10px; color: var(--navy); border: 1px solid rgba(26,43,109,.13); border-radius: 999px; background: rgba(255,255,255,.88); box-shadow: 0 7px 18px rgba(18,32,77,.04); font-size: var(--type-small); font-weight: 750; cursor: pointer; transition: color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.country-tab img { width: 31px; height: 21px; border: 1px solid rgba(18,32,77,.12); border-radius: 4px; object-fit: cover; box-shadow: 0 2px 5px rgba(18,32,77,.12); }
.country-code { width: 31px; height: 31px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(232,68,47,.18); border-radius: 50%; background: rgba(232,68,47,.07); font-size: .6rem; font-weight: 850; letter-spacing: .06em; transition: color .22s ease, border-color .22s ease, background .22s ease; }
.country-tab:hover { border-color: rgba(232,68,47,.4); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(18,32,77,.08); }
.country-tab.is-active { color: #fff; border-color: transparent; background: transparent; box-shadow: none; }
.country-tab.is-active .country-code { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }
.country-tab:focus-visible { outline: 3px solid rgba(228,170,58,.55); outline-offset: 3px; }
.global-network-panel { min-height: 430px; padding: 31px; border: 1px solid rgba(26,43,109,.1); border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: 0 22px 60px rgba(18,32,77,.09); transition: opacity .15s ease-out, transform .15s ease-out; }
.global-network-panel.is-changing { opacity: 0; transform: translateY(12px); }
.network-panel-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 23px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.network-panel-heading span { color: var(--red); font-size: var(--type-label); font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.network-panel-heading h3 { margin: 7px 0 0; font-size: 1.5rem; line-height: 1.2; letter-spacing: -.02em; }
.network-panel-heading > p { margin: 0; color: var(--muted); font-size: .75rem; font-weight: 700; }
.global-logo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 13px; }
.global-logo-card { min-width: 0; min-height: 155px; display: flex; align-items: center; justify-content: space-between; padding: 20px 15px 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; text-align: center; flex-direction: column; animation: network-card-in .42s both; animation-delay: var(--delay, 0ms); transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease; }
.global-logo-card:hover { border-color: rgba(232,68,47,.25); transform: translateY(-4px); box-shadow: 0 13px 27px rgba(18,32,77,.08); }
.global-logo-card img { width: auto; max-width: 100%; height: auto; max-height: 70px; object-fit: contain; }
.home-ossd-highlight { padding: 58px 0; background: #eaf6fc; }
.home-ossd-card { display: grid; grid-template-columns: minmax(380px, .95fr) minmax(0, 1.05fr); min-height: 390px; overflow: hidden; border: 1px solid rgba(26,43,109,.12); border-radius: 24px; background: #fff; box-shadow: 0 22px 55px rgba(18,32,77,.11); }
.home-ossd-media { position: relative; min-height: 390px; margin: 0; overflow: hidden; background: var(--navy); }
.home-ossd-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,17,48,.72)); pointer-events: none; }
.home-ossd-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 58% center; transition: transform .6s cubic-bezier(.22,.7,.25,1); }
.home-ossd-card:hover .home-ossd-media img { transform: scale(1.025); }
.home-ossd-media figcaption { position: absolute; left: 24px; bottom: 20px; z-index: 1; color: #fff; font-size: .6875rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.home-ossd-content { position: relative; display: flex; align-items: flex-start; justify-content: center; padding: clamp(36px, 5vw, 66px); flex-direction: column; }
.home-ossd-content::after { content: "OSSD"; position: absolute; right: -12px; bottom: -27px; color: rgba(135,191,223,.13); font: 750 7rem/1 var(--heading); letter-spacing: -.05em; pointer-events: none; }
.home-ossd-copy, .home-ossd-link { position: relative; z-index: 1; }
.home-ossd-copy .eyebrow { margin-bottom: 7px; }
.home-ossd-copy h2 { margin: 0 0 13px; color: var(--navy); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.04; letter-spacing: -.035em; }
.home-ossd-copy p { max-width: 680px; margin: 0; color: #526079; line-height: 1.65; }
.home-ossd-link { margin-top: 26px; color: #fff; background: #ee3541; box-shadow: 0 12px 28px rgba(238,53,65,.2); white-space: nowrap; }
.home-ossd-link:hover { background: #d92935; }
.global-logo-card p { margin: 16px 0 0; color: #4f5973; font-size: .75rem; font-weight: 700; line-height: 1.4; }
@keyframes network-card-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 45px; }
.section-heading h2, .content-heading { margin-bottom: 0; font-size: var(--type-section); line-height: 1.06; letter-spacing: -.035em; }
.section-heading > p { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.7; }
.why-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f7f8fc 0%, #fff 100%); }
.why-section::before { content: ""; position: absolute; left: -250px; bottom: -380px; width: 720px; height: 720px; pointer-events: none; border: 1px solid rgba(26,43,109,.055); border-radius: 50%; box-shadow: 0 0 0 90px rgba(26,43,109,.018), 0 0 0 180px rgba(26,43,109,.012); }
.why-section .container { position: relative; z-index: 1; }
.feature-showcase { display: grid; grid-template-columns: minmax(390px, .82fr) minmax(0, 1.18fr); min-height: 650px; overflow: hidden; border-radius: 30px; background: var(--navy-deep); box-shadow: 0 30px 72px rgba(12,25,68,.18); }
.why-content { display: flex; min-width: 0; padding: clamp(44px, 5vw, 68px) clamp(36px, 4.5vw, 64px); flex-direction: column; justify-content: space-between; }
.why-heading .eyebrow { color: #ff7968; }
.why-heading h2 { max-width: 560px; margin: 14px 0 23px; color: #fff; font-size: clamp(2.75rem, 4.5vw, 4.75rem); line-height: .96; letter-spacing: -.055em; }
.why-heading p { max-width: 500px; margin: 0; color: #cbd3e9; font-size: .96rem; line-height: 1.72; }
.feature-visuals { position: relative; min-height: 650px; overflow: hidden; background: #0b173f; isolation: isolate; }
.feature-visuals::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 1px 0 rgba(255,255,255,.09); }
.feature-visual { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .42s ease, transform .72s cubic-bezier(.22,.7,.25,1), visibility 0s linear .42s; }
.feature-visual.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; }
.feature-visual::after { content: ""; position: absolute; inset: 34% 0 0; background: linear-gradient(180deg, transparent, rgba(7,17,50,.8)); pointer-events: none; }
.feature-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.feature-visual figcaption { position: absolute; left: clamp(25px, 4vw, 48px); right: clamp(25px, 4vw, 48px); bottom: clamp(24px, 4vw, 42px); z-index: 3; display: flex; align-items: center; gap: 14px; color: #fff; }
.feature-visual figcaption span { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(11,23,63,.38); backdrop-filter: blur(8px); font-size: .6875rem; font-weight: 800; }
.feature-visual figcaption strong { font-family: var(--heading); font-size: clamp(1.15rem, 1.8vw, 1.55rem); letter-spacing: -.015em; }
.feature-grid { display: grid; grid-template-columns: 1fr; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.14); }
.feature-card { position: relative; width: 100%; min-height: 0; display: grid; grid-template-columns: 34px minmax(0, 1fr) 32px; align-items: center; gap: 14px; padding: 19px 0; overflow: hidden; color: #fff; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); border-radius: 0; background: transparent; appearance: none; text-align: left; font: inherit; cursor: pointer; transition: padding .25s ease, background .25s ease; }
.feature-card::before { content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; border-radius: 4px; background: #ff7968; transform: scaleY(0); transition: transform .25s ease; }
.feature-card:hover, .feature-card.is-active { padding-left: 17px; background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 82%); }
.feature-card.is-active::before { transform: scaleY(1); }
.number-badge { display: block; width: auto; height: auto; color: #ff8e7f; background: transparent; font-size: .6875rem; font-weight: 800; letter-spacing: .08em; transition: color .25s ease; }
.feature-card.is-active .number-badge { color: #fff; background: transparent; transform: none; }
.feature-card-copy { display: block; }
.feature-card-copy strong { display: block; margin-bottom: 5px; font-family: var(--heading); font-size: 1.05rem; line-height: 1.22; letter-spacing: -.01em; }
.feature-card-copy > span { display: block; color: #aeb9d3; font-size: .79rem; line-height: 1.5; }
.feature-card-arrow { display: grid; width: 30px; height: 30px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; font-size: .85rem; opacity: .42; transform: rotate(0); transition: opacity .25s ease, transform .25s ease, color .25s ease, border-color .25s ease; }
.feature-card:hover .feature-card-arrow, .feature-card.is-active .feature-card-arrow { opacity: 1; transform: translate(0, 0); }
.feature-card.is-active .feature-card-arrow { color: #ff8e7f; border-color: rgba(255,142,127,.5); transform: rotate(45deg); }

.reach-band { position: relative; overflow: hidden; padding: 92px 0; color: #fff; background: linear-gradient(125deg, var(--navy-deep), var(--navy) 74%); }
.reach-band::before { content: ""; position: absolute; width: 520px; height: 520px; right: -250px; top: -330px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 74px rgba(255,255,255,.035), 0 0 0 148px rgba(255,255,255,.018); }
.reach-band::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,157,144,.65), transparent); }
.reach-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(280px, .7fr) minmax(560px, 1.3fr); align-items: center; gap: clamp(60px, 8vw, 118px); }
.reach-intro h2 { max-width: 510px; margin: 16px 0 20px; font-size: var(--type-section); line-height: 1.04; letter-spacing: -.04em; }
.reach-intro h2 em { color: #ff7968; font-style: normal; }
.reach-intro p { max-width: 440px; margin: 0; color: #cbd3e9; font-size: var(--type-body); line-height: 1.72; }
.reach-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.28); font-size: var(--type-small); font-weight: 750; }
.reach-link span { color: #ff9d90; transition: transform .2s ease; }
.reach-link:hover span { transform: translate(3px, -3px); }
.reach-network { position: relative; display: grid; grid-template-columns: minmax(210px, .82fr) minmax(300px, 1.18fr); align-items: center; gap: 62px; }
.reach-network::before { content: ""; position: absolute; left: calc(36% - 4px); top: 17%; bottom: 17%; width: 1px; background: rgba(255,255,255,.22); }
.reach-network::after { content: ""; position: absolute; left: calc(36% - 8px); top: 50%; width: 9px; height: 9px; border: 3px solid var(--navy); border-radius: 50%; background: #ff7968; transform: translateY(-50%); box-shadow: 0 0 0 5px rgba(255,121,104,.12); }
.reach-connections { display: grid; gap: 10px; }
.reach-card { position: relative; min-height: 98px; display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.065); backdrop-filter: blur(8px); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.reach-connections .reach-card::before { content: ""; position: absolute; right: 100%; top: 50%; width: 63px; height: 1px; background: rgba(255,255,255,.22); }
.reach-card:hover { border-color: rgba(255,157,144,.5); background: rgba(255,255,255,.105); transform: translateX(4px); }
.reach-card strong, .reach-card span, .reach-card small { display: block; }
.reach-card strong { font-size: 1.125rem; line-height: 1.2; }
.reach-card span:not(.reach-code):not(.reach-status) { margin-top: 4px; color: #bfc8e0; font-size: .6875rem; }
.reach-card small { margin-top: 5px; color: #fff; font-size: .75rem; line-height: 1.4; }
.reach-code { width: 43px; height: 43px; display: grid !important; place-items: center; color: #ff9d90; border: 1px solid rgba(255,157,144,.32); border-radius: 50%; font-size: .6875rem; font-weight: 800; letter-spacing: .09em; }
.reach-card-home { min-height: 250px; display: flex; align-items: stretch; justify-content: space-between; flex-direction: column; padding: 25px; border-color: rgba(255,157,144,.34); background: linear-gradient(145deg, rgba(232,68,47,.25), rgba(255,255,255,.09)); }
.reach-card-home:hover { transform: translateY(-4px); }
.reach-card-home .reach-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.reach-card-home strong { font-size: 1.75rem; }
.reach-card-home small { margin-top: 7px; color: #dce1ef; }
.reach-status { padding: 6px 9px; color: #fff; border-radius: 999px; background: rgba(232,68,47,.8); font-size: .625rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.reach-card-canada { background: rgba(255,255,255,.11); }

.process-section { position: relative; overflow: hidden; padding: 108px 0; background-color: #fbf8f2; background-image: radial-gradient(circle at 1px 1px, rgba(26,43,109,.075) 1px, transparent 1.2px); background-size: 24px 24px; }
.process-section::before { content: "06"; position: absolute; left: -32px; bottom: -112px; color: rgba(26,43,109,.035); font: 800 22rem/.8 var(--heading); letter-spacing: -.09em; pointer-events: none; }
.process-section::after { content: ""; position: absolute; right: -150px; top: -190px; width: 430px; height: 430px; border: 1px solid rgba(232,68,47,.12); border-radius: 50%; box-shadow: 0 0 0 54px rgba(232,68,47,.025); pointer-events: none; }
.process-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(620px, 1.28fr); gap: clamp(68px, 8vw, 118px); align-items: center; }
.process-intro h2 { margin: 16px 0 22px; font-size: var(--type-section); line-height: 1.04; letter-spacing: -.04em; }
.process-intro h2 em { color: var(--red); font-style: normal; }
.process-intro > p { max-width: 450px; margin-bottom: 22px; color: var(--muted); line-height: 1.72; }
.process-intro .text-link { gap: 9px; }
.process-intro .text-link span { transition: transform .2s ease; }
.process-intro .text-link:hover span { transform: translate(3px, -3px); }
.process-signpost { width: min(100%, 340px); display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 19px; border-top: 1px solid rgba(26,43,109,.16); }
.process-signpost strong { color: var(--navy); font-size: 1.15rem; letter-spacing: .06em; }
.process-signpost span { color: var(--muted); font-size: .625rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.process-list { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; left: 50%; top: 13%; bottom: 13%; width: 1px; background: rgba(26,43,109,.12); transform: translateX(-50%); }
.process-list li { position: relative; min-height: 148px; display: grid; grid-template-columns: 58px 1fr; align-items: start; gap: 18px; padding: 24px 22px; overflow: hidden; border: 1px solid rgba(26,43,109,.12); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 14px 34px rgba(18,32,77,.055); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.process-list li::after { content: ""; position: absolute; width: 70px; height: 70px; right: -38px; bottom: -38px; border: 1px solid rgba(232,68,47,.12); border-radius: 50%; transition: transform .3s ease; }
.process-list li:hover { z-index: 1; border-color: rgba(232,68,47,.3); box-shadow: 0 18px 38px rgba(18,32,77,.1); transform: translateY(-5px); }
.process-list li:hover::after { transform: scale(1.35); }
.process-number { width: 54px; height: 54px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(232,68,47,.28); border-radius: 50%; background: #fff7f4; box-shadow: 0 6px 16px rgba(232,68,47,.08); font-size: .8125rem; font-weight: 800; letter-spacing: .05em; }
.process-list li div { padding-top: 2px; }
.process-list li strong, .process-list li small { display: block; }
.process-list li strong { color: var(--ink); font-size: .9375rem; line-height: 1.35; }
.process-list li small { margin-top: 9px; color: var(--muted); font-size: .75rem; font-weight: 400; line-height: 1.55; }
.process-list li:first-child { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--navy-deep), var(--navy)); box-shadow: 0 18px 42px rgba(16,29,80,.2); }
.process-list li:first-child .process-number { color: #fff; border-color: rgba(255,157,144,.35); background: rgba(232,68,47,.25); }
.process-list li:first-child strong { color: #fff; }
.process-list li:first-child small { color: #cbd3e9; }
.process-list li:first-child::after { border-color: rgba(255,255,255,.13); box-shadow: 0 0 0 18px rgba(255,255,255,.025); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 14px 36px rgba(18,32,77,.07); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card-image { position: relative; height: 210px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card-image img { transform: scale(1.08); }
.news-card-tag { position: absolute; left: 16px; top: 16px; padding: 7px 9px; border-radius: 999px; color: #fff; background: var(--red); font-size: .625rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.news-card-body { padding: 24px; }
.news-card-body small { color: var(--red); font-size: .6875rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.news-card-body h3 { margin: 11px 0; font-size: 1.25rem; line-height: 1.3; }
.news-card-body p { color: var(--muted); font-size: .875rem; line-height: 1.65; }
.news-card-body a { display: inline-flex; align-items: center; gap: 3px; color: var(--navy); font-size: var(--type-small); font-weight: 750; }
.news-card-body a b { font-weight: inherit; transition: transform .22s ease-out; }
.news-card:hover .news-card-body a b, .news-card-body a:focus-visible b { transform: translateX(4px); }

.cta-band { padding: 70px 0; color: #fff; background: var(--navy); }
.cta-layout { display: grid; grid-template-columns: minmax(190px, .75fr) 2fr auto; align-items: center; gap: 34px; }
.cta-band small { color: #ff9d90; font-size: var(--type-label); font-weight: 750; text-transform: uppercase; letter-spacing: .14em; }
.cta-band h2 { margin-bottom: 0; font-size: var(--type-subsection); line-height: 1.15; letter-spacing: -.025em; }
.cta-animated-logo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: #080b14; box-shadow: 0 16px 35px rgba(3,8,28,.28); }
.cta-animated-logo img, .cta-animated-logo video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
.cta-animated-logo img { padding: 15%; object-fit: contain; background: #080b14; }
.cta-animated-logo video { opacity: 0; transition: opacity .35s ease; }
.cta-animated-logo video.is-playing { opacity: 1; }

.page-hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--navy-deep); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,29,80,.98), rgba(26,43,109,.84) 52%, rgba(26,43,109,.2)); }
.page-hero-copy { position: relative; z-index: 1; padding: 76px 0; }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: var(--type-display); line-height: 1.02; letter-spacing: -.04em; }
.page-hero p { max-width: 720px; margin-bottom: 0; color: #d8deef; font-size: var(--type-body-large); line-height: 1.7; }

.destination-seo-links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(26,43,109,.12); }
.destination-seo-links span { margin-right: 5px; color: var(--muted); font-size: var(--type-label); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.destination-seo-links a { min-height: 44px; display: inline-flex; align-items: center; padding: 9px 13px; color: var(--navy); border: 1px solid rgba(26,43,109,.14); border-radius: 8px; background: #fff; font-size: var(--type-small); font-weight: 750; transition: color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.destination-seo-links a:hover { color: var(--red); border-color: rgba(232,68,47,.35); box-shadow: 0 8px 20px rgba(18,32,77,.08); transform: translateY(-2px); }
.destination-hero::after { background: linear-gradient(90deg, rgba(16,29,80,.98), rgba(26,43,109,.8) 56%, rgba(26,43,109,.28)); }
.destination-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.destination-benefit-card { min-height: 285px; padding: 34px 30px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 30px rgba(18,32,77,.055); }
.destination-benefit-card span { color: var(--red); font-size: var(--type-label); font-weight: 800; letter-spacing: .13em; }
.destination-benefit-card h3 { margin: 62px 0 14px; color: var(--navy-deep); font-size: 1.45rem; line-height: 1.18; letter-spacing: -.02em; }
.destination-benefit-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.destination-process { padding: 86px 0; color: #fff; background: linear-gradient(125deg, var(--navy-deep), var(--navy)); }
.destination-process-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr); align-items: center; gap: clamp(55px, 8vw, 110px); }
.destination-process h2 { margin: 15px 0 20px; color: #fff; font-size: var(--type-section); line-height: 1.05; letter-spacing: -.04em; }
.destination-process p { max-width: 520px; margin: 0; color: #cbd3e9; line-height: 1.72; }
.destination-process ol { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); list-style: none; }
.destination-process li { display: grid; grid-template-columns: 125px minmax(0, 1fr); gap: 20px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.destination-process li strong { color: #ff9d90; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.destination-process li span { color: #e2e7f3; line-height: 1.55; }
.destination-related-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.destination-related-links a { min-height: 175px; display: flex; padding: 28px; color: #fff; border-radius: 15px; background: var(--navy); flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.destination-related-links a:hover { background: var(--navy-deep); box-shadow: 0 16px 34px rgba(18,32,77,.16); transform: translateY(-3px); }
.destination-related-links span { color: #ff9d90; font-size: var(--type-label); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.destination-related-links strong { margin-top: 19px; font-family: var(--heading); font-size: 1.65rem; }
.destination-related-links b { margin-top: auto; font-size: var(--type-small); }

.about-legacy { position: relative; isolation: isolate; padding: clamp(105px, 11vw, 155px) 0 125px; overflow: hidden; background: linear-gradient(155deg, #fff 0 64%, #f4f9fc 100%); }
.about-legacy .container, .purpose-spine .container { position: relative; z-index: 1; }
.about-accent, .collage-accent { position: absolute; pointer-events: none; opacity: .18; transform: translate3d(0, var(--parallax-y, 0px), 0); will-change: transform; }
.about-accent-circle { left: -170px; top: 12%; width: 420px; height: 420px; border: 82px solid #87bfdf; border-radius: 50%; }
.about-accent-arc { right: -120px; bottom: -190px; width: 430px; height: 430px; border: 74px solid #f2b705; border-radius: 50%; clip-path: inset(0 0 50% 0); }
.legacy-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); align-items: center; gap: clamp(60px, 8vw, 115px); }
.legacy-copy { position: relative; z-index: 2; }
.legacy-copy .eyebrow { margin-bottom: 22px; }
.legacy-copy h1 { max-width: 690px; margin: 0 0 31px; color: var(--navy-deep); font-size: clamp(3.2rem, 5.7vw, 5.75rem); line-height: .94; letter-spacing: -.06em; }
.legacy-lead { margin-bottom: 34px; color: #4f5c74; font-size: 1.02rem; line-height: 1.77; }
.legacy-who { max-width: 700px; padding: 24px 0 0 25px; border-left: 3px solid var(--red); }
.legacy-who h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.18rem; letter-spacing: -.01em; }
.legacy-who p { margin: 0; color: #657086; font-size: .9rem; line-height: 1.72; }
.legacy-contact { position: absolute; right: max(32px, calc((100vw - 1280px) / 2)); top: 32px; z-index: 5; width: 92px; height: 92px; display: grid; place-items: center; align-content: center; gap: 2px; color: #fff; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: var(--red); box-shadow: 0 15px 34px rgba(232,68,47,.25); font-size: .6875rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.legacy-contact b { font-size: 1rem; line-height: 1; }
.legacy-contact:hover { background: var(--red-dark); transform: translateY(-4px); box-shadow: 0 21px 40px rgba(232,68,47,.32); }
.legacy-collage { position: relative; min-height: 720px; }
.legacy-photo { position: absolute; z-index: 2; margin: 0; overflow: hidden; border-radius: 14px; background: #e9eef4; box-shadow: 0 22px 52px rgba(18,32,77,.16); }
.legacy-photo img { width: 100%; height: 100%; object-fit: cover; }
.legacy-photo-main { left: 0; top: 9%; width: 64%; height: 52%; }
.legacy-photo-advisory { right: 0; top: 0; width: 43%; height: 34%; }
.legacy-photo-campus { right: 2%; bottom: 10%; width: 48%; height: 34%; }
.legacy-photo-journey { left: 7%; bottom: 0; width: 37%; height: 27%; }
.collage-accent-blue { left: 37%; top: 34%; z-index: 1; width: 230px; height: 230px; border-radius: 50%; background: #87bfdf; }
.collage-accent-gold { right: 3%; bottom: 3%; z-index: 3; width: 150px; height: 150px; border: 34px solid #f2b705; border-radius: 50%; opacity: .16; }

.commitment-band { position: relative; padding: clamp(105px, 12vw, 155px) 0; overflow: hidden; background: #fff; }
.commitment-band::before { content: ""; position: absolute; left: 50%; top: 0; width: min(760px, 70vw); height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); transform: translateX(-50%); }
.commitment-band-inner { max-width: 760px; margin-inline: auto; text-align: center; }
.commitment-mark { position: relative; width: 44px; height: 44px; display: inline-block; margin-bottom: 20px; }
.commitment-mark i { position: absolute; width: 27px; height: 10px; display: block; transform: skewX(-28deg) rotate(-24deg); }
.commitment-mark i:first-child { left: 2px; top: 10px; background: var(--navy); }
.commitment-mark i:last-child { right: 1px; bottom: 9px; background: var(--red); }
.commitment-band-inner .eyebrow { margin-bottom: 15px; }
.commitment-band-inner h2 { margin: 0 0 25px; color: var(--navy-deep); font-size: var(--type-section); line-height: 1.04; letter-spacing: -.045em; }
.commitment-band-inner p { max-width: 650px; margin: 0 auto; color: #5a667d; font-size: 1.04rem; line-height: 1.8; }

.purpose-spine { position: relative; isolation: isolate; padding: 115px 0 135px; overflow: hidden; background: linear-gradient(180deg, #f7fbfd, #fff); }
.purpose-spine-header { max-width: 760px; margin: 0 auto 75px; text-align: center; }
.purpose-spine-header h2 { margin: 14px 0 0; color: var(--navy-deep); font-size: var(--type-section); line-height: 1.04; letter-spacing: -.045em; }
.purpose-spine-line { position: absolute; left: 50%; top: 220px; bottom: 90px; z-index: 0; width: 4px; height: calc(100% - 310px); overflow: visible; transform: translateX(-50%); }
.purpose-spine-line line { stroke: rgba(26,43,109,.18); stroke-width: 2; vector-effect: non-scaling-stroke; }
.motion-enabled .purpose-spine-line line { stroke: var(--red); stroke-dasharray: 1; stroke-dashoffset: 1; }
.purpose-row { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr); align-items: center; min-height: 490px; gap: clamp(26px, 4vw, 58px); }
.purpose-row + .purpose-row { margin-top: 70px; }
.purpose-marker { grid-column: 2; width: 17px; height: 17px; place-self: center; border: 4px solid #fff; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 1px rgba(232,68,47,.25), 0 7px 18px rgba(18,32,77,.14); }
.purpose-media { position: relative; height: 390px; }
.purpose-media img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 15px; box-shadow: 0 22px 50px rgba(18,32,77,.16); }
.media-accent { position: absolute; z-index: 1; pointer-events: none; }
.media-accent-blue { left: -35px; top: -35px; width: 150px; height: 150px; border-radius: 45% 55% 65% 35%; background: rgba(135,191,223,.2); transform: rotate(20deg); }
.media-accent-gold { right: -32px; bottom: -31px; width: 140px; height: 140px; border: 32px solid rgba(242,183,5,.18); border-radius: 50%; }
.purpose-copy > span { color: var(--red); font-size: var(--type-label); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.purpose-copy h3 { margin: 17px 0 18px; color: var(--navy-deep); font-size: clamp(2rem, 3.3vw, 3rem); line-height: 1.04; letter-spacing: -.04em; }
.purpose-copy p { margin: 0; color: #5b667d; line-height: 1.8; }
.purpose-accent-one { left: -150px; top: 17%; width: 340px; height: 340px; border: 65px solid #87bfdf; border-radius: 50%; }
.purpose-accent-two { right: -120px; bottom: 9%; width: 300px; height: 300px; border-radius: 46% 54% 60% 40%; background: #f2b705; transform: rotate(25deg) translate3d(0, var(--parallax-y, 0px), 0); }

.why-edexplore { position: relative; margin-top: 80px; padding: 0 0 105px; background: #dff1fa; }
.why-layout { display: grid; grid-template-columns: minmax(330px, .83fr) minmax(0, 1.17fr); align-items: center; gap: clamp(50px, 8vw, 105px); }
.why-photo { position: relative; z-index: 2; height: 630px; margin-top: -78px; }
.why-photo-glow { position: absolute; inset: 28px -20px -22px 22px; border-radius: 18px; background: rgba(255,255,255,.36); filter: blur(1px); }
.why-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; border: 6px solid rgba(255,255,255,.88); border-radius: 16px; background: #fff; box-shadow: 0 30px 65px rgba(18,32,77,.25), 0 0 0 1px rgba(255,255,255,.72); }
.why-card { position: relative; z-index: 1; margin: 75px 0; padding: clamp(38px, 5vw, 62px); border: 1px solid rgba(26,43,109,.1); border-radius: 16px; background: #fff; box-shadow: 0 24px 55px rgba(18,32,77,.13); }
.why-card h2 { max-width: 650px; margin: 14px 0 32px; color: var(--navy-deep); font-size: clamp(2.25rem, 4vw, 3.6rem); line-height: 1.02; letter-spacing: -.045em; }
.why-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 28px; margin: 0; padding: 0; list-style: none; }
.why-card li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line); }
.why-card li > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(232,68,47,.22); border-radius: 50%; background: #fff7f4; font-size: .625rem; font-weight: 800; }
.why-card h3 { margin: 1px 0 6px; color: var(--navy); font-size: 1rem; }
.why-card li p { margin: 0; color: #667187; font-size: .8rem; line-height: 1.62; }

.motion-enabled .legacy-photo.reveal-item { transform: translateY(18px) scale(.95); }
.motion-enabled .legacy-photo.reveal-item.is-visible { transform: translateY(0) scale(1); }
.motion-enabled .why-photo.reveal-item { transform: translateY(36px); }
.motion-enabled .why-photo.reveal-item.is-visible { transform: translateY(0); }

.about-purpose { position: relative; padding: 92px 0 104px; overflow: hidden; background: linear-gradient(180deg, #fff, #f5f9fc); }
.about-purpose::before { content: ""; position: absolute; right: -140px; top: -170px; width: 440px; height: 440px; border: 70px solid rgba(135,191,223,.16); border-radius: 50%; }
.about-purpose .container { position: relative; }
.commitment-intro { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr); align-items: end; gap: clamp(50px, 8vw, 110px); }
.commitment-intro h2 { max-width: 610px; margin: 0; color: var(--navy); font-size: var(--type-section); line-height: 1.06; letter-spacing: -.04em; }
.commitment-intro p { margin: 0 0 13px; color: #556178; line-height: 1.72; }
.care-promises { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-top: 50px; }
.care-promises article { min-height: 220px; padding: 24px 22px; border: 1px solid rgba(26,43,109,.12); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 13px 32px rgba(18,32,77,.06); }
.care-promises span { width: 37px; height: 37px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(232,68,47,.22); border-radius: 50%; background: #fff7f4; font-size: .6875rem; font-weight: 800; }
.care-promises h3 { margin: 38px 0 9px; color: var(--navy); font-size: 1.12rem; }
.care-promises p { margin: 0; color: #657086; font-size: .8125rem; line-height: 1.65; }
.commitment-note { margin: 18px 0 0; padding: 17px 21px; color: #3f4c66; border-left: 3px solid var(--red); border-radius: 0 9px 9px 0; background: #fff; box-shadow: 0 8px 24px rgba(18,32,77,.045); line-height: 1.6; }
.commitment-note strong { color: var(--navy); }
.purpose-stories { display: grid; gap: 22px; margin-top: 70px; }
.purpose-story { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); min-height: 370px; overflow: hidden; border: 1px solid rgba(26,43,109,.12); border-radius: 20px; background: #fff; box-shadow: 0 18px 45px rgba(18,32,77,.08); }
.purpose-story-reverse { grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); }
.purpose-story-reverse .purpose-story-image { order: 2; }
.purpose-story-image { position: relative; min-height: 340px; overflow: hidden; background: var(--navy); }
.purpose-story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 55%, rgba(16,29,80,.25)); }
.purpose-story-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.purpose-story:hover .purpose-story-image img { transform: scale(1.025); }
.purpose-story-copy { display: flex; justify-content: center; padding: clamp(38px, 6vw, 72px); flex-direction: column; }
.purpose-story-copy > span { color: var(--red); font-size: var(--type-label); font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.purpose-story-copy h2 { margin: 16px 0 17px; color: var(--navy); font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.05; letter-spacing: -.04em; }
.purpose-story-copy p { margin: 0; color: #59657b; line-height: 1.72; }

.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vision-card { min-height: 315px; padding: 42px; border-radius: 15px; background: var(--soft); }
.vision-card:last-child { color: #fff; background: var(--navy); border-top: 5px solid var(--red); }
.vision-card span { color: var(--red); font-size: var(--type-label); font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.vision-card h2 { margin: 58px 0 17px; font-size: clamp(1.875rem, 3vw, 2.25rem); line-height: 1.16; letter-spacing: -.025em; }
.vision-card p { color: var(--muted); line-height: 1.72; }
.vision-card:last-child p { color: #d6ddef; }
.values-section { color: #fff; background: var(--navy); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.value-card { padding: 26px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(255,255,255,.07); }
.value-card h3 { margin: 45px 0 11px; }
.value-card h3, .founder-card h3 { font-size: 1.25rem; line-height: 1.3; }
.value-card p { margin-bottom: 0; color: #ccd4e9; line-height: 1.65; }
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.founder-card { display: grid; grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr); padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(18,32,77,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.founder-card:hover { border-color: rgba(26,43,109,.18); transform: translateY(-4px); box-shadow: 0 19px 42px rgba(18,32,77,.11); }
.founder-profile { padding: 32px 29px; color: #fff; background-color: var(--navy-deep); background-image: radial-gradient(circle at 20% 10%, rgba(255,255,255,.13), transparent 35%), linear-gradient(145deg, var(--navy-deep), var(--navy)); }
.founder-mark { position: relative; width: 112px; height: 112px; display: grid; place-items: center; margin: 0 0 30px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; background-color: var(--navy); background-image: radial-gradient(circle at 25% 20%, rgba(255,255,255,.16), transparent 32%), repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 7px); box-shadow: 0 0 0 5px #fff, 0 0 0 7px var(--red), 0 14px 30px rgba(18,32,77,.18); font: 750 2.25rem/1 var(--heading); }
.founder-mark::after { content: ""; position: absolute; right: 7px; bottom: 7px; width: 18px; height: 18px; border: 4px solid var(--red); border-left: 0; border-top: 0; }
.founder-mark span { position: relative; z-index: 1; letter-spacing: .04em; }
.founder-card small { color: #ff9d90; font-size: .6875rem; font-weight: 750; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }
.founder-card h3 { margin: 8px 0 13px; color: #fff; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.founder-credentials { margin: 0; color: #d8e0f0; font-size: .8125rem; line-height: 1.55; }
.founder-message { padding: 31px 36px 34px; }
.founder-message p { margin-bottom: 14px; color: var(--muted); font-size: .9375rem; line-height: 1.7; }
.founder-message blockquote { margin: 23px 0 0; padding: 17px 19px; border-left: 3px solid var(--red); color: var(--ink); background: var(--soft); font-weight: 650; line-height: 1.65; }
.operations-card { position: relative; display: grid; grid-template-columns: 190px minmax(0, 1fr) minmax(280px, .8fr); align-items: stretch; gap: 0; margin-top: 24px; overflow: hidden; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: linear-gradient(112deg, var(--navy-deep) 0 58%, #2e72a8 58% 100%); box-shadow: 0 18px 46px rgba(18,32,77,.14); transition: transform .25s ease, box-shadow .25s ease; }
.operations-card::after { content: ""; position: absolute; right: -70px; bottom: -110px; width: 260px; height: 260px; pointer-events: none; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.operations-card:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(18,32,77,.2); }
.operations-photo { position: relative; min-height: 250px; overflow: hidden; background: #f5f5f5; }
.operations-photo img { position: absolute; left: 50%; top: 50%; width: auto; max-width: none; height: 156%; transform: translate(-50%, -50%); }
.operations-profile { align-self: center; padding: 34px 38px; }
.operations-profile .eyebrow { margin-bottom: 8px; }
.operations-role { margin-bottom: 5px; color: #b8c7e4; font-size: .8125rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.operations-profile h3 { margin-bottom: 12px; color: #fff; font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 1.12; }
.operations-summary { max-width: 600px; margin-bottom: 20px; color: #dbe2f1; line-height: 1.65; }
.operations-contact { display: flex; flex-wrap: wrap; gap: 4px 17px; color: #d3dced; font-size: .8125rem; font-style: normal; }
.operations-contact a { min-height: 44px; display: inline-flex; align-items: center; color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 4px; transition: color .2s ease, text-decoration-color .2s ease; }
.operations-contact a:hover { color: #ffb2a8; text-decoration-color: currentColor; }
.operations-contact span { min-height: 44px; display: inline-flex; align-items: center; }
.operations-credentials { position: relative; z-index: 1; align-self: center; padding: 34px 36px; border-left: 1px solid rgba(255,255,255,.18); }
.operations-credentials > p { margin-bottom: 13px; color: #fff; font-size: .75rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.operations-credentials ul { margin: 0; padding: 0; list-style: none; }
.operations-credentials li { position: relative; padding: 7px 0 7px 19px; color: #ecf5fc; font-size: .875rem; line-height: 1.45; }
.operations-credentials li::before { content: ""; position: absolute; left: 0; top: 14px; width: 7px; height: 7px; border: 2px solid #ff9d90; border-radius: 50%; }
.team-member-card { position: relative; width: min(780px, 100%); min-height: 290px; display: grid; grid-template-columns: 290px minmax(0, 1fr); align-items: stretch; margin: 18px auto 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 15px 38px rgba(18,32,77,.09); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.team-member-card::after { content: ""; position: absolute; right: -62px; bottom: -88px; width: 210px; height: 210px; pointer-events: none; border: 38px solid rgba(26,43,109,.035); border-radius: 50%; }
.team-member-card:hover { border-color: rgba(26,43,109,.18); transform: translateY(-3px); box-shadow: 0 21px 46px rgba(18,32,77,.14); }
.team-member-photo { min-height: 290px; overflow: hidden; background: var(--warm); }
.team-member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.team-member-profile { position: relative; z-index: 1; align-self: center; padding: 42px 46px; }
.team-member-profile .eyebrow { margin-bottom: 9px; }
.team-member-role { display: inline-flex; margin-bottom: 14px; padding: 7px 11px; color: var(--navy); border: 1px solid rgba(26,43,109,.13); border-radius: 999px; background: var(--soft); font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.team-member-profile h3 { margin: 0; color: var(--navy-deep); font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.12; }
.footprint { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.footprint p { color: var(--muted); font-size: var(--type-body-large); line-height: 1.75; }

.partner-directory { display: grid; gap: 13px; }
.partner-item { overflow: hidden; border: 1px solid var(--line); border-left: 4px solid transparent; border-radius: 15px; background: #fff; transition: border-color .22s ease, box-shadow .22s ease; }
.partner-item.open { border-color: rgba(232,68,47,.42); border-left-color: var(--red); box-shadow: 0 17px 42px rgba(18,32,77,.09); }
.partner-button { width: 100%; display: grid; grid-template-columns: 76px minmax(260px, 1fr) auto 40px; grid-template-areas: "logo summary badges symbol"; align-items: center; gap: 18px; padding: 19px 22px 15px; border: 0; color: var(--ink); background: none; text-align: left; cursor: pointer; }
.partner-logo-cell { grid-area: logo; width: 76px; height: 60px; display: grid; place-items: center; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.partner-logo-cell img { width: auto; max-width: 100%; height: auto; max-height: 43px; object-fit: contain; }
.partner-summary { grid-area: summary; min-width: 0; display: flex; align-items: flex-start; flex-direction: column; gap: 3px; }
.partner-summary small { color: var(--red); font-size: .625rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.partner-summary strong { font-size: 1.25rem; line-height: 1.22; }
.partner-summary em { color: var(--muted); font-size: .8125rem; font-style: normal; }
.partner-badges { grid-area: badges; display: flex; justify-content: flex-end; gap: 7px; }
.partner-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 6px 10px; color: var(--red-dark); border: 1px solid rgba(232,68,47,.22); border-radius: 999px; background: rgba(232,68,47,.07); font-size: .625rem; font-weight: 750; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.partner-badge-value { color: #6e4b00; border-color: rgba(228,170,58,.38); background: rgba(228,170,58,.15); }
.partner-symbol { grid-area: symbol; width: 36px; height: 36px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(232,68,47,.2); border-radius: 50%; background: rgba(232,68,47,.06); font-size: 1.5rem; line-height: 1; transition: transform .2s ease-in-out, background .2s ease; }
.partner-item.open .partner-symbol { background: rgba(232,68,47,.12); transform: rotate(45deg); }
.campus-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.campus-postcard { display: grid; grid-template-columns: minmax(280px, 2fr) minmax(0, 3fr); gap: clamp(24px, 3vw, 38px); align-items: stretch; margin: 17px 0 24px; }
.campus-photo { position: relative; min-height: 520px; margin: 0; }
.campus-photo img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 14px; box-shadow: 0 16px 34px rgba(18,32,77,.16); }
.campus-photo figcaption { position: absolute; left: 15px; bottom: 15px; z-index: 1; padding: 7px 11px; color: var(--red-dark); border: 1px solid rgba(232,68,47,.28); border-radius: 999px; background: rgba(255,248,246,.94); box-shadow: 0 7px 18px rgba(18,32,77,.12); font-size: .6875rem; font-weight: 800; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; backdrop-filter: blur(8px); }
.campus-postcard-copy { min-width: 0; }
.partner-quick-facts { display: grid; grid-template-columns: 1.05fr 1.35fr 1fr; margin: 0 22px 19px 116px; padding: 15px 18px; border: 1px solid #e8eaf1; border-radius: 12px; background: #f8f9fc; }
.partner-panel .partner-quick-facts.is-inside-panel { margin: 17px 0 20px; }
.campus-postcard-copy .partner-quick-facts.is-inside-panel { grid-template-columns: 1fr; margin: 0 0 22px; padding: 5px 17px; }
.campus-life-facts .quick-fact, .campus-life-facts .quick-fact:first-child, .campus-life-facts .quick-fact:last-child { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
.campus-life-facts .quick-fact:last-child { border-bottom: 0; }
.campus-life-facts .quick-fact > small { display: flex; align-items: center; gap: 8px; color: var(--navy); }
.campus-life-facts .quick-fact > small svg { width: 19px; height: 19px; flex: 0 0 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.quick-fact { min-width: 0; padding: 0 18px; border-right: 1px solid var(--line); }
.quick-fact:first-child { padding-left: 0; }
.quick-fact:last-child { padding-right: 0; border-right: 0; }
.quick-fact > small { display: block; margin-bottom: 5px; color: var(--red); font-size: .625rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.quick-fact > strong { display: block; color: var(--navy); font-size: .875rem; line-height: 1.35; }
.quick-fact > span { display: block; margin-top: 3px; color: var(--muted); font-size: .75rem; line-height: 1.42; }
.program-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.program-tags span { padding: 5px 8px; color: var(--navy); border: 1px solid rgba(26,43,109,.12); border-radius: 999px; background: #fff; font-size: .6875rem; font-weight: 700; line-height: 1.2; }
.partner-panel { height: auto; margin: 0 22px 22px 116px; padding: 3px 19px 19px; overflow: hidden; color: var(--muted); border-top: 1px solid var(--line); line-height: 1.68; transition: height .35s ease-in-out; }
.partner-panel.is-animating { will-change: height; }
.partner-panel > * { opacity: 0; transform: translateY(9px); transition: opacity .26s ease-out, transform .26s ease-out; }
.partner-item.open .partner-panel > * { opacity: 1; transform: translateY(0); }
.partner-item.open .partner-panel > *:nth-child(2) { transition-delay: 80ms; }
.partner-item.open .partner-panel > *:nth-child(3) { transition-delay: 160ms; }
.partner-item.open .quick-fact { animation: accordion-detail-in .3s ease-out both; }
.partner-item.open .quick-fact:nth-child(2) { animation-delay: 80ms; }
.partner-item.open .quick-fact:nth-child(3) { animation-delay: 160ms; }
@keyframes accordion-detail-in { from { opacity: .35; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.partner-lead { max-width: 900px; margin: 17px 0 20px; color: #4d5872; }
.partner-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.campus-postcard-copy .partner-detail-grid { grid-template-columns: 1fr; gap: 20px; }
.campus-postcard-copy .partner-detail-grid > div + div { padding-top: 20px; border-top: 1px solid var(--line); }
.partner-panel h4 { margin: 0 0 5px; color: var(--ink); }
.partner-panel h4:not(:first-child) { margin-top: 16px; }
.partner-panel p { margin-bottom: 0; }
.panel-link { display: inline-flex; margin-top: 13px; color: var(--red); font-size: .8125rem; font-weight: 750; }
.program-details { margin-top: 21px; border-top: 1px solid var(--line); }
.program-details summary { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0 0; color: var(--red); font-size: .8125rem; font-weight: 750; cursor: pointer; list-style: none; }
.program-details summary::-webkit-details-marker { display: none; }
.program-details summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.program-details-symbol { flex: 0 0 auto; width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(232,68,47,.2); border-radius: 50%; background: rgba(232,68,47,.06); font-size: 1rem; line-height: 1; transition: transform .2s ease-in-out, background .2s ease; }
.program-details[open] .program-details-symbol { background: rgba(232,68,47,.12); transform: rotate(45deg); }
.program-details-body { padding-top: 12px; }
.program-details .partner-quick-facts { margin: 0; }
.program-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ossd-pathway { position: relative; padding: 94px 0; overflow: hidden; background-color: #dff1fa; background-image: radial-gradient(circle at 1px 1px, rgba(26,43,109,.08) 1px, transparent 1.1px); background-size: 25px 25px; }
.ossd-pathway::before { content: ""; position: absolute; right: -120px; top: -170px; width: 460px; height: 460px; border: 80px solid rgba(255,255,255,.45); border-radius: 50%; }
.ossd-pathway .container { position: relative; }
.ossd-shell { overflow: hidden; border: 1px solid rgba(26,43,109,.13); border-radius: 26px; background: #fff; box-shadow: 0 26px 70px rgba(18,32,77,.13); }
.ossd-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr); gap: clamp(40px, 6vw, 80px); align-items: center; padding: clamp(42px, 6vw, 78px); }
.ossd-copy h2 { margin: 0 0 25px; color: var(--navy); font-size: clamp(3rem, 5vw, 4.8rem); line-height: .94; letter-spacing: -.055em; }
.ossd-copy h2 span { display: block; color: #87bfdf; }
.ossd-copy p { margin: 0 0 17px; color: #495671; line-height: 1.72; }
.ossd-copy .ossd-lead { color: var(--navy); font-size: 1.05rem; }
.ossd-visual { overflow: hidden; border: 1px solid rgba(26,43,109,.12); border-radius: 20px; background: #f4f9fc; box-shadow: 0 18px 45px rgba(18,32,77,.11); }
.ossd-visual figure { position: relative; min-height: 270px; margin: 0; overflow: hidden; background: var(--navy); }
.ossd-visual figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(8,17,48,.82)); }
.ossd-visual figure img { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.ossd-visual figcaption { position: absolute; left: 24px; right: 24px; bottom: 21px; z-index: 1; color: #fff; }
.ossd-visual figcaption small, .ossd-visual figcaption strong { display: block; }
.ossd-visual figcaption small { margin-bottom: 5px; color: #bfe3f4; font-size: .625rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.ossd-visual figcaption strong { font: 700 1.2rem/1.25 var(--heading); }
.ossd-requirements { display: flex; margin: 0; padding: 25px 27px 28px; list-style: none; flex-direction: column; gap: 20px; }
.ossd-requirements li { display: flex; align-items: center; gap: 17px; }
.ossd-icon { width: 48px; height: 48px; display: grid; flex: 0 0 48px; place-items: center; color: var(--navy); border-radius: 50%; background: #fff; box-shadow: 0 8px 20px rgba(18,32,77,.1); }
.ossd-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ossd-requirements strong, .ossd-requirements small { display: block; }
.ossd-requirements strong { margin-bottom: 4px; color: var(--navy); font: 700 1.05rem/1.25 var(--heading); }
.ossd-requirements small { max-width: 290px; color: #5f6c83; line-height: 1.45; }
.ossd-footer { padding: 0 clamp(42px, 6vw, 78px) clamp(42px, 5vw, 62px); }
.ossd-faq { border-top: 1px solid rgba(18,32,77,.18); border-bottom: 1px solid rgba(18,32,77,.18); }
.ossd-faq summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); cursor: pointer; font-weight: 750; list-style: none; }
.ossd-faq summary::-webkit-details-marker { display: none; }
.ossd-faq-symbol { width: 32px; height: 32px; display: grid; flex: 0 0 32px; place-items: center; border: 1px solid rgba(18,32,77,.2); border-radius: 50%; font-size: 1.25rem; transition: transform .2s ease; }
.ossd-faq[open] .ossd-faq-symbol { transform: rotate(45deg); }
.ossd-faq div { max-width: 860px; padding: 0 0 21px; }
.ossd-faq p { margin: 0; color: #56637b; line-height: 1.65; }
.ossd-cta { margin-top: 28px; color: #fff; background: #ee3541; box-shadow: 0 12px 28px rgba(238,53,65,.22); }
.ossd-cta:hover { background: #d92935; }
.partnership-feature { display: grid; grid-template-columns: .9fr 1.1fr; color: #fff; background: var(--navy); scroll-margin-top: 78px; }
.partnership-feature img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.partnership-copy { padding: 70px; }
.partnership-copy h2 { margin: 14px 0 22px; font-size: var(--type-section); line-height: 1.06; letter-spacing: -.035em; }
.partnership-copy p { color: #d4daec; line-height: 1.72; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 28px; }
.logo-grid span { min-height: 110px; display: grid; place-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 11px; background: #fff; text-align: center; font-family: var(--heading); font-size: var(--type-small); font-weight: 700; }
.secondary-partners a { min-height: 122px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; flex-direction: column; text-align: center; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.secondary-partners a:hover { border-color: rgba(232,68,47,.3); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(18,32,77,.07); }
.secondary-partners strong { margin: auto 0; font-size: var(--type-small); line-height: 1.4; }
.secondary-partners span { min-height: 0; display: inline; padding: 0; color: var(--red); border: 0; background: none; font-family: var(--body); font-size: var(--type-label); }

.study-atlas { position: relative; overflow: hidden; padding: 108px 0 116px; color: #fff; background: radial-gradient(circle at 12% 15%, rgba(64,100,190,.32), transparent 30%), linear-gradient(145deg, #08112f, #101d50 58%, #172b6b); }
.study-atlas::before { content: ""; position: absolute; right: -270px; top: -370px; width: 720px; height: 720px; pointer-events: none; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 92px rgba(255,255,255,.018), 0 0 0 184px rgba(255,255,255,.012); }
.study-atlas .container { position: relative; z-index: 1; }
.study-atlas-heading { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .62fr); align-items: end; gap: clamp(52px, 8vw, 120px); }
.study-atlas-heading h2 { margin: 12px 0 0; color: #fff; font-size: clamp(3rem, 5.5vw, 5.35rem); line-height: .95; letter-spacing: -.055em; }
.study-atlas-heading h2 em { color: #ff7968; font-style: normal; }
.study-atlas-heading > p { margin: 0 0 4px; padding-left: 23px; color: #cbd3e9; border-left: 3px solid #ff7968; line-height: 1.72; }
.study-atlas-shell { display: grid; grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr); align-items: start; gap: 22px; margin-top: 52px; }
.study-atlas-visual { position: sticky; top: 92px; min-height: 790px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: #070f2d; box-shadow: 0 30px 72px rgba(3,9,29,.34); isolation: isolate; }
.study-atlas-visual::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(5,12,39,.02) 25%, rgba(5,12,39,.16) 54%, rgba(5,12,39,.94) 100%); }
.study-atlas-visual img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: 51% center; transition: transform 1.2s cubic-bezier(.22,.7,.25,1); }
.study-atlas-visual:hover img { transform: scale(1.035); }
.study-atlas-orbit { position: absolute; left: 50%; top: 43%; z-index: 2; width: 74%; aspect-ratio: 1; pointer-events: none; border: 1px solid rgba(255,121,104,.35); border-radius: 50%; transform: translate(-50%,-50%) rotate(-12deg); box-shadow: 0 0 34px rgba(255,121,104,.08); animation: study-atlas-orbit 22s linear infinite; }
.study-atlas-orbit::before { content: ""; position: absolute; right: 10%; top: 12%; width: 9px; height: 9px; border: 3px solid rgba(255,255,255,.78); border-radius: 50%; background: #ff7968; box-shadow: 0 0 0 7px rgba(255,121,104,.15), 0 0 22px #ff7968; }
.study-atlas-visual figcaption { position: absolute; left: clamp(25px, 3.3vw, 42px); right: clamp(25px, 3.3vw, 42px); bottom: 36px; z-index: 3; }
.study-atlas-visual figcaption small { display: block; margin-bottom: 12px; color: #ff9d90; font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.study-atlas-visual figcaption strong { display: block; color: #fff; font-size: clamp(2rem, 3.3vw, 3.2rem); line-height: 1; letter-spacing: -.045em; }
.study-atlas-visual figcaption span { display: block; margin-top: 14px; color: #cbd3e9; font-size: .8rem; }
.study-atlas-cycle { min-width: 0; min-height: 790px; display: flex; overflow: hidden; color: var(--navy-deep); border: 1px solid rgba(255,255,255,.17); border-radius: 28px; background: #f7f8fb; box-shadow: 0 30px 72px rgba(3,9,29,.28); flex-direction: column; }
.atlas-cycle-head { min-height: 125px; display: flex; align-items: end; justify-content: space-between; gap: 28px; padding: 29px 34px 24px; }
.atlas-cycle-kicker { display: block; margin-bottom: 11px; color: var(--red); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.atlas-cycle-country { display: flex; align-items: center; gap: 13px; }
.atlas-cycle-country .country-code { width: 44px; height: 44px; flex: 0 0 44px; background: rgba(232,68,47,.08); font-size: .7rem; }
.atlas-cycle-country h3 { margin: 0; color: var(--navy-deep); font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1; letter-spacing: -.04em; }
.atlas-cycle-head > p { display: flex; align-items: end; gap: 7px; margin: 0 0 4px; color: var(--muted); }
.atlas-cycle-head > p strong { color: var(--navy); font-size: 2rem; line-height: .8; letter-spacing: -.04em; }
.atlas-cycle-head > p span { font-size: .7rem; font-weight: 700; }
.atlas-cycle-progress { height: 2px; margin: 0 34px; overflow: hidden; border-radius: 99px; background: #dfe3ed; }
.atlas-cycle-progress span { width: 100%; height: 100%; display: block; background: linear-gradient(90deg, var(--red), #ff8d7e, var(--gold)); transform: scaleX(0); transform-origin: left; }
.atlas-logo-wall { min-height: 535px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: 108px; align-content: center; gap: 12px 10px; padding: 25px 29px; transition: opacity .19s ease, transform .19s ease; }
.study-atlas-cycle.is-changing .atlas-logo-wall { opacity: 0; transform: translateY(10px); }
.atlas-logo-item { min-width: 0; min-height: 108px; display: grid; margin: 0; padding: 14px 10px; place-items: center; border-radius: 14px; background: transparent; opacity: 0; animation: atlas-logo-in .44s cubic-bezier(.22,.7,.25,1) forwards; animation-delay: var(--logo-delay, 0ms); transition: background .22s ease, box-shadow .22s ease, transform .22s ease; }
.atlas-logo-item:hover { background: #fff; box-shadow: 0 12px 28px rgba(18,32,77,.08); transform: translateY(-3px); }
.atlas-logo-item img { width: auto; max-width: 100%; height: auto; max-height: 70px; object-fit: contain; }
.atlas-cycle-footer { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: auto; padding: 14px 28px 17px 34px; border-top: 1px solid var(--line); background: rgba(255,255,255,.72); }
.atlas-cycle-footer > p { margin: 0; color: var(--muted); font-size: .7rem; font-weight: 650; }
.atlas-cycle-controls { display: flex; gap: 8px; }
.atlas-cycle-controls button { width: 38px; height: 38px; display: grid; padding: 0; place-items: center; color: var(--navy); border: 1px solid rgba(26,43,109,.15); border-radius: 50%; background: #fff; font: 800 .9rem/1 var(--heading); cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.atlas-cycle-controls button:hover { color: #fff; border-color: var(--red); background: var(--red); transform: translateY(-2px); }
.atlas-cycle-controls button[aria-pressed="true"] { color: #fff; border-color: var(--navy); background: var(--navy); }
@keyframes study-atlas-orbit { to { transform: translate(-50%,-50%) rotate(348deg); } }
@keyframes atlas-logo-in { from { opacity: 0; transform: translateY(9px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes atlas-cycle-progress { to { transform: scaleX(1); } }

@media (max-width: 1024px) {
  .study-atlas { padding: 92px 0 98px; }
  .study-atlas-heading { grid-template-columns: 1fr; align-items: start; gap: 25px; }
  .study-atlas-heading > p { max-width: 670px; }
  .study-atlas-shell { grid-template-columns: 1fr; }
  .study-atlas-visual { position: relative; top: auto; min-height: 490px; }
  .study-atlas-cycle { min-height: 710px; }
  .atlas-logo-wall { min-height: 470px; }
}

@media (max-width: 640px) {
  .study-atlas { padding: 72px 0 78px; }
  .study-atlas-heading h2 { font-size: clamp(2.65rem, 13vw, 3.75rem); }
  .study-atlas-heading > p { padding-left: 17px; font-size: .9rem; }
  .study-atlas-shell { margin-top: 36px; }
  .study-atlas-visual { min-height: 390px; border-radius: 21px; }
  .study-atlas-orbit { width: 68%; }
  .study-atlas-visual figcaption { bottom: 28px; }
  .study-atlas-visual figcaption strong { font-size: 2.25rem; }
  .study-atlas-cycle { min-height: 0; border-radius: 21px; }
  .atlas-cycle-head { min-height: 112px; align-items: start; padding: 24px 20px 20px; }
  .atlas-cycle-country .country-code { width: 39px; height: 39px; flex-basis: 39px; }
  .atlas-cycle-country h3 { font-size: 1.75rem; }
  .atlas-cycle-head > p { margin-top: 32px; }
  .atlas-cycle-head > p strong { font-size: 1.65rem; }
  .atlas-cycle-head > p span { display: none; }
  .atlas-cycle-progress { margin-inline: 20px; }
  .atlas-logo-wall { min-height: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 92px; gap: 8px 5px; padding: 23px 14px 26px; }
  .atlas-logo-item { min-height: 92px; padding: 12px 7px; }
  .atlas-logo-item img { max-height: 60px; }
  .atlas-cycle-footer { min-height: 68px; padding: 13px 17px 15px 20px; }
  .atlas-cycle-footer > p { max-width: 145px; line-height: 1.35; }
}

.journey-section { overflow: hidden; }
.journey-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.journey-aside { position: sticky; top: 110px; height: max-content; }
.journey-aside img { width: 100%; height: 230px; margin-bottom: 26px; border-radius: 13px; object-fit: cover; }
.journey-aside p, .journey-step p { color: var(--muted); line-height: 1.7; }
.journey-steps { position: relative; display: grid; gap: 6px; padding-left: 6px; }
.journey-steps::before { content: ""; position: absolute; left: 62px; top: 58px; bottom: 58px; width: 2px; background: linear-gradient(var(--red), rgba(232,68,47,.18)); }
.journey-step { position: relative; display: grid; grid-template-columns: 126px 1fr; gap: 28px; align-items: center; min-height: 154px; padding: 25px 30px 25px 0; border-bottom: 1px solid var(--line); background: transparent; }
.journey-step:last-child { border-bottom: 0; }
.journey-step::before { content: ""; position: absolute; left: 56px; top: 50%; z-index: 2; width: 14px; height: 14px; border: 4px solid #fff; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 1px rgba(232,68,47,.25); transform: translateY(-50%); }
.journey-visual { position: relative; min-height: 104px; display: grid; place-items: center; }
.journey-number { position: absolute; left: 0; top: 50%; color: rgba(232,68,47,.06); font: 800 5.7rem/1 var(--heading); letter-spacing: -.08em; transform: translateY(-52%); -webkit-text-stroke: 1px rgba(232,68,47,.25); }
.journey-icon { position: relative; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; color: var(--red); border: 1px solid rgba(232,68,47,.24); border-radius: 50%; background: #fff; box-shadow: 0 8px 22px rgba(18,32,77,.08); font: 700 1.3rem/1 var(--heading); }
.journey-copy { padding-left: 4px; }
.journey-step h3 { margin-bottom: 9px; font-size: 1.5rem; line-height: 1.25; }
.journey-step p { margin-bottom: 0; }
.serve-band { padding: 65px 0; color: #fff; background: var(--navy); }
.serve-layout { display: grid; grid-template-columns: 1.35fr 1fr; align-items: center; gap: 60px; }
.serve-countries { display: flex; flex-wrap: wrap; gap: 12px; }
.serve-countries span { width: 100%; color: #ff9d90; font-size: var(--type-label); font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.serve-countries strong { padding: 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: rgba(255,255,255,.08); }
.serve-layout p { margin-bottom: 0; color: #d4daec; line-height: 1.7; }

.news-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 24px; }
.news-page-grid .news-card { min-width: 0; height: 100%; display: flex; flex-direction: column; }
.news-page-grid .news-card-image { height: 260px; flex: 0 0 260px; }
.news-page-grid .news-card-body { display: flex; flex: 1; flex-direction: column; }
.news-page-grid .news-card-body a { width: max-content; margin-top: auto; }
.news-grid.news-feed-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-landing-hero { min-height: 650px; }
.news-landing-hero > img { object-position: center 48%; }
.news-archive { background: linear-gradient(180deg, #fff 0, #f5f9fc 100%); }

.event-article-hero { position: relative; min-height: clamp(620px, 76vh, 820px); display: grid; align-items: end; isolation: isolate; overflow: hidden; color: #fff; background: var(--navy-deep); }
.event-article-hero > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.event-article-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,17,48,.92) 0, rgba(8,17,48,.72) 48%, rgba(8,17,48,.2) 100%), linear-gradient(0deg, rgba(8,17,48,.7), transparent 55%); }
.event-hero-content { padding-top: 150px; padding-bottom: clamp(78px, 10vw, 118px); }
.event-back { width: max-content; min-height: 44px; display: inline-flex; align-items: center; margin-bottom: 42px; color: rgba(255,255,255,.82); font-size: .75rem; font-weight: 750; letter-spacing: .04em; }
.event-back:hover { color: #fff; }
.event-hero-content h1 { max-width: 980px; margin: 18px 0 22px; color: #fff; font-size: clamp(3.2rem, 6.7vw, 6.4rem); line-height: .94; letter-spacing: -.06em; text-wrap: balance; }
.event-hero-content > p { max-width: 760px; margin: 0; color: #e1e6f2; font-size: clamp(1rem, 1.7vw, 1.25rem); line-height: 1.7; }

.event-story { padding: clamp(88px, 10vw, 135px) 0; background: #fff; }
.event-story-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: clamp(60px, 8vw, 118px); }
.event-story-main { min-width: 0; }
.event-lead { margin: 0 0 65px; color: var(--navy-deep); font: 650 clamp(1.45rem, 2.7vw, 2.25rem)/1.45 var(--heading); letter-spacing: -.025em; }
.event-story-section { padding: 0 0 58px; }
.event-story-section + .event-story-section { padding-top: 4px; }
.event-story-section h2, .event-gallery-heading h2 { margin: 0 0 20px; color: var(--navy-deep); font-size: clamp(2rem, 3.4vw, 3.05rem); line-height: 1.05; letter-spacing: -.045em; }
.event-story-section > p { margin: 0 0 20px; color: #5e687e; font-size: 1rem; line-height: 1.85; }

.event-facts { position: sticky; top: 112px; padding: 31px 28px 28px; border: 1px solid rgba(26,43,109,.1); border-radius: 15px; background: linear-gradient(155deg, #f7fbfd, #fff); box-shadow: 0 20px 46px rgba(18,32,77,.1); }
.event-facts dl { display: grid; gap: 0; margin: 24px 0 28px; }
.event-facts dl > div { padding: 15px 0; border-top: 1px solid var(--line); }
.event-facts dt { margin-bottom: 5px; color: #8a93a6; font-size: .625rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.event-facts dd { margin: 0; color: var(--navy-deep); font-size: .91rem; font-weight: 700; line-height: 1.5; }
.event-impact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0 0 28px; }
.event-impact > div { min-height: 105px; display: flex; justify-content: center; padding: 18px 10px; border-radius: 10px; text-align: center; background: var(--navy); flex-direction: column; }
.event-impact strong { color: #fff; font: 750 2rem/1 var(--heading); }
.event-impact span { margin-top: 8px; color: #cad3e8; font-size: .625rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: .06em; }
.event-facts .button { width: 100%; justify-content: center; }

.event-highlights { padding: 52px clamp(28px, 5vw, 52px) 58px; border-radius: 16px; background: #eef7fb; }
.event-highlights h2 { max-width: 600px; margin-top: 13px; }
.event-highlights ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 26px; margin: 34px 0 0; padding: 0; list-style: none; }
.event-highlights li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 12px; align-items: start; padding-top: 16px; border-top: 1px solid rgba(26,43,109,.13); }
.event-highlights li > span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(232,68,47,.25); border-radius: 50%; color: var(--red); background: #fff; font-size: .625rem; font-weight: 800; }
.event-highlights li p { margin: 3px 0 0; color: var(--navy); font-size: .8rem; font-weight: 700; line-height: 1.55; }

.event-institutions { padding-top: 74px; }
.event-institutions h2 { margin-top: 13px; }
.event-institutions ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.event-institutions li { padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; color: #59647a; background: #fff; box-shadow: 0 7px 18px rgba(18,32,77,.045); font-size: .75rem; font-weight: 700; }

.event-gallery-section { padding-top: 35px; }
.event-gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 45px; margin-bottom: 32px; }
.event-gallery-heading h2 { margin: 12px 0 0; }
.event-gallery-heading p { max-width: 260px; margin: 0 0 7px; color: #788196; font-size: .75rem; line-height: 1.6; }
.event-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 245px; gap: 14px; }
.event-gallery figure { grid-column: span 6; overflow: hidden; margin: 0; border-radius: 13px; background: #e9eef5; box-shadow: 0 12px 28px rgba(18,32,77,.09); }
.event-gallery figure:first-child { grid-column: span 7; grid-row: span 2; }
.event-gallery figure:nth-child(2) { grid-column: span 5; }
.event-gallery figure:nth-child(3) { grid-column: span 5; }
.event-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.event-gallery figure:hover img { transform: scale(1.025); }
.event-story-main > .share-row { margin-top: 55px; }
.article-hero { min-height: 520px; }
.article-content { max-width: 850px; }
.article-content .lead { color: var(--ink); font-size: 1.375rem; line-height: 1.6; }
.article-content p { color: var(--muted); font-size: var(--type-body-large); line-height: 1.78; }
.article-content blockquote { margin: 42px 0; padding: 28px; border-left: 4px solid var(--red); border-radius: 0 11px 11px 0; background: var(--warm); font: 700 1.375rem/1.5 var(--heading); }
.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 36px 0; padding: 18px 0; border-block: 1px solid var(--line); }
.share-row strong { margin-right: 4px; }
.share-row button { position: relative; min-height: 42px; display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 7px; color: var(--ink); background: #fff; font-size: .75rem; font-weight: 700; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.share-row button:hover { border-color: var(--navy); }
.share-row button:active { transform: scale(.97); }
.share-row button.is-confirmed::after { content: "✓"; position: absolute; right: -7px; top: -8px; width: 19px; height: 19px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--success); box-shadow: 0 4px 12px rgba(20,122,67,.25); animation: share-confirm 1.5s ease both; }
.share-row .share-whatsapp { padding-inline: 16px; color: #fff; border-color: #137b43; background: #137b43; font-size: .8125rem; box-shadow: 0 7px 16px rgba(19,123,67,.2); }
.share-status { min-width: 100%; min-height: 1.2em; color: var(--success); font-size: .75rem; font-weight: 700; }
@keyframes share-confirm { 0% { opacity: 0; transform: translateY(5px) scale(.9); } 18%, 78% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-3px) scale(.96); } }

.testimonials-section { background: linear-gradient(180deg, #fff, var(--soft)); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.testimonial-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 12px 30px rgba(18,32,77,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.testimonial-card:hover { border-color: rgba(26,43,109,.2); transform: translateY(-4px); box-shadow: 0 20px 42px rgba(18,32,77,.12); }
.testimonial-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #e9eef5; }
.testimonial-media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(8,17,48,.62)); pointer-events: none; }
.testimonial-media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s cubic-bezier(.22,.7,.25,1); }
.testimonial-card:hover .testimonial-media img { transform: scale(1.025); }
.testimonial-destination { position: absolute; left: 17px; bottom: 15px; z-index: 1; padding: 7px 10px; color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(8,17,48,.48); font-size: .625rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(5px); }
.testimonial-profile { display: flex; flex-direction: column; }
.testimonial-profile .testimonial-media { flex: 1 1 auto; min-height: 340px; }
.testimonial-profile .testimonial-card-body { flex: 0 0 auto; }
.testimonial-video-slot .testimonial-media { color: #fff; background: radial-gradient(circle at 28% 18%, rgba(255,255,255,.14), transparent 27%), linear-gradient(145deg, var(--navy), var(--navy-deep)); }
.testimonial-poster-slot .testimonial-media { color: var(--navy); background: radial-gradient(circle at 78% 18%, rgba(232,68,47,.12), transparent 29%), linear-gradient(145deg, #fffaf1, #f0e9da); }
.testimonial-poster-slot .testimonial-media::before { border-color: rgba(26,43,109,.2); }
.testimonial-format { position: absolute; left: 25px; top: 24px; font-size: .625rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.testimonial-play { width: 66px; height: 66px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(255,255,255,.11); box-shadow: 0 14px 30px rgba(5,13,43,.2); backdrop-filter: blur(5px); }
.testimonial-play::after { content: ""; width: 0; height: 0; margin-left: 5px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid #fff; }
.testimonial-poster-mark { width: 58%; display: grid; gap: 13px; }
.testimonial-poster-mark i { height: 9px; display: block; border-radius: 99px; background: rgba(26,43,109,.12); }
.testimonial-poster-mark i:first-child { width: 72%; height: 16px; background: var(--navy); }
.testimonial-poster-mark i:last-child { width: 84%; }
.testimonial-slot-number { position: absolute; right: 20px; bottom: 12px; opacity: .14; font: 750 clamp(3.2rem, 5vw, 5rem)/1 var(--heading); }
.testimonial-card-body { padding: 20px 21px 23px; }
.testimonial-card-body > span { color: var(--red); font-size: .625rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.testimonial-card h3 { margin: 7px 0 9px; color: var(--navy-deep); font-size: 1.0625rem; line-height: 1.35; }
.testimonial-card p { margin: 0; color: #737d94; font-size: .75rem; line-height: 1.55; }
.testimonial-card p strong { color: var(--navy); }

.office-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.office-card { position: relative; overflow: hidden; min-height: 228px; display: flex; padding: 21px 20px 18px; border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: 0 8px 24px rgba(18,32,77,.045); flex-direction: column; transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.office-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--navy); }
.office-card-primary::before { background: var(--red); }
.office-card:hover { border-color: rgba(26,43,109,.18); transform: translateY(-2px); box-shadow: 0 13px 30px rgba(18,32,77,.075); }
.office-card-heading { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.office-flag { width: 43px; height: 32px; display: grid; flex: 0 0 43px; place-items: center; overflow: hidden; border: 1px solid rgba(18,32,77,.12); border-radius: 7px; background: #f5f7fb; box-shadow: 0 5px 12px rgba(26,43,109,.1); }
.office-flag img { width: 100%; height: 100%; display: block; object-fit: cover; }
.office-card-heading small { display: block; color: var(--red); font-size: .5625rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.office-card h3 { margin: 3px 0 0; font-size: 1.2rem; line-height: 1.2; }
.office-address-label { margin-bottom: 5px; color: #9299aa; font-size: .5625rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.office-card address { margin: 0 0 13px; color: #5f697f; font-size: .75rem; font-style: normal; line-height: 1.55; }
.office-phone { display: inline-flex; align-items: center; width: max-content; margin-top: auto; color: #6d768a; font-size: .75rem; font-weight: 700; line-height: 1.2; }
.office-phone::before { content: "Call"; margin-right: 7px; color: var(--red); font-size: .5625rem; letter-spacing: .08em; text-transform: uppercase; }
.office-phone::after { content: "↗"; margin-left: 6px; color: var(--red); font-size: .6875rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.contact-details h2 { margin: 15px 0; font-size: var(--type-section); line-height: 1.06; letter-spacing: -.035em; }
.contact-details p { color: var(--muted); line-height: 1.7; }
.contact-details > a { display: block; margin: 11px 0; color: var(--red); font-weight: 750; }
.contact-details > a { min-height: 44px; display: flex; align-items: center; }
.contact-details hr { margin: 34px 0; border: 0; border-top: 1px solid var(--line); }
.contact-details h3 { margin: 24px 0 6px; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 15px; background: var(--soft); }
.section-soft .contact-form { background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 17px; font-size: .75rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.field-label { display: inline-block; width: max-content; color: var(--ink); transform: translateY(0) scale(1); transform-origin: left bottom; transition: color .2s ease, transform .2s ease; }
.contact-form label:focus-within .field-label { color: var(--red); transform: translateY(-2px) scale(.94); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px; border: 1px solid #d7dae5; border-radius: 8px; color: var(--ink); background: #fff; font-size: .9375rem; font-weight: 400; line-height: 1.45; letter-spacing: 0; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { min-height: 48px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,68,47,.1); outline: 0; }
.contact-form textarea { min-height: 135px; resize: vertical; }
.contact-form small { display: block; margin-top: 13px; color: var(--muted); }
.form-status { margin-top: 14px; color: var(--success); font-weight: 750; opacity: 0; transform: translateY(8px); transition: opacity .32s ease-out, transform .32s ease-out; }
.form-status.is-visible { opacity: 1; transform: translateY(0); }
.button-spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.42); border-top-color: #fff; border-radius: 50%; animation: button-spin .65s linear infinite; }
@keyframes button-spin { to { transform: rotate(360deg); } }

.site-footer { padding: 70px 0 24px; color: #fff; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 55px; }
.footer-brand img { width: 190px; }
.footer-grid p { color: #aeb7d0; font-size: var(--type-small); line-height: 1.7; }
.footer-brand p { max-width: 330px; margin-top: 18px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column b { margin-bottom: 7px; color: #ff9d90; font-size: var(--type-label); letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { color: #cbd2e5; font-size: var(--type-small); }
.footer-column .social-note { margin: 7px 0 0; color: #cbd2e5; }
.footer-social { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.footer-social a { min-height: 46px; display: flex; align-items: center; gap: 9px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; color: #f5f7ff; background: rgba(255,255,255,.07); font-size: .6875rem; font-weight: 700; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-social svg { width: 22px; height: 22px; flex: 0 0 22px; fill: currentColor; }
.footer-social .social-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-social .social-instagram .social-dot { fill: currentColor; stroke: none; }
.footer-social .social-facebook svg { color: #5b9cff; }
.footer-social .social-instagram svg { color: #ff6da9; }
.footer-social .social-linkedin svg { color: #55aaf5; }
.footer-social .social-tiktok svg { color: #fff; filter: drop-shadow(2px 0 #ee1d52) drop-shadow(-2px 0 #69c9d0); }
.footer-social .social-youtube svg { color: #ff4b4b; }
.footer-social a:hover svg { color: #fff; filter: none; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.13); transform: translateY(-2px); }
.footer-social .social-facebook:hover { background: #1877f2; }
.footer-social .social-instagram:hover { background: #c13584; }
.footer-social .social-linkedin:hover { background: #0a66c2; }
.footer-social .social-tiktok:hover { background: #171717; }
.footer-social .social-youtube { grid-column: 1 / -1; }
.footer-social .social-youtube:hover { background: #ff0000; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7f8cad; font-size: .75rem; }
.whatsapp { position: fixed; right: 23px; bottom: 23px; z-index: 90; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--navy-deep); font-size: .8rem; font-weight: 750; opacity: 0; translate: 0 18px; scale: 1; transition: opacity .4s ease-out, translate .4s ease-out; }
.whatsapp.is-ready { opacity: 1; translate: 0 0; animation: whatsapp-breathe 2s 1.4s ease-in-out infinite; }
.whatsapp-label { padding: 7px 11px; border-radius: 8px; background: #fff; box-shadow: 0 5px 18px rgba(8,23,54,.16); line-height: 1; white-space: nowrap; }
.whatsapp-button { display: grid; width: 60px; height: 60px; place-items: center; border: 8px solid #edf3f1; border-radius: 50%; background: #20d466; box-shadow: 0 10px 24px rgba(8,23,54,.16); box-sizing: content-box; }
.whatsapp-button svg { width: 34px; height: 34px; fill: #fff; }
.whatsapp:hover .whatsapp-button { background: #18c45b; }
@keyframes whatsapp-breathe { 0%, 100% { scale: 1; } 50% { scale: 1.03; } }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible { outline: 0; }
.text-link, .panel-link, .news-card-body a, .footer-column a, .office-phone { min-height: 44px; align-items: center; }
.footer-column a { display: flex; }

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; left: auto; right: 0; top: 78px; width: min(86vw, 370px); max-height: calc(100svh - 78px); display: flex; align-items: stretch; gap: 5px; padding: 25px 25px 30px; overflow-y: auto; visibility: hidden; opacity: 0; pointer-events: none; background: var(--navy); box-shadow: -20px 25px 45px rgba(10,20,60,.26); transform: translateX(100%); transition: opacity .3s ease-out, transform .3s cubic-bezier(.22,.7,.25,1), visibility .3s; flex-direction: column; }
  .site-header.scrolled .site-nav { top: 66px; max-height: calc(100svh - 66px); }
  .site-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
  .first-home-visit .site-nav > a { animation: none; }
  .site-nav > a { opacity: 0; transform: translateX(18px); transition: opacity .24s ease-out, transform .24s ease-out, color .2s ease, background .2s ease; }
  .site-nav.open > a { opacity: 1; transform: translateX(0); transition-delay: calc(var(--nav-index, 0) * 40ms); }
  .site-nav > a:not(.nav-cta) { padding: 13px 12px; border-radius: 7px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav > a:not(.nav-cta):hover, .site-nav > a[aria-current="page"] { background: rgba(255,255,255,.07); transform: translateX(0); }
  .site-nav .nav-cta { margin-top: 9px; text-align: center; }
  .hero-proof { display: none; }
  .hero-video { object-position: 64% center; }
  .values-grid, .founder-grid, .news-grid, .logo-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .feature-showcase { grid-template-columns: 1fr; min-height: 0; }
  .why-content { padding: 50px 46px 42px; }
  .why-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .72fr); align-items: end; gap: 36px; }
  .why-heading h2 { margin-bottom: 0; }
  .feature-visuals { min-height: 470px; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-card { grid-template-columns: 32px minmax(0, 1fr); align-content: start; padding-right: 18px; }
  .feature-card:hover, .feature-card.is-active { padding-left: 12px; }
  .feature-card-arrow { display: none; }
  .legacy-layout { grid-template-columns: 1fr; gap: 62px; }
  .legacy-copy { max-width: 780px; }
  .legacy-collage { width: min(820px, 100%); min-height: 690px; margin-inline: auto; }
  .legacy-contact { right: 25px; }
  .commitment-intro { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .care-promises { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-grid { grid-template-columns: 1fr; }
  .global-network-heading { grid-template-columns: 1fr; gap: 28px; }
  .network-intro { max-width: 640px; }
  .global-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .office-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-ossd-card { grid-template-columns: minmax(310px, .9fr) minmax(0, 1.1fr); }
  .process-layout, .journey-grid, .contact-grid, .footprint { grid-template-columns: 1fr; gap: 52px; }
  .journey-aside { position: static; }
  .cta-layout { grid-template-columns: 1fr; }
  .cta-animated-logo { width: min(100%, 330px); }
  .partnership-feature { grid-template-columns: 1fr; }
  .partnership-feature img { min-height: 360px; }
  .partnership-copy { padding: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-page-grid { grid-template-columns: 1fr 1fr; }
  .serve-layout { grid-template-columns: 1fr; gap: 28px; }
  .global-pathways-banner { grid-template-columns: 1fr; gap: 26px; }
  .destination-benefit-grid { grid-template-columns: 1fr 1fr; }
  .destination-process-layout { grid-template-columns: 1fr; gap: 45px; }
  .ossd-grid { grid-template-columns: 1fr; gap: 36px; }
  .ossd-visual { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr); }
  .ossd-visual figure { min-height: 330px; }
  .ossd-requirements { justify-content: center; }
  .operations-card { grid-template-columns: 175px minmax(0, 1fr); background: linear-gradient(135deg, var(--navy-deep), var(--navy)); }
  .operations-credentials { grid-column: 1 / -1; padding: 25px 31px 27px; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .operations-credentials ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; }
  .reach-layout { grid-template-columns: 1fr; gap: 46px; }
  .reach-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0 46px; align-items: end; }
  .reach-intro .eyebrow { grid-column: 1 / -1; }
  .reach-intro h2 { margin-bottom: 0; }
  .reach-intro p { align-self: center; }
  .reach-intro .reach-link { grid-column: 2; justify-self: start; }
  .reach-network { width: min(100%, 820px); margin-inline: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1280px); }
  .section { padding: 68px 0; }
  .hero { min-height: max(700px, calc(100svh - 78px)); align-items: end; }
  .hero-video { object-position: 68% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(16,29,80,.08), rgba(16,29,80,.48) 72%, rgba(16,29,80,.64)); }
  .hero-copy { width: calc(100% - 28px); padding: 92px 0 34px; }
  .hero-copy-card { padding: 24px 20px 23px; border-radius: 16px; background: rgba(16,29,80,.68); backdrop-filter: blur(7px); }
  .hero h1, .page-hero h1 { font-size: 2.625rem; }
  .hero p, .page-hero p { font-size: .9375rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .section-heading { align-items: start; margin-bottom: 31px; flex-direction: column; }
  .section-heading h2, .content-heading { font-size: 2.25rem; }
  .feature-showcase { border-radius: 22px; }
  .why-content { padding: 37px 25px 30px; }
  .why-heading { display: block; }
  .why-heading h2 { margin: 13px 0 19px; font-size: clamp(2.55rem, 12vw, 3.45rem); }
  .why-heading p { font-size: .9rem; }
  .feature-visuals { min-height: 340px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 32px minmax(0, 1fr) 30px; min-height: 0; align-content: center; padding: 17px 0; }
  .feature-card:hover, .feature-card.is-active { padding-left: 14px; }
  .feature-card-arrow { display: grid; }
  .about-legacy { padding: 105px 0 82px; }
  .legacy-copy h1 { margin-bottom: 25px; font-size: clamp(2.8rem, 14vw, 4.1rem); }
  .legacy-lead { font-size: .94rem; }
  .legacy-who { padding-left: 18px; }
  .legacy-contact { top: 18px; right: 16px; width: 72px; height: 72px; font-size: .57rem; }
  .legacy-collage { min-height: 510px; }
  .legacy-photo-main { top: 9%; width: 72%; height: 48%; }
  .legacy-photo-advisory { width: 45%; height: 31%; }
  .legacy-photo-campus { right: 0; bottom: 9%; width: 56%; height: 33%; }
  .legacy-photo-journey { left: 3%; width: 42%; height: 25%; }
  .collage-accent-blue { left: 34%; top: 37%; width: 150px; height: 150px; }
  .collage-accent-gold { width: 100px; height: 100px; border-width: 23px; }
  .commitment-band { padding: 92px 0; }
  .commitment-band-inner h2 { font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .commitment-band-inner p { font-size: .95rem; }
  .purpose-spine { padding: 88px 0 105px; }
  .purpose-spine-header h2 { font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .purpose-media { height: 270px; }
  .purpose-copy h3 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .why-card { padding: 32px 24px 37px; }
  .why-card ul { grid-template-columns: 1fr; }
  .why-photo { width: calc(100% - 30px); height: 470px; }
  .about-purpose { padding: 68px 0 74px; }
  .care-promises { grid-template-columns: 1fr; margin-top: 35px; }
  .care-promises article { min-height: 0; }
  .care-promises h3 { margin-top: 25px; }
  .purpose-stories { margin-top: 48px; }
  .purpose-story, .purpose-story-reverse { grid-template-columns: 1fr; min-height: 0; }
  .purpose-story-reverse .purpose-story-image { order: 0; }
  .purpose-story-image { min-height: 250px; }
  .purpose-story-copy { padding: 31px 24px 35px; }
  .values-grid, .founder-grid, .news-grid, .vision-grid, .logo-grid, .reach-grid, .news-page-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-profile .testimonial-media { min-height: 360px; aspect-ratio: 5 / 4; }
  .office-grid { grid-template-columns: 1fr; }
  .office-card { min-height: 205px; padding: 20px 19px 17px; }
  .global-network { padding: 68px 0 72px; }
  .global-network-heading h2 { font-size: 2.625rem; }
  .network-intro { grid-template-columns: 1fr; }
  .passport-mark { display: none; }
  .country-tabs { flex-wrap: nowrap; margin-inline: -14px; padding: 2px 14px 12px; overflow-x: auto; scrollbar-width: thin; }
  .country-tab { flex: 0 0 auto; }
  .global-network-panel { min-height: 390px; padding: 21px 14px; border-radius: 18px; }
  .network-panel-heading { align-items: start; flex-direction: column; gap: 10px; padding-inline: 5px; }
  .global-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .global-logo-card { min-height: 142px; padding-inline: 10px; }
  .destination-seo-links { align-items: stretch; flex-direction: column; }
  .destination-seo-links span { margin: 0 0 3px; }
  .destination-seo-links a { justify-content: space-between; }
  .destination-benefit-grid, .destination-related-links { grid-template-columns: 1fr; }
  .destination-benefit-card { min-height: 0; padding: 29px 24px; }
  .destination-benefit-card h3 { margin-top: 34px; }
  .destination-process { padding: 68px 0; }
  .destination-process li { grid-template-columns: 88px minmax(0, 1fr); gap: 14px; }
  .home-ossd-highlight { padding: 40px 0; }
  .home-ossd-card { grid-template-columns: 1fr; min-height: 0; border-radius: 19px; }
  .home-ossd-media { min-height: 250px; }
  .home-ossd-content { padding: 30px 23px 34px; }
  .home-ossd-content::after { right: -12px; bottom: -14px; font-size: 5rem; }
  .home-ossd-link { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .process-list { grid-template-columns: 1fr; }
  .page-hero { min-height: 440px; }
  .page-hero::after { background: linear-gradient(180deg, rgba(16,29,80,.48), rgba(16,29,80,.97)); }
  .vision-card { min-height: 270px; padding: 29px; }
  .partner-button { grid-template-columns: 60px minmax(0, 1fr) 34px; grid-template-areas: "logo summary symbol" ". badges badges"; gap: 11px 12px; padding: 15px 13px 12px; }
  .partner-logo-cell { width: 60px; height: 54px; }
  .partner-summary { gap: 2px; }
  .partner-summary strong { font-size: 1.0625rem; }
  .partner-badges { justify-content: flex-start; }
  .partner-symbol { width: 33px; height: 33px; }
  .partner-quick-facts { grid-template-columns: 1fr; margin: 0 13px 14px; padding: 3px 14px; }
  .quick-fact, .quick-fact:first-child, .quick-fact:last-child { padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-fact:last-child { border-bottom: 0; }
  .partner-panel { margin: 0 13px 14px; padding: 1px 10px 15px; }
  .partner-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .partnership-copy { padding: 38px 24px; }
  .partnership-copy h2 { font-size: 2.25rem; }
  .news-page-grid .news-card:first-child { grid-column: auto; display: flex; }
  .news-page-grid .news-card-image, .news-page-grid .news-card:first-child .news-card-image { height: 220px; min-height: 0; flex-basis: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .ossd-pathway { padding: 64px 0; }
  .ossd-pathway::before { right: -180px; top: -210px; }
  .ossd-shell { border-radius: 20px; }
  .ossd-grid { padding: 34px 22px; }
  .ossd-copy h2 { font-size: 3.15rem; }
  .ossd-visual { display: block; }
  .ossd-visual figure { min-height: 245px; }
  .ossd-requirements { display: flex; gap: 22px; }
  .ossd-footer { padding: 0 22px 34px; }
  .ossd-cta { width: 100%; text-align: center; }
  .share-row strong { width: 100%; }
  .motion-enabled main, .motion-enabled .site-footer, .motion-enabled .site-header { animation-duration: .24s; }
  .motion-enabled body.is-page-leaving > *:not(.page-loading-bar) { transition-duration: .16s; }
  .site-nav { transition-duration: .24s; }
  .operations-card { grid-template-columns: 1fr; text-align: left; }
  .operations-photo { width: 160px; min-height: 190px; margin: 28px 24px 0; border-radius: 11px; }
  .operations-photo img { height: 154%; }
  .operations-profile { padding: 24px; }
  .operations-credentials { grid-column: auto; padding: 24px; }
  .operations-credentials ul { grid-template-columns: 1fr; }
  .team-member-card { grid-template-columns: 1fr; }
  .team-member-photo { height: 340px; min-height: 0; }
  .team-member-photo img { object-position: center 30%; }
  .team-member-profile { padding: 31px 24px 36px; }
  .motion-enabled .reveal-item { transition-duration: .48s; }
  .motion-enabled .hero.is-ready .hero-copy-card > .eyebrow { animation-duration: .29s; animation-delay: .24s; }
  .motion-enabled .hero.is-ready .hero-copy-card > h1 { animation-duration: .4s; animation-delay: .4s; }
  .motion-enabled .hero.is-ready .hero-copy-card > p { animation-duration: .32s; animation-delay: .56s; }
  .motion-enabled .hero.is-ready .hero-copy-card > .hero-actions { animation-duration: .32s; animation-delay: .72s; }
  .reach-band { padding: 68px 0; }
  .reach-intro { display: block; }
  .reach-intro h2 { margin-bottom: 18px; font-size: 2.25rem; }
  .reach-network { grid-template-columns: 1fr; gap: 18px; }
  .reach-network::before, .reach-network::after, .reach-connections .reach-card::before { display: none; }
  .reach-card-home { min-height: 205px; }
  .reach-card { min-height: 96px; }
  .reach-card:hover { transform: translateY(-3px); }
  .process-section { padding: 72px 0; }
  .process-section::before { left: -18px; bottom: -35px; font-size: 11rem; }
  .process-signpost { margin-top: 30px; }
  .process-list li { min-height: 132px; padding: 20px 18px; }
}

@media (max-width: 768px) {
  .container { width: min(100% - 28px, 1280px); }
  .hero { --mobile-video-height: clamp(235px, 58vw, 430px); min-height: 0; display: block; padding-top: var(--mobile-video-height); overflow: hidden; background: var(--navy-deep); }
  .hero::after { display: none; }
  .hero-video { inset: 0 0 auto; height: var(--mobile-video-height); display: block; object-position: 62% center; }
  .hero-mobile-poster { position: absolute; inset: 0 0 auto; width: 100%; height: var(--mobile-video-height); display: block; object-fit: cover; object-position: 62% center; opacity: 1; pointer-events: none; transition: opacity .45s ease, visibility .45s; }
  .hero.is-video-playing .hero-mobile-poster { visibility: hidden; opacity: 0; }
  .hero-overlay { inset: 0 0 auto; height: var(--mobile-video-height); background: linear-gradient(180deg, rgba(16,29,80,.02), rgba(16,29,80,.18)); }
  .hero-copy { width: 100%; padding: 0 14px 38px; background: var(--navy-deep); }
  .hero-copy-card { width: min(100%, 640px); margin-inline: auto; padding: 30px 6px 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
  .hero h1 { max-width: 590px; font-size: clamp(2.25rem, 7vw, 3.15rem); line-height: 1.04; }
  .hero p { max-width: 570px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .values-grid, .founder-grid, .news-grid, .vision-grid, .reach-grid, .news-page-grid, .testimonial-grid, .office-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-profile { display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: center; gap: 25px; }
  .founder-mark { margin: 0; }
  .about-accent, .collage-accent { transform: none !important; will-change: auto; }
  .purpose-spine-header { margin-bottom: 55px; padding-left: 52px; text-align: left; }
  .purpose-spine-line { left: 16px; top: 225px; height: calc(100% - 290px); transform: none; }
  .purpose-row { grid-template-columns: 32px minmax(0, 1fr); grid-template-areas: "marker media" ". copy"; min-height: 0; gap: 20px 18px; }
  .purpose-row + .purpose-row { margin-top: 75px; }
  .purpose-marker { grid-area: marker; grid-column: auto; align-self: center; }
  .purpose-media { grid-area: media; }
  .purpose-copy { grid-area: copy; padding-bottom: 8px; }
  .why-edexplore { margin-top: 65px; padding-bottom: 78px; }
  .why-layout { grid-template-columns: 1fr; gap: 0; }
  .why-photo { width: min(440px, calc(100% - 30px)); height: 540px; margin: -62px auto 0; }
  .why-card { margin: 34px 0 0; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .global-network-heading { gap: 24px; }
  .network-intro { max-width: none; }
  .country-tabs { flex-wrap: nowrap; margin-inline: -14px; padding: 2px 48px 13px 14px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; -webkit-overflow-scrolling: touch; -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%); mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%); }
  .country-tab { flex: 0 0 auto; scroll-snap-align: start; }
  .partner-button { min-height: 76px; }
  .partner-symbol { width: 44px; height: 44px; }
  .campus-postcard { grid-template-columns: 1fr; gap: 28px; }
  .campus-photo { min-height: 0; aspect-ratio: 3 / 2; }
  .campus-photo figcaption { left: 12px; bottom: 12px; }
  .partner-quick-facts { grid-template-columns: 1fr; margin: 0 13px 14px; padding: 3px 14px; }
  .quick-fact, .quick-fact:first-child, .quick-fact:last-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-fact:last-child { border-bottom: 0; }
  .partner-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .journey-grid { grid-template-columns: 1fr; gap: 52px; }
  .journey-aside { position: static; }
  .global-pathways-banner { padding: 29px 25px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form input, .contact-form select { min-height: 50px; }
  .partner-marquee-track { animation-duration: 44s; transform: translateZ(0); backface-visibility: hidden; }
  .partner-logo { width: 154px; height: 76px; flex-basis: 154px; }
  .partner-marquee-group { gap: 30px; padding-right: 30px; }
}

@media (max-width: 480px) {
  .section { padding: 62px 0; }
  .hero { --mobile-video-height: clamp(220px, 62vw, 300px); }
  .hero-copy { padding-bottom: 32px; }
  .hero-copy-card { padding-top: 26px; }
  .hero h1 { max-width: 360px; font-size: clamp(2.1rem, 10vw, 2.5rem); }
  .feature-visuals { min-height: 270px; }
  .feature-visual figcaption { left: 18px; right: 18px; bottom: 17px; gap: 10px; }
  .feature-visual figcaption span { width: 36px; height: 36px; flex-basis: 36px; }
  .feature-visual figcaption strong { font-size: 1.05rem; }
  .feature-card { grid-template-columns: 30px minmax(0, 1fr) 28px; gap: 12px; min-height: 0; padding: 16px 0; }
  .feature-card:hover, .feature-card.is-active { padding-left: 12px; }
  .number-badge { width: auto; height: auto; }
  .feature-card-copy strong { font-size: 1rem; }
  .feature-card-copy > span { font-size: .79rem; }
  .hero-copy-card > .eyebrow { font-size: .625rem; letter-spacing: .12em; }
  .hero-actions { gap: 10px; margin-top: 22px; }
  .network-video-frame, .network-video-frame video { min-height: 205px; }
  .network-video-frame figcaption { left: 15px; right: 15px; bottom: 14px; }
  .network-video-frame figcaption strong { max-width: 120px; }
  .global-logo-grid { grid-template-columns: 1fr; }
  .global-logo-card { min-height: 128px; }
  .reach-card { min-height: 94px; padding: 16px; }
  .reach-card-home { min-height: 190px; padding: 22px; }
  .journey-steps { padding-left: 0; }
  .journey-steps::before { left: 35px; top: 54px; bottom: 54px; }
  .journey-step { grid-template-columns: 76px 1fr; gap: 16px; min-height: 150px; padding: 25px 0; }
  .journey-step::before { left: 29px; }
  .journey-visual { min-height: 88px; }
  .journey-number { left: -2px; font-size: 4.2rem; }
  .journey-icon { width: 44px; height: 44px; }
  .journey-step h3 { font-size: 1.2rem; }
  .journey-step p { font-size: .875rem; line-height: 1.65; }
  .logo-grid { grid-template-columns: 1fr; }
  .operations-contact { flex-direction: column; gap: 0; }
  .founder-profile { grid-template-columns: 1fr; padding: 27px 24px; }
  .founder-mark { margin-bottom: 8px; }
  .founder-message { padding: 25px 23px 28px; }
  .founder-message p { font-size: .9rem; }
  .legacy-collage { min-height: 450px; }
  .legacy-photo { border-radius: 12px; }
  .why-photo { height: 430px; }
  .why-card h2 { font-size: 2.25rem; }
  .testimonial-media { aspect-ratio: 5 / 4; }
  .testimonial-profile .testimonial-media { min-height: 280px; }
}

@media (hover: none), (pointer: coarse) {
  .feature-card:active, .news-card:active, .founder-card:active, .operations-card:active, .team-member-card:active, .office-card:active, .testimonial-card:active, .global-logo-card:active, .partner-item:active, .secondary-partners a:active { transform: scale(.98); transition-duration: .16s; }
  .news-card:active .news-card-image img { transform: scale(1.035); }
}

@media (max-width: 1024px) {
  .event-story-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 52px; }
  .event-facts { padding-inline: 22px; }
  .event-gallery { grid-auto-rows: 220px; }
}

@media (max-width: 768px) {
  .event-hero-content h1 { font-size: clamp(3.15rem, 11vw, 5.2rem); }
  .event-story-layout { grid-template-columns: 1fr; gap: 60px; }
  .event-facts { position: static; grid-row: 1; width: 100%; }
  .event-story-main { grid-row: 2; }
  .event-facts dl { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .event-facts dl > div { padding: 15px 12px 0 0; }
  .event-impact { max-width: 390px; }
  .event-gallery { grid-auto-rows: 200px; }
}

@media (max-width: 640px) {
  .news-grid.news-feed-two { grid-template-columns: 1fr; }
  .news-landing-hero { min-height: 590px; }
  .event-article-hero { min-height: 670px; }
  .event-article-overlay { background: linear-gradient(0deg, rgba(8,17,48,.94) 0, rgba(8,17,48,.75) 70%, rgba(8,17,48,.38) 100%); }
  .event-hero-content { padding-top: 125px; padding-bottom: 70px; }
  .event-back { margin-bottom: 35px; }
  .event-hero-content h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .event-hero-content > p { font-size: .93rem; }
  .event-story { padding: 72px 0 90px; }
  .event-story-layout { gap: 54px; }
  .event-facts { padding: 27px 22px 23px; }
  .event-facts dl { grid-template-columns: 1fr; gap: 0; }
  .event-facts dl > div { padding: 13px 0; }
  .event-impact { max-width: none; }
  .event-lead { margin-bottom: 52px; font-size: 1.45rem; }
  .event-story-section { padding-bottom: 47px; }
  .event-highlights { padding: 40px 22px 45px; }
  .event-highlights ol { grid-template-columns: 1fr; }
  .event-institutions { padding-top: 58px; }
  .event-gallery-heading { display: block; }
  .event-gallery-heading p { max-width: none; margin-top: 12px; }
  .event-gallery { grid-template-columns: 1fr; grid-auto-rows: 235px; gap: 11px; }
  .event-gallery figure, .event-gallery figure:first-child, .event-gallery figure:nth-child(2), .event-gallery figure:nth-child(3) { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .partner-marquee-window { overflow-x: auto; scrollbar-width: thin; }
  .partner-marquee-track { animation: none; }
  .partner-marquee-group[aria-hidden="true"] { display: none; }
  .feature-card, .news-card, .button, .news-card-image img, .country-tab, .global-network-panel, .global-logo-card, .partner-panel, .partner-panel > *, .whatsapp, .founder-card, .operations-card, .team-member-card { transition: none; }
  .global-logo-card { animation: none; }
  .whatsapp { opacity: 1; translate: 0 0; scale: 1; }
}

/* About: photo-led leadership and support team */
.leadership-showcase { position: relative; padding: 112px 0 118px; overflow: hidden; background: linear-gradient(180deg, #f5f8fc 0%, #fff 43%, #f8f5ef 100%); }
.leadership-showcase::before { content: ""; position: absolute; right: -190px; top: 140px; width: 470px; height: 470px; pointer-events: none; border: 1px solid rgba(26,43,109,.08); border-radius: 50%; box-shadow: 0 0 0 78px rgba(46,114,168,.025), 0 0 0 156px rgba(46,114,168,.018); }
.leadership-showcase .container { position: relative; z-index: 1; }
.leadership-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr); align-items: end; gap: clamp(42px, 8vw, 112px); margin-bottom: 54px; }
.leadership-heading h2 { margin: 0; color: var(--navy-deep); font-size: clamp(2.65rem, 5vw, 5rem); line-height: .96; letter-spacing: -.055em; }
.leadership-heading > p { margin: 0 0 5px; padding-left: 25px; color: #56627a; border-left: 3px solid var(--red); font-size: 1rem; line-height: 1.75; }

.founder-portrait-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.founder-portrait-card { min-width: 0; display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid rgba(26,43,109,.1); border-radius: 22px; background: #fff; box-shadow: 0 18px 44px rgba(18,32,77,.09); transition: transform .28s ease, box-shadow .28s ease; }
.founder-portrait-card:hover { transform: translateY(-6px); box-shadow: 0 27px 58px rgba(18,32,77,.14); }
.founder-portrait-stage { position: relative; min-height: 350px; margin: 0; overflow: hidden; isolation: isolate; }
.founder-portrait-stage::before { content: ""; position: absolute; left: -68px; top: -85px; width: 220px; height: 220px; z-index: -1; border: 48px solid rgba(255,255,255,.14); border-radius: 50%; }
.founder-portrait-stage::after { content: ""; position: absolute; right: -42px; bottom: -42px; width: 128px; height: 128px; z-index: -1; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.055); }
.founder-stage-blue { background: linear-gradient(145deg, #10225b, #254b91); }
.founder-stage-sky { background: linear-gradient(145deg, #2b6fa3, #6eacd0); }
.founder-stage-coral { background: linear-gradient(145deg, #c94a3c, #f18269); }
.founder-portrait-stage img { position: absolute; left: 50%; bottom: -1px; width: 100%; height: 96%; z-index: 1; object-fit: contain; object-position: center bottom; transform: translateX(-50%); filter: drop-shadow(0 18px 22px rgba(8,17,48,.18)); }
.founder-portrait-stage .founder-photo-composite { bottom: 0; height: 100%; object-fit: cover; object-position: center 25%; filter: none; }
.founder-index { position: absolute; right: 22px; top: 18px; z-index: 2; color: rgba(255,255,255,.82); font: 750 .6875rem/1 var(--heading); letter-spacing: .13em; }
.founder-portrait-copy { min-width: 0; display: flex; flex-direction: column; padding: 29px 28px 30px; }
.founder-title { min-height: 137px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.founder-title > span { display: block; margin-bottom: 8px; color: var(--red); font-size: .66rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.founder-title h3 { margin: 0 0 10px; color: var(--navy-deep); font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.08; letter-spacing: -.03em; }
.founder-title p { margin: 0; color: #717b90; font-size: .74rem; line-height: 1.52; }
.founder-story { margin: 22px 0 24px; color: #57637a; font-size: .875rem; line-height: 1.72; }
.founder-portrait-copy blockquote { position: relative; margin: auto 0 0; padding: 18px 18px 18px 21px; color: var(--navy); border-left: 3px solid var(--red); background: #f5f7fb; font: 700 .85rem/1.62 var(--heading); }

.delivery-team-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr); align-items: end; gap: 55px; margin: 112px 0 38px; padding-top: 48px; border-top: 1px solid rgba(26,43,109,.13); }
.delivery-team-heading h2 { margin: 0; color: var(--navy-deep); font-size: clamp(2.25rem, 4vw, 3.75rem); line-height: 1; letter-spacing: -.045em; }
.delivery-team-heading > p { margin: 0; color: #647087; line-height: 1.72; }
.delivery-team-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); align-items: center; gap: 24px; }
.delivery-card { position: relative; min-width: 0; min-height: 0; display: grid; grid-template-columns: minmax(0, .46fr) minmax(0, .54fr); overflow: hidden; color: #fff; border: 1px solid rgba(26,43,109,.12); border-radius: 26px; box-shadow: 0 18px 44px rgba(18,32,77,.12); isolation: isolate; transition: transform .28s ease, box-shadow .28s ease; }
.delivery-card::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 2; height: 4px; background: linear-gradient(90deg, #ff725f, #f5c05a); }
.delivery-card:hover { transform: translateY(-4px); box-shadow: 0 26px 58px rgba(18,32,77,.17); }
.delivery-photo { position: relative; min-width: 0; min-height: 100%; margin: 0; overflow: hidden; background: #f5f7fa; }
.delivery-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 70%, rgba(16,29,80,.08)); box-shadow: inset -1px 0 rgba(255,255,255,.16); }
.delivery-photo img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 42%; filter: brightness(1.02) contrast(1.03) saturate(.96); }
.delivery-copy { min-width: 0; display: flex; align-self: stretch; padding: 32px 28px; flex-direction: column; justify-content: flex-start; overflow-wrap: anywhere; }
.delivery-label { width: fit-content; display: inline-flex; align-items: center; min-height: 28px; margin-bottom: 19px; padding: 6px 9px; color: #ffb1a6; border: 1px solid rgba(255,177,166,.25); border-radius: 999px; background: rgba(255,255,255,.07); font-size: .61rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.delivery-role { margin: 0 0 7px; color: rgba(255,255,255,.7); font-size: .7rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.delivery-copy h3 { margin: 0 0 18px; color: #fff; font-size: clamp(1.9rem, 2.65vw, 2.45rem); line-height: .98; letter-spacing: -.045em; }
.delivery-summary { margin: 0; padding-left: 15px; color: #dce3f2; border-left: 2px solid #ff806f; font-size: .84rem; line-height: 1.68; }
.delivery-card-operations { min-height: 520px; background: linear-gradient(145deg, #14275f, #223d82); }
.delivery-card-operations .delivery-photo { background: #fff; }
.delivery-card-operations .delivery-photo::after { content: none; }
/* Fill the wider frame proportionally; the original file and colours stay untouched. */
.delivery-card-operations .delivery-photo img { object-fit: cover; object-position: center; filter: none; }
.delivery-card-support { grid-template-columns: minmax(0, .36fr) minmax(0, .64fr); background: linear-gradient(145deg, #205f83, #3d89ad); }
.delivery-card-support .delivery-photo { background: #e4f0f5; }
.delivery-card-support .delivery-copy { padding: 28px 20px; }
.delivery-card-support .delivery-label { margin-bottom: 16px; font-size: .57rem; letter-spacing: .1em; }
.delivery-card-support .delivery-copy h3 { margin-bottom: 14px; font-size: clamp(1.65rem, 2.15vw, 2rem); line-height: 1.05; }
.delivery-card-support .delivery-summary { padding-left: 12px; font-size: .8rem; line-height: 1.6; }
.delivery-card-support .delivery-credentials { margin-top: 20px; }
.delivery-card-support .delivery-credentials li { padding-block: 8px; }
.delivery-credentials { display: grid; grid-template-columns: 1fr; gap: 0; margin: 24px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.delivery-credentials li { position: relative; padding: 10px 0 10px 18px; color: #eef2fa; border-bottom: 1px solid rgba(255,255,255,.11); font-size: .72rem; line-height: 1.42; }
.delivery-credentials li::before { content: ""; position: absolute; left: 1px; top: 1.05rem; width: 6px; height: 6px; border: 2px solid #ff8b7c; border-radius: 50%; }
.delivery-contact { display: flex; flex-wrap: wrap; gap: 7px 17px; margin-top: auto; padding-top: 21px; font-style: normal; }
.delivery-contact a { color: #fff; font-size: .72rem; font-weight: 650; }
.delivery-contact a:hover { color: #ffb1a6; }

@media (max-width: 1200px) {
  .delivery-team-grid { grid-template-columns: 1fr; gap: 28px; }
  .delivery-card-support { width: 90%; justify-self: end; }
}

@media (max-width: 1040px) {
  .leadership-heading, .delivery-team-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .leadership-heading > p { max-width: 700px; }
  .founder-portrait-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-portrait-card:last-child { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: center; }
}

@media (max-width: 700px) {
  .leadership-showcase { padding: 78px 0 82px; }
  .leadership-heading { margin-bottom: 36px; }
  .leadership-heading h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .leadership-heading > p { padding-left: 18px; }
  .founder-portrait-grid { grid-template-columns: 1fr; gap: 18px; }
  .founder-portrait-card:last-child { grid-column: auto; width: 100%; }
  .founder-portrait-stage { min-height: 340px; }
  .founder-title { min-height: 0; }
  .delivery-team-heading { margin-top: 82px; padding-top: 38px; }
  .delivery-card, .delivery-card-support { min-height: 0; grid-template-columns: 1fr; }
  .delivery-card-support { width: 92%; }
  .delivery-photo { min-height: 0; aspect-ratio: 4 / 3; }
  .delivery-card-operations .delivery-photo img, .delivery-card-support .delivery-photo img { object-position: center top; }
  .delivery-card-operations .delivery-photo { aspect-ratio: 1 / 1; }
  .delivery-copy { padding: 33px 27px 36px; }
  .delivery-card-support .delivery-copy { padding: 28px 24px; }
}

@media (max-width: 430px) {
  .founder-portrait-stage { min-height: 315px; }
  .founder-portrait-copy { padding: 26px 22px 25px; }
  .delivery-card-support .delivery-photo { aspect-ratio: 4 / 3; }
  .delivery-contact { flex-direction: column; gap: 8px; }
}

@media (hover: none), (pointer: coarse) {
  .founder-portrait-card:active, .delivery-card:active { transform: scale(.985); }
}

@media (prefers-reduced-motion: reduce) {
  .founder-portrait-card, .delivery-card { transition: none; }
}
