:root {
  --navy-950: #03111f;
  --navy-900: #061827;
  --navy-800: #0b263a;
  --navy-700: #153a52;
  --ink: #102633;
  --muted: #667783;
  --green: #21d69b;
  --green-dark: #0c9069;
  --green-soft: #dff9ef;
  --blue: #3a78ff;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --stone: #e7e3da;
  --white: #ffffff;
  --line: rgba(16, 38, 51, 0.15);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(4, 20, 33, 0.14);
  --radius: 2px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4, .brand, .metric, .display {
  font-family: "DM Sans", Arial, sans-serif;
}
h1, h2 { letter-spacing: -0.05em; line-height: 0.98; }
h3 { letter-spacing: -0.025em; line-height: 1.15; }
::selection { background: var(--green); color: var(--navy-950); }

.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;
}
.mobile-only { display: none; }

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--green);
  color: var(--navy-950);
  font-weight: 700;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 max(26px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(3, 17, 31, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 650; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--green);
  font-size: 14px;
  letter-spacing: -0.04em;
}
.brand-mark.official-logo {
  width: 58px;
  height: 38px;
  padding: 5px;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.6);
}
.brand-mark.official-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 15px; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.52); font: 500 8px "Manrope"; letter-spacing: .11em; text-transform: uppercase; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 23px; }
.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--green);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle i { display: block; width: 25px; height: 2px; margin: 6px 0; background: var(--white); transition: .25s; }

.button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: transparent; color: var(--green); }
.button-small { min-height: 38px; padding-inline: 15px; font-size: 10px; }
.button-outline { background: transparent; color: var(--green); }
.button-outline:hover { background: var(--green); color: var(--navy-950); }
.button-dark { background: var(--navy-950); color: var(--white); border-color: var(--navy-950); }
.button-dark:hover { color: var(--navy-950); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: 12px; font-weight: 750; }
.text-link span { color: var(--green-dark); }

