: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,.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(45, 22, 33, .06);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 14px 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: 46px;
  justify-content: center;
  overflow: hidden;
  width: 50px;
}
.brand-mark {
  background: transparent;
  border-radius: 0;
  display: block;
  height: 40px;
  object-fit: contain;
  width: 43px;
}
.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; display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-2); font-size: 14px; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { align-items: center; display: flex; gap: 10px; }
.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: 760px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.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: 1;
}
.hero-grid { display: block; min-height: 760px; position: relative; }
.hero-copy { max-width: 820px; padding: 118px 0 170px; position: relative; z-index: 3; }
.hero h1 { font-size: clamp(3.4rem, 7.8vw, 7.4rem); max-width: 860px; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 1.55vw, 1.18rem); line-height: 1.85; margin-top: 24px; max-width: 640px; }
.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: .70; position: absolute; width: 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: 90px;
  left: auto;
  max-width: 430px;
  padding: 22px;
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  z-index: 4;
}
.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; }

.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 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); }
.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 {
  color: rgba(255,253,248,.68);
  font-size: 14px;
  text-decoration: none;
}
.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;
  text-transform: uppercase;
  width: 34px;
}
.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; }
.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-feature {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  margin-bottom: 22px;
  padding: 32px;
}
.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;
}

@media (max-width: 980px) {
  .nav { align-items: flex-start; flex-wrap: wrap; }
  .menu-toggle { background: transparent; border: 1px solid var(--line); border-radius: 6px; display: inline-flex; padding: 9px 12px; }
  .nav-links, .nav-actions { display: none; width: 100%; }
  .nav.open .nav-links, .nav.open .nav-actions { display: grid; gap: 10px; }
  .split { grid-template-columns: 1fr; }
  .hero, .hero-grid { min-height: 700px; }
  .hero-copy { padding: 44px 0; }
  .hero-visual { min-height: auto; }
  .visual-panel { bottom: 44px; left: 28px; right: 28px; }
  .metric-row, .cards, .service-grid, .process-grid, .insight-grid, .featured-job-grid { grid-template-columns: repeat(2, 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, .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); }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .section { padding: 62px 0; }
  .hero h1, .page-hero h1 { font-size: 3.3rem; }
  .metric-row, .cards, .service-grid, .process-grid, .footer-grid, .form-grid, .insight-grid, .featured-job-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; }
}

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

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