:root {
  --ink: #07151d;
  --ink-soft: #0b2531;
  --ink-lift: #123340;
  --paper: #f4f6f3;
  --white: #ffffff;
  --text: #17272f;
  --muted: #617078;
  --line: #d8dedc;
  --teal: #0a8097;
  --teal-bright: #54d4d5;
  --amber: #f0b84b;
  --amber-dark: #d89a20;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 2px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(88px, 10vw, 144px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.section-kicker,
.eyebrow {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--amber);
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: background 250ms ease, box-shadow 250ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.site-header.is-scrolled,
.site-header-solid {
  background: rgba(7, 21, 29, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  overflow: visible;
}

.brand-mark rect {
  fill: var(--amber);
  stroke: var(--amber);
  stroke-width: 2;
}

.brand-mark path {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.brand-mark circle {
  fill: var(--ink);
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.brand-type span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.35em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
}

.primary-nav > a,
.primary-nav > button {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--amber);
  content: "";
  transition: transform 220ms var(--ease);
}

.primary-nav > a:hover,
.primary-nav > button:hover {
  color: var(--white);
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 11px 17px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-nav .nav-cta:hover {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  overflow: hidden;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-grid-pattern {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 17, 24, 0.98) 0%, rgba(4, 17, 24, 0.93) 36%, rgba(4, 17, 24, 0.56) 61%, rgba(4, 17, 24, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 17, 24, 0.76) 0%, transparent 43%, rgba(4, 17, 24, 0.22) 100%);
}

.hero-grid-pattern {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-position: center;
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
  padding-top: 150px;
  padding-bottom: 132px;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: 70px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  display: block;
  color: var(--amber);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(3.15rem, 5.7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions,
.candidate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  padding: 13px 22px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-network {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-primary {
  background: var(--amber);
  color: var(--ink);
}

.button-primary:hover {
  background: #ffc963;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 320px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 24px;
  background: rgba(7, 21, 29, 0.64);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-card-label {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  font-size: 0.95rem;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 184, 75, 0.12);
}

.hero-card-rule {
  height: 1px;
  margin: 20px 0 16px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-card > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-card > p span {
  margin-inline: 5px;
  color: var(--amber);
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 21, 29, 0.78);
  backdrop-filter: blur(10px);
}

.hero-rail-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-rail-inner .rail-label {
  color: var(--amber);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.hero-rail-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.positioning {
  background: var(--white);
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 10vw, 150px);
}

.positioning-copy {
  padding-top: 50px;
}

.positioning-copy .lead {
  margin-bottom: 28px;
  color: var(--ink);
}

.positioning-copy > p:not(.lead) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  margin-top: 10px;
  padding-bottom: 3px;
  color: var(--teal);
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.expertise {
  background: var(--paper);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(48px, 7vw, 86px);
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.sector-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  transition: transform 250ms var(--ease), box-shadow 250ms ease;
}

.sector-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--amber);
  content: "";
  transition: width 350ms var(--ease);
}

.sector-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(7, 21, 29, 0.12);
}

.sector-card:hover::after {
  width: 100%;
}

.sector-card-featured {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.72);
}

.sector-card-featured h3 {
  color: var(--white);
}

.card-index {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sector-card-featured .card-index {
  color: var(--amber);
}

.sector-icon {
  width: 72px;
  height: 72px;
  margin: 66px 0 34px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.sector-card-featured .sector-icon {
  stroke: var(--teal-bright);
}

.sector-card h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.sector-card p {
  min-height: 82px;
  color: inherit;
}

.sector-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.sector-card li {
  border: 1px solid rgba(7, 21, 29, 0.14);
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.sector-card-featured li {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
}

/* Interactive sector explorer */
.sector-explorer {
  display: grid;
  min-height: 590px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(7, 21, 29, 0.08);
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
}

.sector-tabs {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
  grid-template-rows: repeat(3, 1fr);
}

.sector-tab {
  position: relative;
  display: grid;
  overflow: hidden;
  align-content: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 32px clamp(24px, 3vw, 42px);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.sector-tab:last-child {
  border-bottom: 0;
}

.sector-tab::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  transform: scaleY(0);
  background: var(--amber);
  content: "";
  transition: transform 300ms var(--ease);
}

.sector-tab span {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sector-tab strong {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.sector-tab small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-tab:hover {
  background: #f8faf8;
}

.sector-tab.is-active {
  background: var(--ink);
  color: var(--white);
}

.sector-tab.is-active::before {
  transform: scaleY(1);
}

.sector-tab.is-active span {
  color: var(--amber);
}

.sector-tab.is-active small {
  color: rgba(255, 255, 255, 0.55);
}

.sector-panel {
  --sector-accent: var(--amber);
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px);
  background:
    linear-gradient(135deg, rgba(84, 212, 213, 0.07), transparent 42%),
    var(--ink-soft);
  color: rgba(255, 255, 255, 0.7);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  grid-template-rows: 1fr auto;
  gap: 54px clamp(40px, 6vw, 85px);
  isolation: isolate;
}

.sector-panel::before {
  position: absolute;
  right: -170px;
  bottom: -250px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 1px solid color-mix(in srgb, var(--sector-accent) 28%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px color-mix(in srgb, var(--sector-accent) 5%, transparent),
    0 0 0 144px color-mix(in srgb, var(--sector-accent) 3%, transparent);
  content: "";
}

.sector-panel[data-sector="storage"] {
  --sector-accent: var(--teal-bright);
}

.sector-panel[data-sector="grid"] {
  --sector-accent: #8ebbd0;
}

.sector-panel-copy,
.sector-panel-details,
.sector-stage {
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.sector-panel.is-switching .sector-panel-copy,
.sector-panel.is-switching .sector-panel-details,
.sector-panel.is-switching .sector-stage {
  transform: translateY(8px);
  opacity: 0;
}

.sector-panel-index,
.detail-label {
  margin-bottom: 20px;
  color: var(--sector-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sector-panel h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.3rem);
}

.sector-panel-copy > p:not(.sector-panel-index) {
  max-width: 480px;
  margin-bottom: 35px;
  font-size: 1.03rem;
}

.sector-signal {
  display: flex;
  height: 48px;
  align-items: end;
  gap: 8px;
}

.sector-signal span {
  width: 4px;
  height: 45%;
  background: var(--sector-accent);
  animation: sectorSignal 2.4s ease-in-out infinite alternate;
}

.sector-signal span:nth-child(2) { height: 75%; animation-delay: -0.7s; }
.sector-signal span:nth-child(3) { height: 100%; animation-delay: -1.3s; }
.sector-signal span:nth-child(4) { height: 60%; animation-delay: -1.8s; }

@keyframes sectorSignal {
  50% { transform: scaleY(0.45); opacity: 0.48; }
}

.sector-panel-details {
  display: grid;
  align-content: start;
  gap: 42px;
}

.sector-panel-details .detail-label {
  color: rgba(255, 255, 255, 0.48);
}

.sector-chip-list,
.sector-role-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sector-chip-list li {
  border: 1px solid rgba(255, 255, 255, 0.19);
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 700;
}

.sector-role-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sector-role-list li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 11px 28px 11px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.sector-role-list li::after {
  position: absolute;
  top: 12px;
  right: 2px;
  color: var(--sector-accent);
  content: "↗";
}

.sector-stage {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.sector-stage::before {
  position: absolute;
  top: 7px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.sector-stage div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sector-stage i {
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 4px solid var(--ink-soft);
  border-radius: 50%;
  background: var(--sector-accent);
  box-shadow: 0 0 0 1px var(--sector-accent);
}

.disciplines {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 10vw, 150px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

/* Geographic coverage explorer */
.reach {
  overflow: hidden;
  background: #edf1ef;
}

.reach-explorer {
  display: grid;
  min-height: 580px;
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(7, 21, 29, 0.14);
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
}

.reach-map {
  position: relative;
  display: grid;
  min-height: 580px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 55% 45%, rgba(84, 212, 213, 0.12), transparent 39%),
    linear-gradient(145deg, #071923, #0b2c38);
}

.reach-map::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: radial-gradient(circle, #000, transparent 70%);
}

.reach-map svg {
  position: relative;
  width: min(92%, 780px);
}

.map-globe-fill {
  fill: url(#mapFade);
}

.map-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1;
}

.map-route {
  fill: none;
  stroke: var(--amber);
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  stroke-width: 1.4;
  animation: mapRoute 16s linear infinite;
}

@keyframes mapRoute {
  to { stroke-dashoffset: -130; }
}

.map-point {
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  border: 0;
  padding: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.67);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-point i {
  position: relative;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  margin-bottom: 8px;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(84, 212, 213, 0.13);
}

.map-point i::after {
  position: absolute;
  inset: -9px;
  border: 1px solid var(--teal-bright);
  border-radius: 50%;
  opacity: 0;
  content: "";
}

.map-point:hover,
.map-point.is-active {
  color: var(--white);
}

.map-point.is-active i {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(240, 184, 75, 0.18);
}

.map-point.is-active i::after {
  animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
  0% { transform: scale(0.55); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

.map-point-na { top: 48%; left: 24%; }
.map-point-uk { top: 34%; left: 62%; }
.map-point-eu { top: 45%; left: 70%; }

.map-caption {
  position: absolute;
  bottom: 22px;
  left: 26px;
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reach-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
  background: var(--amber);
  color: rgba(7, 21, 29, 0.76);
}

.reach-count {
  margin-bottom: 44px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.reach-detail .detail-label {
  margin-bottom: 14px;
  color: rgba(7, 21, 29, 0.6);
}

.reach-detail h3 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.reach-detail > p:not(.reach-count, .detail-label) {
  margin-bottom: 28px;
}

.reach-detail > ul {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.reach-detail > ul li {
  border-top: 1px solid rgba(7, 21, 29, 0.2);
  padding: 10px 0;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 650;
}

.reach-detail > ul li:last-child {
  border-bottom: 1px solid rgba(7, 21, 29, 0.2);
}

.reach-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.reach-controls button {
  min-height: 39px;
  border: 1px solid rgba(7, 21, 29, 0.3);
  padding: 7px 11px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
}

.reach-controls button:hover,
.reach-controls button.is-active {
  background: var(--ink);
  color: var(--white);
}

.disciplines::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.disciplines-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.disciplines h2 {
  color: var(--white);
}

.discipline-list {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.discipline-list article {
  display: grid;
  min-height: 150px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  grid-template-columns: 60px 1fr;
  gap: 24px;
}

.discipline-list article > span {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
}

.discipline-list h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.55rem;
}

.discipline-list p {
  margin: 0;
}

.employers {
  background: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.process-grid::before {
  position: absolute;
  top: 48px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-progress {
  position: absolute;
  top: 48px;
  right: 10%;
  left: 10%;
  z-index: 1;
  height: 2px;
  overflow: hidden;
}

.process-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--process-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: transform 100ms linear;
}

.process-grid article {
  position: relative;
  z-index: 1;
}

.process-grid.is-enhanced article {
  opacity: 0.42;
  transition: opacity 320ms ease, transform 420ms var(--ease);
}

.process-grid article.is-active {
  transform: translateY(-4px);
  opacity: 1;
}

.process-grid article.is-active .process-node {
  box-shadow: 0 0 0 1px var(--amber), 0 0 0 8px rgba(240, 184, 75, 0.15);
}

.process-number {
  display: block;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-node {
  width: 14px;
  height: 14px;
  border: 4px solid var(--white);
  border-radius: 50%;
  margin: 0 0 32px 2px;
  background: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.process-grid h3 {
  margin-bottom: 14px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.employer-banner {
  display: grid;
  margin-top: clamp(70px, 9vw, 120px);
  padding: clamp(34px, 5vw, 64px);
  align-items: center;
  background: var(--amber);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 45px;
}

.employer-banner p {
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.employer-banner h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-lift);
}

.coverage {
  background: var(--paper);
}

.coverage-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(60px, 10vw, 150px);
}

.coverage-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.coverage-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.coverage-intro > p:last-child {
  max-width: 440px;
  color: var(--muted);
}

.role-list {
  border-top: 1px solid var(--line);
}

.role-list > div {
  display: grid;
  min-height: 112px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  transition: padding 220ms var(--ease), background 220ms ease;
}

.role-list > div:hover {
  padding-inline: 16px;
  background: var(--white);
}

.role-list span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.role-list strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.role-list i {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.testimonials {
  background: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
}

.quote-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
}

.quote-card::before {
  color: var(--amber-dark);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.6;
  content: "“";
}

.quote-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.quote-card blockquote {
  margin: 42px 0 50px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.38;
}

.quote-card-dark blockquote {
  color: var(--white);
}

.quote-card figcaption {
  display: grid;
  gap: 2px;
}

.quote-card figcaption strong {
  color: inherit;
}

.quote-card figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.quote-card-dark figcaption span {
  color: rgba(255, 255, 255, 0.55);
}

/* Live jobs */
.jobs {
  background: var(--paper);
}

.jobs-board {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 68px rgba(7, 21, 29, 0.07);
}

.jobs-toolbar {
  display: grid;
  padding: 24px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background: #eef2f0;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, 0.45fr) auto;
  gap: 14px;
}

.jobs-toolbar label,
.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.jobs-toolbar input,
.jobs-toolbar select,
.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c9d2cf;
  border-radius: 0;
  padding: 11px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

.jobs-toolbar input:focus,
.jobs-toolbar select:focus,
.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(10, 128, 151, 0.16);
  outline-offset: 0;
}

.jobs-toolbar input:disabled,
.jobs-toolbar select:disabled {
  background: #e7ebe9;
  color: #87928e;
  cursor: not-allowed;
}

html:not(.js) .jobs-toolbar,
html:not(.js) .job-list {
  display: none;
}

.job-count {
  min-width: 135px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: right;
}

.job-list {
  min-height: 190px;
}

.job-loading,
.job-empty {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  padding: 42px;
  color: var(--muted);
  text-align: center;
}

.job-loading {
  gap: 12px;
}

.job-loading i {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: jobSpin 800ms linear infinite;
}

@keyframes jobSpin { to { transform: rotate(360deg); } }

.job-empty {
  display: grid;
  align-content: center;
  justify-items: center;
}

.job-empty::before {
  width: 44px;
  height: 44px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 1.5rem;
  line-height: 42px;
  content: "↗";
}

.job-empty strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.15rem;
}

.job-empty p {
  max-width: 560px;
  margin: 0;
}

.job-item {
  display: grid;
  min-height: 108px;
  padding: 23px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.45fr) auto;
  gap: 28px;
  color: var(--ink);
  text-decoration: none;
  transition: background 200ms ease, padding 260ms var(--ease);
}

.job-item:last-child {
  border-bottom: 0;
}

.job-item:hover {
  padding-inline: 36px 22px;
  background: #f6f8f6;
}

.job-item strong {
  font-size: 1.07rem;
}

.job-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.job-item i {
  color: var(--teal);
  font-size: 1.3rem;
  font-style: normal;
}

.jobs-footer {
  display: flex;
  min-height: 88px;
  padding: 22px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.68);
}

.jobs-footer p {
  margin: 0;
  font-size: 0.87rem;
}

.jobs-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.jobs-footer .text-link {
  margin: 0;
  color: var(--white);
  font-size: 0.8rem;
}

.candidate-callout {
  padding-block: clamp(76px, 9vw, 120px);
  background: var(--teal);
  color: rgba(255, 255, 255, 0.78);
}

.candidate-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(50px, 9vw, 130px);
}

.candidate-callout h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.candidate-callout .section-kicker {
  color: #b9f1ed;
}

.candidate-grid > div:last-child > p {
  margin-bottom: 30px;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--amber);
}

.text-link-light {
  margin: 0 0 0 8px;
  color: var(--white);
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.72fr) minmax(450px, 1.28fr);
  gap: clamp(60px, 11vw, 170px);
}

.about-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: var(--ink-soft);
}

.about-mark::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  content: "";
}

.about-mark svg {
  width: 48%;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.about-mark circle {
  fill: var(--amber);
  stroke: none;
}

.about-mark span {
  position: absolute;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
}

.about-copy .lead {
  color: var(--ink);
}

.about-copy > p:not(.section-kicker, .lead) {
  color: var(--muted);
}

.about-facts {
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.about-facts > div {
  display: grid;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.about-facts dt {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.contact {
  padding-top: 0;
  background: var(--paper);
}

.contact-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(40px, 7vw, 90px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-panel::before {
  position: absolute;
  top: -280px;
  left: -200px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(84, 212, 213, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(84, 212, 213, 0.03), 0 0 0 140px rgba(84, 212, 213, 0.02);
  content: "";
}

.contact-copy,
.contact-details {
  position: relative;
}

.contact-panel h2 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.contact-copy > p:last-child {
  max-width: 600px;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  align-self: center;
}

.contact-details a {
  display: grid;
  min-height: 96px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  grid-template-columns: 80px 1fr auto;
  gap: 18px;
  text-decoration: none;
}

.contact-details a span {
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a strong {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.contact-details a i {
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 180ms var(--ease);
}

.contact-details a:hover i {
  transform: translate(4px, -4px);
}

.site-footer {
  background: #041017;
  color: rgba(255, 255, 255, 0.57);
}

.footer-main {
  display: grid;
  min-height: 230px;
  padding-block: 58px;
  align-items: start;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 60px;
}

.brand-footer {
  margin-top: 2px;
}

.footer-main > p {
  max-width: 360px;
  margin: 0;
}

.footer-links {
  display: grid;
  justify-self: end;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 10px 45px;
}

.footer-links a,
.legal-back {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover,
.legal-back:hover {
  color: var(--amber);
}

.footer-legal {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.7rem;
}

.footer-legal p {
  margin: 0;
}

/* Employer brief */
body.dialog-open {
  overflow: hidden;
}

.brief-dialog {
  width: min(820px, calc(100% - 36px));
  max-height: min(860px, calc(100svh - 36px));
  border: 0;
  padding: 0;
  background: var(--paper);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.38);
  color: var(--text);
}

.brief-dialog::backdrop {
  background: rgba(4, 16, 23, 0.78);
  backdrop-filter: blur(8px);
}

.brief-dialog[open] {
  animation: briefEnter 300ms var(--ease);
}

@keyframes briefEnter {
  from { transform: translateY(24px) scale(0.98); opacity: 0; }
}

.brief-form {
  display: grid;
  min-height: 620px;
  padding: clamp(28px, 5vw, 58px);
  grid-template-rows: auto auto auto 1fr auto;
}

.brief-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.brief-header .section-kicker {
  margin-bottom: 13px;
}

.brief-header h2 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.brief-close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  padding: 0 0 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.brief-close:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.brief-progress {
  height: 3px;
  margin-top: 34px;
  overflow: hidden;
  background: var(--line);
}

.brief-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 400ms var(--ease);
}

.brief-step-label {
  margin: 12px 0 30px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-step {
  align-content: start;
}

.brief-step.is-active {
  display: grid;
  gap: 22px;
  animation: briefStep 300ms var(--ease);
}

.brief-step[hidden],
.brief-actions [hidden] {
  display: none;
}

@keyframes briefStep {
  from { transform: translateX(12px); opacity: 0; }
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brief-form textarea {
  min-height: 132px;
  resize: vertical;
}

.brief-summary {
  border-left: 3px solid var(--amber);
  padding: 14px 18px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.82rem;
}

.brief-summary strong {
  color: var(--ink);
}

.brief-actions {
  display: flex;
  margin-top: 34px;
  padding-top: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  gap: 14px;
}

.brief-actions > p {
  max-width: 300px;
  margin: 0 auto 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.brief-back {
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 10px 17px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Privacy page */
.legal-page {
  background: var(--white);
}

.legal-main {
  padding: 170px 0 120px;
}

.legal-shell > h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.legal-updated {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  margin-top: 90px;
  grid-template-columns: 220px minmax(0, 700px);
  gap: clamp(60px, 11vw, 150px);
}

.legal-nav {
  position: sticky;
  top: 130px;
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.legal-nav a:hover {
  color: var(--teal);
}

.legal-content section {
  margin-bottom: 58px;
  scroll-margin-top: 120px;
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--teal);
}

.footer-legal-standalone {
  justify-content: flex-start;
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 1240px);
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }

  .menu-toggle-label {
    font-size: 0.78rem;
    font-weight: 700;
  }

  .menu-toggle-icon {
    position: relative;
    width: 27px;
    height: 18px;
  }

  .menu-toggle-icon i {
    position: absolute;
    right: 0;
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, top 220ms ease;
  }

  .menu-toggle-icon i:first-child { top: 4px; }
  .menu-toggle-icon i:last-child { top: 13px; width: 19px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
    top: 9px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
    top: 9px;
    width: 27px;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 110px max(30px, calc((100vw - var(--shell)) / 2));
    opacity: 0;
    background: var(--ink);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .primary-nav > a,
  .primary-nav > button {
    font-size: clamp(1.6rem, 6vw, 3rem);
  }

  .primary-nav .nav-cta {
    margin-top: 15px;
    padding: 12px 18px;
    font-size: 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .hero-copy {
    max-width: 780px;
  }

  .sector-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .sector-explorer {
    grid-template-columns: 1fr;
  }

  .sector-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }

  .sector-tab {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .sector-tab:last-child {
    border-right: 0;
  }

  .sector-tab::before {
    inset: auto 0 0;
    width: auto;
    height: 4px;
    transform: scaleX(0);
  }

  .sector-tab.is-active::before {
    transform: scaleX(1);
  }

  .reach-explorer {
    grid-template-columns: 1fr;
  }

  .reach-detail {
    min-height: 430px;
  }

  .sector-card {
    min-height: auto;
  }

  .sector-icon {
    margin-top: 46px;
  }

  .sector-card p {
    min-height: auto;
  }

  .quote-card {
    min-height: 300px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .process-grid::before {
    display: none;
  }

  .process-progress {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    grid-column: 1;
  }

  .footer-links {
    grid-row: 1 / 3;
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 32px, 1240px);
  }

  .section-pad {
    padding-block: 82px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 17, 24, 0.96), rgba(4, 17, 24, 0.54)), linear-gradient(0deg, rgba(4, 17, 24, 0.86), transparent 65%);
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 142px;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 11.5vw, 4.3rem);
  }

  .hero-intro {
    font-size: 1.03rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-network {
    opacity: 0.5;
  }

  .hero-rail-inner {
    min-height: 92px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 16px;
    padding-block: 15px;
    font-size: 0.7rem;
    text-align: center;
  }

  .hero-rail-inner .rail-label {
    width: 100%;
  }

  .positioning-grid,
  .section-heading,
  .disciplines-inner,
  .coverage-grid,
  .candidate-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .positioning-copy {
    padding-top: 0;
  }

  .section-heading {
    align-items: start;
  }

  .sector-card {
    padding: 34px 28px 42px;
  }

  .sector-explorer {
    border-inline: 0;
    margin-inline: -16px;
  }

  .sector-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(155px, 1fr));
    scrollbar-width: thin;
  }

  .sector-tab {
    min-height: 132px;
    padding: 21px 20px;
  }

  .sector-tab span {
    margin-bottom: 10px;
  }

  .sector-tab small {
    display: none;
  }

  .sector-panel {
    min-height: 640px;
    padding: 38px 28px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 42px;
  }

  .sector-panel h3 {
    font-size: 3.4rem;
  }

  .sector-panel::before {
    right: -330px;
  }

  .reach-explorer {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .reach-map {
    min-height: 430px;
  }

  .reach-map svg {
    width: 110%;
  }

  .map-point {
    font-size: 0.58rem;
  }

  .map-point-na { left: 17%; }
  .map-point-uk { left: 60%; }
  .map-point-eu { left: 69%; }

  .reach-detail {
    min-height: 500px;
    padding: 40px 28px;
  }

  .disciplines-inner {
    gap: 60px;
  }

  .discipline-list article {
    grid-template-columns: 36px 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-grid.is-enhanced article {
    opacity: 0.48;
  }

  .process-node {
    margin-bottom: 22px;
  }

  .employer-banner {
    grid-template-columns: 1fr;
  }

  .employer-banner .button {
    width: 100%;
  }

  .coverage-intro {
    position: static;
  }

  .role-list > div {
    padding-block: 22px;
    grid-template-columns: 1fr auto;
    gap: 6px 20px;
  }

  .role-list span {
    grid-column: 1 / 3;
  }

  .jobs-toolbar {
    grid-template-columns: 1fr;
  }

  .job-count {
    margin: 5px 0 0;
    text-align: left;
  }

  .job-item {
    padding: 22px;
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
  }

  .job-item span {
    grid-row: 2;
    grid-column: 1;
  }

  .job-item i {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .jobs-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .brief-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .brief-form {
    min-height: min(720px, calc(100svh - 20px));
    overflow-y: auto;
    padding: 28px 22px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .brief-actions {
    flex-wrap: wrap;
  }

  .brief-actions > p {
    width: 100%;
    max-width: none;
    order: -1;
  }

  .brief-actions .button {
    flex: 1;
  }

  .candidate-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link-light {
    margin: 12px 0 0;
  }

  .about-mark {
    width: min(100%, 480px);
  }

  .contact-panel {
    width: 100%;
  }

  .contact-details a {
    min-height: 105px;
    align-items: start;
    padding-block: 20px;
    grid-template-columns: 1fr auto;
    gap: 4px 16px;
  }

  .contact-details a span {
    grid-column: 1 / 3;
  }

  .contact-details a strong {
    overflow-wrap: anywhere;
  }

  .footer-main {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-main > p,
  .footer-links {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-links {
    justify-self: stretch;
  }

  .footer-legal {
    flex-direction: column;
    padding-block: 24px;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .legal-main {
    padding: 135px 0 85px;
  }

  .legal-layout {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .legal-nav {
    position: static;
  }

  .legal-back {
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  .brand-type strong {
    font-size: 0.88rem;
  }

  .brand-type span {
    font-size: 0.57rem;
  }

  .menu-toggle-label {
    display: none;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .role-list > div {
    grid-template-columns: 1fr;
  }

  .role-list span {
    grid-column: auto;
  }

  .about-facts > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .sector-panel {
    padding-inline: 22px;
  }

  .sector-stage div {
    font-size: 0.58rem;
  }

  .map-point span {
    max-width: 82px;
  }

  .jobs-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .sector-signal span,
  .map-route,
  .map-point i::after,
  .job-loading i,
  .brief-dialog[open] {
    animation: none;
  }
}
