:root {
  --ink: #181015;
  --ink-2: #61525a;
  --muted: #8d7f86;
  --line: rgba(120, 36, 76, .15);
  --panel: #fffdf9;
  --surface: #ffffff;
  --surface-2: #f3ece7;
  --bg: #f8f3ef;
  --bg-2: #eee5df;
  --primary: #78244c;
  --primary-2: #4f1731;
  --primary-3: #9a4e70;
  --primary-deep: #260915;
  --primary-soft: rgba(120, 36, 76, .12);
  --green: var(--primary);
  --green-2: var(--primary-2);
  --teal: #2f7964;
  --teal-soft: rgba(47, 121, 100, .14);
  --gold: #f3c900;
  --gold-2: #d6ab00;
  --gold-soft: rgba(243, 201, 0, .16);
  --rose: #b46679;
  --blue: #587d9a;
  --night: #130b10;
  --shadow: 0 28px 90px rgba(71, 25, 49, .14);
  --shadow-soft: 0 16px 46px rgba(48, 18, 33, .10);
  --radius: 8px;
  --max: 1180px;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body.job-detail-open { overflow: hidden; }
body::before {
  background:
    linear-gradient(118deg, rgba(120,36,76,.09), transparent 40%),
    linear-gradient(28deg, rgba(47,121,100,.08), transparent 54%),
    repeating-linear-gradient(90deg, rgba(24,16,21,.024) 0 1px, transparent 1px 120px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
a { color: inherit; }
img, canvas, svg { display: block; max-width: 100%; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}
p { color: var(--ink-2); margin: 0; }
.wrap { margin: 0 auto; max-width: var(--max); padding: 0 28px; }
.eyebrow {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker { color: var(--teal); font-weight: 700; }
.section { padding: 88px 0; }
.section.alt { background: rgba(255,253,248,.58); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.section-head { align-items: end; display: flex; gap: 28px; justify-content: space-between; margin-bottom: 34px; }
.section-head h2 { font-size: clamp(2.3rem, 4vw, 4.3rem); max-width: 770px; }
.section-head p { max-width: 430px; }

.skip-link {
  background: var(--gold);
  color: var(--ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.nav {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255,253,249,.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(45, 22, 33, .06);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  padding: 12px 28px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}
.brand { align-items: center; display: flex; gap: 12px; text-decoration: none; }
.brand-frame {
  align-items: center;
  background: #070506;
  border: 1px solid rgba(120,36,76,.22);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(120,36,76,.12);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 46px;
}
.brand-mark {
  background: transparent;
  border-radius: 0;
  display: block;
  height: 36px;
  object-fit: contain;
  width: 39px;
}
.brand-word strong { display: block; font-size: 18px; line-height: 1; }
.brand-word span { color: var(--muted); display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; margin-top: 3px; text-transform: uppercase; }
.nav-links {
  align-items: center;
  background: rgba(120,36,76,.045);
  border: 1px solid rgba(120,36,76,.10);
  border-radius: 999px;
  display: flex;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 5px;
}
.nav-links a {
  border-radius: 999px;
  color: var(--ink-2);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 11px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255,253,248,.90);
  color: var(--ink);
}
.nav-actions { align-items: center; display: flex; gap: 10px; }
.nav-actions .btn { min-height: 40px; padding: 10px 14px; }
.region-link {
  border: 1px solid rgba(120,36,76,.16);
  border-radius: 999px;
  color: var(--primary-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .10em;
  padding: 9px 12px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.region-link:hover { background: var(--primary-soft); }
.menu-toggle { display: none; }

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(38, 9, 21, .08);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { box-shadow: 0 16px 34px rgba(38, 9, 21, .14); transform: translateY(-1px); }
.btn.primary { background: var(--green); color: #fffdf8; }
.btn.primary:hover { background: var(--green-2); }
.btn.gold { background: var(--gold); color: #24140a; }
.btn.ghost { background: rgba(255,253,248,.52); border-color: var(--line); color: var(--ink); }
.btn.text { border: none; color: var(--green-2); min-height: auto; padding: 0; }
.btn.full { width: 100%; }

.hero {
  background:
    linear-gradient(90deg, rgba(19,11,16,.95), rgba(47,18,33,.84) 48%, rgba(120,36,76,.72)),
    radial-gradient(circle at 74% 34%, rgba(243,201,0,.22), transparent 28%),
    var(--primary-deep);
  color: #fffdf8;
  min-height: 720px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.hero::before {
  background: linear-gradient(90deg, rgba(19,11,16,.90) 0%, rgba(19,11,16,.72) 42%, rgba(19,11,16,.26) 60%, transparent 82%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.hero::after {
  background: linear-gradient(180deg, transparent, rgba(248,243,239,.98));
  bottom: -1px;
  content: "";
  height: 120px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}
.hero-grid { display: block; min-height: 720px; position: relative; }
.hero-copy { max-width: 720px; padding: 104px 0 148px; position: relative; z-index: 3; }
.hero h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); max-width: 760px; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 1.38vw, 1.14rem); line-height: 1.85; margin-top: 24px; max-width: 600px; }
.hero .hero-sub, .hero p { color: rgba(255,253,248,.78); }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-strip { align-items: center; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-strip span { background: rgba(255,253,248,.11); border: 1px solid rgba(255,253,248,.22); border-radius: 999px; color: rgba(255,253,248,.78); font-size: 13px; padding: 8px 12px; }
.hero-visual {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fffdf8;
  inset: 0;
  min-height: auto;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
#network-canvas {
  height: 100%;
  inset: 0;
  opacity: .50;
  position: absolute;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, #000 58%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 38%, #000 58%, #000 100%);
}
.visual-panel {
  backdrop-filter: blur(14px);
  background: rgba(255,253,248,.12);
  border: 1px solid rgba(255,253,248,.20);
  border-radius: 8px;
  bottom: 138px;
  left: auto;
  max-width: 430px;
  padding: 22px;
  position: absolute;
  right: max(36px, calc((100vw - var(--max)) / 2 + 28px));
  width: min(390px, 32vw);
  z-index: 3;
}
.visual-panel strong { display: block; font-family: var(--display); font-size: 34px; font-weight: 400; line-height: 1; }
.visual-panel p { color: rgba(255,253,248,.74); margin-top: 8px; }
.metric-row { display: grid; gap: 1px; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 3; }
.metric {
  background: rgba(255,253,248,.82);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 26px;
}
.metric strong { color: var(--green); display: block; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.2rem); font-weight: 400; line-height: 1; }
.metric span { color: var(--ink-2); display: block; font-size: 14px; margin-top: 10px; max-width: 190px; }

.home-hero {
  background:
    linear-gradient(105deg, rgba(19,11,16,.96), rgba(54,18,35,.94) 54%, rgba(120,36,76,.86)),
    linear-gradient(160deg, rgba(243,201,0,.18), transparent 36%),
    var(--primary-deep);
  color: #fffdf8;
  overflow: hidden;
  position: relative;
}
.home-hero::before {
  background:
    linear-gradient(90deg, rgba(19,11,16,.78), rgba(19,11,16,.28) 56%, transparent),
    repeating-linear-gradient(90deg, rgba(255,253,248,.05) 0 1px, transparent 1px 112px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.home-hero::after {
  background: linear-gradient(180deg, transparent, rgba(248,243,239,.98));
  bottom: -1px;
  content: "";
  height: 110px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.home-hero-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  min-height: 700px;
  padding-bottom: 112px;
  padding-top: 92px;
  position: relative;
  z-index: 2;
}
.home-hero-copy { max-width: 760px; }
.home-hero h1 {
  font-size: clamp(3.6rem, 7.5vw, 7.7rem);
  max-width: 860px;
}
.home-hero .hero-sub {
  color: rgba(255,253,248,.78);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  max-width: 650px;
}
.home-hero .btn.text { color: #fffdf8; }
.home-pathways {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 720px;
}
.home-pathways a {
  background: rgba(255,253,248,.10);
  border: 1px solid rgba(255,253,248,.20);
  border-radius: var(--radius);
  color: #fffdf8;
  min-height: 116px;
  padding: 18px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.home-pathways a:hover {
  background: rgba(255,253,248,.16);
  border-color: rgba(255,253,248,.34);
  transform: translateY(-1px);
}
.home-pathways span {
  color: var(--gold);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-pathways strong {
  display: block;
  font-size: 18px;
  line-height: 1.32;
  margin-top: 12px;
}
.home-hero-panel {
  display: grid;
  gap: 16px;
  margin-left: auto;
  max-width: 470px;
  width: 100%;
}
.home-hero-label {
  justify-self: start;
  background: rgba(243,201,0,.92);
  border-radius: 999px;
  color: #24140a;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 9px 13px;
  text-transform: uppercase;
}
.home-signal-card,
.home-proof-card {
  backdrop-filter: blur(18px);
  background: rgba(255,253,248,.12);
  border: 1px solid rgba(255,253,248,.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(10, 4, 8, .20);
  padding: 24px;
}
.home-signal-card .eyebrow,
.home-proof-card span { color: var(--gold); }
.signal-row {
  border-top: 1px solid rgba(255,253,248,.16);
  display: grid;
  gap: 4px;
  padding: 17px 0 0;
}
.signal-row + .signal-row { margin-top: 17px; }
.signal-row strong {
  color: #fffdf8;
  font-size: 18px;
}
.signal-row span,
.home-proof-card p {
  color: rgba(255,253,248,.72);
  font-size: 14px;
}
.home-proof-card span {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-proof-card strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 8px;
}
.home-proof-card p { margin-top: 10px; }
.home-role-cloud {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}
.home-role-cloud span {
  background: rgba(255,253,248,.90);
  border: 1px solid rgba(255,253,248,.32);
  border-radius: 999px;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  min-height: 38px;
  padding: 11px 12px;
  text-align: center;
}

.gateway-page {
  background: var(--primary-deep);
  color: #fffdf8;
}
.gateway-page::before {
  background:
    linear-gradient(110deg, rgba(120,36,76,.22), transparent 44%),
    linear-gradient(30deg, rgba(243,201,0,.10), transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,253,248,.045) 0 1px, transparent 1px 120px);
}
.gateway-nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 18px 32px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}
.gateway-brand {
  align-items: center;
  color: #fffdf8;
  display: flex;
  gap: 12px;
  text-decoration: none;
}
.gateway-brand .brand-word span { color: rgba(255,253,248,.66); }
.gateway-nav nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.gateway-nav nav a {
  background: rgba(255,253,248,.10);
  border: 1px solid rgba(255,253,248,.18);
  border-radius: 999px;
  color: rgba(255,253,248,.82);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 13px;
  text-decoration: none;
}
.gateway-nav nav a:hover {
  background: rgba(255,253,248,.18);
  color: #fffdf8;
}
.gateway-main { background: var(--bg); color: var(--ink); }
.gateway-hero {
  background:
    linear-gradient(108deg, rgba(19,11,16,.96), rgba(54,18,35,.94) 52%, rgba(120,36,76,.86)),
    linear-gradient(145deg, rgba(243,201,0,.18), transparent 40%),
    var(--primary-deep);
  color: #fffdf8;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}
.gateway-hero::after {
  background: linear-gradient(180deg, transparent, rgba(248,243,239,.98));
  bottom: -1px;
  content: "";
  height: 112px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.gateway-hero-grid {
  align-items: center;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .68fr);
  min-height: 680px;
  padding-bottom: 110px;
  padding-top: 118px;
  position: relative;
  z-index: 2;
}
.gateway-copy h1 {
  font-size: clamp(3.7rem, 7.6vw, 7.8rem);
  max-width: 850px;
}
.gateway-copy p {
  color: rgba(255,253,248,.76);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.86;
  margin-top: 22px;
  max-width: 660px;
}
.gateway-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.gateway-assurance {
  backdrop-filter: blur(18px);
  background: rgba(255,253,248,.12);
  border: 1px solid rgba(255,253,248,.22);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(10, 4, 8, .20);
  padding: 28px;
}
.gateway-assurance strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  margin-top: 12px;
}
.gateway-assurance p {
  color: rgba(255,253,248,.72);
  margin-top: 16px;
}
.gateway-regions,
.gateway-footer-band { background: var(--bg); }
.gateway-region-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gateway-card {
  background: rgba(255,253,248,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
}
.gateway-card h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-top: 18px;
}
.gateway-card p { margin-top: 14px; }
.gateway-card ul {
  color: var(--ink-2);
  margin: 24px 0 0;
  padding-left: 20px;
}
.gateway-card li + li { margin-top: 8px; }
.gateway-card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
}
.gateway-support {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-bottom: 56px;
  padding-top: 56px;
}
.gateway-support h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  margin-top: 8px;
}
.gateway-support p { max-width: 700px; }
.gateway-dashboard-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cards { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); }
.card {
  background: rgba(255,253,248,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  padding: 24px;
}
.card h3 { font-size: 30px; margin-top: 26px; }
.card h3 a { overflow-wrap: anywhere; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.card p { font-size: 14px; margin-top: 12px; }
.card .num { color: var(--gold); font-family: var(--mono); font-size: 12px; letter-spacing: .16em; }
.service-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.employer-cta-panel {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,253,248,.94), rgba(243,236,231,.72)),
    radial-gradient(circle at 88% 18%, rgba(243,201,0,.18), transparent 26%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  padding: 30px;
}
.employer-cta-panel h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.5rem);
  margin-top: 8px;
  max-width: 780px;
}
.employer-cta-panel p {
  margin-top: 12px;
  max-width: 760px;
}
.employer-cta-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}
.role-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.role-cloud span {
  background: rgba(255,253,248,.86);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(38, 9, 21, .06);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}
.service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.service-top { background: linear-gradient(135deg, var(--primary-soft), var(--teal-soft)); min-height: 86px; padding: 18px; }
.service h3 { font-size: 32px; padding: 0 22px; }
.service p { font-size: 14px; padding: 12px 22px 22px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 22px 22px; }
.tag { background: var(--gold-soft); border: 1px solid rgba(120,36,76,.16); border-radius: 999px; color: #6e2348; font-size: 12px; padding: 5px 9px; }

.split { align-items: start; display: grid; gap: 44px; grid-template-columns: .85fr 1.15fr; }
.quote {
  background: var(--green);
  border-radius: var(--radius);
  color: #fffdf8;
  padding: 34px;
}
.quote p { color: rgba(255,253,248,.82); font-family: var(--display); font-size: 30px; line-height: 1.32; }
.quote span { color: rgba(255,253,248,.58); display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; margin-top: 22px; text-transform: uppercase; }
.steps { counter-reset: step; display: grid; gap: 12px; }
.step {
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
  display: grid;
  gap: 18px;
  grid-template-columns: 54px 1fr;
  padding: 20px;
}
.step::before {
  color: var(--gold);
  content: "0" counter(step);
  font-family: var(--mono);
  letter-spacing: .12em;
}
.step h3 { font-family: var(--body); font-size: 18px; font-weight: 800; line-height: 1.25; }
.step p { font-size: 14px; margin-top: 6px; }

.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(23,32,29,.08);
  padding: 28px;
}
.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label, label.field { color: var(--ink-2); font-size: 13px; font-weight: 700; }
input, select, textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); outline: none; }
.hp { display: none; }
.form-status { color: var(--ink-2); font-size: 14px; min-height: 22px; }
.form-status.ok { color: #226a56; }
.form-status.error { color: #a64035; }

.faq { display: grid; gap: 10px; }
details {
  background: rgba(255,253,248,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 800; }
details p { margin-top: 10px; }

.cta-band {
  background: var(--green);
  color: #fffdf8;
  padding: 78px 0;
}
.cta-band p { color: rgba(255,253,248,.76); max-width: 620px; }
.cta-band h2 { font-size: clamp(2.4rem, 5vw, 5rem); margin-bottom: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.footer {
  background: #120b10;
  color: rgba(255,253,248,.82);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(150px, 1fr));
}
.footer-brand p, .footer a, .footer-col p, .footer-contact address {
  color: rgba(255,253,248,.68);
  font-size: 14px;
  text-decoration: none;
}
.footer-contact address { font-style: normal; line-height: 1.55; }
.footer a:hover { color: #fffdf8; }
.footer-logo {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-mark {
  align-items: center;
  background: #050404;
  border: 1px solid rgba(255,253,248,.12);
  border-radius: 8px;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}
.footer-logo-mark img { height: 48px; object-fit: contain; width: 52px; }
.footer-logo strong {
  color: #fffdf8;
  display: block;
  font-size: 17px;
  line-height: 1.1;
}
.footer-logo span:last-child {
  color: rgba(255,253,248,.56);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  margin-top: 4px;
  text-transform: uppercase;
}
.footer-contact {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-social a {
  align-items: center;
  background: rgba(255,253,248,.08);
  border: 1px solid rgba(255,253,248,.12);
  border-radius: 999px;
  color: #fffdf8;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  padding: 0 12px;
  text-transform: uppercase;
  width: auto;
}
.footer h2, .footer h3 {
  color: #fffdf8;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer-pills span {
  background: rgba(243,201,0,.10);
  border: 1px solid rgba(243,201,0,.24);
  border-radius: 999px;
  color: rgba(255,253,248,.78);
  font-size: 12px;
  padding: 6px 9px;
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255,253,248,.12);
  color: rgba(255,253,248,.48);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 14px;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.page-hero {
  background:
    linear-gradient(135deg, rgba(38,9,21,.93), rgba(120,36,76,.78)),
    radial-gradient(circle at 82% 16%, rgba(243,201,0,.20), transparent 30%);
  border-bottom: 1px solid var(--line);
  color: #fffdf8;
  padding: 82px 0 58px;
}
.page-hero h1 { font-size: clamp(3rem, 6vw, 6.2rem); max-width: 900px; }
.page-hero p { color: rgba(255,253,248,.75); font-size: 18px; margin-top: 18px; max-width: 720px; }
.professionals-hero {
  background:
    linear-gradient(120deg, rgba(19,11,16,.96), rgba(79,23,49,.88) 48%, rgba(120,36,76,.78)),
    radial-gradient(circle at 86% 18%, rgba(243,201,0,.24), transparent 28%);
  padding: 92px 0 78px;
}
.professionals-hero-grid {
  align-items: stretch;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
}
.professionals-hero h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
  max-width: 920px;
}
.professionals-hero .hero-actions .btn.text { color: #fffdf8; }
.candidate-assurance-panel {
  align-self: end;
  background: rgba(255,253,248,.12);
  border: 1px solid rgba(255,253,248,.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(12, 5, 10, .22);
  padding: 28px;
}
.candidate-assurance-panel strong {
  color: #fffdf8;
  display: block;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
  margin-top: 14px;
}
.candidate-assurance-panel p {
  color: rgba(255,253,248,.72);
  margin-top: 14px;
}
.assurance-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.assurance-list span {
  background: rgba(255,253,248,.10);
  border: 1px solid rgba(255,253,248,.15);
  border-radius: 999px;
  color: rgba(255,253,248,.84);
  font-size: 13px;
  font-weight: 800;
  padding: 9px 12px;
}
.discipline-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.discipline-card {
  background:
    linear-gradient(180deg, rgba(255,253,249,.94), rgba(120,36,76,.045)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  min-height: 230px;
  padding: 22px;
}
.discipline-card span {
  background: var(--primary-soft);
  border: 1px solid rgba(120,36,76,.16);
  border-radius: 999px;
  color: var(--primary-2);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  padding: 6px 9px;
  text-transform: uppercase;
}
.discipline-card h3 {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  margin-top: 34px;
}
.discipline-card p {
  font-size: 14px;
  margin-top: 10px;
}
.consent-panel {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255,253,249,.92), rgba(243,236,231,.74)),
    radial-gradient(circle at 92% 16%, rgba(243,201,0,.16), transparent 24%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  padding: 32px;
}
.consent-panel h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  margin-top: 8px;
}
.consent-panel p {
  margin-top: 14px;
  max-width: 640px;
}
.consent-grid {
  display: grid;
  gap: 12px;
}
.consent-grid article {
  background: rgba(255,253,249,.86);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px;
}
.consent-grid strong {
  display: block;
  font-size: 16px;
}
.consent-grid span {
  color: var(--ink-2);
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
}
.job-list { display: grid; gap: 12px; }
.job {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr .7fr .6fr auto;
  padding: 18px;
}
.job h3 { font-family: var(--body); font-size: 18px; font-weight: 800; }
.job p { font-size: 14px; }

.process-band {
  background: linear-gradient(180deg, rgba(255,253,249,.58), rgba(120,36,76,.05));
  border-top: 1px solid var(--line);
}
.process-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.process-card {
  background: rgba(255,253,249,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  padding: 22px;
}
.process-card span {
  color: var(--primary);
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  margin-bottom: 28px;
}
.process-card h3 {
  font-family: var(--body);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}
.process-card p {
  font-size: 14px;
  margin-top: 10px;
}

.job-preview-strip,
.job-board-note,
.insight-feature,
.featured-jobs-panel,
.jobs-console {
  background: rgba(255,253,249,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.featured-jobs-panel {
  margin-bottom: 22px;
  padding: 26px;
}
.section-head.compact { margin-bottom: 22px; }
.section-head.compact h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
.featured-job-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.featured-job-card {
  background: linear-gradient(180deg, #fffdf9, rgba(120,36,76,.045));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  min-height: 300px;
  padding: 22px;
}
.featured-job-card h3 {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}
.featured-job-card p { font-size: 14px; }
.featured-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.featured-job-meta span {
  background: rgba(120,36,76,.08);
  border: 1px solid rgba(120,36,76,.14);
  border-radius: 999px;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 9px;
}
.featured-job-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.job-preview-strip {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 26px;
}
.job-preview-strip h3,
.job-board-note h2,
.insight-feature h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}
.jobs-console { margin-bottom: 18px; padding: 26px; }
.jobs-console-head {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 22px;
}
.jobs-console-head h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
.jobs-console-head strong {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.jobs-filters {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
}
.jobs-filters .field:first-child {
  grid-column: span 2;
}
.jobs-filter-tools {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
}
.jobs-filter-tools p {
  color: var(--ink-2);
  font-size: 14px;
}
.jobs-filter-tools strong {
  color: var(--primary);
  font-weight: 800;
}
.field span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.jobs-status {
  border-top: 1px solid var(--line);
  font-size: 14px;
  margin-top: 20px;
  padding-top: 16px;
}
.public-job-list {
  display: grid;
  gap: 14px;
}
.public-job-card {
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) 290px;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.public-job-card:hover,
.public-job-card:focus-within {
  border-color: rgba(120,36,76,.32);
  box-shadow: 0 22px 58px rgba(48, 18, 33, .15);
  outline: none;
  transform: translateY(-1px);
}
.job-title-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline;
  font: inherit;
  padding: 0;
  text-align: left;
}
.job-title-button:hover,
.job-title-button:focus {
  color: var(--primary);
  outline: none;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.public-job-main {
  display: grid;
  gap: 16px;
  padding: 26px;
}
.public-job-main h3 {
  font-family: var(--body);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-top: 8px;
}
.public-job-main p { max-width: 780px; }
.job-fit-line {
  background: rgba(47,121,100,.08);
  border: 1px solid rgba(47,121,100,.16);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
}
.job-fact-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
}
.job-fact-row span {
  background: rgba(255,253,249,.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 3px;
  min-height: 62px;
  padding: 10px;
}
.job-fact-row em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-fact-row.compact {
  grid-template-columns: 1fr;
}
.job-fact-row.compact span {
  min-height: auto;
}
.public-job-side {
  background: linear-gradient(180deg, rgba(120,36,76,.08), rgba(47,121,100,.08));
  border-left: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: 26px;
}
.public-job-side strong { font-size: 20px; line-height: 1.2; }
.public-job-side span { color: var(--ink-2); font-size: 14px; }
.public-job-side .btn { align-self: end; margin-top: auto; }
.public-job-side .btn + .btn { margin-top: 0; }
.job-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.job-chip {
  background: rgba(120,36,76,.08);
  border: 1px solid rgba(120,36,76,.14);
  border-radius: 999px;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 9px;
}
.job-board-note {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: .9fr 1.1fr auto;
  margin-top: 24px;
  padding: 28px;
}
.jobs-pagination {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}
.jobs-pagination[hidden] { display: none; }
.jobs-pagination span {
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.job-detail-overlay[hidden] { display: none; }
.job-detail-overlay {
  align-items: center;
  background: rgba(19,11,16,.58);
  display: grid;
  inset: 0;
  padding: 28px;
  position: fixed;
  z-index: 100;
}
.job-detail-panel {
  background: var(--surface);
  border: 1px solid rgba(255,253,249,.42);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(19,11,16,.32);
  margin: 0 auto;
  max-height: calc(100vh - 56px);
  max-width: 980px;
  overflow: auto;
  padding: 30px;
  position: relative;
  width: min(980px, 100%);
}
.job-detail-close {
  background: rgba(255,253,249,.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 9px 14px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.job-detail-header {
  border-bottom: 1px solid var(--line);
  padding: 10px 120px 24px 0;
}
.job-detail-header h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  margin-top: 8px;
}
.job-detail-header p {
  font-size: 17px;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 780px;
}
.job-detail-meta {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  margin: 22px 0;
}
.job-detail-meta div {
  background: rgba(120,36,76,.06);
  border: 1px solid rgba(120,36,76,.10);
  padding: 16px;
}
.job-detail-meta span {
  color: var(--muted);
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-detail-meta strong {
  display: block;
  line-height: 1.3;
  margin-top: 8px;
}
.job-selected-callout {
  background: linear-gradient(135deg, rgba(120,36,76,.10), rgba(47,121,100,.08));
  border: 1px solid rgba(120,36,76,.18);
  border-left: 5px solid var(--primary);
  border-radius: 10px;
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
  padding: 18px;
}
.job-selected-callout span {
  color: var(--primary);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-selected-callout strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}
.job-selected-callout p {
  color: var(--ink-2);
  font-size: 14px;
}
.job-detail-body {
  display: grid;
  gap: 14px;
}
.job-detail-section {
  background: rgba(255,253,249,.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.job-detail-section h3 {
  font-family: var(--body);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}
.job-detail-section p + p { margin-top: 10px; }
.job-detail-section ul {
  color: var(--ink-2);
  margin: 12px 0 0;
  padding-left: 20px;
}
.job-detail-section li + li { margin-top: 6px; }
.job-detail-journey {
  background: rgba(47,121,100,.08);
  border: 1px solid rgba(47,121,100,.18);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding: 16px;
}
.job-detail-journey span {
  color: var(--green-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-detail-journey strong {
  color: var(--ink);
  font-size: 17px;
}
.job-detail-journey p {
  color: var(--ink-2);
  font-size: 14px;
}
.job-detail-actions {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
}
.job-apply-form {
  background: rgba(120,36,76,.055);
  border: 1px solid rgba(120,36,76,.14);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
}
.job-apply-head {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.job-apply-head h3 {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 8px;
}
.job-apply-head p { font-size: 14px; }
.job-apply-context {
  background: linear-gradient(135deg, rgba(120,36,76,.10), rgba(47,121,100,.08));
  border: 1px solid rgba(120,36,76,.18);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 16px;
}
.job-apply-context[hidden] { display: none; }
.job-apply-context strong {
  color: var(--ink);
  display: block;
  font-size: 20px;
  line-height: 1.25;
}
.job-apply-context p {
  color: var(--ink-2);
  font-size: 14px;
}
.register-role-context {
  margin-bottom: 16px;
}
.job-apply-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.checkbox-field {
  align-items: start;
  background: rgba(255,253,249,.72);
  border: 1px solid rgba(120,36,76,.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  padding: 14px;
}
.checkbox-field input {
  height: 18px;
  margin-top: 2px;
  width: 18px;
}
.checkbox-field span {
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}
.job-apply-source {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
}
.job-apply-form input[type="file"] {
  background: #fffdf9;
  border: 1px dashed rgba(120,36,76,.24);
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
  padding: 12px;
}
.insight-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.insight-card {
  background: rgba(255,253,249,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 24px;
}
.insight-card h3 {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}
.insight-card p { align-self: end; font-size: 14px; }
.insight-card a {
  color: inherit;
  text-decoration: none;
}
.insight-card h3 a:hover,
.insight-card-foot a:hover,
.article-related a:hover { color: var(--primary); }
.insight-card-foot {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
}
.insight-card-foot span,
.insight-card-foot a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.insight-card-foot a { color: var(--primary-2); font-weight: 700; }
.insight-feature {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  margin-bottom: 22px;
  padding: 32px;
}
.insight-feature-expanded { margin-bottom: 34px; }
.insight-feature-points {
  display: grid;
  gap: 10px;
}
.insight-feature-points span {
  background: rgba(120,36,76,.08);
  border: 1px solid rgba(120,36,76,.16);
  border-radius: 8px;
  color: var(--primary-2);
  font-weight: 800;
  padding: 14px;
}
.insight-controls {
  align-items: end;
  background: rgba(255,253,249,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  margin-bottom: 18px;
  padding: 24px;
}
.insight-controls h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-top: 8px;
}
.insight-controls p {
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
  grid-column: 1 / -1;
  padding-top: 14px;
}
.insight-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.insight-filter {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
}
.insight-filter.active,
.insight-filter:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fffdf8;
}
.answer-stack {
  display: grid;
  gap: 14px;
}
.answer-card,
.article-quick-answer,
.article-section,
.article-aside-panel {
  background: rgba(255,253,249,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.answer-card { padding: 22px; }
.answer-card h3 {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}
.answer-card p { font-size: 14px; margin-top: 10px; }
.breadcrumb {
  align-items: center;
  color: rgba(255,253,248,.70);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  gap: 10px;
  letter-spacing: .08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: #fffdf8; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.article-meta span {
  background: rgba(255,253,248,.12);
  border: 1px solid rgba(255,253,248,.22);
  border-radius: 999px;
  color: rgba(255,253,248,.78);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}
.article-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 350px;
}
.article-main,
.article-aside {
  display: grid;
  gap: 18px;
}
.article-aside {
  position: sticky;
  top: 92px;
}
.article-quick-answer,
.article-section,
.article-aside-panel {
  padding: 26px;
}
.article-quick-answer {
  background: linear-gradient(135deg, rgba(120,36,76,.10), rgba(47,121,100,.10)), #fffdf9;
}
.article-quick-answer p {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 12px;
}
.article-quick-answer ul,
.article-list,
.article-related {
  margin: 18px 0 0;
  padding-left: 20px;
}
.article-quick-answer li,
.article-list li {
  color: var(--ink-2);
  margin-top: 8px;
}
.article-section h2,
.article-aside-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.article-section p { margin-top: 14px; }
.article-faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.article-faq details:first-of-type { margin-top: 18px; }
.article-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}
.article-faq p { font-size: 14px; }
.article-aside-panel p {
  font-size: 14px;
  margin-top: 12px;
}
.article-aside-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.article-tags span {
  background: rgba(120,36,76,.08);
  border: 1px solid rgba(120,36,76,.14);
  border-radius: 999px;
  color: var(--primary-2);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}
.article-related {
  list-style: none;
  padding-left: 0;
}
.article-related li + li { margin-top: 12px; }
.article-related a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
[data-insight-card][hidden] { display: none; }

@media (max-width: 1120px) and (min-width: 981px) {
  .nav { gap: 12px; padding-left: 18px; padding-right: 18px; }
  .nav-links a { font-size: 12px; padding: 9px 8px; }
  .nav-actions { gap: 7px; }
  .nav-actions .btn { padding-left: 12px; padding-right: 12px; }
  .region-link { letter-spacing: .06em; padding-left: 10px; padding-right: 10px; }
}

@media (max-width: 980px) {
  .nav { align-items: flex-start; flex-wrap: wrap; }
  .menu-toggle {
    background: rgba(120,36,76,.06);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--primary-2);
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    padding: 9px 13px;
  }
  .nav-links, .nav-actions { display: none; width: 100%; }
  .nav.open .nav-links,
  .nav.open .nav-actions {
    display: grid;
    gap: 10px;
  }
  .nav.open .nav-links {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 8px 0 0;
  }
  .nav.open .nav-links a {
    background: rgba(255,253,248,.72);
    border: 1px solid var(--line);
    justify-content: center;
    padding: 13px 14px;
  }
  .nav.open .nav-actions {
    align-items: stretch;
  }
  .nav.open .nav-actions .btn,
  .nav.open .nav-actions .region-link {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .split { grid-template-columns: 1fr; }
  .home-hero-grid {
    gap: 36px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 110px;
    padding-top: 72px;
  }
  .home-hero-panel {
    margin-left: 0;
    max-width: none;
  }
  .home-pathways { max-width: none; }
  .home-role-cloud { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gateway-hero-grid,
  .gateway-region-grid,
  .gateway-support {
    grid-template-columns: 1fr;
  }
  .gateway-hero-grid {
    min-height: auto;
    padding-bottom: 104px;
    padding-top: 132px;
  }
  .gateway-dashboard-links { justify-content: flex-start; }
  .hero, .hero-grid { min-height: 820px; }
  .hero::before { background: linear-gradient(90deg, rgba(19,11,16,.92), rgba(19,11,16,.68)); }
  .hero-copy { max-width: 760px; padding: 64px 0 280px; }
  .hero-visual { min-height: auto; }
  #network-canvas { opacity: .26; -webkit-mask-image: none; mask-image: none; }
  .visual-panel { bottom: 54px; left: 28px; max-width: none; right: 28px; width: auto; }
  .metric-row, .cards, .service-grid, .process-grid, .insight-grid, .featured-job-grid, .discipline-grid { grid-template-columns: repeat(2, 1fr); }
  .employer-cta-panel { grid-template-columns: 1fr; }
  .employer-cta-actions { min-width: 0; }
  .professionals-hero-grid, .consent-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: start; display: grid; }
  .job, .public-job-card, .job-board-note, .insight-feature, .insight-controls, .article-layout, .jobs-filters, .job-detail-meta, .job-apply-head, .job-apply-grid { grid-template-columns: 1fr; }
  .jobs-filters .field:first-child { grid-column: auto; }
  .jobs-filter-tools, .jobs-pagination { align-items: start; display: grid; justify-content: stretch; }
  .job-fact-row { grid-template-columns: 1fr; }
  .public-job-side { border-left: 0; border-top: 1px solid var(--line); }
  .insight-filter-bar { justify-content: flex-start; }
  .article-aside { position: static; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .section { padding: 62px 0; }
  .home-hero-grid {
    gap: 28px;
    padding-bottom: 86px;
    padding-top: 56px;
  }
  .home-hero h1 { font-size: 3.15rem; }
  .home-signal-card,
  .home-proof-card { padding: 20px; }
  .home-pathways { grid-template-columns: 1fr; }
  .home-pathways a { min-height: auto; }
  .home-role-cloud { grid-template-columns: 1fr; }
  .gateway-nav {
    align-items: flex-start;
    display: grid;
    gap: 14px;
    padding: 16px 18px;
  }
  .gateway-nav nav { justify-content: flex-start; }
  .gateway-hero-grid {
    padding-bottom: 82px;
    padding-top: 156px;
  }
  .gateway-copy h1 { font-size: 3.15rem; }
  .gateway-card { min-height: auto; padding: 22px; }
  .gateway-support { padding-bottom: 42px; padding-top: 42px; }
  .gateway-dashboard-links { display: grid; }
  .hero, .hero-grid { min-height: 860px; }
  .hero h1, .page-hero h1 { font-size: 3.3rem; }
  .hero-copy { padding: 54px 0 300px; }
  .metric-row, .cards, .service-grid, .process-grid, .footer-grid, .form-grid, .insight-grid, .featured-job-grid, .discipline-grid { grid-template-columns: 1fr; }
  .metric { padding: 22px 18px; }
  .visual-panel { left: 16px; right: 16px; }
  .job-preview-strip, .jobs-console-head { align-items: start; display: grid; }
  .job-detail-overlay { padding: 12px; }
  .job-detail-panel { max-height: calc(100vh - 24px); padding: 20px; }
  .job-detail-header { padding-right: 0; padding-top: 48px; }
  .featured-job-actions { grid-template-columns: 1fr; }
  .insight-controls, .article-quick-answer, .article-section, .article-aside-panel { padding: 20px; }
  .article-meta span { font-size: 12px; }
}

.home-hero .eyebrow,
.gateway-page .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.hero-visual .eyebrow,
.cta-band .eyebrow,
.footer .eyebrow { color: var(--gold); }

.hero .btn.text { color: #fffdf8; }
