:root {
  --navy: #061a3a;
  --navy-deep: #031127;
  --blue: #0057d0;
  --blue-bright: #1c72e8;
  --yellow: #ffca29;
  --paper: #f5f8fc;
  --mist: #eaf1f8;
  --ink: #102341;
  --muted: #60718a;
  --line: #d7e0eb;
  --white: #ffffff;
  --container: 1240px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 84px; }
button { color: inherit; font: inherit; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: inline-block; width: 18px; height: 18px; flex: 0 0 auto; }
.icon-xs { width: 13px; height: 13px; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 100; top: -60px; left: 18px; padding: 10px 14px; background: var(--yellow); color: var(--navy); font-weight: 800; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; z-index: 20; top: 0; left: 0; width: 100%; color: var(--white); background: transparent; transition: background .25s ease, box-shadow .25s ease, color .25s ease; }
.site-header.is-scrolled { color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 1px 0 rgba(16,35,65,.12); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); flex-shrink: 0; }
.brand-light { color: var(--white); }
.desktop-nav { display: flex; align-items: center; gap: 29px; margin-left: auto; }
.nav-link { position: relative; padding: 8px 0; color: currentColor; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.nav-link::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.language-picker { position: relative; }
.language-toggle { display: inline-flex; align-items: center; gap: 5px; border: 0; padding: 8px 2px; background: transparent; cursor: pointer; font-family: "DM Mono", monospace; font-size: 11px; letter-spacing: .1em; }
.language-menu { position: absolute; top: calc(100% + 14px); right: 0; display: grid; width: 170px; padding: 6px; visibility: hidden; opacity: 0; border: 1px solid var(--line); background: var(--white); box-shadow: 0 14px 28px rgba(6,26,58,.14); transform: translateY(-5px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.language-picker.is-open .language-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.language-option { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 0; padding: 10px; background: transparent; text-align: left; font-size: 11px; cursor: pointer; }
.language-option:hover, .language-option.is-selected { background: var(--paper); color: var(--blue); }
.language-option:disabled { color: #9ba8b8; cursor: not-allowed; }
.language-option small { font-size: 10px; letter-spacing: 0; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .04em; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.header-cta:hover, .header-cta:focus-visible { color: var(--navy); border-color: var(--yellow); background: var(--yellow); }
.header-cta .icon { width: 15px; height: 15px; }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid currentColor; background: transparent; cursor: pointer; }
.menu-toggle .icon-close { display: none; }
.site-header.menu-open .menu-toggle .icon-menu { display: none; }
.site-header.menu-open .menu-toggle .icon-close { display: block; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 800px; overflow: hidden; color: var(--white); background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(to right, black 0%, transparent 70%); }
.hero::after { content: ""; position: absolute; top: 0; right: 17%; width: 1px; height: 100%; background: rgba(255,255,255,.09); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr); align-items: center; min-height: 720px; padding-top: 96px; }
.hero-copy { position: relative; z-index: 2; max-width: 650px; padding: 70px 0 100px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 23px; color: var(--blue); font-family: "DM Mono", monospace; font-size: 11px; font-weight: 500; letter-spacing: .13em; line-height: 1.3; }
.eyebrow-light { color: #c7d7ed; }
.eyebrow-line { display: inline-block; width: 29px; height: 2px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.03em; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: 78px; font-weight: 800; line-height: .99; }
h1 em, h2 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 520px; margin-bottom: 34px; color: #c7d4e6; font-size: 18px; line-height: 1.7; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 13px 18px; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .03em; transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { color: var(--navy); background: var(--yellow); }
.button-primary:hover, .button-primary:focus-visible { background: #ffd755; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.42); background: transparent; }
.button-outline-light:hover, .button-outline-light:focus-visible { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-yellow { color: var(--navy); background: var(--yellow); }
.button .icon { width: 16px; height: 16px; }
.hero-bottom-line { position: absolute; z-index: 2; right: 0; bottom: 25px; left: 0; display: flex; align-items: center; gap: 14px; color: #93a8c4; font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .12em; }
.hero-bottom-line > span:nth-child(2) { width: 54px; height: 1px; background: #93a8c4; }
.hero-bottom-line > span:last-child { margin-left: auto; }

.section { padding: 132px 0; }
.about-section { background: var(--white); }
.split-section { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, .9fr); align-items: center; gap: 110px; }
.media-stack { position: relative; padding: 0 0 41px 42px; }
.media-frame { position: relative; min-height: 500px; overflow: hidden; background: var(--mist); }
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(0,87,208,.2), transparent 52%); mix-blend-mode: multiply; }
.media-frame img { width: 100%; height: 500px; object-fit: cover; filter: saturate(.75); }
.media-corner { position: absolute; z-index: 1; width: 33px; height: 33px; border-color: var(--yellow); border-style: solid; }
.media-corner-tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }.media-corner-br { right: -10px; bottom: 30px; border-width: 0 2px 2px 0; }
.media-caption { position: absolute; right: 0; bottom: 0; left: 42px; display: flex; justify-content: space-between; padding: 13px 16px; color: var(--white); background: var(--navy); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .12em; }
.media-caption span:first-child { color: var(--yellow); }
.section-copy { max-width: 535px; }
.section-copy h2, .section-heading-row h2, .why-intro h2, .approach-heading h2 { margin-bottom: 24px; color: var(--ink); font-size: 48px; line-height: 1.08; }
.section-copy h2 em, .section-heading-row h2 em, .why-intro h2 em, .approach-heading h2 em { color: var(--blue); }
.section-copy > p { color: #4e617a; }.section-copy .copy-muted { color: var(--muted); }
.vision-note { display: flex; gap: 14px; margin: 28px 0 26px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vision-icon { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; color: var(--blue); border: 1px solid #a8c6ee; }
.vision-icon .icon { width: 18px; height: 18px; }
.vision-note strong, .vision-note span { display: block; }.vision-note strong { margin-bottom: 2px; font-size: 13px; }.vision-note div > span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 12px; font-weight: 800; }.text-link .icon { width: 17px; height: 17px; transition: transform .2s ease; }.text-link:hover .icon, .text-link:focus-visible .icon { transform: translateX(5px); }

.solutions-section { background: var(--paper); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }.section-heading-row > div { max-width: 660px; }.section-heading-row > p { max-width: 365px; margin-bottom: 4px; color: var(--muted); font-size: 14px; }
.solutions-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.solution-card { background: var(--white); transition: transform .25s var(--ease), box-shadow .25s ease; }.solution-card:hover { box-shadow: 0 20px 40px rgba(6,26,58,.1); transform: translateY(-7px); }.card-media { position: relative; height: 220px; overflow: hidden; background: var(--navy); }.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(3,17,39,.52)); }.card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); transition: transform .5s var(--ease), filter .3s ease; }.solution-card:hover .card-media img { filter: saturate(.9); transform: scale(1.04); }.card-index { position: absolute; z-index: 1; top: 13px; right: 15px; color: var(--yellow); font-family: "DM Mono", monospace; font-size: 11px; }.card-body { position: relative; padding: 24px 21px 25px; }.card-icon { display: grid; place-items: center; width: 31px; height: 31px; margin-bottom: 20px; color: var(--blue); border: 1px solid #b8d0f0; }.card-icon .icon { width: 17px; height: 17px; }.card-body h3 { margin-bottom: 9px; font-size: 19px; line-height: 1.2; }.card-body p { min-height: 69px; margin-bottom: 20px; color: var(--muted); font-size: 12px; line-height: 1.6; }.card-link { display: grid; place-items: center; width: 31px; height: 31px; color: var(--blue); border: 1px solid #c7d9ee; transition: color .2s ease, background .2s ease; }.card-link:hover, .card-link:focus-visible { color: var(--white); background: var(--blue); }.card-link .icon { width: 15px; height: 15px; }

.why-section { background: var(--white); }.why-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 110px; }.why-intro { position: sticky; top: 130px; max-width: 390px; }.why-intro > p:not(.eyebrow) { margin-bottom: 27px; color: var(--muted); font-size: 14px; }.pillar-list { border-top: 1px solid var(--line); }.pillar { display: grid; grid-template-columns: 40px 44px 1fr 22px; align-items: center; gap: 18px; min-height: 125px; border-bottom: 1px solid var(--line); }.pillar-number { color: var(--blue); font-family: "DM Mono", monospace; font-size: 11px; }.pillar-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--blue); border: 1px solid #c7d9ee; }.pillar-icon .icon { width: 21px; height: 21px; }.pillar h3 { margin-bottom: 3px; font-size: 19px; }.pillar p { margin: 0; color: var(--muted); font-size: 12px; }.pillar-arrow { color: var(--blue); opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }.pillar:hover .pillar-arrow { opacity: 1; transform: translateY(0); }.pillar-arrow .icon { width: 17px; height: 17px; }

.approach-section { position: relative; overflow: hidden; background: var(--paper); }.approach-section::before { content: "04"; position: absolute; top: 10%; right: 3%; color: rgba(0,87,208,.05); font-family: "DM Mono", monospace; font-size: 220px; font-weight: 500; line-height: 1; }.approach-heading { position: relative; z-index: 1; }.approach-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }.approach-line { position: absolute; top: 292px; right: calc((100% - var(--container)) / 2 + 40px); left: calc((100% - var(--container)) / 2 + 40px); height: 1px; background: #b9cce6; }.approach-step { position: relative; padding-top: 41px; }.step-index { position: absolute; top: 0; left: 0; color: var(--blue); font-family: "DM Mono", monospace; font-size: 11px; }.step-dot { position: relative; z-index: 2; display: block; width: 14px; height: 14px; margin-bottom: 40px; border: 3px solid var(--paper); border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }.approach-step h3 { margin-bottom: 9px; font-size: 21px; }.approach-step p { max-width: 220px; color: var(--muted); font-size: 12px; line-height: 1.65; }


.stories-section { background: var(--white); }.stories-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 14px; }.story-card { display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); transition: box-shadow .25s ease, transform .25s var(--ease); }.story-card:hover { box-shadow: 0 18px 36px rgba(6,26,58,.1); transform: translateY(-6px); }.story-image { position: relative; height: 202px; overflow: hidden; background: var(--mist); }.story-card-featured .story-image { height: 270px; }.story-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(6,26,58,.55)); }.story-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .5s var(--ease); }.story-card:hover img { transform: scale(1.04); }.story-label { position: absolute; z-index: 1; top: 15px; left: 15px; padding: 6px 8px; color: var(--navy); background: var(--yellow); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .08em; }.story-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 21px 22px 24px; }.story-meta { margin-bottom: 11px; color: var(--blue); font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .08em; }.story-body h3 { margin-bottom: 19px; font-size: 18px; line-height: 1.3; }.story-card-featured .story-body h3 { font-size: 26px; max-width: 420px; }.story-body p { max-width: 440px; margin-bottom: 18px; color: var(--muted); font-size: 12px; }.story-body .text-link { margin-top: auto; }

