:root {
  --navy-950: #07111f;
  --navy-900: #0b1828;
  --navy-850: #102033;
  --navy-800: #14263a;
  --cyan: #35d4c5;
  --cyan-strong: #1bb8aa;
  --cyan-soft: rgba(53, 212, 197, .13);
  --sand: #d5b26e;
  --paper: #f3f6f4;
  --white: #ffffff;
  --ink: #132130;
  --muted: #657585;
  --line: #d7e0e2;
  --surface: #ffffff;
  --surface-soft: #eaf1ef;
  --header: rgba(7, 17, 31, .82);
  --shadow: 0 26px 80px rgba(7, 17, 31, .14);
  --shadow-soft: 0 14px 38px rgba(7, 17, 31, .08);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1240px;
  --header-h: 78px;
  color-scheme: dark;
}

html[data-theme="dark"] {
  --paper: #0a1624;
  --ink: #edf4f4;
  --muted: #9aacb8;
  --line: #26394a;
  --surface: #102033;
  --surface-soft: #0d1b2b;
  --header: rgba(7, 17, 31, .86);
  --shadow: 0 28px 84px rgba(0, 0, 0, .28);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, .2);
}

html[data-theme="light"] {
  --paper: #f7f8f5;
  --ink: #101e2b;
  --muted: #5c6c79;
  --line: #d6dedf;
  --surface: #ffffff;
  --surface-soft: #edf2ef;
  --header: rgba(250, 252, 250, .88);
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--cyan); color: var(--navy-950); }

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

[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  background: var(--cyan);
  color: var(--navy-950);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus { top: 0; }

.page-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 210;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--sand));
  box-shadow: 0 0 14px rgba(53, 212, 197, .5);
}

.section-shell,
.nav-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: clamp(88px, 10vw, 148px) 0;
  position: relative;
}

