/*
  MS Group Overseas Consultants — Editorial Global Theme
  Rebuilt as a single visual system inspired by the approved minimal reference.
  Functional contracts remain in script.js, content-loader.js and website-config.js.
*/

:root {
  --ink: #0b1f33;
  --ink-2: #173247;
  --muted: #52687a;
  --muted-2: #5a6d7e;
  --blue-950: #062b52;
  --blue-900: #073d78;
  --blue-800: #0752a2;
  --blue-700: #0a66c7;
  --blue-600: #1682e8;
  --cyan: #5ac8fa;
  --sky: #dff3ff;
  --sky-2: #eef8ff;
  --paper: #ffffff;
  --paper-2: #f7fafc;
  --paper-3: #f2f6f8;
  --warm: #f8f6f0;
  --gold: #c59438;
  --danger: #b83b4a;
  --line: rgba(11, 31, 51, .11);
  --line-strong: rgba(11, 31, 51, .18);
  --shadow-xs: 0 8px 24px rgba(6, 43, 82, .06);
  --shadow-sm: 0 16px 42px rgba(6, 43, 82, .08);
  --shadow-md: 0 28px 72px rgba(6, 43, 82, .12);
  --shadow-lg: 0 42px 110px rgba(6, 43, 82, .16);
  --gradient-primary: linear-gradient(115deg, #062b52 0%, #0752a2 48%, #0a66c7 100%);
  --gradient-primary-hover: linear-gradient(115deg, #052746 0%, #064d96 48%, #0b5f9e 100%);
  --gradient-soft: linear-gradient(135deg, rgba(11, 111, 164, .20), rgba(7, 82, 162, .08));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1240px;
  --section-space: clamp(26px, 2.4vw, 34px);
  --heading-gradient-light: linear-gradient(105deg, #062b52 0%, #0752a2 52%, #52687a 100%);
  --heading-gradient-dark: linear-gradient(105deg, #ffffff 0%, #8fd9ff 52%, #dce8f1 100%);
  --font-sans: "DM Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "DM Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  min-width: 320px;
  color-scheme: light;
  background: var(--paper);
  scroll-behavior: auto;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink-2);
  background: var(--paper);
  font-family: var(--font-sans);
  cursor: default;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { color: #fff; background: var(--blue-700); }

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--blue-700);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-950);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.section {
  position: relative;
  padding-block: var(--section-space);
}
.section--light { background: var(--paper-2); }
.section--compact { padding-block: clamp(34px, 4vw, 56px); }
.section[id], details[id] { scroll-margin-top: 104px; }

.section-heading {
  margin-bottom: clamp(16px, 1.6vw, 20px);
}
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}
.section-heading h2,
.about-sticky h2,
.global-copy h2,
.why-header h2,
.messages-intro h2,
.contact-copy h2,
.compliance-copy h2,
.legal-disclosures__intro h2,
.opportunities-intro h2 {
  margin-top: 12px;
  max-width: 900px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.045em;
}
.section-heading > p,
.about-sticky > p,
.global-copy > p,
.messages-intro > p,
.contact-copy > p,
.compliance-copy > p,
.legal-disclosures__intro > p,
.opportunities-intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .145em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.gradient-text { color: var(--blue-700); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--blue-800);
  font-size: 13px;
  font-weight: 800;
}
.text-link svg { width: 17px; height: 17px; }

.button,
.nav-cta,
.journey-link,
.sector-display__footer button,
.leader-message {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 23px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}
.button svg,
.nav-cta svg,
.journey-link svg,
.sector-display__footer button svg,
.leader-message svg { width: 17px; height: 17px; }
.button--primary,
.nav-cta,
.journey-link,
.sector-display__footer button {
  color: #fff;
  background: var(--gradient-primary);
  background-size: 180% 100%;
  background-position: 0 50%;
  box-shadow: 0 16px 34px rgba(7, 82, 162, .22);
}
.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(12px);
}
.button--small { min-height: 44px; padding-inline: 18px; }
.button--full { width: 100%; }
.button[disabled] { opacity: .70; cursor: not-allowed; box-shadow: none; }
.action-label { position: relative; z-index: 1; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(150%);
}
.site-header.is-sticky {
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(6, 43, 82, .07);
}
.nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  flex: 0 0 auto;
  width: 260px;
  height: 88px;
  display: block;
  overflow: hidden;
}
.brand img {
  width: 100%;
  max-width: none;
  transform: translateY(-13px);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.75vw, 27px);
  margin-left: auto;
}
.nav-links a {
  position: relative;
  padding-block: 13px;
  color: #52687a;
  font-size: 11px;
  font-weight: 700;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--blue-700);
}
.nav-links a:hover,
.nav-links a.is-current,
.nav-links a[aria-current="location"] { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.is-current::after,
.nav-links a[aria-current="location"]::after { right: 0; }
.nav-cta { flex: 0 0 auto; min-height: 46px; padding-inline: 18px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: 0 12px 28px rgba(7,82,162,.20);
  border-radius: 50%;
}
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
.menu-toggle[aria-expanded="true"] .close-icon { display: block; }
.nav-drawer-heading,
.nav-drawer-actions { display: none; }
.nav-motion-scrim { display: none; }

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  min-height: calc(100svh - 96px);
  padding: clamp(14px, 1.6vw, 22px) 0 18px;
  background:
    radial-gradient(circle at 78% 23%, rgba(90, 200, 250, .20), transparent 27%),
    linear-gradient(135deg, #ffffff 0%, #fbfdff 43%, #edf7ff 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -30% 38%;
  height: 50%;
  border-radius: 50%;
  background: rgba(22, 130, 232, .08);
  filter: blur(70px);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .44;
  background-image:
    linear-gradient(rgba(7, 82, 162, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 82, 162, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}
.hero-glow--one {
  top: -14%;
  right: -9%;
  width: 40vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(22, 130, 232, .15), transparent 67%);
}
.hero-glow--two {
  bottom: -22%;
  left: -18%;
  width: 36vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(90, 200, 250, .14), transparent 68%);
}
.hero-network-art { position: absolute; inset: 0; opacity: .24; pointer-events: none; }
.hero-network-svg { width: 100%; height: 100%; }
.network-route { fill: none; stroke: url(#routeGradient); stroke-width: 2; stroke-dasharray: 10 18; }
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(460px, 1.06fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.hero h1 {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 20px 0 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.1vw, 64px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.048em;
}
.hero-title-line { display: block; }
.hero-title-line + .hero-title-line { margin-top: -.07em; }
.hero-title-line__inner {
  display: inline-block;
  padding-bottom: .12em;
  margin-bottom: -.12em;
}
.hero .gradient-text .hero-title-line__inner {
  color: var(--blue-700);
  background: linear-gradient(105deg, #073d78 0%, #0752a2 55%, #0a66c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  max-width: 660px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.hero-trust__item { position: relative; min-width: 0; padding-right: 10px; }
.hero-trust__item + .hero-trust__item { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-trust__item strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.035em;
}
.hero-trust__item > span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.hero-trust__item small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
}
.hero-trust__item small svg { width: 12px; height: 12px; }
.hero-visual { position: relative; min-width: 0; }
.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-indicator { display: inline-flex; align-items: center; }
.globe-stage {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(7, 82, 162, .15);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 43%, rgba(255,255,255,.98), rgba(239,248,255,.96) 55%, rgba(218,238,252,.94));
  box-shadow: var(--shadow-lg);
}
.globe-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,.8), transparent 34%, rgba(22,130,232,.06));
  pointer-events: none;
}
.globe-visual-shell { position: relative; width: min(76%, 380px); aspect-ratio: 1; }
.hero-globe-image { width: 100%; filter: drop-shadow(0 32px 44px rgba(7, 82, 162, .20)); }
.globe-light-sweep {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: linear-gradient(115deg, rgba(255,255,255,.58), transparent 42%);
  pointer-events: none;
}
.globe-atmosphere {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(22, 130, 232, .15);
  border-radius: 50%;
}
.globe-atmosphere--two { inset: 20%; border-color: rgba(90, 200, 250, .22); }
.globe-orbital-line {
  position: absolute;
  inset: 18% 7%;
  border: 1px solid rgba(22, 130, 232, .16);
  border-radius: 50%;
  transform: rotate(25deg);
}
.globe-orbital-line--two { inset: 8% 22%; transform: rotate(-33deg); }
.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 172px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 31, 51, .11);
  border-radius: 16px;
  background: rgba(255,255,255,.91);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.float-card--one { left: 3%; top: 18%; }