.contact-section { position: relative; overflow: hidden; padding: 115px 0; color: var(--white); background: var(--blue); }.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to right, black, transparent 75%); }.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; }.contact-grid h2 { max-width: 680px; margin-bottom: 20px; font-size: 64px; line-height: 1.03; }.contact-grid > div > p:not(.eyebrow) { max-width: 450px; margin-bottom: 29px; color: #d3e2f6; font-size: 15px; }.contact-aside { position: relative; display: flex; flex-direction: column; justify-self: end; width: 270px; height: 270px; padding: 22px; border: 1px solid rgba(255,255,255,.33); }.contact-aside-index { color: var(--yellow); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .1em; }.contact-aside-line { width: 45px; height: 1px; margin-top: 15px; background: rgba(255,255,255,.55); }.contact-aside p { margin-top: auto; margin-bottom: 0; font-size: 26px; font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }.contact-aside p strong { color: var(--yellow); font-weight: 800; }.contact-aside-orbit { position: absolute; right: -58px; bottom: 22px; width: 190px; height: 64px; border: 2px solid var(--yellow); border-left-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-14deg); }

.site-footer { color: #d5e1f1; background: var(--navy-deep); }.footer-top { display: grid; grid-template-columns: 1.3fr .8fr 1.1fr .7fr; gap: 44px; padding-top: 64px; padding-bottom: 58px; }.footer-logo-panel { display: flex; align-items: center; justify-content: center; width: 118px; height: 106px; }.footer-logo-panel img { width: 100%; height: 100%; object-fit: contain; }.footer-brand p { margin-top: 18px; color: #8fa6c4; font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .1em; }.footer-label { display: block; margin-bottom: 17px; color: var(--yellow); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .1em; }.footer-nav, .footer-contact, .footer-locale { display: flex; flex-direction: column; align-items: flex-start; }.footer-nav a, .footer-contact a, .footer-contact p, .footer-language, .footer-language-muted { margin: 0 0 9px; color: #a8bbd2; font-size: 12px; line-height: 1.65; }.footer-nav a:hover, .footer-contact a:hover, .footer-language:hover { color: var(--white); }.footer-contact p { margin-bottom: 6px; }.footer-language { border: 0; padding: 0; background: transparent; cursor: pointer; }.footer-language span { margin-left: 8px; color: #8098b8; }.footer-language-muted { color: #7189a7; font-family: "DM Mono", monospace; font-size: 10px; }.footer-bottom { display: flex; align-items: center; gap: 24px; padding-top: 17px; padding-bottom: 20px; border-top: 1px solid rgba(255,255,255,.13); color: #738aa8; font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .03em; }.footer-bottom > span:nth-child(2) { margin-left: auto; }.back-top { display: grid; place-items: center; width: 31px; height: 31px; margin-left: 8px; color: var(--yellow); border: 1px solid rgba(255,202,41,.5); }.back-top:hover { color: var(--navy); background: var(--yellow); }.back-top .icon { width: 15px; height: 15px; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }.is-visible { opacity: 1; transform: translateY(0); }.is-visible[data-reveal-delay="80"] { transition-delay: .08s; }.is-visible[data-reveal-delay="100"] { transition-delay: .1s; }.is-visible[data-reveal-delay="120"] { transition-delay: .12s; }.is-visible[data-reveal-delay="140"] { transition-delay: .14s; }.is-visible[data-reveal-delay="160"] { transition-delay: .16s; }.is-visible[data-reveal-delay="200"] { transition-delay: .2s; }.is-visible[data-reveal-delay="240"] { transition-delay: .24s; }.is-visible[data-reveal-delay="300"] { transition-delay: .3s; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 1100px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  .desktop-nav { gap: 18px; }.header-cta { padding-inline: 11px; }
  h1 { font-size: 66px; }.split-section { gap: 70px; }.section-copy h2, .section-heading-row h2, .why-intro h2, .approach-heading h2 { font-size: 42px; }.why-grid { gap: 70px; }.approach-line { right: 24px; left: 24px; }.contact-grid h2 { font-size: 54px; }.footer-top { gap: 26px; }
}

@media (max-width: 820px) {
  .container { width: min(var(--container), calc(100% - 40px)); }.nav-wrap { min-height: 72px; }.desktop-nav, .header-cta { display: none; }.menu-toggle { display: inline-flex; }.nav-actions { margin-left: auto; }.language-toggle { padding-right: 12px; }
  .mobile-nav { display: grid; position: fixed; z-index: -1; inset: 72px 0 0; align-content: start; gap: 0; padding: 34px 20px 40px; overflow-y: auto; visibility: hidden; opacity: 0; background: var(--navy); transform: translateY(-14px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }.site-header.menu-open .mobile-nav { z-index: 1; visibility: visible; opacity: 1; transform: translateY(0); height: 100vh;}.mobile-nav a { padding: 16px 0; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); font-size: 21px; font-weight: 700; }.mobile-nav-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 13px 15px !important; color: var(--navy) !important; border: 0 !important; background: var(--yellow); font-size: 13px !important; }
  .hero-grid { display: block; }.hero-bottom-line { position: absolute; bottom: 22px; }.hero::after { display: none; }
  .section { padding: 92px 0; }.split-section, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }.media-stack { max-width: 600px; }.section-copy { max-width: 680px; }.why-intro { position: static; max-width: 600px; }.solutions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.section-heading-row { align-items: start; flex-direction: column; gap: 8px; margin-bottom: 34px; }.section-heading-row > p { max-width: 580px; }.approach-line { display: none; }.approach-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 26px; }.approach-step { padding-top: 36px; }.step-dot { margin-bottom: 24px; }.stories-grid { grid-template-columns: 1fr 1fr; }.story-card-featured { grid-column: span 2; }.story-card-featured .story-image { height: 300px; }.contact-aside { justify-self: start; }.footer-top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-brand { grid-column: span 2; }.footer-bottom { flex-wrap: wrap; }.footer-bottom > span:nth-child(2) { margin-left: 0; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 36px); }.eyebrow { margin-bottom: 18px; font-size: 10px; }.eyebrow-line { width: 22px; }.hero-lead { font-size: 15px; }.button-row { align-items: stretch; flex-direction: column; max-width: 300px; }.button { justify-content: space-between; }.hero-bottom-line { gap: 8px; font-size: 8px; }.hero-bottom-line > span:nth-child(2) { width: 30px; }.section { padding: 75px 0; }.section-copy h2, .section-heading-row h2, .why-intro h2, .approach-heading h2 { font-size: 34px; }.media-stack { padding-left: 18px; }.media-frame, .media-frame img { min-height: 350px; height: 350px; }.media-caption { left: 18px; }.solutions-grid { grid-template-columns: 1fr; }.card-media { height: 205px; }.card-body p { min-height: 0; }.pillar { grid-template-columns: 28px 39px 1fr; gap: 12px; min-height: 116px; }.pillar-arrow { display: none; }.pillar-icon { width: 38px; height: 38px; }.pillar h3 { font-size: 16px; }.pillar p { font-size: 11px; }.approach-grid { grid-template-columns: 1fr; gap: 18px; }.approach-step { display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; padding: 0 0 22px 30px; border-left: 1px solid #b9cce6; }.step-index { top: 0; left: -1px; transform: translateX(-50%); }.step-dot { position: absolute; top: 2px; left: -7px; width: 13px; height: 13px; margin: 0; }.approach-step h3 { grid-column: 2; margin-bottom: 4px; font-size: 18px; }.approach-step p { grid-column: 2; margin: 0; }.stories-grid { grid-template-columns: 1fr; }.story-card-featured { grid-column: auto; }.story-card-featured .story-image, .story-image { height: 230px; }.story-card-featured .story-body h3 { font-size: 22px; }.contact-section { padding: 82px 0; }.contact-grid h2 { font-size: 43px; }.contact-aside { width: 230px; height: 230px; }.footer-top { grid-template-columns: 1fr; gap: 28px; }.footer-brand { grid-column: auto; }.footer-bottom { display: grid; gap: 10px; }.footer-bottom > span:nth-child(2) { grid-row: 2; }.back-top { position: absolute; right: 18px; }.footer-bottom { position: relative; padding-right: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Refined brand imagery */
.official-logo {
  width: 82px;
  height: 58px;
  object-fit: contain;
}

.hero {
  min-height: 100vh;
  background: var(--navy-deep);
}

.hero::before {
  z-index: 1;
  opacity: 1;
  background: linear-gradient(90deg, rgba(3,17,39,.98) 0%, rgba(3,17,39,.92) 35%, rgba(3,17,39,.58) 62%, rgba(3,17,39,.22) 82%, rgba(3,17,39,.4) 100%), linear-gradient(0deg, rgba(3,17,39,.45), transparent 50%);
  mask-image: none;
}

.hero::after {
  z-index: 2;
  right: 15%;
  background: rgba(255,255,255,.12);
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #031127;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2200&q=90");
  background-position: 68% center;
  background-size: cover;
}

.hero-grid-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(180,216,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(180,216,255,.17) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, black, rgba(0,0,0,.6) 58%, transparent);
}