.section-light { background: var(--paper); }
.section-tint { background: var(--surface-soft); }
.section-dark { background: var(--navy-950); color: #eef5f5; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-strong);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-dark .eyebrow { color: var(--cyan); }
.eyebrow span { color: rgba(255, 255, 255, .35); padding-inline: .35em; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; text-wrap: balance; }
h2 { margin-bottom: 0; font-size: clamp(2.35rem, 5vw, 4.6rem); letter-spacing: -.055em; }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }
p { color: var(--muted); }
.section-dark p { color: #aebdca; }

.section-heading { max-width: 900px; margin-bottom: 54px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(36px, 8vw, 110px); align-items: end; max-width: none; }
.split-heading > p { margin: 0 0 8px; font-size: 1.02rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: var(--header);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

html[data-theme="light"] .site-header {
  border-bottom-color: rgba(7, 17, 31, .09);
  box-shadow: 0 6px 30px rgba(7, 17, 31, .06);
}

.site-header.is-hidden { transform: translateY(-105%); }
.nav-shell { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(53, 212, 197, .55);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(53, 212, 197, .18), rgba(213, 178, 110, .06));
  color: var(--cyan);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { color: #f3f7f7; font-size: .92rem; letter-spacing: .015em; }
.brand-copy small { margin-top: 4px; color: #8393a2; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
html[data-theme="light"] .brand-copy strong { color: var(--ink); }

.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.desktop-nav a { position: relative; color: #9fafbb; font-size: .82rem; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--cyan); transition: right .25s ease; }
.desktop-nav a:hover,
.desktop-nav a.is-active { color: #fff; }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }
html[data-theme="light"] .desktop-nav a { color: #536371; }
html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .desktop-nav a.is-active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-button,
.menu-toggle {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
  color: #d5e0e5;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

html[data-theme="light"] .icon-button,
html[data-theme="light"] .menu-toggle { border-color: rgba(7, 17, 31, .13); background: rgba(7, 17, 31, .03); color: var(--ink); }
.icon-button:hover,
.menu-toggle:hover { transform: translateY(-2px); border-color: var(--cyan); }
.search-trigger { display: flex; gap: 7px; }
.search-trigger span { font-size: 1.3rem; line-height: 1; }
kbd { border: 1px solid rgba(255, 255, 255, .14); border-radius: 5px; padding: 1px 5px; color: #8fa0ad; font: 600 .62rem/1.5 "Segoe UI", sans-serif; }
html[data-theme="light"] kbd { border-color: rgba(7, 17, 31, .14); color: #677785; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 820;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--cyan); color: var(--navy-950); box-shadow: 0 12px 30px rgba(53, 212, 197, .18); }
.button-primary:hover { background: #65e4d8; box-shadow: 0 16px 36px rgba(53, 212, 197, .26); }
.button-ghost { border-color: rgba(255, 255, 255, .19); background: rgba(255, 255, 255, .045); color: #f3f7f7; }
.button-ghost:hover { border-color: var(--cyan); background: rgba(53, 212, 197, .08); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--ink); box-shadow: var(--shadow-soft); }
.button-secondary:hover { border-color: var(--cyan-strong); }
.button-small { min-height: 40px; padding-inline: 16px; font-size: .75rem; }
.button-full { width: 100%; }

.menu-toggle { display: none; position: relative; }
.menu-toggle span { position: absolute; width: 17px; height: 1.5px; background: currentColor; transition: transform .2s ease, top .2s ease; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-nav { display: grid; padding: 10px 24px 24px; border-top: 1px solid rgba(255, 255, 255, .08); background: var(--header); }
.mobile-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); color: #dbe5e8; font-weight: 700; }
html[data-theme="light"] .mobile-nav a { border-bottom-color: rgba(7, 17, 31, .08); color: var(--ink); }

.hero {
  min-height: 930px;
  padding: calc(var(--header-h) + 92px) 0 0;
  isolation: isolate;
  overflow: hidden;
}

.hero-grid,
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image: linear-gradient(rgba(53, 212, 197, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 212, 197, .14) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black 0, transparent 85%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 800px;
  height: 800px;
  right: -220px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 212, 197, .12), transparent 68%);
}

.hero-layout { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: clamp(54px, 7vw, 96px); align-items: center; min-height: 680px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 30px; }
.availability-pill { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 32px; padding: 8px 12px; border: 1px solid rgba(53, 212, 197, .22); border-radius: 999px; background: rgba(53, 212, 197, .06); color: #b8cacb; font-size: .72rem; font-weight: 700; }
.pulse-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(53, 212, 197, .4); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(53, 212, 197, 0); } 100% { box-shadow: 0 0 0 0 rgba(53, 212, 197, 0); } }

.hero h1 { max-width: 800px; margin: 0 0 30px; color: #f3f6f4; font-size: clamp(3rem, 5.8vw, 5.7rem); letter-spacing: -.065em; }
.hero h1 em { color: var(--sand); font-family: Georgia, "Times New Roman", serif; font-size: .92em; font-weight: 400; }
.hero-lede { max-width: 700px; margin-bottom: 34px; color: #aebdca; font-size: clamp(1rem, 1.45vw, 1.21rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 46px; border-block: 1px solid rgba(255, 255, 255, .1); }
.hero-meta div { padding: 18px 18px 18px 0; }
.hero-meta span, .hero-meta strong { display: block; }
.hero-meta span { color: #738695; font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-meta strong { margin-top: 5px; color: #eaf1f2; font-size: .83rem; }
.hero-lede strong { color: #eaf3f3; font-weight: 780; }

.hero-visual { position: relative; min-height: 590px; transform-style: preserve-3d; }
.hero-main-image { position: absolute; inset: 54px 0 auto 54px; z-index: 2; overflow: hidden; height: 430px; margin: 0; border: 1px solid rgba(255, 255, 255, .15); border-radius: var(--radius); box-shadow: 0 38px 90px rgba(0, 0, 0, .38); }
.hero-main-image::before, .spotlight-card::before { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(53, 212, 197, .16), transparent 44%); transition: opacity .25s ease; }
.hero-main-image:hover::before, .spotlight-card:hover::before { opacity: 1; }
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.hero-main-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 17, 31, .92), transparent 58%); }
.hero-main-image figcaption { position: absolute; z-index: 3; left: 24px; right: 24px; bottom: 20px; display: flex; flex-direction: column; }
.hero-main-image figcaption span { color: var(--cyan); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-main-image figcaption strong { margin-top: 4px; color: #fff; font-size: 1rem; }
.hero-small-image { position: absolute; z-index: 3; overflow: hidden; width: 190px; height: 140px; margin: 0; border: 5px solid var(--navy-950); border-radius: 14px; background: var(--navy-900); box-shadow: 0 22px 55px rgba(0, 0, 0, .35); }
.hero-small-image img { width: 100%; height: 100%; object-fit: cover; opacity: .88; }
.hero-small-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 17, 31, .82), transparent); }
.hero-small-image figcaption { position: absolute; z-index: 2; left: 12px; bottom: 8px; color: #eaf3f3; font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero-small-one { right: -20px; top: 0; transform: rotate(2.5deg); }
.hero-small-two { left: 0; bottom: 20px; transform: rotate(-2deg); }
.hero-orbit { position: absolute; inset: 8px auto auto 8px; width: 520px; height: 520px; border: 1px solid rgba(53, 212, 197, .12); border-radius: 50%; }
.hero-orbit::before { content: ""; position: absolute; inset: 54px; border: 1px dashed rgba(213, 178, 110, .14); border-radius: 50%; }
.hero-orbit span { position: absolute; width: 7px; height: 7px; top: 48px; left: 104px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 18px var(--sand); }

.proof-strip { display: grid; grid-template-columns: 280px 1fr; align-items: center; min-height: 104px; margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .1); }
.proof-strip p { margin: 0; color: #e3ecee; font-size: .84rem; font-weight: 800; }
.proof-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.proof-strip li { position: relative; padding-left: 15px; color: #8496a4; font-size: .72rem; }
.proof-strip li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); }

.intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(50px, 9vw, 130px); align-items: start; }
.intro-grid .section-heading { margin-bottom: 0; }
.intro-copy .lead { color: var(--ink); font-size: clamp(1.18rem, 1.8vw, 1.48rem); line-height: 1.5; }
.intro-copy > p:not(.lead) { font-size: 1rem; }
.profile-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 32px; }
.profile-links a, .text-button { padding: 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); font-size: .8rem; font-weight: 800; cursor: pointer; }
.profile-links a:hover, .text-button:hover { border-bottom-color: var(--cyan-strong); color: var(--cyan-strong); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 78px; }
.value-card { position: relative; min-height: 290px; padding: 32px 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-7px); border-color: rgba(27, 184, 170, .55); }
.value-card .value-number { display: block; margin-bottom: 52px; color: #b2c0c5; font-size: .68rem; font-weight: 900; letter-spacing: .16em; }
.value-card h3 { margin-bottom: 14px; }
.value-card p:last-child { margin-bottom: 0; font-size: .9rem; }

.scale-section { position: relative; overflow: hidden; padding: clamp(96px, 11vw, 162px) 0; }
.scale-noise { position: absolute; inset: 0; opacity: .2; pointer-events: none; background-image: linear-gradient(rgba(53, 212, 197, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 212, 197, .08) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 72% 35%, #000, transparent 65%); }
.scale-section::after { content: "650+"; position: absolute; right: -2vw; top: 45px; color: rgba(255,255,255,.022); font-size: clamp(9rem, 24vw, 25rem); font-weight: 950; letter-spacing: -.09em; line-height: 1; pointer-events: none; }
.scale-section .section-shell { position: relative; z-index: 1; }
.scale-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.025); box-shadow: 0 40px 110px rgba(0,0,0,.28); }
.scale-card { position: relative; min-height: 360px; padding: 30px 26px; border-right: 1px solid rgba(255,255,255,.12); }
.scale-card:last-child { border-right: 0; }
.scale-card::before { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--sand)); transition: right .45s ease; }
.scale-card:hover::before { right: 0; }
.scale-index { display: block; margin-bottom: 78px; color: #617482; font-size: .65rem; font-weight: 900; letter-spacing: .15em; }
.scale-card > strong { display: block; color: #fff; font-size: clamp(2.8rem, 4.4vw, 4.7rem); font-weight: 860; letter-spacing: -.07em; line-height: .9; }
.scale-card > strong em { color: var(--cyan); font-size: .34em; font-style: normal; letter-spacing: 0; }
.scale-card h3 { margin: 24px 0 12px; color: #edf4f4; font-size: 1.05rem; }
.scale-card p { margin: 0; font-size: .78rem; }
.platform-command { display: grid; grid-template-columns: 1fr 180px .85fr; gap: clamp(30px, 6vw, 72px); align-items: center; margin-top: 18px; padding: 32px 36px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: linear-gradient(120deg, rgba(53,212,197,.075), rgba(255,255,255,.025)); }
.platform-copy h3 { margin-bottom: 10px; color: #f1f6f6; font-size: 1.45rem; }
.platform-copy p:last-child { margin: 0; font-size: .83rem; }
.platform-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.platform-list li { position: relative; padding: 9px 0 9px 22px; border-bottom: 1px solid rgba(255,255,255,.09); color: #aebdc7; font-size: .72rem; font-weight: 720; }
.platform-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 7px; height: 7px; border: 2px solid var(--cyan); border-radius: 50%; box-shadow: 0 0 12px rgba(53,212,197,.45); }
.platform-radar { position: relative; width: 150px; aspect-ratio: 1; margin: auto; border: 1px solid rgba(53,212,197,.25); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 23px, rgba(53,212,197,.14) 24px 25px); }
.platform-radar::before, .platform-radar::after { content: ""; position: absolute; background: rgba(53,212,197,.2); }
.platform-radar::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.platform-radar::after { left: 0; right: 0; top: 50%; height: 1px; }
.platform-radar span { position: absolute; inset: 50% 50% auto auto; width: 45%; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); transform-origin: left; animation: radar-sweep 5s linear infinite; }
.platform-radar i, .platform-radar b { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 14px var(--sand); }
.platform-radar i { top: 28%; left: 67%; }
.platform-radar b { bottom: 23%; left: 33%; }
.platform-radar small { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); color: #e9f1f1; font-size: .67rem; font-weight: 850; }
@keyframes radar-sweep { to { transform: rotate(360deg); } }

.role-selector { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.role-tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface-soft) 72%, transparent); }
.role-tabs button { min-height: 58px; padding: 12px 20px; border: 0; border-radius: 12px; background: transparent; color: var(--muted); font-size: .82rem; font-weight: 820; cursor: pointer; transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.role-tabs button[aria-selected="true"] { background: var(--navy-950); color: #eef5f5; box-shadow: 0 8px 24px rgba(7, 17, 31, .16); }
.role-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(42px, 8vw, 110px); padding: clamp(36px, 6vw, 72px); animation: panel-in .35s ease both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(8px); } }
.role-panel h3 { max-width: 700px; margin-bottom: 18px; font-size: clamp(1.7rem, 3vw, 2.55rem); }
.role-panel-copy p:last-child { max-width: 660px; margin-bottom: 0; }
.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; display: flex; align-items: center; min-height: 48px; padding: 9px 0 9px 30px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .86rem; font-weight: 700; }
.check-list li::before { content: "↘"; position: absolute; left: 0; color: var(--cyan-strong); font-weight: 900; }

.capability-matrix { display: grid; grid-template-columns: 270px 1fr; gap: 42px; align-items: center; margin-top: 24px; padding: 24px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: color-mix(in srgb, var(--surface) 82%, transparent); }
.matrix-label .eyebrow { margin-bottom: 5px; }
.matrix-label p:last-child { margin: 0; color: var(--ink); font-weight: 750; }
.matrix-items { display: flex; flex-wrap: wrap; gap: 7px; }
.matrix-items span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: .7rem; font-weight: 750; }