.shell { width: min(var(--max), calc(100% - 52px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-compact { padding: 76px 0; }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-stone { background: var(--stone); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-rule { border-top: 1px solid var(--line); }
.section-dark .section-rule, .section-navy .section-rule { border-color: var(--line-dark); }

.eyebrow {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-dark .eyebrow, .section-navy .eyebrow, .page-hero .eyebrow { color: var(--green); }
.section-title { max-width: 920px; margin-bottom: 58px; }
.section-title h2 { margin-bottom: 24px; font-size: clamp(42px, 5vw, 74px); font-weight: 520; }
.section-title h2 em { color: var(--green-dark); font-style: normal; font-weight: 420; }
.section-dark .section-title h2 em, .section-navy .section-title h2 em { color: var(--green); }
.section-title p:last-child { max-width: 720px; color: var(--muted); font-size: 18px; }
.section-dark .section-title p:last-child, .section-navy .section-title p:last-child { color: rgba(255,255,255,.62); }
.lead { font-size: 22px; line-height: 1.45; color: var(--ink); }
.muted { color: var(--muted); }
.kicker-line { display: flex; align-items: center; gap: 14px; }
.kicker-line::before { content: ""; width: 38px; height: 1px; background: var(--green); }

.page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(58,120,255,.21), transparent 30%),
    radial-gradient(circle at 67% 60%, rgba(33,214,155,.12), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #09283e 72%, #0e354b);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -150px;
  bottom: -260px;
  border: 1px solid rgba(33,214,155,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(33,214,155,.025), 0 0 0 160px rgba(33,214,155,.02);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 78px; align-items: end; min-width: 0; }
.hero-copy, .hero-side { min-width: 0; }
.hero-copy h1 { margin-bottom: 28px; max-width: 920px; font-size: clamp(52px, 6.1vw, 94px); font-weight: 520; }
.hero-copy h1 em { color: var(--green); font-style: normal; font-weight: 400; }
.hero-copy > p:last-of-type { max-width: 760px; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-actions { display: flex; gap: 26px; align-items: center; margin-top: 34px; flex-wrap: wrap; }
.hero-side { display: grid; align-content: end; }
.hero-side-note { border-top: 1px solid rgba(255,255,255,.35); padding-top: 18px; display: grid; grid-template-columns: 58px 1fr; gap: 15px; }
.hero-side-note span { color: var(--green); font: 700 11px "DM Sans"; }
.hero-side-note p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; }

.home-hero { min-height: 820px; align-items: center; padding-bottom: 64px; }
.home-hero::before {
  opacity: 0;
  background-image: none;
  mask-image: none;
}
.home-hero .hero-grid { align-items: center; }
.home-hero .hero-copy h1 { font-size: clamp(50px, 5.25vw, 80px); }
.hero-signal { margin: 0 0 22px; color: var(--green); font: 750 14px "DM Sans"; letter-spacing: .105em; text-transform: uppercase; }
.hero-microcopy { font-size: 15px !important; max-width: 650px !important; }
.home-video-frame {
  width: min(100%, 584px);
  min-height: 0;
  aspect-ratio: 584 / 347;
  margin-left: auto;
  border-color: rgba(33,214,155,.5);
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
  background: #02080d;
}
.home-video-frame::before,
.home-video-frame::after { display: none; }
.hero-video-player { width: 100%; height: 100%; object-fit: contain !important; background: #02080d; }
.hero-value-strip { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; border-top: 1px solid rgba(255,255,255,.18); background: rgba(3,17,31,.7); backdrop-filter: blur(14px); }
.hero-values { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-values article { padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-values article:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.hero-values strong { display: block; color: var(--white); font: 700 20px "DM Sans"; }
.hero-values span { color: rgba(255,255,255,.56); font-size: 12px; }

.media-placeholder {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(33,214,155,.08), rgba(58,120,255,.08)),
    var(--navy-800);
  border: 1px solid rgba(255,255,255,.22);
  isolation: isolate;
}
.media-placeholder.light { background: linear-gradient(135deg, #eff3ef, #dfe6e4); border-color: var(--line); }
.media-placeholder::before, .media-placeholder::after { content: ""; position: absolute; z-index: -1; }
.media-placeholder::before { inset: 18px; border: 1px solid rgba(33,214,155,.32); }
.media-placeholder::after { width: 220px; height: 220px; right: -85px; top: -85px; border: 1px solid rgba(33,214,155,.25); border-radius: 50%; }
.media-placeholder .media-label { position: absolute; left: 25px; bottom: 22px; width: calc(100% - 50px); max-width: calc(100% - 50px); min-width: 0; }
.media-placeholder .media-label small { display: block; color: var(--green); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; }
.media-placeholder .media-label strong { display: block; margin-top: 5px; color: var(--white); font: 600 15px "DM Sans"; overflow-wrap: anywhere; }
.media-placeholder.light .media-label strong { color: var(--ink); }
.media-placeholder .media-cross { position: absolute; inset: 0; opacity: .2; background: linear-gradient(to top right, transparent calc(50% - .5px), rgba(33,214,155,.7), transparent calc(50% + .5px)), linear-gradient(to bottom right, transparent calc(50% - .5px), rgba(33,214,155,.7), transparent calc(50% + .5px)); }
.media-placeholder > img, .media-placeholder > video { width: 100%; height: 100%; object-fit: cover; }
.ratio-hero { min-height: 460px; }
.ratio-landscape { aspect-ratio: 16 / 10; }
.ratio-video { aspect-ratio: 16 / 9; }
.ratio-wide { aspect-ratio: 21 / 9; }
.ratio-square { aspect-ratio: 1 / 1; }
.ratio-portrait { aspect-ratio: 4 / 5; }
.media-placeholder.has-media { overflow: hidden; background: var(--navy-900); }
.media-cover { width: 100%; height: 100%; object-fit: cover; }
.contain-media { object-fit: contain; padding: 10px; }
.media-placeholder.has-media img,
.media-placeholder.has-media video { transition: transform .65s ease; }
.media-placeholder.has-media:hover > img { transform: scale(1.025); }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-bar article { min-height: 160px; padding: 31px 32px; border-right: 1px solid var(--line); display: grid; align-content: center; }
.trust-bar article:first-child { border-left: 1px solid var(--line); }
.trust-bar small { color: var(--green-dark); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.trust-bar strong { margin-top: 8px; font: 620 18px "DM Sans"; line-height: 1.2; }
.trust-bar p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.value-promises small { color: var(--green-dark); font-size: 13px; letter-spacing: .1em; }
.value-promises strong { margin-top: 11px; font-size: 21px; }

.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 84px; align-items: start; }
.split-balanced { grid-template-columns: 1fr 1fr; }
.split > *, .market-panel-grid > *, .project-list > *, .card-grid > *, .team-grid > *, .insight-grid > * { min-width: 0; }
.split-copy { max-width: 600px; }
.split-copy h2 { font-size: clamp(42px, 4.6vw, 70px); font-weight: 520; }
.split-copy h2 em { color: var(--green-dark); font-style: normal; font-weight: 400; }
.split-copy p { color: var(--muted); }
.section-dark .split-copy p, .section-navy .split-copy p { color: rgba(255,255,255,.62); }

.number-list { border-top: 1px solid var(--line); }
.number-list article { display: grid; grid-template-columns: 58px 1fr auto; gap: 24px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line); }
.number-list .num { color: var(--green-dark); font: 700 10px "DM Sans"; }
.number-list h3 { margin: 0 0 6px; font-size: 21px; }
.number-list p { margin: 0; max-width: 640px; color: var(--muted); font-size: 13px; }
.number-list .arrow { color: var(--green-dark); font-size: 19px; }
.execution-copy h2 { font-size: clamp(40px, 4.1vw, 62px); }
.problem-answer {
  display: inline-flex;
  margin-top: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(12,144,105,.32);
  background: rgba(33,214,155,.08);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.benefit-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 58px; }
.benefit-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 24px;
  border: 1px solid rgba(12,144,105,.24);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(4,20,33,.08);
  font-size: 12.5px;
  font-weight: 750;
}
.benefit-cloud span::before { content: "\2713"; color: var(--green-dark); font-weight: 900; }
.section-dark .number-list, .section-dark .number-list article, .section-navy .number-list, .section-navy .number-list article { border-color: var(--line-dark); }
.section-dark .number-list p, .section-navy .number-list p { color: rgba(255,255,255,.56); }
.section-dark .number-list .num, .section-navy .number-list .num { color: var(--green); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(12,144,105,.4); }
.card.dark { background: var(--navy-800); border-color: var(--line-dark); color: var(--white); }
.card-index { color: var(--green-dark); font: 750 10px "DM Sans"; }
.card.dark .card-index { color: var(--green); }
.card h3 { margin: 42px 0 10px; font-size: 22px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.card.dark p { color: rgba(255,255,255,.55); }
.card footer { margin-top: auto; padding-top: 30px; color: var(--green-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.card.dark footer { color: var(--green); }
.solution-title { margin-inline: auto; text-align: center; }
.solution-title > p:last-child { margin-inline: auto; }
.solution-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0 22px; }
.solution-badges span {
  min-width: 210px;
  padding: 15px 24px;
  border: 1px solid var(--green);
  border-radius: 16px;
  background: rgba(3,17,31,.72);
  color: var(--green);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.solution-title .eyebrow { font-size: 12px; }
.solution-title h2 { font-size: clamp(40px, 4.4vw, 64px); }
.solution-cards footer { font-size: 12px; letter-spacing: .06em; }
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}
.opportunity-card,
.opportunity-cta { position: relative; min-height: 380px; overflow: hidden; border: 1px solid rgba(33,214,155,.38); border-radius: 20px; }
.opportunity-card { display: grid; grid-template-rows: 210px 1fr; min-height: 380px; background: var(--navy-800); }
.opportunity-media { min-height: 0; overflow: hidden; }
.opportunity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.opportunity-card:hover img { transform: scale(1.045); }
.opportunity-copy { position: relative; z-index: 1; padding: 23px 24px 25px; border-top: 1px solid rgba(33,214,155,.22); }
.opportunity-card small { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.opportunity-card h3 { margin: 9px 0 8px; color: var(--white); font-size: 23px; }
.opportunity-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 12px; }
.opportunity-cta { display: flex; flex-direction: column; justify-content: center; padding: 32px; background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); }
.opportunity-cta small { color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.opportunity-cta strong { margin: 15px 0 28px; color: var(--white); font: 550 26px/1.18 "DM Sans"; }
.opportunity-cta .button { align-self: flex-start; }

.capability-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability { min-height: 330px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.capability small { color: var(--green-dark); font-weight: 800; letter-spacing: .14em; }
.capability h3 { margin: 35px 0 12px; font-size: 26px; }
.capability p { color: var(--muted); }
.deliverable { margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px; font-size: 11px; }
.deliverable strong { display: block; color: var(--green-dark); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; }

.process { position: relative; display: grid; gap: 0; max-width: 1030px; margin: auto; }
.process::before { content: ""; position: absolute; left: 39px; top: 42px; bottom: 42px; width: 1px; background: linear-gradient(var(--green), rgba(33,214,155,.08)); }
.process-step { position: relative; display: grid; grid-template-columns: 80px 1fr 250px; align-items: center; gap: 25px; min-height: 190px; padding: 26px 0; border-bottom: 1px solid var(--line-dark); }
.process-step:last-child { border-bottom: 0; }
.process-number { position: relative; z-index: 2; width: 80px; height: 80px; display: grid; place-items: center; background: var(--navy-950); border: 1px solid var(--green); color: var(--green); border-radius: 50%; font: 700 12px "DM Sans"; }
.process-step h3 { margin: 0 0 8px; font-size: 25px; }
.process-step p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.process-benefit { padding: 19px; border-left: 1px solid var(--green); background: rgba(33,214,155,.05); }
.process-benefit small { display: block; color: var(--green); font-size: 8px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.process-benefit strong { display: block; margin-top: 5px; font-size: 13px; }
.gate-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border: 1px solid var(--line-dark); }
.gate-strip span { padding: 18px; border-right: 1px solid var(--line-dark); text-align: center; color: rgba(255,255,255,.64); font-size: 10px; font-weight: 700; }
.process-hero-video { margin-bottom: 18px; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.workstream-card { padding: 0 24px 26px; overflow: hidden; }
.workstream-card > img {
  display: block;
  width: calc(100% + 48px);
  height: 196px;
  margin: 0 -24px 24px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: #f6faf8;
  border-bottom: 1px solid var(--line);
  transform-origin: center;
}
.workstream-grid .workstream-card:nth-child(1) > img { transform: scale(1.18); }
.workstream-grid .workstream-card:nth-child(2) > img { transform: scale(1.11); }
.workstream-grid .workstream-card:nth-child(3) > img { transform: scale(1.16); }
.workstream-grid .workstream-card:nth-child(4) > img { transform: scale(1.13); }
.workstream-card h3 { margin-top: 24px; }
.process-hero .hero-copy h1 { font-size: clamp(44px, 5vw, 78px); }
.gate-strip span { font-size: 12px; color: rgba(255,255,255,.76); }
.gate-strip span:last-child { border-right: 0; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy-950); color: var(--white); }
.stats-grid article { min-height: 165px; padding: 26px; border-right: 1px solid var(--line-dark); display: flex; flex-direction: column; justify-content: center; }
.stats-grid article:last-child { border-right: 0; }
.metric { color: var(--green); font-size: 38px; line-height: 1; }
.stats-grid span { margin-top: 10px; color: rgba(255,255,255,.58); font-size: 11px; }
.data-note { margin: 15px 0 0; color: var(--muted); font-size: 9px; }

.market-layout { display: grid; grid-template-columns: 330px 1fr; gap: 46px; align-items: start; }
.market-tabs { position: sticky; top: 92px; border-top: 1px solid var(--line); }
.market-tab { width: 100%; padding: 19px 0; display: flex; justify-content: space-between; align-items: center; border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; color: var(--muted); cursor: pointer; }
.market-tab strong { font-size: 13px; }
.market-tab span { color: var(--green-dark); font: 700 10px "DM Sans"; }
.market-tab.active { color: var(--ink); }
.market-panel { display: none; }
.market-panel.active { display: block; animation: fade .35s ease; }
.market-panel-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.market-copy { padding: 38px; background: var(--white); border: 1px solid var(--line); }
.market-copy h3 { font-size: 35px; }
.market-copy p { color: var(--muted); }
.proof-anchor { margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--line); }
.proof-anchor small { color: var(--green-dark); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.proof-anchor strong { display: block; margin-top: 6px; font-size: 14px; }

.project-toolbar { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-bottom: 38px; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-button { padding: 9px 13px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 10px; font-weight: 750; cursor: pointer; }
.filter-button.active, .filter-button:hover { color: var(--navy-950); border-color: var(--green); background: var(--green); }
.project-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.project-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(12,144,105,.4); }
.project-card.hidden { display: none; }
.project-card .media-placeholder { height: 330px; min-height: 330px; border: 0; }
.project-card .media-placeholder::before,
.project-card .media-placeholder::after { display: none; }
.project-media-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0; }
.project-media-pair figure { position: relative; min-width: 0; height: 100%; margin: 0; overflow: hidden; }
.project-media-pair figure + figure { border-left: 1px solid rgba(255,255,255,.3); }
.project-media-pair figure img { width: 100%; height: 100%; object-fit: cover; }
.project-media-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(3,17,31,.78);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.project-hero-montage { display: grid; grid-template-columns: 1.35fr .8fr; grid-template-rows: 1fr 1fr; gap: 6px; min-height: 430px; padding: 6px; }
.project-hero-montage img { width: 100%; height: 100%; object-fit: cover; }
.project-hero-montage img:first-child { grid-row: 1 / -1; }
.project-hero-montage.two-images { grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr; }
.project-hero-montage.two-images img:first-child { grid-row: auto; }
.projects-hero .hero-copy h1 { font-size: clamp(48px, 5.2vw, 78px); }
.project-card-content { padding: 25px; }
.project-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--green-dark); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.project-card h3 { margin: 14px 0 10px; font-size: 30px; }
.project-card p { color: var(--muted); font-size: 14px; }
.project-fact { display: flex; justify-content: space-between; gap: 18px; margin-top: 24px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 12px; }
.project-fact strong { color: var(--ink); }
.project-fact span { color: var(--muted); text-align: right; }
.project-portfolio { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-project-list { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.home-project-list .project-card { grid-column: span 2; }
.home-project-list .project-card:nth-last-child(2) { grid-column: 2 / span 2; }

.team-group + .team-group { margin-top: 72px; }
.team-group-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.team-group-head h2 { margin: 0; font-size: 36px; }
.team-group-head p { margin: 0; max-width: 520px; color: var(--muted); font-size: 12px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person { background: var(--white); border: 1px solid var(--line); }
.person .media-placeholder { min-height: 290px; border: 0; }
.portrait-media { object-position: center top; }
.team-hero .hero-copy h1 { font-size: clamp(48px, 5.3vw, 78px); }
.person-copy { padding: 20px; }
.person-copy small { color: var(--green-dark); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; }
.person-copy h3 { margin: 10px 0 5px; font-size: 19px; }
.person-copy p { margin: 0; color: var(--muted); font-size: 11px; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight { background: var(--white); border: 1px solid var(--line); }
.insight .media-placeholder { min-height: 220px; border: 0; }
.insight-copy { padding: 24px; }
.insight-copy small { color: var(--green-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.insight-copy h3 { margin: 12px 0 25px; font-size: 22px; }
.article-status { display: block; color: var(--muted); font-size: 10px; font-weight: 700; }
.featured-case-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.featured-case-copy h2 { margin-bottom: 25px; font-size: clamp(44px, 5vw, 72px); font-weight: 520; }
.featured-case-copy h2 em { color: var(--green); font-style: normal; font-weight: 420; }
.featured-case-copy .lead { color: rgba(255,255,255,.72); font-size: 18px; }
.featured-points { display: grid; gap: 0; margin: 30px 0; border-top: 1px solid var(--line-dark); }
.featured-points span { padding: 13px 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.78); font-size: 11px; font-weight: 650; }
.featured-points span::before { content: "+"; margin-right: 10px; color: var(--green); }
.featured-case-media { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; min-height: 470px; }
.featured-case-media figure { position: relative; margin: 0; overflow: hidden; }
.featured-case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.featured-case-media figure:hover img { transform: scale(1.035); }
.featured-case-media figcaption { position: absolute; left: 14px; bottom: 14px; padding: 6px 9px; background: rgba(3,17,31,.8); color: var(--white); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.europe-map { position: relative; overflow: hidden; min-height: 680px; background: var(--navy-950); border: 1px solid var(--line-dark); }
.europe-map > img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; opacity: .9; }
.map-markets { position: absolute; inset: auto 34px 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.map-markets > span { min-height: 90px; padding: 18px 19px; background: rgba(3,17,31,.76); border: 1px solid rgba(33,214,155,.42); color: var(--white); font-size: 14px; font-weight: 750; backdrop-filter: blur(12px); }
.map-markets small { display: block; margin-top: 7px; color: rgba(255,255,255,.66); font-size: 10px; line-height: 1.4; font-weight: 500; }
.market-summary { margin-top: 18px; }
.market-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.market-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(4,20,33,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(12,144,105,.42); }
.market-card img { width: 100%; height: 250px; object-fit: cover; }
.market-card div { min-height: 145px; padding: 24px; background: var(--navy-900); color: var(--white); border-top: 1px solid var(--green-dark); }
.market-card h3 { margin: 0 0 10px; font-size: 25px; color: var(--white); }
.market-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.market-review-button { min-height: 58px; padding-inline: 28px; }
.who-video-frame::before,
.who-video-frame::after { display: none; }

.text-only-hero { min-height: 610px; }
.text-only-hero .hero-grid { grid-template-columns: minmax(0, 980px); }
.text-only-hero .hero-copy { max-width: 980px; }
.text-only-hero .hero-copy h1 { font-size: clamp(50px, 5.6vw, 82px); }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 75px; align-items: start; }
.contact-routes { border-top: 1px solid var(--line); }
.route-button { width: 100%; display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; cursor: pointer; }
.route-button span { color: var(--green-dark); font: 700 10px "DM Sans"; }
.route-button strong { display: block; font-size: 15px; }
.route-button small { display: block; margin-top: 5px; color: var(--muted); }
.route-button.active strong { color: var(--green-dark); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 21px 25px; padding: 35px; background: var(--white); border: 1px solid var(--line); }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-dark); }
.consent { grid-template-columns: auto 1fr !important; align-items: center; text-transform: none !important; letter-spacing: 0 !important; }
.consent input { width: 17px; height: 17px; accent-color: var(--green-dark); }
.form-status { margin: 0; color: var(--green-dark); font-size: 11px; align-self: center; }

.site-footer { padding: 70px 0 30px; background: var(--navy-950); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 65px; padding-bottom: 48px; }
.footer-intro p { max-width: 500px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-title { color: var(--green); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.footer-links { display: grid; gap: 9px; margin-top: 18px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 11px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding-top: 25px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.35); font-size: 9px; }
.footer-bottom p { margin: 0; max-width: 930px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.page-hero .reveal { opacity: 1; transform: none; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .main-nav { position: fixed; inset: 68px 0 0; z-index: 99; width: 100%; padding: 46px 28px; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 23px; background: var(--navy-950); transform: translateX(100%); transition: transform .3s ease; }
  .main-nav a { font-size: 22px; }
  .menu-open .main-nav { transform: none; }
  .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 42px; }
  .card-grid.four, .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gate-strip { grid-template-columns: repeat(2, 1fr); }
  .gate-strip span:nth-child(2) { border-right: 0; }
  .gate-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .opportunity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-markets { grid-template-columns: repeat(2, 1fr); }
  .market-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-project-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-project-list .project-card,
  .home-project-list .project-card:nth-last-child(2) { grid-column: auto; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .hero-grid, .split, .split-balanced, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .page-hero { min-height: auto; }
  .hero-side { max-width: 620px; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-bar article, .trust-bar article:first-child { min-height: 110px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .card-grid, .card-grid.four, .team-grid, .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid article:nth-child(2) { border-right: 0; }
  .stats-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .process-step { grid-template-columns: 80px 1fr; }
  .process-benefit { grid-column: 2; }
  .market-layout { grid-template-columns: 1fr; }
  .market-tabs { position: static; display: flex; overflow-x: auto; }
  .market-tab { min-width: 210px; padding: 14px; border: 1px solid var(--line); }
  .market-panel-grid { grid-template-columns: 1fr; }
  .project-list { grid-template-columns: 1fr; }
  .project-portfolio { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .featured-case-grid { grid-template-columns: 1fr; }
  .featured-case-media { min-height: 410px; }
  .europe-map, .europe-map > img { min-height: 700px; }
  .home-video-frame { margin-left: 0; }
}

@media (max-width: 680px) {
  html, body { overflow-x: clip; }
  body { font-size: 15px; }
  .shell { width: min(100% - 36px, var(--max)); }
  .site-header { height: 68px; padding-inline: 18px; }
  .brand-copy small { display: none; }
  .page-hero { padding: 124px 0 60px; }
  .home-hero { padding-bottom: 0; flex-direction: column; align-items: stretch; justify-content: center; }
  .home-hero > .hero-grid { width: min(100% - 36px, var(--max)); }
  .hero-copy h1, .home-hero .hero-copy h1 { font-size: clamp(40px, 12vw, 54px); }
  .mobile-only { display: inline; }
  .home-hero .hero-copy h1 em { font-size: .92em; }
  .hero-copy > p:last-of-type { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-value-strip { position: relative; width: 100%; margin-top: 55px; }
  .hero-values { grid-template-columns: 1fr; }
  .hero-values article, .hero-values article:first-child { border-left: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 74px 0; }
  .section-compact { padding: 58px 0; }
  .section-title { margin-bottom: 38px; }
  .section-title h2, .split-copy h2 { font-size: 40px; }
  .section-title p:last-child { font-size: 16px; }
  .ratio-hero { min-height: 350px; }
  .card-grid, .card-grid.four, .team-grid, .insight-grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .capability { min-height: auto; }
  .number-list article { grid-template-columns: 38px 1fr; }
  .number-list .arrow { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid article { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process::before { left: 27px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .process-number { width: 56px; height: 56px; }
  .process-benefit { grid-column: 2; }
  .gate-strip { grid-template-columns: 1fr; }
  .gate-strip span { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .market-copy { padding: 25px; }
  .project-toolbar { align-items: flex-start; flex-direction: column; }
  .project-card .media-placeholder { height: 260px; min-height: 260px; }
  .project-media-pair { min-height: 260px; }
  .project-hero-montage { min-height: 350px; }
  .project-hero-montage.two-images { grid-template-columns: 1fr; grid-template-rows: repeat(2, 220px); min-height: auto; }
  .team-group-head { align-items: flex-start; flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .contact-form label.full { grid-column: auto; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .benefit-cloud { justify-content: flex-start; margin-top: 38px; }
  .solution-title { text-align: left; }
  .solution-title > p:last-child { margin-inline: 0; }
  .solution-badges { justify-content: flex-start; }
  .opportunity-grid { grid-template-columns: 1fr; }
  .opportunity-card, .opportunity-cta { min-height: 360px; }
  .opportunity-card { grid-template-rows: 205px 1fr; }
  .market-card-grid { grid-template-columns: 1fr; }
  .market-card img { height: 210px; }
  .featured-case-media { grid-template-columns: 1fr; min-height: auto; }
  .featured-case-media figure { min-height: 290px; }
  .europe-map, .europe-map > img { min-height: 980px; }
  .map-markets { inset: auto 12px 12px; grid-template-columns: 1fr; }
  .map-markets > span { min-height: 0; padding: 14px 16px; font-size: 12px; }
  .map-markets small { font-size: 9px; }
  .text-only-hero { min-height: auto; }
  .text-only-hero .hero-copy h1,
  .projects-hero .hero-copy h1 { font-size: clamp(40px, 12vw, 54px); }
  .team-hero .hero-copy h1 { font-size: 43px; }
}

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