.hero-grid {
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 84px;
}

.hero-copy {
  max-width: 680px;
  padding: 95px 0 75px;
}

.hero h1 {
  margin-bottom: 25px;
  font-size: 70px;
  line-height: 1.02;
  text-shadow: 0 3px 24px rgba(0,0,0,.2);
}

.hero-lead {
  max-width: 430px;
  margin-bottom: 31px;
  font-size: 18px;
}

.hero-bottom-line {
  z-index: 4;
}

.about-highlight {
  position: absolute;
  z-index: 2;
  right: -42px;
  bottom: 96px;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  padding: 22px;
  overflow: hidden;
  color: var(--navy);
}

.about-highlight img {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-highlight span {
  position: relative;
  z-index: 1;
  padding: 9px 10px;
  color: var(--white);
  background: var(--navy);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.55;
  text-align: center;
}

.about-highlight strong {
  font-size: 15px;
}

.global-vision-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.global-vision-section::before {
  content: "VISION";
  position: absolute;
  top: 20px;
  right: -22px;
  color: rgba(0,87,208,.045);
  font-family: "DM Mono", monospace;
  font-size: 170px;
  font-weight: 500;
  line-height: 1;
}

.global-vision-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.global-vision-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.08;
}

.global-vision-heading h2 em {
  color: var(--blue);
}