.float-card--two { right: 3%; top: 34%; }
.float-card--three { right: 10%; bottom: 12%; }
.float-card__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue-800);
  border-radius: 11px;
}
.float-card small { display: block; color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.float-card strong { display: block; margin-top: 2px; color: var(--ink); font-size: 11px; }
.deployment-feed {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-xs);
}
.feed-item { display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; align-items: center; }
.feed-item span {
  grid-row: 1 / 3;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--sky-2);
  font-size: 8px;
  font-weight: 800;
}
.feed-item strong { color: var(--ink); font-size: 9px; }
.feed-item em { color: var(--muted); font-size: 8px; font-style: normal; }
.feed-line { height: 1px; background: var(--line); }
.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue i { width: 30px; height: 1px; background: var(--blue-700); }
.hero-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.hero-contact a { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; font-weight: 700; }
.hero-contact svg { width: 14px; height: 14px; color: var(--blue-700); }

/* Country strip */
.country-strip {
  position: relative;
  overflow: hidden;
  padding: 17px 0;
  color: #fff;
  background: var(--blue-950);
}
.country-strip::before,
.country-strip::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}
.country-strip::before { left: 0; background: linear-gradient(90deg, var(--blue-950), transparent); }
.country-strip::after { right: 0; background: linear-gradient(-90deg, var(--blue-950), transparent); }
.country-list { display: flex; align-items: center; width: max-content; gap: 0; }
.country-list > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.18);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.country-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