.delivery-section { overflow: hidden; }
.delivery-section::before { content: ""; position: absolute; width: 700px; height: 700px; left: -250px; bottom: -420px; border: 1px solid rgba(53, 212, 197, .1); border-radius: 50%; box-shadow: 0 0 0 90px rgba(53, 212, 197, .025), 0 0 0 180px rgba(53, 212, 197, .018); }
.method-track { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-block: 1px solid rgba(255, 255, 255, .12); }
.method-track li { position: relative; min-height: 310px; padding: 30px 24px; border-right: 1px solid rgba(255, 255, 255, .12); }
.method-track li:last-child { border-right: 0; }
.method-track li::before { content: ""; position: absolute; left: -1px; right: 100%; top: -1px; height: 2px; background: var(--cyan); transition: right .35s ease; }
.method-track li:hover::before { right: -1px; }
.method-number { display: inline-grid; width: 42px; height: 42px; margin-bottom: 74px; place-items: center; border: 1px solid rgba(255, 255, 255, .15); border-radius: 50%; color: #718594; font-size: .68rem; font-weight: 900; }
.method-track h3 { min-height: 3em; margin-bottom: 14px; color: #eff5f5; font-size: 1.08rem; }
.method-track p:last-child { margin-bottom: 0; font-size: .82rem; }

.project-toolbar { display: grid; grid-template-columns: minmax(190px, .45fr) minmax(460px, 1.5fr) auto; gap: 18px; align-items: center; margin-bottom: 26px; }
.project-search { display: flex; align-items: center; min-height: 43px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--cyan-strong); box-shadow: var(--shadow-soft); }
.project-search > span:first-child { margin-right: 8px; font-size: 1.15rem; }
.project-search input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .75rem; }
.project-search input::placeholder { color: var(--muted); }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { min-height: 39px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: .7rem; font-weight: 780; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.filter-button:hover { border-color: var(--cyan-strong); }
.filter-button.is-active { border-color: var(--navy-950); background: var(--navy-950); color: #fff; }
#projectCount { margin: 0; white-space: nowrap; font-size: .74rem; font-weight: 750; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; gap: 14px; }
.project-card { min-width: 0; }
.project-card[hidden] { display: none; }
.project-featured { grid-column: span 2; }
.project-wide { grid-column: span 2; }
.project-open { position: relative; display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--navy-900); text-align: left; cursor: pointer; box-shadow: var(--shadow-soft); }
.project-open img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.05); transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 17, 31, .02) 20%, rgba(7, 17, 31, .95) 100%); }
.project-content { position: absolute; left: 24px; right: 54px; bottom: 22px; display: flex; flex-direction: column; align-items: flex-start; }
.project-content small { color: var(--cyan); font-size: .63rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.project-content strong { margin-top: 5px; color: #fff; font-size: 1.18rem; line-height: 1.2; }
.project-content em { margin-top: 7px; color: #9eb0bc; font-size: .68rem; font-style: normal; font-weight: 700; }
.project-arrow { position: absolute; right: 20px; top: 18px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; background: rgba(7, 17, 31, .45); color: #fff; transition: transform .25s ease, background .25s ease; }
.project-open:hover img { transform: scale(1.055); filter: saturate(.95) contrast(1.05); }
.project-open:hover .project-arrow { transform: rotate(45deg); background: var(--cyan); color: var(--navy-950); }

.global-reach { position: relative; overflow: hidden; }
.global-reach::before { content: ""; position: absolute; right: -15vw; top: -24vw; width: 58vw; height: 58vw; border: 1px solid rgba(27,184,170,.09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(27,184,170,.025), 0 0 0 140px rgba(27,184,170,.018); pointer-events: none; }
.global-reach-grid { position: relative; display: grid; grid-template-columns: minmax(360px,.82fr) minmax(520px,1.18fr); gap: clamp(46px,8vw,116px); align-items: center; }
.reach-network { position: relative; min-height: 510px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 50%, rgba(27,184,170,.13), transparent 28%), linear-gradient(145deg, var(--surface), var(--surface-soft)); box-shadow: var(--shadow-soft); }
.reach-network::before, .reach-network::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(27,184,170,.23); border-radius: 50%; transform: translate(-50%,-50%); }
.reach-network::before { width: 320px; height: 320px; box-shadow: 0 0 0 64px rgba(27,184,170,.045); }
.reach-network::after { width: 180px; height: 180px; border-style: dashed; }
.reach-network > b { position: absolute; left: 8%; right: 8%; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(27,184,170,.34), transparent); transform: rotate(-24deg); }
.reach-core, .reach-node { position: absolute; z-index: 2; display: grid; place-items: center; border-radius: 50%; font-style: normal; text-align: center; box-shadow: 0 16px 42px rgba(7,17,31,.16); }
.reach-core { left: 50%; top: 50%; width: 142px; height: 142px; background: var(--navy-950); color: #fff; font-size: 1.5rem; font-weight: 900; letter-spacing: -.04em; transform: translate(-50%,-50%); }
.reach-core small, .reach-node small { display: block; margin-top: 2px; font-size: .52rem; font-weight: 780; letter-spacing: .08em; line-height: 1.15; text-transform: uppercase; }
.reach-core small { color: var(--cyan); }
.reach-node { width: 102px; height: 102px; border: 1px solid rgba(27,184,170,.45); background: var(--surface); color: var(--ink); font-size: 1rem; font-weight: 900; }
.reach-node small { max-width: 76px; color: var(--muted); }
.reach-node-one { left: 8%; top: 14%; }
.reach-node-two { right: 8%; top: 13%; }
.reach-node-three { right: 10%; bottom: 11%; width: 116px; height: 116px; }
.reach-list { border-top: 1px solid var(--line); }
.reach-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.reach-list article > span { color: var(--cyan-strong); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.reach-list h3 { margin: -3px 0 7px; font-size: 1.12rem; }
.reach-list p { margin: 0; font-size: .82rem; }
.market-band { position: relative; display: grid; grid-template-columns: 210px 1fr; gap: 28px; align-items: center; margin-top: 18px; padding: 22px 26px; border-radius: var(--radius); background: var(--navy-950); box-shadow: var(--shadow-soft); }
.market-band > span { color: var(--cyan); font-size: .66rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.market-band ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.market-band li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #d9e5e8; font-size: .65rem; font-weight: 760; }

.achievement-band { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-soft); }
.achievement-band > div { min-height: 128px; padding: 24px; border-right: 1px solid var(--line); }
.achievement-band > div:last-child { border-right: 0; }
.achievement-band strong, .achievement-band > div > span { display: block; }
.achievement-band strong { color: var(--ink); font-size: 2.15rem; letter-spacing: -.06em; line-height: 1; }
.achievement-band strong em { color: var(--cyan-strong); font-size: .48em; font-style: normal; }
.achievement-band strong sup { color: var(--cyan-strong); font-size: .42em; }
.achievement-band > div > span { margin-top: 13px; color: var(--muted); font-size: .7rem; font-weight: 780; text-transform: uppercase; letter-spacing: .08em; }
.leadership-note { display: grid; grid-template-columns: 130px 1.3fr .8fr auto; gap: 28px; align-items: center; margin-top: 18px; padding: 28px 30px; border-radius: var(--radius); background: var(--navy-950); color: #edf4f4; box-shadow: var(--shadow); }
.leadership-kicker { color: var(--cyan); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.leadership-note blockquote { margin: 0; color: #fff; font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 720; line-height: 1.15; letter-spacing: -.035em; }
.leadership-note p { margin: 0; font-size: .76rem; }
.leadership-note a { min-width: max-content; color: var(--cyan); font-size: .72rem; font-weight: 850; }

.live-portfolio { padding: clamp(88px, 10vw, 142px) 0; overflow: hidden; }
.live-portfolio-head { display: grid; grid-template-columns: 1.2fr .6fr; gap: 70px; align-items: end; margin-bottom: 42px; }
.live-portfolio-head h2 { max-width: 840px; }
.live-portfolio-head > p { margin: 0 0 7px; font-size: .9rem; }
.live-project-rail { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 170px; gap: 12px; }
.live-project-rail figure { position: relative; grid-column: span 4; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: var(--navy-900); }
.live-project-rail figure:nth-child(1), .live-project-rail figure:nth-child(5) { grid-column: span 5; }
.live-project-rail figure:nth-child(2), .live-project-rail figure:nth-child(6) { grid-column: span 3; }
.live-project-rail img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .55s ease, filter .3s ease; }
.live-project-rail figure:hover img { transform: scale(1.06); filter: saturate(1); }
.live-project-rail figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,17,31,.94), transparent 68%); }
.live-project-rail figcaption { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 14px; display: flex; justify-content: space-between; gap: 14px; align-items: end; }
.live-project-rail strong { color: #fff; font-size: .78rem; }
.live-project-rail span { color: var(--cyan); font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.experience-layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(500px, 1.25fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.experience-sticky { position: sticky; top: calc(var(--header-h) + 44px); }
.experience-sticky > p:not(.eyebrow) { margin: 24px 0 32px; max-width: 440px; }
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 62px 54px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker { position: absolute; left: 0; top: 3px; display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-soft); }
.timeline-marker span { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-strong); }
.timeline-date { margin-bottom: 10px; color: var(--cyan-strong); font-size: .69rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.timeline-item h3 { margin-bottom: 8px; font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
.timeline-company { margin-bottom: 18px; color: var(--ink); font-size: .8rem; font-weight: 750; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: .66rem; font-weight: 760; }

.foundation-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-soft); }
.foundation-card { min-height: 270px; padding: 32px 26px; border-right: 1px solid var(--line); }
.foundation-card:last-child { border-right: 0; }
.foundation-card h3 { margin: 64px 0 14px; }
.foundation-card p:last-child { margin: 0; font-size: .86rem; }

.heading-action > p { margin-bottom: 16px; }
.inline-arrow { display: inline-flex; gap: 8px; align-items: center; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .76rem; font-weight: 850; }
.inline-arrow:hover { border-bottom-color: var(--cyan-strong); color: var(--cyan-strong); }
.section-dark .inline-arrow { color: #e8f0f1; border-color: rgba(255,255,255,.2); }

.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.destination-card { position: relative; display: flex; min-height: 330px; padding: 32px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); transition: transform .28s ease, border-color .28s ease; }
.destination-card::after { content: ""; position: absolute; right: -50px; bottom: -70px; width: 180px; height: 180px; border: 1px solid rgba(27,184,170,.18); border-radius: 50%; box-shadow: 0 0 0 34px rgba(27,184,170,.035); }
.destination-card:hover { transform: translateY(-7px); border-color: var(--cyan-strong); }
.destination-card > span { color: var(--cyan-strong); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.destination-card h3 { max-width: 320px; margin: 72px 0 16px; font-size: 1.55rem; }
.destination-card p { margin-bottom: 24px; font-size: .84rem; }
.destination-card em { margin-top: auto; color: var(--ink); font-size: .72rem; font-style: normal; font-weight: 850; }
.resource-panel { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 110px); align-items: start; margin-top: 18px; padding: clamp(30px, 5vw, 52px); border-radius: var(--radius-lg); background: var(--navy-950); box-shadow: var(--shadow); }
.resource-panel h3 { color: #eef4f5; font-size: clamp(1.5rem, 2.7vw, 2.25rem); }
.resource-panel > div:first-child p:last-child { margin-bottom: 0; font-size: .82rem; }
.resource-links { display: grid; grid-template-columns: repeat(2, 1fr); }
.resource-links a { display: grid; grid-template-columns: 1fr auto; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.resource-links a:nth-child(odd) { padding-right: 22px; }
.resource-links a:nth-child(even) { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.11); }
.resource-links span, .resource-links strong { grid-column: 1; }
.resource-links span { color: #738695; font-size: .6rem; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.resource-links strong { margin-top: 3px; color: #eaf1f2; font-size: .78rem; }
.resource-links em { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--cyan); font-style: normal; transition: transform .2s ease; }
.resource-links a:hover em { transform: rotate(45deg); }

.faq-layout { display: grid; grid-template-columns: minmax(270px,.7fr) minmax(520px,1.3fr); gap: clamp(50px,9vw,130px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-intro > p:not(.eyebrow) { margin: 22px 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; color: var(--ink); font-size: 1rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 22px; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan-strong); font-size: 1rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 740px; padding: 0 52px 24px 0; margin: 0; font-size: .88rem; }

.subpage-main { background: var(--paper); }
.subpage-hero { position: relative; padding: calc(var(--header-h) + 72px) 0 clamp(72px,9vw,120px); overflow: hidden; background: var(--navy-950); color: #eef5f5; }
.subpage-hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(53,212,197,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(53,212,197,.11) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(circle at 80% 40%, #000, transparent 65%); }
.subpage-hero .section-shell { position: relative; z-index: 1; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: clamp(50px,8vw,90px); color: #718595; font-size: .67rem; font-weight: 760; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs span { color: #41596a; }
.subpage-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(40px,9vw,120px); align-items: end; }
.subpage-hero h1 { max-width: 930px; margin: 0; color: #fff; font-size: clamp(3.3rem,7.2vw,7.2rem); letter-spacing: -.07em; line-height: .92; }
.subpage-hero h1 em { display: block; color: var(--cyan); font-style: normal; }
.subpage-hero-copy > p:not(.eyebrow) { max-width: 540px; margin: 24px 0 0; color: #aebdca; font-size: 1rem; }
.subpage-jump { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.subpage-jump > span { display: block; margin-bottom: 14px; color: #657987; font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.subpage-jump nav { display: grid; }
.subpage-jump a { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.09); color: #dce6e8; font-size: .75rem; font-weight: 740; }
.subpage-jump a:last-child { border-bottom: 0; }
.subpage-jump a:hover { color: var(--cyan); }

.page-metric-strip { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 45px; border-block: 1px solid rgba(255,255,255,.12); }
.page-metric-strip div { padding: 20px 24px 20px 0; }
.page-metric-strip strong, .page-metric-strip span { display: block; }
.page-metric-strip strong { color: #fff; font-size: 1.05rem; }
.page-metric-strip span { margin-top: 5px; color: #718493; font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.content-section { padding: clamp(82px,10vw,140px) 0; }
.content-section + .content-section { border-top: 1px solid var(--line); }
.content-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,9vw,130px); align-items: start; }
.content-intro h2 { font-size: clamp(2.5rem,5vw,4.8rem); }
.content-intro-copy .lead { color: var(--ink); font-size: clamp(1.15rem,1.8vw,1.45rem); line-height: 1.5; }
.content-intro-copy p { max-width: 760px; }
.mandate-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 56px; }
.mandate-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.mandate-card > span { color: var(--cyan-strong); font-size: .63rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.mandate-card h3 { margin: 52px 0 14px; }
.mandate-card p { margin: 0; font-size: .84rem; }
.principle-list { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.principle-list article { min-height: 220px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-list article:nth-child(even) { border-right: 0; }
.principle-list article:nth-last-child(-n+2) { border-bottom: 0; }
.principle-list small { color: var(--cyan-strong); font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.principle-list h3 { margin: 38px 0 12px; }
.principle-list p { margin: 0; font-size: .83rem; }
.expectation-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.expectation-grid article { padding: 28px 24px; border-top: 3px solid var(--cyan-strong); background: var(--surface); box-shadow: var(--shadow-soft); }
.expectation-grid h3 { font-size: 1rem; }
.expectation-grid p { margin: 0; font-size: .8rem; }

.sector-nav { position: sticky; top: var(--header-h); z-index: 20; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--paper) 90%, transparent); backdrop-filter: blur(14px); }
.sector-nav .section-shell { display: flex; gap: 8px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.sector-nav a { min-width: max-content; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: .68rem; font-weight: 780; }
.sector-nav a:hover { border-color: var(--cyan-strong); color: var(--ink); }
.sector-block { padding: clamp(76px,9vw,120px) 0; }
.sector-block + .sector-block { border-top: 1px solid var(--line); }
.sector-heading { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; margin-bottom: 38px; }
.sector-heading h2 { font-size: clamp(2.5rem,5vw,4.5rem); }
.sector-heading > div:last-child { max-width: 680px; }
.sector-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.sector-facts span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .66rem; font-weight: 760; }

.insight-index { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.insight-card { display: flex; min-height: 330px; padding: 30px; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }
.insight-card > span { color: var(--cyan-strong); font-size: .63rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.insight-card h2, .insight-card h3 { margin: 58px 0 15px; font-size: 1.45rem; }
.insight-card p { font-size: .82rem; }
.insight-card a { margin-top: auto; color: var(--ink); font-size: .7rem; font-weight: 850; }
.insight-article { scroll-margin-top: calc(var(--header-h) + 50px); }
.article-layout { display: grid; grid-template-columns: minmax(240px,.58fr) minmax(520px,1.42fr); gap: clamp(52px,10vw,140px); }
.article-meta { position: sticky; top: calc(var(--header-h) + 42px); align-self: start; }
.article-meta .article-number { display: block; margin-bottom: 70px; color: #aab8bd; font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.article-meta h2 { font-size: clamp(2.2rem,4vw,3.7rem); }
.article-body .article-lead { color: var(--ink); font-size: clamp(1.18rem,2vw,1.52rem); line-height: 1.48; }
.article-body h3 { margin: 38px 0 12px; font-size: 1.35rem; }
.article-body p, .article-body li { font-size: .9rem; }
.article-body ul { display: grid; gap: 9px; padding-left: 20px; color: var(--muted); }
.article-takeaway { margin-top: 38px; padding: 24px 26px; border-left: 3px solid var(--cyan-strong); background: var(--surface-soft); }
.article-takeaway strong { display: block; margin-bottom: 7px; color: var(--ink); }
.article-takeaway p { margin: 0; }
.external-directory { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.external-directory a { display: grid; min-height: 150px; padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.external-directory span { color: var(--cyan); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.external-directory strong { align-self: end; color: #fff; font-size: .95rem; }
.external-directory small { margin-top: 4px; color: #718493; font-size: .67rem; }

.page-cta { padding: clamp(74px,9vw,120px) 0; background: var(--navy-950); color: #eef5f5; }
.page-cta-grid { display: grid; grid-template-columns: 1.2fr auto; gap: 50px; align-items: center; }
.page-cta h2 { max-width: 900px; margin: 0; font-size: clamp(2.4rem,5vw,4.8rem); }
.page-cta p { max-width: 700px; margin: 18px 0 0; }
.page-cta-actions { display: grid; gap: 10px; min-width: 230px; }

.contact-section { position: relative; padding: clamp(90px, 10vw, 150px) 0; overflow: hidden; }
.contact-bg { opacity: .14; mask-image: radial-gradient(circle at 20% 50%, black, transparent 70%); }
.contact-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr); gap: clamp(54px, 10vw, 140px); align-items: start; }
.contact-copy h2 { max-width: 760px; margin-bottom: 24px; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; font-size: 1.05rem; }
.contact-methods { display: grid; margin-top: 48px; border-top: 1px solid rgba(255, 255, 255, .12); }
.contact-methods a { display: grid; grid-template-columns: 90px 1fr auto; gap: 14px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.contact-methods span { color: #708493; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-methods strong { color: #e6eeee; font-size: .84rem; }
.contact-methods em { color: var(--cyan); font-style: normal; transition: transform .2s ease; }
.contact-methods a:hover em { transform: rotate(45deg); }
.contact-methods-email a { grid-template-columns: 180px 1fr auto; padding-block: 22px; }
.contact-methods-email strong { font-size: 1rem; }

.contact-form { padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .055); box-shadow: 0 30px 80px rgba(0, 0, 0, .25); backdrop-filter: blur(10px); }
.form-heading h3 { margin: 0 0 5px; color: #fff; font-size: 1.55rem; }
.form-heading p { margin-bottom: 28px; font-size: .76rem; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 15px; color: #c9d5da; font-size: .7rem; font-weight: 750; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid rgba(255, 255, 255, .14); border-radius: 9px; background: rgba(7, 17, 31, .55); color: #f3f7f7; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input,
.contact-form select { min-height: 48px; padding: 0 13px; }
.contact-form textarea { resize: vertical; min-height: 126px; padding: 12px 13px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6f8290; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(53, 212, 197, .1); }

.site-footer { padding: 58px 0 24px; background: #050c16; color: #d9e3e6; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 40px; align-items: start; }
.footer-links, .footer-actions { display: grid; gap: 10px; align-items: start; justify-items: start; }
.footer-links a, .footer-actions a, .footer-actions .text-button { color: #899aa7; font-size: .76rem; font-weight: 700; }
.footer-actions .text-button { border-bottom-color: transparent; }
.footer-links a:hover, .footer-actions a:hover, .footer-actions .text-button:hover { color: var(--cyan); }
.footer-base { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-base p { margin: 0; color: #627483; font-size: .67rem; }

dialog { color: var(--ink); }
dialog::backdrop { background: rgba(2, 8, 15, .78); backdrop-filter: blur(7px); }
.project-dialog { width: min(calc(100% - 32px), 660px); padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 40px 120px rgba(0, 0, 0, .35); }
.project-dialog[open] { animation: dialog-in .28s ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.dialog-close { position: absolute; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); font-size: 1.3rem; cursor: pointer; }
.project-dialog h2 { margin: 0 40px 20px 0; font-size: clamp(2rem, 5vw, 3.4rem); }
.dialog-summary { font-size: 1.05rem; color: var(--ink); }
.dialog-detail { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 17px 0; border-top: 1px solid var(--line); }
.dialog-detail span { color: var(--cyan-strong); font-size: .67rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.dialog-detail p { margin: 0; font-size: .84rem; }
.dialog-contact { margin-top: 20px; }

.command-dialog { width: min(calc(100% - 28px), 610px); max-height: 80vh; padding: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .13); border-radius: 18px; background: var(--navy-900); color: #edf4f4; box-shadow: 0 38px 120px rgba(0, 0, 0, .45); }
.command-head { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 18px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.command-head > span { color: var(--cyan); font-size: 1.5rem; }
.command-head input { min-width: 0; border: 0; background: transparent; color: #fff; outline: 0; font-size: 1rem; }
.command-head input::placeholder { color: #728594; }
.command-list { display: grid; max-height: 58vh; padding: 8px; overflow-y: auto; }
.command-list button { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; min-height: 52px; padding: 8px 12px; border: 0; border-radius: 10px; background: transparent; color: #dce5e7; text-align: left; cursor: pointer; }
.command-list button:hover, .command-list button:focus-visible { background: rgba(53, 212, 197, .1); }
.command-list button > span { color: var(--cyan); font-size: .65rem; font-weight: 900; }
.command-list button strong { font-size: .82rem; }
.command-list button small { color: #708493; font-size: .64rem; }
.command-empty { margin: 0; padding: 24px; text-align: center; font-size: .78rem; }

.toast { position: fixed; z-index: 250; left: 50%; bottom: 28px; min-width: 220px; max-width: calc(100% - 32px); padding: 12px 18px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 10px; background: var(--navy-900); color: #eef5f5; font-size: .76rem; font-weight: 750; text-align: center; box-shadow: 0 18px 60px rgba(0, 0, 0, .3); opacity: 0; pointer-events: none; transform: translate(-50%, 14px); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.noscript { position: fixed; z-index: 300; left: 16px; right: 16px; bottom: 16px; padding: 12px 16px; border-radius: 8px; background: #fee2a6; color: #241a06; font-size: .78rem; text-align: center; }

.error-page { min-height: 100vh; background: var(--navy-950); color: #eef5f5; }
.error-page main { position: relative; display: grid; min-height: 100vh; place-items: center; overflow: hidden; padding: 32px; }
.error-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(53, 212, 197, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 212, 197, .14) 1px, transparent 1px); background-size: 68px 68px; mask-image: radial-gradient(circle at center, black, transparent 72%); }
.error-content { position: relative; z-index: 1; width: min(100%, 720px); text-align: center; }
.error-content .brand { justify-content: center; margin-bottom: 80px; }
.error-content h1 { margin-bottom: 20px; font-size: clamp(3rem, 9vw, 6.5rem); letter-spacing: -.065em; }
.error-content > p:not(.eyebrow) { max-width: 520px; margin: 0 auto 32px; color: #aebdca; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.will-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--delay, 0) * 90ms); }
.will-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 30px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 570px; max-width: 760px; width: 100%; margin: 0 auto; }
  .proof-strip { margin-top: 0; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid, .insight-index { grid-template-columns: repeat(2, 1fr); }
  .destination-card:last-child, .insight-card:last-child { grid-column: span 2; }
  .expectation-grid { grid-template-columns: repeat(2,1fr); }
  .external-directory { grid-template-columns: repeat(2,1fr); }
  .scale-grid { grid-template-columns: repeat(2, 1fr); }
  .scale-card { border-bottom: 1px solid rgba(255,255,255,.12); }
  .scale-card:nth-child(2) { border-right: 0; }
  .scale-card:nth-child(n+3) { border-bottom: 0; }
  .project-toolbar { grid-template-columns: 1fr; }
  .project-search { max-width: 360px; }
  .leadership-note { grid-template-columns: 110px 1fr; }
  .leadership-note p, .leadership-note a { grid-column: 2; }
  .method-track { grid-template-columns: repeat(3, 1fr); }
  .method-track li { min-height: 280px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .method-track li:nth-child(3) { border-right: 0; }
  .method-track li:nth-child(n+4) { border-bottom: 0; }
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .foundation-card:nth-child(2) { border-right: 0; }
  .foundation-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .global-reach-grid { grid-template-columns: minmax(320px,.9fr) minmax(440px,1.1fr); gap: 46px; }
}

@media (max-width: 860px) {
  :root { --header-h: 70px; }
  .section-shell, .nav-shell { width: min(calc(100% - 34px), var(--shell)); }
  .nav-actions .button-small, .search-trigger kbd { display: none; }
  .search-trigger { width: 42px; }
  .section { padding-block: 82px; }
  .split-heading, .intro-grid, .contact-layout, .experience-layout, .resource-panel, .faq-layout, .subpage-hero-grid, .content-intro, .sector-heading, .article-layout, .page-cta-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 38px; }
  .split-heading { gap: 24px; }
  .split-heading > p { max-width: 640px; }
  .hero { padding-top: calc(var(--header-h) + 58px); }
  .hero-layout { gap: 34px; }
  .hero-meta { max-width: 620px; }
  .proof-strip { grid-template-columns: 1fr; gap: 13px; padding-block: 22px; }
  .proof-strip ul { grid-template-columns: repeat(2, 1fr); }
  .role-panel { grid-template-columns: 1fr; gap: 30px; }
  .platform-command { grid-template-columns: 1fr 150px; }
  .platform-list { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); }
  .capability-matrix { grid-template-columns: 1fr; gap: 16px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-featured, .project-wide { grid-column: span 2; }
  .experience-sticky { position: static; }
  .faq-intro, .article-meta { position: static; }
  .article-meta .article-number { margin-bottom: 30px; }
  .subpage-jump { max-width: 520px; }
  .mandate-grid { grid-template-columns: repeat(2,1fr); }
  .mandate-card:last-child { grid-column: span 2; }
  .page-cta-actions { grid-template-columns: repeat(2,1fr); min-width: 0; max-width: 520px; }
  .experience-sticky .button { margin-bottom: 24px; }
  .live-portfolio-head { grid-template-columns: 1fr; gap: 20px; }
  .live-project-rail figure, .live-project-rail figure:nth-child(1), .live-project-rail figure:nth-child(2), .live-project-rail figure:nth-child(5), .live-project-rail figure:nth-child(6) { grid-column: span 6; }
  .contact-layout { gap: 56px; }
  .global-reach-grid, .market-band { grid-template-columns: 1fr; }
  .reach-network { width: min(100%, 620px); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}

@media (max-width: 620px) {
  .section-shell, .nav-shell { width: min(calc(100% - 26px), var(--shell)); }
  .brand-copy { display: none; }
  .nav-actions { gap: 7px; }
  .theme-toggle { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .hero-visual { min-height: 430px; }
  .hero-main-image { inset: 36px 0 auto 22px; height: 310px; }
  .hero-main-image figcaption { left: 17px; bottom: 15px; }
  .hero-small-image { width: 132px; height: 100px; border-width: 4px; }
  .hero-small-one { right: -6px; }
  .hero-small-two { left: -5px; bottom: 0; }
  .hero-orbit { width: 380px; height: 380px; }
  .proof-strip ul { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .destination-grid, .insight-index, .mandate-grid, .expectation-grid, .external-directory { grid-template-columns: 1fr; }
  .destination-card:last-child, .insight-card:last-child, .mandate-card:last-child { grid-column: span 1; }
  .destination-card, .insight-card { min-height: 285px; }
  .resource-links { grid-template-columns: 1fr; }
  .resource-links a:nth-child(odd), .resource-links a:nth-child(even) { padding-inline: 0; border-left: 0; }
  .principle-list { grid-template-columns: 1fr; }
  .principle-list article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .principle-list article:last-child { border-bottom: 0 !important; }
  .page-metric-strip { grid-template-columns: repeat(2,1fr); }
  .subpage-hero h1 { font-size: clamp(3rem,15vw,4.8rem); }
  .page-cta-actions { grid-template-columns: 1fr; }
  .value-card { min-height: 235px; }
  .value-card .value-number { margin-bottom: 34px; }
  .scale-grid { grid-template-columns: 1fr; }
  .scale-card { min-height: 285px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12) !important; }
  .scale-card:last-child { border-bottom: 0 !important; }
  .scale-index { margin-bottom: 48px; }
  .platform-command { grid-template-columns: 1fr; padding: 28px 22px; }
  .platform-radar { width: 132px; margin: 6px 0; }
  .platform-list { grid-column: auto; grid-template-columns: 1fr; }
  .role-tabs { grid-template-columns: 1fr; }
  .role-tabs button { min-height: 48px; }
  .role-panel { padding: 28px 22px; }
  .method-track { grid-template-columns: 1fr; }
  .method-track li { min-height: auto; padding: 26px 18px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12) !important; }
  .method-track li:last-child { border-bottom: 0 !important; }
  .method-number { margin-bottom: 24px; }
  .method-track h3 { min-height: 0; }
  .project-toolbar { align-items: flex-start; flex-direction: column; }
  .project-search { width: 100%; max-width: none; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .project-featured, .project-wide { grid-column: span 1; }
  .achievement-band { grid-template-columns: repeat(2, 1fr); }
  .achievement-band > div { border-bottom: 1px solid var(--line); }
  .achievement-band > div:nth-child(2) { border-right: 0; }
  .achievement-band > div:nth-child(n+3) { border-bottom: 0; }
  .leadership-note { grid-template-columns: 1fr; }
  .leadership-note p, .leadership-note a { grid-column: auto; }
  .live-project-rail { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .live-project-rail figure, .live-project-rail figure:nth-child(1), .live-project-rail figure:nth-child(2), .live-project-rail figure:nth-child(5), .live-project-rail figure:nth-child(6) { grid-column: 1; }
  .timeline-item { padding-left: 44px; }
  .foundation-grid { grid-template-columns: 1fr; }
  .foundation-card { min-height: 225px; border-right: 0; border-bottom: 1px solid var(--line); }
  .foundation-card:last-child { border-bottom: 0; }
  .foundation-card h3 { margin-top: 38px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-methods a { grid-template-columns: 72px 1fr auto; }
  .contact-methods strong { word-break: break-word; }
  .contact-methods-email a { grid-template-columns: 1fr auto; }
  .contact-methods-email span { grid-column: 1 / -1; }
  .reach-network { min-height: 410px; }
  .reach-network::before { width: 250px; height: 250px; box-shadow: 0 0 0 44px rgba(27,184,170,.045); }
  .reach-core { width: 112px; height: 112px; }
  .reach-node { width: 82px; height: 82px; font-size: .85rem; }
  .reach-node-three { width: 92px; height: 92px; }
  .reach-node small { font-size: .44rem; }
  .market-band { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .footer-base { flex-direction: column; }
  .project-dialog { padding: 36px 24px 28px; }
  .dialog-detail { grid-template-columns: 1fr; gap: 5px; }
  .command-list button { grid-template-columns: 28px 1fr; }
  .command-list button small { display: none; }
}

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

@media print {
  @page { size: A4; margin: 14mm; }
  :root { --paper: #fff; --surface: #fff; --surface-soft: #fff; --ink: #111; --muted: #444; --line: #bbb; }
  body { background: #fff; color: #111; font-size: 10pt; }
  .site-header, .page-progress, .hero-visual, .proof-strip, .role-tabs, .project-toolbar, .contact-form, .site-footer, dialog, .toast, .hero-actions, .profile-links, .experience-sticky .button, .platform-radar { display: none !important; }
  .section, .hero, .contact-section { min-height: 0; padding: 14mm 0; background: #fff !important; color: #111 !important; break-inside: avoid; }
  .hero { padding-top: 0; }
  .hero-copy { max-width: none; }
  .hero h1, .section-dark h2, .section-dark h3, .section-dark p, .contact-methods strong { color: #111 !important; }
  .hero h1 { font-size: 30pt; }
  .hero h1 em { color: #555; }
  .hero-meta { border-color: #bbb; }
  .hero-meta span, .hero-meta strong { color: #333; }
  h2 { font-size: 22pt; }
  .value-grid, .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .scale-grid, .achievement-band { grid-template-columns: repeat(2, 1fr); }
  .scale-card { min-height: 0; }
  .value-card, .foundation-card { min-height: 0; box-shadow: none; }
  .role-panel[hidden] { display: grid !important; }
  .role-panel { grid-template-columns: 1fr 1fr; padding: 10mm 0; border-bottom: 1px solid #bbb; }
  .method-track { grid-template-columns: repeat(5, 1fr); border-color: #bbb; }
  .method-track li { min-height: 0; padding: 6mm 3mm; border-color: #bbb; }
  .method-number { margin-bottom: 8mm; color: #333; border-color: #bbb; }
  .method-track h3 { min-height: 0; color: #111; }
  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 60mm; }
  .project-card[hidden] { display: block !important; }
  .experience-layout { grid-template-columns: 1fr 1.4fr; }
  .experience-sticky { position: static; }
  .contact-methods { border-color: #bbb; }
  .contact-methods a { border-color: #bbb; }
}