.global-vision-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
}

.global-vision-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  min-height: 560px;
}

.global-vision-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--mist);
}

.global-vision-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3,17,39,.62));
}

.global-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78);
  transition: transform .8s var(--ease), filter .4s ease;
}

.global-vision-stage:hover .global-vision-image img {
  filter: saturate(.95);
  transform: scale(1.025);
}

.vision-image-label {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  display: grid;
  gap: 2px;
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-align: right;
}

.vision-image-label strong {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 500;
}

.global-vision-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  color: var(--white);
  background: var(--navy);
  border-top: 6px solid var(--yellow);
}

.global-vision-index {
  margin-bottom: 44px;
  color: #96aac5;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.global-vision-content h3 {
  max-width: 360px;
  margin-bottom: 17px;
  font-size: 35px;
  line-height: 1.08;
}

.global-vision-content > p {
  margin-bottom: 31px;
  color: #b9c9dd;
  font-size: 13px;
}

.vision-principles {
  margin-bottom: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.vision-principles div {
  display: grid;
  grid-template-columns: 30px 95px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.vision-principles span,
.vision-principles small {
  color: #859bb8;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.vision-principles strong {
  font-size: 12px;
}

.text-link-light {
  color: var(--yellow);
}

@media (max-width: 820px) {
  .official-logo { width: 66px; height: 46px; }
  .hero { min-height: 680px; }
  .hero-grid { min-height: 630px; padding-top: 72px; }
  .hero-copy { padding: 95px 0 75px; }
  .hero-background { background-position: 70% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,17,39,.97), rgba(3,28,65,.78) 72%, rgba(3,17,39,.45)); }
  .hero-grid-overlay { mask-image: none; }
  .about-highlight { right: -10px; bottom: 88px; width: 148px; height: 148px; padding: 17px; }
  .global-vision-heading { grid-template-columns: 1fr; gap: 20px; }
  .global-vision-heading h2 { font-size: 44px; }
  .global-vision-heading > p { max-width: 620px; }
  .global-vision-stage { grid-template-columns: 1fr; }
  .global-vision-image { min-height: 430px; }
  .global-vision-content { padding: 52px 46px; }
}