/* About */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.about-sticky { position: sticky; top: 132px; }
.about-sticky > p { margin-top: 16px; max-width: 600px; line-height: 1.62; }
.about-cards { display: grid; border-top: 1px solid var(--line-strong); }
.principle-card {
  position: relative;
  padding: clamp(14px, 1.35vw, 18px) 0;
  border-bottom: 1px solid var(--line-strong);
}
.principle-card > span { color: var(--blue-700); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.principle-card h3 {
  margin-top: 10px;
  max-width: 750px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(21px, 2.15vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.04em;
}
.principle-card p { margin-top: 10px; max-width: 620px; color: var(--muted); line-height: 1.58; }
.principle-card--accent { padding-inline: clamp(28px, 4vw, 50px); border: 0; border-radius: var(--radius-lg); color: #fff; background: var(--blue-900); box-shadow: var(--shadow-md); }
.principle-card--accent > span,
.principle-card--accent h3 { color: #fff; }
.principle-card--accent p { color: rgba(255,255,255,.86); }
.value-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.value-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }

/* Leadership */
.leader-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.leader-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-xs);
}
.leader-card::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -22%;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sky-2);
}
.leader-card--blue { color: #fff; border-color: transparent; background: var(--blue-900); box-shadow: var(--shadow-md); }
.leader-card--blue::after { background: rgba(90, 200, 250, .10); }
.leader-monogram {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--blue-800);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.leader-card--blue .leader-monogram { color: #fff; border-color: rgba(255,255,255,.26); }
.leader-meta { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.leader-card--blue .leader-meta { color: rgba(255,255,255,.78); }
.leader-card h3 { position: relative; z-index: 1; margin-top: 17px; color: var(--ink); font-family: var(--font-display); font-size: clamp(31px, 4vw, 50px); font-weight: 650; letter-spacing: -.045em; }
.leader-card--blue h3 { color: #fff; }
.leader-card p { position: relative; z-index: 1; max-width: 520px; margin-top: 18px; color: var(--muted); line-height: 1.75; }
.leader-card--blue p { color: rgba(255,255,255,.84); }
.leader-signature { position: relative; z-index: 1; margin-top: auto; padding-top: 40px; color: var(--blue-700); font-size: 15px; font-style: italic; }
.leader-message { position: relative; z-index: 1; align-self: flex-start; margin-top: auto; min-height: 46px; padding: 0; color: #fff; background: transparent; border-radius: 0; box-shadow: none; }

/* Message */
.messages { color: #fff; background: var(--blue-950); }
.messages::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg, #000, transparent); }
.messages-layout { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 7vw, 100px); }
.messages-intro h2 { color: #fff; }
.messages-intro .section-kicker { color: var(--cyan); }
.message-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.message-tab { padding: 10px 14px; border-radius: 999px; color: rgba(255,255,255,.82); background: transparent; border: 1px solid rgba(255,255,255,.28); font-size: 10px; font-weight: 800; }
.message-tab.is-active { color: #fff; background: var(--gradient-primary); border-color: rgba(255,255,255,.38); }
.message-letter { padding: clamp(26px, 3.5vw, 42px); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.07); backdrop-filter: blur(16px); }
.message-letter__top { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.message-letter blockquote { margin-top: 38px; font-family: var(--font-display); font-size: clamp(29px, 4vw, 49px); font-weight: 520; line-height: 1.2; letter-spacing: -.04em; }
.message-letter > p { margin-top: 28px; color: rgba(255,255,255,.86); line-height: 1.78; }
.message-letter footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.message-letter .button {
  color: #062b52;
  -webkit-text-fill-color: #062b52;
  background: linear-gradient(115deg, #fff 0%, #eef8ff 55%, #dff3ff 100%);
  background-size: 180% 100%;
}
.message-letter footer strong,
.message-letter footer span { display: block; }
.message-letter footer span { margin-top: 4px; color: rgba(255,255,255,.76); font-size: 10px; }

/* Partners */
.partners { border-bottom: 1px solid var(--line); background: #fff; }
.partners-row { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 28px; align-items: center; }
.partners-row > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.partners-row i { width: 1px; height: 32px; background: var(--line-strong); }
.partner-name { color: var(--ink); font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 26px); font-weight: 650; letter-spacing: -.025em; }

/* Journeys */
.journeys { background: #fff; }
.journey-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.journey-card { position: relative; min-height: 430px; display: flex; flex-direction: column; overflow: hidden; padding: clamp(22px, 2.2vw, 28px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--paper-2); }
.journey-card--employer { color: #fff; border-color: transparent; background: var(--blue-900); box-shadow: var(--shadow-md); }
.journey-card__orb { position: absolute; top: -18%; right: -18%; width: 58%; aspect-ratio: 1; border-radius: 50%; background: rgba(90, 200, 250, .13); }
.journey-card--candidate .journey-card__orb { background: var(--sky); }
.journey-card__top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.journey-number { color: rgba(255,255,255,.76); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.journey-card--candidate .journey-number { color: var(--blue-700); }
.journey-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.journey-card--candidate .journey-icon { color: var(--blue-700); border-color: var(--line-strong); background: #fff; }
.journey-icon svg { width: 24px; height: 24px; }
.journey-card__body { position: relative; z-index: 1; margin-top: 24px; }
.journey-label { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.journey-card--candidate .journey-label { color: var(--blue-700); }
.journey-card h3 { margin-top: 8px; max-width: 540px; color: #fff; font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 650; line-height: 1.06; letter-spacing: -.045em; }
.journey-card--candidate h3 { color: var(--ink); }
.journey-card p { margin-top: 10px; color: rgba(255,255,255,.85); line-height: 1.52; }
.journey-card--candidate p { color: var(--muted); }
.journey-card ul { display: grid; gap: 6px; margin-top: 12px; }
.journey-card li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.92); font-size: 13px; }
.journey-card--candidate li { color: var(--ink-2); }
.journey-card li svg { width: 16px; height: 16px; color: var(--cyan); }
.journey-card--candidate li svg { color: var(--blue-700); }
.journey-link { position: relative; z-index: 1; top: 10px; align-self: flex-start; margin-top: auto; color: var(--ink); background: #fff; box-shadow: none; }
.journey-card--candidate .journey-link { color: #fff; background: var(--gradient-primary); }


.journey-card__orb {
  border: 1px solid rgba(90,200,250,.16);
  box-shadow: 0 0 0 30px rgba(90,200,250,.035);
}
.journey-card__orb::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(90,200,250,.12);
}
.journey-card--candidate .journey-card__orb { border-color: rgba(10,102,199,.10); box-shadow: 0 0 0 30px rgba(10,102,199,.025); }
.journey-card--candidate .journey-card__orb::after { background: var(--blue-600); box-shadow: 0 0 0 6px rgba(10,102,199,.10); }

/* Opportunities */
.opportunities { color: #fff; background: var(--blue-950); }
.opportunities-shell { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(36px, 5vw, 68px); }
.opportunities-intro { align-self: start; position: sticky; top: 132px; }
.opportunities-intro h2 { color: #fff; }
.opportunities-intro p { margin-top: 16px; color: rgba(255,255,255,.84); line-height: 1.58; }
.opportunities-intro .section-kicker { color: var(--cyan); }
.opportunities-intro .button { margin-top: 20px; color: #fff; border-color: rgba(255,255,255,.20); background: transparent; box-shadow: none; }
.opportunity-list { display: grid; border-top: 1px solid rgba(255,255,255,.18); }
.opportunity-item { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.opportunity-item__icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; color: var(--cyan); }
.opportunity-item__icon svg { width: 24px; height: 24px; }
.opportunity-item span { color: rgba(255,255,255,.76); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.opportunity-item h3 { margin-top: 6px; color: #fff; font-family: var(--font-display); font-size: clamp(22px, 2.3vw, 30px); font-weight: 620; letter-spacing: -.03em; }
.opportunity-item p { margin-top: 8px; color: rgba(255,255,255,.82); line-height: 1.65; }
.opportunity-item__reference { display: inline-flex; margin-top: 10px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.opportunity-item > button { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient-primary); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.opportunity-item > button svg { width: 19px; height: 19px; }
.opportunity-item.is-requested { opacity: .65; }

/* Sectors */
.sector-interface { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.sector-tabs { display: grid; background: var(--paper-2); border-right: 1px solid var(--line); }
.sector-tab { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; min-height: 58px; padding: 10px 16px; text-align: left; color: var(--muted); background: transparent; border-bottom: 1px solid var(--line); }
.sector-tab:last-child { border-bottom: 0; }
.sector-tab svg { width: 21px; height: 21px; }
.sector-tab span { font-size: 12px; font-weight: 700; }
.sector-tab b { color: var(--muted-2); font-size: 9px; }
.sector-tab.is-active { color: #fff; background: var(--gradient-primary); }
.sector-tab.is-active b { color: rgba(255,255,255,.90); }
.sector-display { min-height: 360px; display: flex; flex-direction: column; padding: clamp(24px, 2.5vw, 32px); background: #fff; }
.sector-display__top { display: flex; align-items: center; gap: 18px; }
.sector-display__icon { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-700); background: var(--sky-2); border-radius: 16px; }
.sector-display__icon svg { width: 28px; height: 28px; }
.sector-display__top span { color: var(--blue-700); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sector-display h3 { margin-top: 5px; color: var(--ink); font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 650; letter-spacing: -.04em; }
.sector-display > p { margin-top: 16px; max-width: 720px; color: var(--muted); line-height: 1.58; }
.role-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.role-cloud span { padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); background: var(--paper-2); font-size: 10px; font-weight: 700; }
.sector-display__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 16px; }
.sector-display__footer > span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; }

/* Deployments */
.deployment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.deployment-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); }
.deployment-card__visual { position: relative; min-height: 230px; display: flex; align-items: flex-end; padding: 28px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #0a5db5, #06356a); }
.deployment-card__visual::after { content: ""; position: absolute; top: -28%; right: -12%; width: 58%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.05), 0 0 0 58px rgba(255,255,255,.035); }
.deployment-card__visual--europe { background: linear-gradient(135deg, #134a7c, #092c4d); }
.deployment-card__visual span { position: absolute; top: 26px; left: 28px; z-index: 1; color: rgba(255,255,255,.90); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.deployment-card__visual b { position: relative; z-index: 1; max-width: 360px; font-family: var(--font-display); font-size: clamp(27px, 3.5vw, 44px); line-height: 1.05; letter-spacing: -.04em; }
.deployment-card__body { padding: clamp(28px, 4vw, 42px); }
.deployment-card__meta { display: flex; justify-content: space-between; gap: 20px; color: var(--blue-700); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.deployment-card__body h3 { margin-top: 18px; color: var(--ink); font-family: var(--font-display); font-size: clamp(25px, 3vw, 38px); font-weight: 620; line-height: 1.15; letter-spacing: -.038em; }
.deployment-card__body p { margin-top: 17px; color: var(--muted); line-height: 1.72; }
.deployment-card__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.deployment-card__stats span { color: var(--muted); font-size: 10px; }
.deployment-card__stats strong { display: block; color: var(--ink); font-size: 12px; }
.deployment-card--cta { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; padding: clamp(30px, 4vw, 48px); color: #fff; border-color: transparent; background: var(--blue-900); box-shadow: var(--shadow-md); }
.deployment-card__index { align-self: start; color: var(--cyan); font-size: 11px; font-weight: 800; }
.deployment-card--cta h3 { margin-top: 16px; color: #fff; font-family: var(--font-display); font-size: clamp(29px, 3.7vw, 47px); font-weight: 620; line-height: 1.08; letter-spacing: -.045em; }
.deployment-card--cta p { margin-top: 14px; color: rgba(255,255,255,.84); line-height: 1.7; }
.deployment-card--cta .section-kicker { color: var(--cyan); }
.deployment-card--cta .button { color: var(--blue-950); background: #fff; box-shadow: none; }

/* Global map */
.global { color: #fff; background: var(--blue-950); overflow: hidden; }
.global::before { content: ""; position: absolute; width: 42vw; aspect-ratio: 1; top: -28%; left: -12%; border-radius: 50%; background: rgba(22,130,232,.16); filter: blur(80px); }
.global-layout { position: relative; display: grid; grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 8vw, 108px); align-items: center; }
.global-copy h2 { color: #fff; }
.global-copy > p { margin-top: 25px; color: rgba(255,255,255,.84); }
.global-copy .section-kicker { color: var(--cyan); }
.region-switcher { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 31px; }
.region-button { padding: 10px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: rgba(255,255,255,.82); background: transparent; font-size: 10px; font-weight: 800; }
.region-button.is-active { color: #fff; background: var(--gradient-primary); border-color: rgba(255,255,255,.38); }
.region-country-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.region-country-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.90); font-size: 9px; }
.region-country-chip .country-flag { width: 17px; height: 12px; }
.world-network { position: relative; min-width: 0; }
.network-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 50px 50px; }
.political-map-frame { position: relative; aspect-ratio: 1800 / 715; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-xl); background: #f8fbfe; box-shadow: var(--shadow-lg); }
.political-map-image { width: 100%; height: 100%; object-fit: contain; opacity: .98; filter: saturate(.92) contrast(1.03); }
.map-caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.80); font-size: 9px; }

/* Process */
/* Process — compact interactive deployment console */
.process { overflow: clip; background: linear-gradient(180deg, #f8fbfe 0%, #f3f8fc 100%); }
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .48;
  background-image: radial-gradient(rgba(10,102,199,.12) .75px, transparent .75px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}
.process > .container { position: relative; z-index: 1; }
.process-console {
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(0, 1.32fr);
  overflow: hidden;
  border: 1px solid rgba(10,102,199,.15);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 26px 70px rgba(6,43,82,.10);
}
.process-rail {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 8px;
  background: linear-gradient(180deg, #edf5fb, #f6f9fc);
  border-right: 1px solid var(--line);
}
.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  min-height: 50px;
  padding: 7px 12px;
  overflow: hidden;
  color: var(--muted);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 15px;
}
.process-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 3px;
  border-radius: 999px;
  background: var(--blue-700);
  transform: scaleY(0);
  transition: transform 420ms var(--ease-out, ease);
}
.process-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10,102,199,.15);
  border-radius: 10px;
  color: var(--blue-700);
  background: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 800;
}
.process-step strong { font-size: 11px; line-height: 1.35; }
.process-step.is-active {
  color: var(--ink);
  border-color: rgba(10,102,199,.13);
  background: #fff;
  box-shadow: 0 12px 28px rgba(6,43,82,.07);
}
.process-step.is-active::after { transform: scaleY(1); }
.process-step.is-active span { color: #fff; border-color: var(--blue-700); background: var(--blue-700); }
.process-screen {
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "status status"
    "visual copy"
    "controls controls";
  background: #fff;
}
.process-screen__status {
  grid-area: status;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 14px 22px;
  color: var(--blue-700);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.process-screen__status span { display: inline-flex; align-items: center; }
.process-screen__status b { color: var(--muted); font-size: inherit; }
.process-screen__visual {
  grid-area: visual;
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 46%, rgba(90,200,250,.19), transparent 29%),
    linear-gradient(145deg, #f7fbff, #edf6fd);
}
.process-screen__visual::before,
.process-screen__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.process-screen__visual::before { width: 72%; aspect-ratio: 1; border: 1px solid rgba(10,102,199,.12); }
.process-screen__visual::after { width: 44%; aspect-ratio: 1; border: 1px dashed rgba(10,102,199,.18); }
.process-screen__number {
  position: absolute;
  z-index: 1;
  color: rgba(10,102,199,.075);
  font-family: var(--font-display);
  font-size: clamp(125px, 15vw, 210px);
  font-weight: 650;
  letter-spacing: -.10em;
  transform: translateX(-8%);
}
#processIcon {
  position: relative;
  z-index: 4;
  width: 58px;
  height: 58px;
  padding: 15px;
  color: var(--blue-700);
  border: 1px solid rgba(10,102,199,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(6,43,82,.12);
}
.process-radar {
  position: absolute;
  z-index: 2;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .8;
  background: conic-gradient(from 20deg, rgba(10,102,199,.32) 0 9%, transparent 9% 26%, rgba(90,200,250,.28) 26% 38%, transparent 38% 62%, rgba(10,102,199,.20) 62% 75%, transparent 75%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px));
}
.process-radar span,
.process-radar i { display: none; }
.process-screen__microcopy {
  position: absolute;
  z-index: 4;
  left: 22px;
  bottom: 20px;
  color: var(--blue-700);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.process-screen__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3vw, 38px);
}
.process-screen__copy > span { color: var(--blue-700); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-screen h3 { margin-top: 10px; color: var(--ink); font-family: var(--font-display); font-size: clamp(28px, 3.1vw, 40px); font-weight: 650; line-height: 1.06; letter-spacing: -.042em; }
.process-screen__copy > p { margin-top: 14px; max-width: 610px; color: var(--muted); line-height: 1.6; }
.process-screen__controls {
  grid-area: controls;
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  margin: 0;
  padding: 10px 20px;
  color: var(--blue-700);
  border-top: 1px solid var(--line);
  background: rgba(248,251,254,.72);
}
.process-screen__controls button { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; border: 1px solid rgba(7,82,162,.24); border-radius: 50%; background: var(--gradient-primary); box-shadow: 0 10px 22px rgba(7,82,162,.16); }
.process-screen__controls button:first-child svg { transform: rotate(180deg); }
.process-screen__controls svg { width: 16px; height: 16px; }
.process-progress { height: 3px; margin: 0; overflow: hidden; border-radius: 999px; background: rgba(10,102,199,.12); }
.process-progress i { display: block; width: 16.66%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-800), var(--cyan)); transition: width 650ms var(--ease-out, ease); }

/* Why */
.why-header { margin-bottom: 54px; }
.why-header h2 { width: min(100%, 900px); justify-self: start; }
.why-header > p { color: var(--muted); line-height: 1.78; }
.why-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
.why-card { min-height: 250px; display: flex; flex-direction: column; padding: 22px 18px; border-right: 1px solid var(--line-strong); }
.why-card:last-child { border-right: 0; }
.why-card > span { color: var(--blue-700); font-size: 10px; font-weight: 800; }
.why-card > svg { width: 25px; height: 25px; margin-top: 48px; color: var(--blue-700); }
.why-card h3 { margin-top: auto; color: var(--ink); font-family: var(--font-display); font-size: 23px; font-weight: 650; line-height: 1.15; letter-spacing: -.03em; }
.why-card p { margin-top: 12px; color: var(--muted); font-size: 12px; line-height: 1.65; }

/* Compliance */
.compliance { color: #fff; background: var(--blue-900); overflow: hidden; }
.compliance::before { content: ""; position: absolute; right: -16%; top: -45%; width: 52vw; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018); }
.compliance-card { position: relative; display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(220px, .58fr); gap: clamp(36px, 5vw, 68px); align-items: center; }
.compliance-copy h2 { color: #fff; }
.compliance-copy > p { margin-top: 16px; color: rgba(255,255,255,.86); line-height: 1.58; }
.compliance-copy .section-kicker { color: var(--cyan); }
.compliance-license { margin-top: 22px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.compliance-license span { display: block; color: rgba(255,255,255,.76); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.compliance-license strong { display: block; margin-top: 8px; font-family: var(--font-display); font-size: clamp(22px, 3vw, 34px); font-weight: 620; letter-spacing: -.03em; }
.compliance-verification { font-size: 12px; }
.compliance-verification a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.compliance-seal { position: relative; width: min(100%, 240px); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.20); border-radius: 50%; }
.compliance-seal::before { content: ""; position: absolute; inset: 10%; border: 1px dashed rgba(255,255,255,.25); border-radius: 50%; }
.compliance-seal svg { width: 64px; height: 64px; color: var(--cyan); }
.compliance-seal strong { position: absolute; bottom: 29%; font-size: 10px; letter-spacing: .16em; }
.compliance-seal small { position: absolute; bottom: 22%; color: rgba(255,255,255,.78); font-size: 8px; letter-spacing: .18em; }
.seal-ring { position: absolute; inset: 3%; border-radius: 50%; }
.seal-ring span { display: none; }
.seal-ring--inner { inset: 24%; border: 1px solid rgba(255,255,255,.16); }

/* Legal */
.legal-disclosures__shell { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(50px, 8vw, 110px); }
.legal-disclosures__intro { align-self: start; position: sticky; top: 132px; }
.legal-disclosures__intro > p { margin-top: 25px; }
.legal-disclosures__list { border-top: 1px solid var(--line-strong); }
.legal-disclosures details { border-bottom: 1px solid var(--line-strong); }
.legal-disclosures summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 27px 0; cursor: pointer; list-style: none; }
.legal-disclosures summary::-webkit-details-marker { display: none; }
.legal-disclosures summary span { color: var(--ink); font-family: var(--font-display); font-size: 23px; font-weight: 650; letter-spacing: -.025em; }
.legal-disclosures summary small { color: var(--muted); font-size: 10px; }
.legal-disclosures summary::after { content: "+"; grid-column: 2; grid-row: 1 / 3; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-700); font-size: 18px; }
.legal-disclosures details[open] summary::after { content: "–"; }
.legal-disclosure__content { padding: 0 0 36px; color: var(--muted); line-height: 1.74; }
.legal-disclosure__content h3 { margin-top: 25px; color: var(--ink); font-size: 15px; }
.legal-disclosure__content p { margin-top: 12px; }
.legal-disclosure__content ul { display: grid; gap: 9px; margin-top: 13px; padding-left: 18px; list-style: disc; }
.legal-disclosure__content a { color: var(--blue-700); text-decoration: underline; }
.legal-notice { padding: 16px 18px; border-left: 3px solid var(--blue-700); background: var(--sky-2); color: var(--ink-2); }

/* Contact */
.contact { color: #fff; background: var(--blue-950); }
.contact-shell { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 5vw, 68px); align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { margin-top: 16px; color: rgba(255,255,255,.84); line-height: 1.58; }
.contact-copy .section-kicker { color: var(--cyan); }
.contact-choice { display: grid; gap: 8px; margin-top: 22px; }
.contact-choice__card { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid rgba(255,255,255,.25); border-radius: 16px; color: #fff; text-align: left; background: var(--gradient-soft); }
.contact-choice__card > span:first-child { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--cyan); background: rgba(255,255,255,.08); }
.contact-choice__card > svg { width: 18px; height: 18px; }
.contact-choice__copy small,
.contact-choice__copy strong { display: block; }
.contact-choice__copy small { color: rgba(255,255,255,.76); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.contact-choice__copy strong { margin-top: 4px; font-size: 14px; }
.contact-details { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); }
.contact-detail { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-detail > svg { width: 20px; height: 20px; color: var(--cyan); }
.contact-detail span,
.contact-detail strong { display: block; }
.contact-detail span { color: rgba(255,255,255,.74); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-detail strong { margin-top: 5px; color: #fff; font-size: 12px; line-height: 1.55; }
.contact-license { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; }
.contact-license span { color: rgba(255,255,255,.74); font-size: 9px; text-transform: uppercase; }
.contact-license a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 11px; font-weight: 800; }

/* Footer */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(90,200,250,.24), transparent 32%),
    radial-gradient(ellipse at 92% 18%, rgba(46,105,212,.36), transparent 36%),
    linear-gradient(128deg, #021525 0%, #05264a 45%, #082e67 100%);
}
.footer::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -170px;
  bottom: -310px;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 144px rgba(90,200,250,.025);
}
.footer > .container,
.footer-ticker { position: relative; z-index: 2; }
.footer-canvas { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.footer-canvas__wordmark {
  position: absolute;
  left: -1.5vw;
  bottom: 26px;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(92px, 15.5vw, 290px);
  font-weight: 750;
  line-height: .76;
  letter-spacing: -.075em;
  white-space: nowrap;
  opacity: .11;
  -webkit-text-stroke: 1px rgba(170,222,255,.86);
  text-shadow: 0 0 70px rgba(90,200,250,.12);
  transform: translateX(-2%) rotate(-3deg);
}
.footer-canvas__beam { position: absolute; left: -14%; width: 128%; height: 150px; border-top: 1px solid rgba(143,217,255,.20); border-bottom: 1px solid rgba(255,255,255,.06); background: linear-gradient(90deg, transparent 5%, rgba(90,200,250,.06) 44%, rgba(117,153,255,.13) 70%, transparent 95%); transform-origin: center; }
.footer-canvas__beam--one { top: 36%; transform: rotate(-11deg); }
.footer-canvas__beam--two { top: 69%; height: 92px; opacity: .68; transform: rotate(8deg); }
.footer-rail {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(340px, 1.6fr) minmax(180px, .7fr);
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-rail::before { content: "MS GROUP / GLOBAL RECRUITMENT"; position: absolute; top: 14px; left: 50%; color: rgba(255,255,255,.26); font-size: 9px; font-weight: 800; letter-spacing: .24em; transform: translateX(-50%); }
.footer-rail strong {
  color: #fff;
  background: linear-gradient(100deg, #fff 8%, #92dcff 50%, #fff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.05em;
  text-align: center;
  text-shadow: 0 16px 42px rgba(0,0,0,.18);
}
.footer-rail__meta { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-rail__meta::before { content: ""; width: 42px; height: 1px; background: linear-gradient(90deg, rgba(90,200,250,.08), var(--cyan)); box-shadow: 0 0 18px rgba(90,200,250,.38); }
.footer-rail__meta--end { justify-self: end; text-align: right; }
.footer-rail__meta--end::before { order: 2; background: linear-gradient(90deg, var(--cyan), rgba(90,200,250,.08)); }
.footer-ticker { overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.14); background: linear-gradient(90deg, rgba(255,255,255,.015), rgba(90,200,250,.08), rgba(255,255,255,.015)); }
.footer-ticker::after { content: ""; position: absolute; inset: 0 auto 0 -26%; width: 24%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent); transform: skewX(-22deg); pointer-events: none; }
.footer-ticker__track { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.58); white-space: nowrap; }
.footer-ticker__track span { font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-ticker__track b { color: var(--cyan); font-size: 18px; font-weight: 400; }
.footer-main { display: grid; grid-template-columns: 1.02fr .78fr 1fr; gap: clamp(42px, 6vw, 86px); padding-block: 54px 62px; }
.footer-brand__mark { width: min(100%, 340px); display: block; padding: 15px 20px; border: 1px solid rgba(255,255,255,.50); border-radius: 28px 28px 28px 8px; background: rgba(255,255,255,.96); box-shadow: 0 22px 58px rgba(0,0,0,.20); transform: none; transition: transform 260ms ease, box-shadow 260ms ease; }
.footer-brand__mark:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(0,0,0,.26); }
.footer-brand img { width: 100%; }
.footer-brand p { margin-top: 22px; max-width: 390px; color: rgba(255,255,255,.76); line-height: 1.72; }
.footer-brand__signal { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 25px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-brand__signal i { width: 22px; height: 1px; background: linear-gradient(90deg, var(--cyan), rgba(90,200,250,.12)); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; padding-top: 9px; }
.footer-links div { display: grid; align-content: start; gap: 13px; padding-left: 18px; border-left: 1px solid rgba(143,217,255,.16); }
.footer-links span { margin-bottom: 9px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { position: relative; width: fit-content; color: rgba(255,255,255,.74); font-size: 14px; transition: color 220ms ease, transform 220ms ease; }
.footer-links a::after { content: "↗"; display: inline-block; margin-left: 8px; color: var(--cyan); opacity: 0; transform: translate(-4px, 3px); transition: opacity 220ms ease, transform 220ms ease; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-links a:hover::after { opacity: 1; transform: translate(0, 0); }
.footer-action { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; overflow: hidden; padding: 31px; border: 1px solid rgba(255,255,255,.24); border-radius: 30px 30px 8px 30px; background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(67,121,205,.10) 50%, rgba(255,255,255,.055)); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 32px 80px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.footer-action::before { content: ""; position: absolute; inset: auto -16% -42% 28%; height: 72%; border: 1px solid rgba(143,217,255,.24); border-radius: 50% 50% 0 0; transform: rotate(-10deg); pointer-events: none; }
.footer-action::after { content: ""; position: absolute; top: -45%; right: -20%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(143,217,255,.13), transparent 68%); pointer-events: none; }
.footer-action > * { position: relative; z-index: 1; }
.footer-action__index { position: absolute; z-index: 1; top: 22px; right: 27px; display: grid; justify-items: end; opacity: .72; }
.footer-action__index strong { color: rgba(255,255,255,.9); font-family: var(--font-display); font-size: 31px; font-weight: 650; line-height: .78; letter-spacing: -.06em; }
.footer-action__index span { margin-top: 5px; color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-action__eyebrow { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-action > strong { max-width: calc(100% - 54px); color: #fff; font-family: var(--font-display); font-size: clamp(25px, 2.2vw, 34px); font-weight: 650; line-height: 1.04; letter-spacing: -.04em; }
.footer-action > p { color: rgba(255,255,255,.70); font-size: 14px; line-height: 1.65; }
.footer-action .button { width: 100%; justify-content: space-between; margin-top: 2px; border-color: rgba(255,255,255,.22); box-shadow: 0 18px 38px rgba(1,18,34,.24); font-size: 13px; }
.footer-action__contacts { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; padding-top: 2px; }
.footer-action__contacts a,
.footer-contact-action { position: relative; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; overflow: hidden; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.82); background: rgba(2,21,37,.20); font-size: 11px; font-weight: 800; text-decoration: none; transition: color 240ms ease, border-color 240ms ease, transform 240ms ease, background 240ms ease; }
.footer-action__contacts a span,
.footer-contact-action span,
.footer-contact-action svg { position: relative; z-index: 1; }
.footer-contact-action svg { width: 13px; height: 13px; transition: transform 240ms ease; }
.footer-action__contacts a:hover,
.footer-contact-action:hover { color: #fff; border-color: rgba(255,255,255,.36); background: var(--gradient-primary-hover); transform: translateY(-2px); }
.footer-contact-action:hover svg { transform: translateX(3px); }
.footer-bottom { min-height: 78px; display: flex; align-items: center; flex-wrap: wrap; gap: 18px 28px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.56); font-size: 11px; }
.footer-bottom a { color: rgba(255,255,255,.82); }
.footer-legal { display: flex; gap: 16px; }

/* Floating contact */
.floating-contact {
  position: fixed;
  z-index: 900;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
}
.floating-contact__main { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gradient-primary); box-shadow: 0 18px 42px rgba(7,82,162,.30); }
.floating-contact__main svg { width: 22px; height: 22px; }
.floating-contact__item { display: grid; grid-template-columns: auto 42px; gap: 10px; align-items: center; opacity: 0; pointer-events: none; transform: translateY(10px); }
.floating-contact.is-open .floating-contact__item { opacity: 1; pointer-events: auto; transform: none; }
.floating-contact__item span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; box-shadow: var(--shadow-xs); color: var(--ink); font-size: 10px; font-weight: 800; }
.floating-contact__item svg { width: 42px; height: 42px; padding: 11px; border-radius: 50%; color: #fff; background: var(--blue-950); }

/* Modal and forms */
.inquiry-modal { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 24px; }
.inquiry-modal[hidden] { display: none !important; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4, 20, 36, .76); backdrop-filter: blur(10px); }
.modal-panel { position: relative; z-index: 1; width: min(760px, 100%); max-height: min(88vh, 980px); overflow-y: auto; padding: clamp(28px, 5vw, 52px); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 45px 120px rgba(0,0,0,.28); }
.modal-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--paper-3); }
.modal-close svg { width: 20px; height: 20px; }
.modal-header { padding-right: 42px; }
.modal-header h2 { margin-top: 15px; color: var(--ink); font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); font-weight: 650; line-height: 1.03; letter-spacing: -.05em; }
.modal-header p { margin-top: 14px; color: var(--muted); line-height: 1.65; }
.inquiry-form { display: grid; gap: 18px; margin-top: 34px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.inquiry-form label { display: grid; gap: 8px; color: var(--ink-2); font-size: 11px; font-weight: 700; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--ink); background: #fff; outline: none; }
.inquiry-form input,
.inquiry-form select { min-height: 50px; padding: 0 14px; }
.inquiry-form textarea { resize: vertical; min-height: 130px; padding: 14px; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(22,130,232,.10); }
.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder { color: #607284; opacity: 1; }
.inquiry-form .is-invalid { border-color: var(--danger); }
.form-honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.file-field { grid-template-columns: auto 1fr; gap: 14px !important; align-items: center; padding: 16px; border: 1px dashed var(--line-strong); border-radius: 15px; cursor: pointer; }
.file-field input { position: absolute; opacity: 0; pointer-events: none; }
.file-field__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--blue-700); background: var(--sky-2); }
.file-field strong,
.file-field small { display: block; }
.file-field small { margin-top: 3px; color: var(--muted); font-weight: 500; }
.turnstile-field { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); }
.turnstile-shell { display: grid; gap: 10px; }
.turnstile-retry { justify-self: start; padding: 8px 11px; border-radius: 8px; color: #fff; background: var(--gradient-primary); font-size: 10px; box-shadow: 0 8px 18px rgba(7,82,162,.18); }
.turnstile-field small { color: var(--muted); font-weight: 500; line-height: 1.5; }
.consent { grid-template-columns: auto 1fr !important; gap: 10px !important; align-items: start; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.55; }
.consent input { width: 17px; min-height: auto; height: 17px; margin-top: 2px; }
.consent a { color: var(--blue-700); text-decoration: underline; }
.form-note { color: var(--muted); font-size: 10px; line-height: 1.55; text-align: center; }
.form-status { min-height: 18px; color: var(--muted); font-size: 11px; text-align: center; }
.inquiry-form.is-submitting { pointer-events: none; opacity: .72; }

.toast { position: fixed; z-index: 4000; left: 50%; bottom: 26px; min-width: min(420px, calc(100% - 32px)); padding: 14px 18px; border-radius: 999px; color: #fff; background: var(--ink); box-shadow: var(--shadow-md); text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, 18px); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.noscript-notice { padding: 16px; color: #fff; background: var(--danger); text-align: center; }
.noscript-notice a { text-decoration: underline; }
.content-loading { cursor: progress; }

/* Consistent logo-inspired heading treatment.
   Dark sections use the high-contrast silver/sky variant of the same brand palette. */
main,
.modal-panel,
.error-card { --heading-gradient-current: var(--heading-gradient-light); }
.messages,
.opportunities,
.global,
.compliance,
.contact,
.principle-card--accent,
.leader-card--blue,
.journey-card--employer,
.deployment-card--cta { --heading-gradient-current: var(--heading-gradient-dark); }
main :is(h2, h3),
.modal-header h2,
.error-card h1,
.hero .hero-title-line .hero-title-line__inner {
  color: #062b52;
  padding-bottom: .12em;
  margin-bottom: -.12em;
  overflow: visible;
  background-image: var(--heading-gradient-current);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 1160px) {
  .site-header { background: rgba(255,255,255,.98); backdrop-filter: none; }
  .nav { position: relative; }
  .menu-toggle { position: relative; z-index: 6; display: grid; margin-left: auto; }
  .nav-cta { margin-left: auto; }
  .brand { position: relative; z-index: 1; width: 245px; height: 84px; }
  .brand img { transform: translateY(-12px); }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 5;
    width: min(88vw, 410px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 102px 26px 34px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(255,255,255,.99);
    box-shadow: -26px 0 70px rgba(6,43,82,.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(104%,0,0);
    transition: transform 460ms cubic-bezier(.16,1,.3,1), opacity 260ms ease, visibility 0s linear 460ms;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0,0,0);
    transition-delay: 0s;
  }
  .nav-motion-scrim {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: block;
    background: rgba(6,28,49,.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms ease, visibility 0s linear 280ms;
  }
  body.menu-open .nav-motion-scrim { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav-links.is-open a { display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--font-display); font-size: 20px; font-weight: 650; }
  .nav-links.is-open a::before { content: attr(data-nav-index); color: var(--blue-700); font-family: var(--font-sans); font-size: 9px; }
  .nav-links.is-open a::after { display: none; }
  .nav-drawer-heading { display: grid; gap: 4px; margin-bottom: 18px; color: var(--muted); }
  .nav-drawer-heading span { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
  .nav-drawer-heading strong { color: var(--ink); font-family: var(--font-display); font-size: 26px; }
  .nav-drawer-actions { display: grid; gap: 12px; margin-top: 28px; }
  .nav-drawer-actions button { min-height: 50px; border-radius: 999px; color: #fff; background: var(--gradient-primary); }
  .nav-drawer-actions a { display: block !important; min-height: auto !important; padding: 14px 0 !important; }
  .nav-drawer-actions a span,
  .nav-drawer-actions a strong { display: block; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(400px, .95fr); gap: 44px; }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-card { border-bottom: 1px solid var(--line-strong); }
  .why-card:nth-child(3) { border-right: 0; }
  .why-card:nth-child(n+4) { border-bottom: 0; }
  .why-card:nth-child(4) { grid-column: 1 / 2; }
}

@media (max-width: 960px) {
  :root { --section-space: clamp(28px, 4vw, 36px); }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .section-heading--split,
  .about-layout,
  .messages-layout,
  .opportunities-shell,
  .global-layout,
  .legal-disclosures__shell,
  .contact-shell { grid-template-columns: 1fr; gap: 42px; }
  .about-sticky,
  .opportunities-intro,
  .legal-disclosures__intro { position: static; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-visual { width: min(760px, 100%); margin-inline: auto; }
  .leader-grid,
  .journey-grid,
  .deployment-grid { grid-template-columns: 1fr; }
  .deployment-card--cta { grid-column: auto; }
  .sector-interface,
  .process-console { grid-template-columns: 1fr; }
  .sector-tabs { grid-template-columns: repeat(5, minmax(0, 1fr)); border-right: 0; border-bottom: 1px solid var(--line); overflow-x: auto; }
  .sector-tab { min-width: 150px; border-right: 1px solid var(--line); border-bottom: 0; }
  .process-rail { display: flex; gap: 6px; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); scroll-snap-type: x proximity; scrollbar-width: thin; }
  .process-step { flex: 0 0 178px; min-width: 178px; scroll-snap-align: start; }
  .process-screen { min-height: auto; }
  .why-header { margin-bottom: 36px; }
  .why-header h2 { width: 100%; justify-self: start; }
  .compliance-card { grid-template-columns: 1fr; }
  .compliance-seal { width: min(240px, 72vw); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-action { grid-column: 1 / -1; }
  .footer-rail { min-height: 0; grid-template-columns: 1fr; gap: 13px; padding-block: 32px; }
  .footer-rail strong { text-align: left; }
  .footer-rail__meta--end { justify-self: start; text-align: left; }
}

@media (max-width: 720px) {
  :root { --section-space: clamp(24px, 6vw, 32px); }
  .section-heading { margin-bottom: 22px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section-heading h2,
  .about-sticky h2,
  .global-copy h2,
  .why-header h2,
  .messages-intro h2,
  .contact-copy h2,
  .compliance-copy h2,
  .legal-disclosures__intro h2,
  .opportunities-intro h2 { font-size: clamp(30px, 9vw, 42px); }
  .nav { min-height: 84px; gap: 12px; }
  .brand { width: min(225px, 62vw); height: 76px; }
  .brand img { transform: translateY(-10px); }
  .nav-cta { display: none; }
  .hero { padding-top: 24px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-description { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; gap: 0; }
  .hero-trust__item { padding: 15px 0; }
  .hero-trust__item + .hero-trust__item { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .globe-stage { min-height: 340px; padding: 18px; border-radius: 28px; }
  .float-card { min-width: 148px; transform: scale(.86); }
  .float-card--one { left: -4%; }
  .float-card--two { right: -4%; }
  .float-card--three { right: 3%; bottom: 8%; }
  .deployment-feed { display: none; }
  .hero-bottom { align-items: flex-start; flex-direction: column; }
  .hero-contact { justify-content: flex-start; }
  .country-list > span { padding-inline: 20px; }
  .leader-card { min-height: 360px; }
  .message-letter footer { align-items: flex-start; flex-direction: column; }
  .partners-row { grid-template-columns: 1fr; gap: 14px; }
  .partners-row i { width: 100%; height: 1px; }
  .journey-card { min-height: 450px; border-radius: 30px; }
  .journey-card__body { margin-top: 32px; }
  .opportunity-item { grid-template-columns: auto 1fr; }
  .opportunity-item > button { grid-column: 2; justify-self: start; }
  .sector-display__footer { align-items: flex-start; flex-direction: column; }
  .deployment-card--cta { grid-template-columns: 1fr; }
  .political-map-frame { border-radius: 24px; }
  .process-screen {
    grid-template-columns: 1fr;
    grid-template-areas:
      "status"
      "visual"
      "copy"
      "controls";
  }
  .process-screen__visual { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-screen__number { font-size: clamp(112px, 35vw, 165px); }
  .process-screen__copy { padding: 30px 26px 34px; }
  .process-screen__controls { padding-inline: 18px; }
  .why-grid { grid-template-columns: 1fr; border-top: 0; }
  .why-card { min-height: 210px; border: 0; border-top: 1px solid var(--line-strong); }
  .why-card:nth-child(n) { grid-column: auto; border-right: 0; border-bottom: 0; }
  .legal-disclosures summary { grid-template-columns: 1fr auto; }
  .legal-disclosures summary small { grid-column: 1; }
  .contact-license { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-action { grid-column: auto; }
  .footer-ticker { overflow-x: auto; scrollbar-width: none; }
  .footer-ticker::-webkit-scrollbar { display: none; }
  .footer-ticker::after { display: none; }
  .footer-ticker__track { width: max-content; justify-content: flex-start; padding-right: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-panel { padding: 28px 20px; border-radius: 24px; }
  .modal-header { padding-right: 32px; }
}

@media (max-width: 460px) {
  .nav { min-height: 80px; }
  .brand { width: 200px; height: 68px; }
  .brand img { transform: translateY(-9px); }
  .hero h1 { font-size: clamp(38px, 11.5vw, 52px); }
  .footer-action__contacts { grid-template-columns: 1fr; }
  .globe-stage { min-height: 300px; }
  .float-card { display: none; }
  .journey-card,
  .leader-card,
  .message-letter,
  .sector-display,
  .deployment-card__body { padding: 26px; }
  .sector-tabs { grid-template-columns: 1fr; overflow: visible; }
  .sector-tab { min-width: 0; }
  .process-rail { max-height: none; overflow-x: auto; overflow-y: hidden; }
  .process-step { flex-basis: 166px; min-width: 166px; }
  .floating-contact {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

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