@media (max-width: 560px) {
  .official-logo { width: 58px; height: 42px; }
  .hero { min-height: 680px; }
  .hero-grid { min-height: 630px; }
  .hero-copy { padding: 70px 0 60px; }
  .hero h1 { max-width: 430px; font-size: 45px; }
  .hero-lead { font-size: 15px; }
  .hero-background { background-position: 68% center; }
  .hero::before { background: linear-gradient(90deg, rgba(3,17,39,.98), rgba(3,27,62,.83)); }
  .hero-bottom-line span:nth-child(2) { display: none; }
  .about-highlight { right: 0; bottom: 76px; width: 124px; height: 124px; padding: 13px; }
  .about-highlight span { font-size: 9px; }
  .about-highlight strong { font-size: 12px; }
  .global-vision-section::before { top: 50px; font-size: 90px; }
  .global-vision-heading { margin-bottom: 34px; }
  .global-vision-heading h2 { font-size: 35px; }
  .global-vision-image { min-height: 320px; }
  .vision-image-label { right: 18px; bottom: 17px; }
  .global-vision-content { padding: 38px 24px 42px; }
  .global-vision-index { margin-bottom: 28px; }
  .global-vision-content h3 { font-size: 29px; }
  .vision-principles div { grid-template-columns: 25px 82px 1fr; }
}
