@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-800-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: oklch(1 0 0);
  --bg-soft: oklch(0.975 0.012 223);
  --surface: oklch(0.99 0.006 223);
  --surface-strong: oklch(0.94 0.035 220);
  --ink: oklch(0.22 0.105 263);
  --ink-soft: oklch(0.36 0.075 258);
  --muted: oklch(0.48 0.045 255);
  --line: oklch(0.88 0.026 231);
  --primary: oklch(0.3 0.18 264);
  --primary-deep: oklch(0.2 0.14 264);
  --primary-soft: oklch(0.38 0.18 263);
  --accent: oklch(0.78 0.17 195);
  --accent-strong: oklch(0.68 0.17 198);
  --accent-soft: oklch(0.92 0.07 195);
  --safety: oklch(0.86 0.16 88);
  --success: oklch(0.63 0.16 150);
  --white: oklch(1 0 0);
  --shadow-sm: 0 10px 24px oklch(0.28 0.11 264 / 0.08);
  --shadow-md: 0 22px 60px oklch(0.26 0.12 264 / 0.14);
  --radius-card: 8px;
  --radius-control: 8px;
  --container: 1160px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --space-2xs: 0.375rem;
  --space-xs: 0.625rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: clamp(1.75rem, 4vw, 3rem);
  --space-xl: clamp(3rem, 7vw, 5.5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, oklch(0.985 0.015 220), var(--bg) 18rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--safety);
  color: var(--primary-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  inset: 0 auto auto 0;
  transform: translateY(-120%);
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--white);
  transition: transform 180ms var(--ease-out);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: oklch(1 0 0 / 0.88);
  border-bottom: 1px solid oklch(0.9 0.02 230 / 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--safety) 0 18%, var(--accent) 18% 58%, var(--primary) 58%);
}

.site-header.is-scrolled {
  background: oklch(1 0 0 / 0.96);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.brand-logo {
  width: 4.25rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: clamp(0.65rem, 1.8vw, 1.6rem);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--accent-strong);
  border-color: currentColor;
}

.header-cta {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 34px oklch(0.72 0.17 195 / 0.24);
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

.menu-button {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius-control);
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.site-header.is-open .primary-nav {
  position: absolute;
  inset: 5rem var(--gutter) auto;
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.site-header.is-open .primary-nav a {
  padding-inline: 0.75rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 24%, oklch(0.87 0.1 195 / 0.45), transparent 24rem),
    linear-gradient(120deg, oklch(0.98 0.02 220), oklch(1 0 0) 48%);
}

.hero-grid {
  display: grid;
  gap: clamp(2.25rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
  animation: hero-enter 760ms var(--ease-out) both;
}

.hero-kicker,
.section-heading p,
.process-copy p,
.proof-copy p,
.contact-copy p {
  margin: 0 0 0.75rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--accent-strong);
}

.hero-lede {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  font-weight: 600;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    color 160ms var(--ease-out),
    background 160ms var(--ease-out),
    border-color 160ms var(--ease-out);
}

.button:active,
.header-cta:active,
.job-filters button:active,
.article-filters button:active {
  transform: translateY(1px) scale(0.99);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 40px oklch(0.28 0.15 264 / 0.22);
}

.button-secondary {
  border-color: var(--primary);
  background: var(--white);
  color: var(--primary);
}

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

.button-on-dark {
  background: var(--accent);
  color: var(--primary-deep);
  box-shadow: 0 18px 44px oklch(0.7 0.18 195 / 0.25);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3rem;
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.trust-list svg,
.contact-methods svg {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-media {
  position: relative;
  width: min(100%, 35rem);
  margin-inline: auto;
  animation: media-enter 900ms var(--ease-out) 80ms both;
}

.media-ring {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 50% 0 50% 50%;
  background: var(--accent-soft);
  box-shadow: var(--shadow-md);
}

.media-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: clamp(0.8rem, 2vw, 1.25rem) solid oklch(0.86 0.11 195 / 0.82);
  border-radius: inherit;
  pointer-events: none;
}

.media-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.1rem;
  min-width: 10rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid oklch(1 0 0 / 0.5);
  border-radius: var(--radius-card);
  background: oklch(1 0 0 / 0.9);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.hero-note strong {
  font-size: 1.35rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
}

.note-top {
  top: 8%;
  left: -0.5rem;
}

.note-bottom {
  right: 0.75rem;
  bottom: 8%;
}

.section {
  padding: var(--space-xl) 0;
}

.section-heading {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact span,
.proof-copy span,
.contact-copy span {
  display: block;
  max-width: 63ch;
  color: var(--ink-soft);
  font-weight: 600;
  text-wrap: pretty;
}

.section-heading.compact span {
  margin-inline: auto;
}

.section-heading h2,
.process-copy h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 23rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: 0 18px 46px oklch(0.3 0.09 264 / 0.04);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.service-card.featured {
  background:
    linear-gradient(145deg, oklch(1 0 0), oklch(0.955 0.042 218)),
    var(--surface);
}

.card-icon,
.cta-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.card-icon svg,
.benefit-grid svg,
.industry-rail svg,
.cta-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  margin: 1.1rem 0 0.45rem;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.18;
  font-weight: 800;
  text-wrap: balance;
}

.service-card p:not(.service-number) {
  margin: 0.85rem 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  align-self: end;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.process {
  padding-top: 0;
}

.process-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.process-copy {
  max-width: 32rem;
}

.process-steps {
  counter-reset: steps;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.process-steps span {
  grid-row: span 2;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-steps strong {
  color: var(--primary-deep);
  font-size: 1.02rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

.firms {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.firms-panel {
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, var(--primary-deep), var(--primary) 58%, oklch(0.27 0.18 247)),
    var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.section-heading.inverse h2,
.section-heading.inverse p {
  color: var(--white);
}

.section-heading.inverse p {
  color: var(--accent);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  gap: 0;
  margin-top: 2rem;
}

.benefit-grid article {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid oklch(1 0 0 / 0.18);
}

.benefit-grid svg {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--accent);
}

.benefit-grid h3 {
  margin: 0.25rem 0 0;
  font-size: 1rem;
}

.benefit-grid p {
  max-width: 16rem;
  margin: 0;
  color: oklch(0.88 0.04 235);
  font-size: 0.9rem;
}

.industries {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.industry-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  overflow: hidden;
}

.industry-rail article {
  min-height: 8.2rem;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--primary);
}

.industry-rail article:nth-child(2n) {
  border-right: 0;
}

.industry-rail svg {
  width: 2.5rem;
  height: 2.5rem;
}

.industry-rail h3 {
  margin: 0;
  color: var(--primary-deep);
  font-size: 0.9rem;
  text-align: center;
}

.proof {
  background: linear-gradient(90deg, oklch(0.965 0.025 215), oklch(0.93 0.055 209), oklch(0.965 0.025 215));
}

.proof-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.proof-copy {
  max-width: 25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.stats-grid div {
  padding: 1rem;
  border-left: 1px solid oklch(0.78 0.045 223);
}

.stats-grid dt {
  color: var(--primary);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.stats-grid dd {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.stats-grid-words dt {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  white-space: normal;
}

.references {
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.logo-strip span {
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  color: oklch(0.46 0.02 260);
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 900;
  filter: grayscale(1);
}

.dual-cta {
  padding-top: 0;
}

.cta-grid {
  display: grid;
  gap: 1rem;
}

.cta-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  min-height: 16rem;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.cta-card h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.13;
  text-wrap: balance;
}

.cta-card p {
  max-width: 34rem;
  margin: 0.75rem 0 1.25rem;
  font-weight: 600;
}

.cta-firm {
  background:
    linear-gradient(90deg, oklch(0.19 0.12 264 / 0.94), oklch(0.28 0.16 264 / 0.92)),
    linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: var(--white);
}

.cta-firm p {
  color: oklch(0.88 0.04 235);
}

.cta-worker {
  background:
    linear-gradient(135deg, var(--accent), oklch(0.72 0.17 210)),
    var(--accent);
  color: var(--primary-deep);
}

.cta-worker .cta-icon {
  background: var(--white);
}

.contact {
  padding-top: clamp(2rem, 5vw, 4rem);
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-copy {
  max-width: 34rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.75rem;
  color: var(--primary-deep);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: oklch(0.44 0.045 255);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px oklch(0.78 0.17 195 / 0.18);
  outline: 0;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form .form-honey {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  min-height: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.contact-form .consent-label {
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 0.2rem 0.7rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.5;
}

.contact-form .consent-label input {
  width: 1.2rem;
  min-height: 1.2rem;
  margin-top: 0.15rem;
  padding: 0;
  accent-color: var(--primary);
}

.consent-label a,
.form-status a {
  color: var(--primary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.consent-label .field-error {
  grid-column: 2;
}

.form-privacy {
  margin: -0.45rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.form-status.is-success,
.form-status.is-error,
.form-status.is-sending {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-control);
}

.form-status.is-success {
  background: oklch(0.94 0.055 152);
  color: oklch(0.38 0.13 152);
}

.form-status.is-error {
  background: oklch(0.95 0.04 28);
  color: oklch(0.45 0.17 28);
}

.form-status.is-sending {
  background: var(--accent-soft);
  color: var(--primary);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  background:
    linear-gradient(135deg, var(--primary-deep), oklch(0.18 0.13 248)),
    var(--primary-deep);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.25rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-logo {
  width: 5.75rem;
}

.footer-brand p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: oklch(0.86 0.045 235);
  font-weight: 600;
}

.site-footer h2 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) > p {
  margin: 0.15rem 0;
  color: oklch(0.86 0.04 235);
  font-weight: 600;
}

.footer-grid > div:not(.footer-brand) a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(1 0 0 / 0.18);
  color: oklch(0.82 0.035 235);
  font-size: 0.85rem;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
}

.footer-bottom p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
}

@media (hover: hover) and (pointer: fine) {
  .header-cta:hover,
  .button:hover,
  .service-card:hover {
    transform: translateY(-2px);
  }

  .header-cta:hover,
  .button-primary:hover,
  .button-on-dark:hover {
    box-shadow: 0 24px 54px oklch(0.28 0.15 264 / 0.26);
  }

  .button-secondary:hover,
  .button-light:hover {
    border-color: var(--accent-strong);
    color: var(--accent-strong);
  }

  .service-card:hover {
    border-color: oklch(0.78 0.09 210);
    box-shadow: var(--shadow-sm);
  }
}

@media (min-width: 42rem) {
  .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .industry-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industry-rail article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .industry-rail article:nth-child(3n) {
    border-right: 0;
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 58rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.9fr);
  }

  .process-grid {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .contact-grid {
    grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.6fr 0.8fr 0.7fr 1fr;
  }
}

@media (min-width: 72rem) {
  .primary-nav,
  .header-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }

  .service-grid {
    grid-template-columns: 1.12fr 1fr 1fr;
  }

  .benefit-grid article {
    border-top: 0;
    border-left: 1px solid oklch(1 0 0 / 0.18);
  }

  .benefit-grid article:first-child {
    border-left: 0;
  }

  .industry-rail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .industry-rail article {
    border-bottom: 0;
  }

  .industry-rail article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .industry-rail article:last-child {
    border-right: 0;
  }

  .logo-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 29rem) {
  .brand-logo {
    width: 3.75rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 14vw, 3.3rem);
  }

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

  .hero-note {
    position: static;
    margin-top: 0.75rem;
  }

  .media-ring {
    border-radius: 42% 0 42% 42%;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }
}

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

@keyframes hero-enter {
  from {
    opacity: 0.001;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes media-enter {
  from {
    opacity: 0.001;
    transform: translateY(20px) scale(0.98);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Multi-page content system */
.header-sentinel { position: absolute; top: 0; width: 1px; height: 1px; }
.breadcrumbs { display: flex; align-items: center; gap: .55rem; min-height: 3.25rem; color: var(--muted); font-size: .82rem; font-weight: 700; }
.breadcrumbs > * + *::before { content: "/"; margin-right: .55rem; color: var(--line); }
.breadcrumbs a:hover { color: var(--accent-strong); }
.breadcrumbs a,
.breadcrumbs > span {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}
.section-heading.left { max-width: 48rem; margin-inline: 0; text-align: left; }
.section-heading.left span { margin-top: .8rem; margin-inline: 0; }

.proof-ribbon { background: var(--primary-deep); color: var(--white); }
.proof-ribbon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.proof-ribbon p { display: grid; align-content: center; min-height: 7.5rem; margin: 0; padding: 1rem; border-right: 1px solid oklch(1 0 0 / .15); }
.proof-ribbon p:nth-child(2n) { border-right: 0; }
.proof-ribbon strong, .proof-ribbon span { display: block; }
.proof-ribbon strong { color: var(--accent); font-size: clamp(1.65rem, 4vw, 2.4rem); line-height: 1; font-variant-numeric: tabular-nums; }
.proof-ribbon span { margin-top: .4rem; color: oklch(.88 .04 235); font-size: .8rem; font-weight: 700; }

.service-editorial { display: grid; margin-top: 2.25rem; border-top: 1px solid var(--line); }
.service-editorial article { display: grid; align-content: start; min-height: 19rem; padding: clamp(1.35rem, 3vw, 2rem) 0; border-bottom: 1px solid var(--line); }
.service-editorial article.featured { margin-inline: calc(var(--gutter) * -.5); padding-inline: calc(var(--gutter) * .5); background: var(--accent-soft); }
.service-editorial h3 { max-width: 21ch; margin: 0; color: var(--primary); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.15; text-wrap: balance; }
.service-editorial p:not(.service-number) { max-width: 38ch; margin: 1rem 0; color: var(--ink-soft); font-weight: 600; }
.service-editorial a, .text-link { display: inline-flex; align-items: center; gap: .45rem; min-height: 2.75rem; align-self: end; color: var(--accent-strong); font-weight: 900; }

.path-section { padding-top: 0; }
.path-grid { display: grid; gap: 1rem; }
.path-panel { min-height: 25rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: clamp(1.5rem, 5vw, 3.2rem); border-radius: var(--radius-card); overflow: hidden; }
.path-panel > p { margin: 0 0 .75rem; font-weight: 900; }
.path-panel h2 { max-width: 18ch; margin: 0; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.08; text-wrap: balance; }
.path-panel > span { max-width: 43rem; margin: 1rem 0 1.5rem; font-weight: 600; }
.path-firm { background: var(--primary); color: var(--white); }
.path-firm > p { color: var(--accent); }
.path-firm > span { color: oklch(.88 .04 235); }
.path-worker { background: var(--accent); color: var(--primary-deep); }

.industry-chips { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.8rem; }
.industry-chips span { min-height: 3.25rem; display: inline-flex; align-items: center; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-control); background: var(--white); color: var(--primary); font-weight: 900; }
.home-blog, .blog-index { background: var(--bg-soft); }

.article-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.article-card { position: relative; display: grid; grid-template-rows: auto 1fr; min-height: 24rem; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; background: var(--white); transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out); }
.article-card > div:last-child { display: grid; align-content: start; padding: 1.25rem; }
.article-visual { min-height: 8rem; display: grid; place-items: end start; padding: 1rem; background: linear-gradient(135deg, transparent 58%, oklch(1 0 0 / .16) 58%), var(--primary); color: var(--accent); }
.article-card:nth-child(2) .article-visual { background: linear-gradient(35deg, transparent 52%, oklch(.2 .14 264 / .16) 52%), var(--accent); color: var(--primary-deep); }
.article-card:nth-child(3) .article-visual { background: linear-gradient(145deg, transparent 45%, oklch(.3 .18 264 / .08) 45%), var(--safety); color: var(--primary-deep); }
.article-tag { margin: 0 0 .45rem; color: var(--accent-strong); font-size: .78rem; font-weight: 900; }
.article-card h3 { margin: 0; color: var(--primary); font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.2; text-wrap: balance; }
.article-card h3 a::after { content: ""; position: absolute; inset: 0; }
.article-card > div:last-child > p:not(.article-tag) { margin: .8rem 0 1rem; color: var(--ink-soft); font-weight: 600; }
.article-card .text-link { position: relative; z-index: 1; }

.cta-band { padding-top: clamp(2rem, 5vw, 4rem); }
.cta-band-inner { display: grid; gap: 1.5rem; align-items: center; padding: clamp(1.5rem, 5vw, 3rem); border-radius: var(--radius-card); background: var(--primary-deep); color: var(--white); }
.cta-band h2 { margin: 0; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.12; text-wrap: balance; }
.cta-band p { max-width: 55ch; margin: .7rem 0 0; color: oklch(.88 .04 235); font-weight: 600; }

.subpage-hero { padding: clamp(3rem, 8vw, 7rem) 0 clamp(3.5rem, 8vw, 7rem); background: linear-gradient(120deg, var(--bg-soft), oklch(1 0 0) 62%), var(--bg-soft); }
.subpage-hero-inner { display: grid; justify-items: start; }
.subpage-hero p, .article-header > p { margin: 0 0 .8rem; color: var(--accent-strong); font-weight: 900; }
.subpage-hero h1 { max-width: 18ch; margin: 0; color: var(--primary); font-size: clamp(2.45rem, 7vw, 5.2rem); line-height: 1.02; letter-spacing: -.035em; text-wrap: balance; }
.subpage-hero-inner > span { max-width: 62ch; margin-top: 1.25rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 600; text-wrap: pretty; }

.detail-sections { padding-bottom: 0; }
.service-detail { display: grid; gap: 1.5rem; padding: clamp(2rem, 7vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.service-detail h2 { max-width: 16ch; margin: 0; color: var(--primary); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.08; text-wrap: balance; }
.service-detail > div:last-child > p { max-width: 58ch; margin-top: 0; color: var(--ink-soft); font-size: 1.05rem; font-weight: 600; }
.service-detail-dark { position: relative; color: var(--white); }
.service-detail-dark::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: var(--primary); }
.service-detail-dark h2, .service-detail-dark .service-number, .service-detail-dark .text-link { color: var(--white); }
.service-detail-dark > div:last-child > p, .service-detail-dark .check-list { color: oklch(.9 .035 235); }
.check-list { display: grid; gap: .65rem; margin: 1.5rem 0; padding: 0; color: var(--primary-deep); font-weight: 800; list-style: none; }
.check-list li { position: relative; padding-left: 1.65rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-strong); }
.narrow { max-width: 760px; }

.faq { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--primary); font-size: 1.05rem; font-weight: 900; cursor: pointer; }
.faq summary::after { content: "+"; color: var(--accent-strong); font-size: 1.6rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0; padding: 0 0 1.5rem; color: var(--ink-soft); font-weight: 600; }

.operating-steps { display: grid; gap: 0; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.operating-steps li { display: grid; grid-template-columns: 2.5rem 1fr; gap: .2rem 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.operating-steps span { grid-row: span 2; color: var(--accent-strong); font-size: 1.4rem; font-weight: 900; }
.operating-steps h3, .operating-steps p { margin: 0; }
.operating-steps h3 { color: var(--primary); font-size: 1.15rem; }
.operating-steps p { color: var(--ink-soft); font-weight: 600; }

.firm-value { background: var(--primary); color: var(--white); }
.firm-value-grid { display: grid; gap: 1px; background: oklch(1 0 0 / .16); }
.firm-value-grid > div { padding: clamp(1.5rem, 5vw, 3rem); background: var(--primary); }
.firm-value h2 { margin: 0; color: var(--accent); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.firm-value p { max-width: 45ch; margin-bottom: 0; color: oklch(.9 .035 235); font-weight: 600; }

.sector-list, .values-list { display: grid; gap: 0; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.sector-list article, .values-list article { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.sector-list h3, .values-list h3 { margin: 0; color: var(--primary); font-size: 1.2rem; }
.sector-list p, .values-list p { max-width: 50ch; margin: .4rem 0 0; color: var(--ink-soft); font-weight: 600; }

.jobs-heading { display: grid; gap: 1.2rem; }
.jobs-heading h2 { margin: 0; color: var(--primary); font-size: clamp(2rem, 4vw, 3rem); }
.jobs-heading p { margin: .5rem 0 0; color: var(--ink-soft); font-weight: 600; }
.job-search { display: grid; gap: .45rem; color: var(--primary); font-size: .82rem; font-weight: 900; }
.job-search-control { position: relative; display: block; }
.job-search-control svg { position: absolute; left: .9rem; top: 50%; width: 1.2rem; height: 1.2rem; transform: translateY(-50%); fill: none; stroke: var(--accent-strong); stroke-width: 2; pointer-events: none; }
.job-search-control input { width: 100%; min-height: 3.25rem; padding: .8rem 2.8rem; border: 1px solid var(--line); border-radius: var(--radius-control); background: var(--white); color: var(--ink); font-weight: 700; }
.job-search-control input:focus { outline: 0; border-color: var(--accent-strong); box-shadow: 0 0 0 4px oklch(.78 .17 195 / .18); }
.job-toolbar { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; margin-top: 1.2rem; }
.job-filters { display: flex; gap: .45rem; overflow-x: auto; padding-bottom: .35rem; }
.job-filters button { min-height: 2.75rem; flex: 0 0 auto; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-control); background: var(--white); color: var(--primary); font-weight: 800; cursor: pointer; }
.job-filters button.is-active { border-color: var(--primary); background: var(--primary); color: var(--white); }
.job-results { display: flex; gap: .3rem; align-items: center; min-height: 2.75rem; margin: 0; color: var(--ink-soft); font-size: .86rem; font-weight: 700; }
.job-results strong { color: var(--primary); font-size: 1.1rem; }
.job-results button { min-height: 2.75rem; margin-left: .65rem; padding: 0; border: 0; background: transparent; color: var(--accent-strong); font-weight: 900; cursor: pointer; }
.job-results button[hidden] { display: none; }
.job-list { display: grid; margin-top: 1.5rem; border-top: 1px solid var(--line); }
.job-card { display: grid; gap: 1rem; align-items: center; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.job-card[hidden], .jobs-empty[hidden] { display: none; }
.job-card h3 { margin: .25rem 0; color: var(--primary); font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
.job-card p { max-width: 58ch; margin: 0; color: var(--ink-soft); font-weight: 600; }
.job-card > div > p:first-child { color: var(--accent-strong); font-size: .82rem; font-weight: 900; }
.job-card > div > p:first-child span::before { content: "/"; margin-inline: .4rem; color: var(--line); }
.jobs-empty { padding: 2rem 0; }
.jobs-empty h3 { margin: 0; color: var(--primary); font-size: 1.5rem; }
.jobs-empty p { max-width: 56ch; color: var(--ink-soft); font-weight: 600; }
.jobs-empty .text-link { margin-right: 1.25rem; padding: 0; border: 0; background: transparent; cursor: pointer; }
.candidate-process { background: var(--bg-soft); }
.candidate-steps { display: grid; gap: 1rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.candidate-steps li { display: grid; gap: .35rem; padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); }
.candidate-steps strong { color: var(--primary); }
.candidate-steps span { color: var(--ink-soft); font-weight: 600; }

.story-grid { display: grid; gap: 2rem; align-items: center; }
.story-image { overflow: hidden; aspect-ratio: 4 / 3; border-radius: var(--radius-card); background: var(--accent-soft); }
.story-image img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 28%; }
.story-grid h2 { margin: 0; color: var(--primary); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; text-wrap: balance; }
.story-grid p { color: var(--ink-soft); font-weight: 600; }
.proof-about { margin-top: 0; }

.case-study { display: grid; gap: 1.5rem; padding: clamp(2rem, 7vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.case-study > div:first-child > p { margin: 0 0 .7rem; color: var(--accent-strong); font-weight: 900; }
.case-study h2 { max-width: 18ch; margin: 0; color: var(--primary); font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; text-wrap: balance; }
.case-study h3 { margin: 1.1rem 0 .25rem; color: var(--primary); font-size: .9rem; }
.case-study > div:last-child p { max-width: 56ch; margin: 0; color: var(--ink-soft); font-weight: 600; }
.case-study-accent { position: relative; }
.case-study-accent::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: -1; background: var(--accent-soft); }
.clients { background: var(--bg-soft); }

.article-page { padding-bottom: var(--space-xl); }
.article-header { padding-top: clamp(3rem, 8vw, 6rem); padding-bottom: clamp(2rem, 6vw, 4rem); }
.article-header h1 { margin: 0; color: var(--primary); font-size: clamp(2.35rem, 6.5vw, 4.8rem); line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
.article-header > span { display: block; max-width: 62ch; margin-top: 1.25rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 600; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 1.5rem; color: var(--muted); font-size: .85rem; font-weight: 800; }
.article-layout { display: grid; gap: 2rem; align-items: start; }
.article-prose { max-width: 70ch; }
.article-prose section { padding: clamp(1.4rem, 4vw, 2.5rem) 0; border-top: 1px solid var(--line); }
.article-prose h2, .article-conclusion h2 { margin: 0; color: var(--primary); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.18; text-wrap: balance; }
.article-prose p { margin-bottom: 0; color: var(--ink-soft); font-size: 1.04rem; font-weight: 550; }
.article-conclusion { margin-top: 1.5rem; padding: clamp(1.25rem, 4vw, 2rem); border-radius: var(--radius-card); background: var(--accent-soft); }
.article-aside { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); }
.article-aside h2 { margin: 0; color: var(--primary); font-size: 1.3rem; }
.article-aside p { color: var(--ink-soft); font-weight: 600; }
.related { background: var(--bg-soft); }

.contact-page { padding-top: var(--space-xl); }
.contact-note { margin-top: 2rem; padding: 1rem; border-radius: var(--radius-card); background: var(--accent-soft); }
.contact-note strong { color: var(--primary); }
.contact-note p { margin: .35rem 0 0; color: var(--ink-soft); font-weight: 600; }

.not-found { min-height: 68dvh; display: grid; align-items: center; padding: var(--space-xl) 0; }
.not-found p { margin: 0; color: var(--accent-strong); font-size: 1.2rem; font-weight: 900; }
.not-found h1 { max-width: 14ch; margin: .5rem 0; color: var(--primary); font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1.04; text-wrap: balance; }
.not-found .container > span { display: block; max-width: 55ch; color: var(--ink-soft); font-weight: 600; }

@media (hover: hover) and (pointer: fine) {
  .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
  .job-filters button:hover { border-color: var(--accent-strong); }
}

@media (min-width: 42rem) {
  .proof-ribbon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .proof-ribbon p:nth-child(2n) { border-right: 1px solid oklch(1 0 0 / .15); }
  .proof-ribbon p:last-child { border-right: 0; }
  .article-grid, .candidate-steps, .sector-list, .values-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-card-featured { grid-column: 1 / -1; grid-template-columns: minmax(12rem, .8fr) minmax(0, 1.2fr); grid-template-rows: 1fr; }
  .article-card-featured .article-visual { min-height: 100%; }
  .service-detail, .case-study { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 7vw, 6rem); }
  .operating-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operating-steps li:nth-child(odd) { padding-right: 1.25rem; border-right: 1px solid var(--line); }
  .operating-steps li:nth-child(even) { padding-left: 1.25rem; }
  .firm-value-grid, .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .job-card { grid-template-columns: minmax(0, 1fr) auto; }
  .job-card .button { min-width: 10rem; }
}

@media (min-width: 58rem) {
  .service-editorial { grid-template-columns: .9fr 1.2fr .9fr; border-bottom: 1px solid var(--line); }
  .service-editorial article { min-height: 22rem; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 0; }
  .service-editorial article:first-child { padding-left: 0; }
  .service-editorial article:last-child { padding-right: 0; border-right: 0; }
  .service-editorial article.featured { margin: -1rem 0; padding: 3rem 2rem; }
  .path-grid { grid-template-columns: 1.12fr .88fr; }
  .cta-band-inner { grid-template-columns: minmax(0, 1fr) auto; }
  .operating-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .operating-steps li, .operating-steps li:nth-child(even) { display: block; padding: 1.5rem; border-right: 1px solid var(--line); }
  .operating-steps li:first-child { padding-left: 0; }
  .operating-steps li:last-child { padding-right: 0; border-right: 0; }
  .operating-steps h3 { margin-top: 1rem; }
  .article-grid { grid-template-columns: 1.15fr .85fr .85fr; }
  .article-card-featured { grid-column: auto; grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .article-card-featured .article-visual { min-height: 11rem; }
  .sector-list, .values-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sector-list article, .values-list article { padding: 1.5rem; border-right: 1px solid var(--line); }
  .sector-list article:first-child, .values-list article:first-child { padding-left: 0; }
  .sector-list article:last-child, .values-list article:last-child { padding-right: 0; border-right: 0; }
  .jobs-heading { grid-template-columns: minmax(18rem, .7fr) minmax(0, 1.3fr); align-items: end; }
  .job-filters { justify-content: flex-end; }
  .article-layout { grid-template-columns: minmax(0, 1fr) 18rem; gap: clamp(2rem, 6vw, 5rem); }
  .article-aside { position: sticky; top: 7rem; }
}

@media (max-width: 71.99rem) {
  .site-header.is-open .primary-nav { max-height: calc(100dvh - 6rem); overflow-y: auto; }
}

@media (max-width: 34rem) {
  .breadcrumbs { overflow-x: auto; white-space: nowrap; }
  .subpage-hero h1, .article-header h1 { overflow-wrap: anywhere; letter-spacing: -.025em; }
  .proof-ribbon p { min-height: 6.5rem; }
  .article-card, .path-panel { min-height: auto; }
}

/* Flagship expansion */
.section-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.route-section {
  background: var(--white);
}

.route-map {
  position: relative;
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.route-map li {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: .15rem .85rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.route-map li > span {
  grid-row: span 2;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--safety);
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.route-map h3,
.route-map p {
  margin: 0;
}

.route-map h3 {
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1.1;
}

.route-map p {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
}

.field-note {
  background: var(--primary-deep);
  color: var(--white);
}

.field-note-grid {
  display: grid;
  gap: 2rem;
}

.field-note-grid > div:first-child > p,
.briefing-callout-grid > div > p,
.resource-band-grid > div > p,
.candidate-promise-grid > div > p,
.principles-title > p,
.industry-brief-grid > div > p,
.after-contact-grid > div > p {
  margin: 0 0 .55rem;
  color: var(--accent);
  font-weight: 900;
}

.field-note h2,
.briefing-callout h2,
.resource-band h2,
.candidate-promise h2,
.principles-title h2,
.industry-brief h2,
.after-contact h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.02;
  text-wrap: balance;
}

.field-note-list {
  display: grid;
  border-top: 1px solid oklch(1 0 0 / .2);
}

.field-note-list p {
  display: grid;
  gap: .25rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid oklch(1 0 0 / .2);
}

.field-note-list strong {
  color: var(--safety);
}

.field-note-list span {
  color: oklch(.9 .035 235);
  font-weight: 600;
}

.industry-grid {
  display: grid;
  gap: .75rem;
  margin-top: 2rem;
}

.industry-card {
  position: relative;
  min-height: 12rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-strong);
  color: var(--primary-deep);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: auto -2rem -3.5rem auto;
  width: 10rem;
  height: 10rem;
  border: 1.2rem solid oklch(1 0 0 / .18);
  border-radius: 50%;
  pointer-events: none;
}

.industry-card-1 {
  min-height: 18rem;
  background: var(--primary);
  color: var(--white);
}

.industry-card-2 {
  background: var(--accent);
}

.industry-card-3 {
  background: var(--safety);
}

.industry-card-4 {
  background: oklch(.91 .055 218);
}

.industry-card-5 {
  background: var(--primary-deep);
  color: var(--white);
}

.industry-card h3,
.industry-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.industry-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.industry-card p {
  margin-top: .4rem;
  font-size: .84rem;
  font-weight: 700;
  opacity: .78;
}

.industry-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  font-weight: 800;
}

.service-selector {
  padding-block: clamp(2rem, 5vw, 4rem);
  background: var(--primary-deep);
  color: var(--white);
}

.service-selector-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.service-selector h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.service-selector p {
  max-width: 48ch;
  color: oklch(.9 .035 235);
  font-weight: 600;
}

.service-selector dl {
  display: grid;
  margin: 0;
  border-top: 1px solid oklch(1 0 0 / .2);
}

.service-selector dl div {
  display: grid;
  gap: .2rem;
  padding: .9rem 0;
  border-bottom: 1px solid oklch(1 0 0 / .2);
}

.service-selector dt {
  color: var(--accent);
  font-weight: 900;
}

.service-selector dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.included-grid {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.included-grid article {
  min-height: 10rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.included-grid article:nth-child(2),
.included-grid article:nth-child(3) {
  background: var(--bg-soft);
}

.included-grid h3,
.included-grid p {
  margin: 0;
}

.included-grid h3 {
  color: var(--primary);
  font-size: 1.45rem;
}

.included-grid p {
  margin-top: .45rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.scenario-grid {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.scenario-grid article {
  display: grid;
  grid-template-columns: minmax(7rem, .4fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.scenario-grid strong {
  color: var(--accent-strong);
}

.scenario-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.briefing-callout {
  background: var(--safety);
  color: var(--primary-deep);
}

.briefing-callout-grid,
.resource-band-grid,
.candidate-advice-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.briefing-callout-grid > div > p,
.resource-band-grid > div > p {
  color: var(--primary);
}

.briefing-callout-grid > div > span,
.resource-band-grid > div > span {
  display: block;
  max-width: 56ch;
  margin-top: .75rem;
  font-weight: 650;
}

.job-card h3 a {
  position: relative;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .8rem;
}

.job-tags span {
  padding: .35rem .55rem;
  border-radius: var(--radius-control);
  background: var(--accent-soft);
  color: var(--primary-deep);
  font-size: .75rem;
  font-weight: 800;
}

.job-availability-note {
  max-width: 62ch;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.candidate-promise {
  background: var(--primary);
  color: var(--white);
}

.candidate-promise-grid {
  display: grid;
  gap: 2rem;
}

.candidate-promise-grid ul,
.cross-industry-grid ul,
.industry-brief-grid ul {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.candidate-promise-grid li,
.cross-industry-grid li,
.industry-brief-grid li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 700;
}

.candidate-promise-grid li::before,
.cross-industry-grid li::before,
.industry-brief-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: .6rem;
  height: .6rem;
  background: var(--safety);
}

.candidate-advice {
  background: var(--white);
}

.candidate-advice h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.candidate-advice p {
  max-width: 54ch;
  color: var(--ink-soft);
  font-weight: 600;
}

.principles-section {
  background: var(--primary-deep);
  color: var(--white);
}

.principles-title {
  max-width: 48rem;
}

.principles-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid oklch(1 0 0 / .2);
}

.principles-list article {
  display: grid;
  gap: .25rem;
  padding: 1rem 0;
  border-bottom: 1px solid oklch(1 0 0 / .2);
}

.principles-list span {
  color: var(--safety);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.principles-list p {
  max-width: 52ch;
  margin: 0;
  color: oklch(.9 .035 235);
  font-weight: 600;
}

.working-code-grid,
.reference-method-grid,
.cross-industry-grid,
.after-contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.working-code-grid > div > h2,
.reference-method-grid > div > h2,
.cross-industry-grid > div > h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.02;
}

.working-code-grid > div > p,
.reference-method-grid > div > p,
.cross-industry-grid > div > p {
  color: var(--ink-soft);
  font-weight: 600;
}

.working-code .route-map {
  margin-top: 0;
}

.reference-method {
  background: var(--safety);
}

.reference-method ol,
.after-contact ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid oklch(.3 .18 264 / .25);
}

.reference-method li,
.after-contact li {
  display: grid;
  gap: .25rem;
  padding: .9rem 0;
  border-bottom: 1px solid oklch(.3 .18 264 / .25);
}

.reference-method li span,
.after-contact li span {
  color: var(--ink-soft);
  font-weight: 600;
}

.blog-toolbar {
  display: grid;
  gap: 1rem;
  align-items: end;
}

.blog-toolbar h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.article-filters {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  padding-bottom: .25rem;
}

.article-filters button {
  min-height: 2.75rem;
  flex: 0 0 auto;
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
}

.article-filters button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.article-card[hidden],
.articles-empty[hidden] {
  display: none;
}

.article-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: .75rem;
}

.article-card-meta > span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
}

.article-visual {
  position: relative;
  overflow: hidden;
}

.article-visual::before,
.article-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.article-visual::before {
  inset: 18% auto auto 12%;
  width: 5rem;
  height: 5rem;
  border: .8rem solid currentColor;
  transform: rotate(16deg);
}

.article-visual::after {
  right: 12%;
  bottom: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: 1.2rem solid oklch(1 0 0 / .22);
}

.article-visual-2::before {
  width: 7rem;
  height: 2.2rem;
  border-width: .6rem;
  transform: rotate(-12deg);
}

.article-visual-3::before {
  border-radius: 50%;
  transform: none;
}

.resource-band {
  background: var(--safety);
  color: var(--primary-deep);
}

.articles-empty {
  padding: 2rem 0;
}

.articles-empty h3,
.articles-empty p {
  margin: 0;
}

.articles-empty h3 {
  color: var(--primary);
  font-size: 1.6rem;
}

.articles-empty p {
  margin-top: .35rem;
  color: var(--ink-soft);
}

.industry-hero {
  position: relative;
  overflow: hidden;
}

.industry-hero::after {
  content: "";
  position: absolute;
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  bottom: -7rem;
  width: clamp(10rem, 23vw, 22rem);
  height: clamp(10rem, 23vw, 22rem);
  border: clamp(1rem, 2.5vw, 2.2rem) solid var(--accent);
  border-radius: 50%;
  opacity: .35;
  pointer-events: none;
}

.industry-hero-2::after { border-radius: 0; transform: rotate(18deg); }
.industry-hero-3::after { border-color: var(--safety); border-radius: 50% 0 50% 50%; }
.industry-hero-4::after { width: 30vw; border-radius: 0; transform: skewX(-20deg); }
.industry-hero-5::after { border-color: var(--primary); border-radius: 0 50% 50% 50%; }

.role-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.role-cloud span {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--primary);
  font-weight: 850;
}

.industry-challenges {
  background: var(--bg-soft);
}

.challenge-grid {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.challenge-grid article {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.challenge-grid h3,
.challenge-grid p {
  margin: 0;
}

.challenge-grid h3 {
  color: var(--primary);
  font-size: 1.5rem;
}

.challenge-grid p {
  max-width: 56ch;
  margin-top: .35rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.industry-brief {
  background: var(--primary-deep);
  color: var(--white);
}

.industry-brief-grid {
  display: grid;
  gap: 2rem;
}

.industry-brief-grid ul {
  color: oklch(.92 .03 235);
}

.industry-process .route-map {
  margin-top: 2rem;
}

.cross-industry {
  background: var(--accent-soft);
}

.cross-industry-grid li::before {
  background: var(--primary);
}

.job-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--bg-soft);
}

.job-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.job-hero-grid > div > p {
  margin: 0 0 .6rem;
  color: var(--accent-strong);
  font-weight: 900;
}

.job-hero h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
}

.job-hero-grid > div > span {
  display: block;
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  font-weight: 600;
}

.job-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.2rem;
}

.job-hero-meta > * {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding: .5rem .7rem;
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 850;
}

.job-hero aside {
  padding: 1.25rem;
  border-radius: var(--radius-card);
  background: var(--safety);
  color: var(--primary-deep);
}

.job-hero aside p,
.job-hero aside h2 {
  margin: 0;
}

.job-hero aside p {
  font-weight: 900;
}

.job-hero aside h2 {
  font-size: 2rem;
}

.job-hero aside ul {
  display: grid;
  gap: .45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  font-weight: 700;
}

.job-detail-grid {
  display: grid;
  gap: .75rem;
}

.job-detail article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.job-detail article:nth-child(2) {
  background: var(--accent-soft);
}

.job-detail article:nth-child(3) {
  background: var(--primary);
  color: var(--white);
}

.job-detail h2 {
  margin: 0;
  color: var(--primary);
  font-size: 1.7rem;
}

.job-detail article:nth-child(3) h2 {
  color: var(--accent);
}

.job-detail ul {
  display: grid;
  gap: .5rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  font-weight: 650;
}

.brief-builder-section {
  background: var(--bg-soft);
}

.brief-builder-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.brief-builder {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.brief-builder fieldset {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.brief-builder fieldset:first-child {
  padding-top: 0;
  border-top: 0;
}

.brief-builder legend {
  padding: 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
}

.brief-builder label {
  display: grid;
  gap: .35rem;
  color: var(--primary-deep);
  font-size: .88rem;
  font-weight: 850;
}

.brief-builder input,
.brief-builder select,
.brief-builder textarea {
  width: 100%;
  min-height: 3rem;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
}

.brief-builder textarea {
  min-height: 7rem;
  resize: vertical;
}

.brief-builder input:focus,
.brief-builder select:focus,
.brief-builder textarea:focus {
  outline: 0;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px oklch(.78 .17 195 / .18);
}

.brief-result {
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-card);
  background: var(--primary-deep);
  color: var(--white);
}

.brief-result > p {
  margin: 0;
  color: var(--accent);
  font-weight: 900;
}

.brief-result h2 {
  margin: .35rem 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.brief-result > span,
.brief-result-summary p {
  color: oklch(.9 .035 235);
  font-weight: 600;
}

.brief-result-summary {
  display: grid;
  gap: .6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid oklch(1 0 0 / .2);
}

.brief-result-summary p {
  margin: 0;
}

.brief-result-summary strong {
  display: block;
  color: var(--safety);
}

.brief-send {
  margin-top: 1.5rem;
}

.legal-page {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.legal-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.legal-toc {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal-toc p,
.legal-toc a {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.legal-toc p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.legal-toc a {
  color: var(--primary);
  font-weight: 800;
}

.legal-prose {
  max-width: 72ch;
}

.legal-updated {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.legal-prose section {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.legal-prose h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  text-wrap: balance;
}

.legal-prose p {
  color: var(--ink-soft);
  font-weight: 570;
}

.legal-prose a {
  color: var(--primary);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.success-page {
  background: var(--bg-soft);
}

.field-error {
  min-height: 1.1rem;
  color: oklch(.51 .2 28);
  font-size: .78rem;
  font-weight: 800;
}

[aria-invalid="true"] {
  border-color: oklch(.51 .2 28) !important;
}

.after-contact {
  background: var(--safety);
}

.after-contact-grid > div > p {
  color: var(--primary);
}

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

.footer-action {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 900;
}

.subpage-hero h1,
.article-header h1 {
  letter-spacing: 0;
}

@media (hover: hover) and (pointer: fine) {
  .industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
  }

  .section-link:hover,
  .footer-action:hover {
    color: var(--accent-strong);
  }
}

@media (min-width: 42rem) {
  .included-grid,
  .challenge-grid,
  .job-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-grid article:nth-child(3) {
    background: var(--white);
  }

  .included-grid article:nth-child(4) {
    background: var(--bg-soft);
  }

  .challenge-grid article {
    padding: 1.25rem;
    border-right: 1px solid var(--line);
  }

  .brief-builder fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-builder legend,
  .brief-builder .full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 58rem) {
  .route-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .route-map::before {
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--line);
  }

  .route-map li {
    display: block;
    padding: 1.25rem;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .route-map li:first-child { padding-left: 0; }
  .route-map li:last-child { padding-right: 0; border-right: 0; }
  .route-map li > span { position: relative; z-index: 1; margin-bottom: 1.8rem; }
  .route-map h3 { font-size: 1.65rem; }

  .field-note-grid,
  .candidate-promise-grid,
  .industry-brief-grid,
  .working-code-grid,
  .reference-method-grid,
  .cross-industry-grid,
  .after-contact-grid {
    grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 6rem);
  }

  .industry-grid {
    grid-template-columns: 1.15fr .85fr .85fr;
    grid-auto-rows: minmax(10rem, auto);
  }

  .industry-card-1 { grid-row: span 2; }
  .industry-card-4 { grid-column: span 2; }
  .industry-card-5 { grid-column: span 1; }

  .service-selector-grid,
  .job-hero-grid,
  .brief-builder-grid {
    grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 5rem);
  }

  .service-selector dl {
    margin-top: .25rem;
  }

  .included-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-grid article:nth-child(odd) {
    padding-right: 1.25rem;
    border-right: 1px solid var(--line);
  }

  .scenario-grid article:nth-child(even) {
    padding-left: 1.25rem;
  }

  .briefing-callout-grid,
  .resource-band-grid,
  .candidate-advice-grid,
  .blog-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .principles-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principles-list article:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid oklch(1 0 0 / .2);
  }

  .principles-list article:nth-child(even) {
    padding-left: 1.5rem;
  }

  .article-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-grid-wide .article-card-featured {
    grid-column: span 2;
    grid-template-columns: .75fr 1.25fr;
    grid-template-rows: 1fr;
  }

  .article-grid-wide .article-card-featured .article-visual {
    min-height: 100%;
  }

  .challenge-grid,
  .job-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .challenge-grid article:last-child {
    border-right: 0;
  }

  .job-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  }

  .brief-result {
    position: sticky;
    top: 7rem;
  }

  .footer-grid-wide {
    grid-template-columns: 1.5fr repeat(4, .75fr);
  }
}

@media (max-width: 34rem) {
  .industry-card {
    min-height: 10rem;
  }

  .industry-card-1 {
    min-height: 14rem;
  }

  .scenario-grid article {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .job-hero-meta > * {
    width: 100%;
  }

  .job-toolbar {
    align-items: flex-start;
  }

  .job-filters {
    width: 100%;
  }

  .job-results {
    width: 100%;
    justify-content: space-between;
  }

  .jobs-empty .text-link {
    width: 100%;
    margin-right: 0;
  }
}

@media (min-width: 58rem) {
  .legal-layout {
    grid-template-columns: 15rem minmax(0, 1fr);
  }

  .legal-toc {
    position: sticky;
    top: 7rem;
  }
}

/* Simplified brand edition */
:root {
  --bg-soft: oklch(0.975 0.014 220);
  --surface: oklch(0.99 0.006 220);
  --surface-strong: oklch(0.945 0.03 217);
  --ink-soft: oklch(0.37 0.055 255);
  --muted: oklch(0.49 0.035 250);
  --line: oklch(0.89 0.022 225);
  --shadow-sm: 0 8px 22px oklch(0.26 0.12 264 / 0.07);
  --shadow-md: 0 18px 44px oklch(0.26 0.12 264 / 0.11);
  --container: 1140px;
  --space-xl: clamp(3.75rem, 6vw, 5rem);
}

body {
  background: var(--white);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-header {
  background: oklch(1 0 0 / 0.96);
  backdrop-filter: blur(10px);
}

.site-header::before {
  background: var(--accent);
}

.header-inner {
  min-height: 4.75rem;
  gap: 1.25rem;
}

.brand {
  gap: 0.7rem;
  min-height: 3.25rem;
}

.brand-logo {
  width: 3.25rem;
  border-radius: 4px;
  overflow: hidden;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 7.8rem;
}

.brand-copy strong {
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  gap: clamp(0.7rem, 1.25vw, 1.2rem);
  font-size: 0.82rem;
}

.primary-nav a {
  min-height: 2.75rem;
}

.header-cta {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  box-shadow: none;
}

.hero {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
}

.hero::before {
  background: linear-gradient(110deg, var(--bg-soft), var(--white) 58%);
}

.hero-grid {
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy,
.hero-media {
  animation: none;
}

.hero-kicker,
.section-heading p,
.process-copy p,
.proof-copy p,
.contact-copy p {
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5.4vw, 4.25rem);
  line-height: 1.04;
}

.hero-lede {
  max-width: 36rem;
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.button {
  min-height: 2.9rem;
  padding: 0.78rem 1.15rem;
  box-shadow: none;
}

.button-primary:hover,
.header-cta:hover {
  box-shadow: var(--shadow-sm);
}

.hero-media {
  width: min(100%, 34rem);
}

.media-ring {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.media-ring::before,
.hero-note {
  display: none;
}

.section {
  padding: var(--space-xl) 0;
}

.section-heading,
.section-heading.left {
  max-width: 43rem;
}

.section-heading h2,
.process-copy h2,
.proof-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.proof-ribbon {
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--primary-deep);
}

.proof-ribbon p {
  min-height: 5.5rem;
  padding: 1rem 1.25rem;
  border-color: var(--line);
}

.proof-ribbon strong {
  color: var(--primary);
  font-size: 1.12rem;
}

.proof-ribbon span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.service-editorial {
  gap: 1rem;
  border: 0;
}

.service-editorial article,
.service-editorial article:first-child,
.service-editorial article:last-child,
.service-editorial article.featured {
  min-height: 16rem;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.service-editorial article.featured {
  border-color: oklch(0.82 0.09 200);
  background: var(--accent-soft);
}

.service-editorial h3 {
  font-size: 1.65rem;
}

.service-editorial p:not(.service-number) {
  margin: 0.8rem 0 1rem;
  font-size: 0.93rem;
}

.route-section,
.home-blog,
.blog-index,
.related,
.candidate-process,
.clients {
  background: var(--bg-soft);
}

.route-map {
  border-top: 1px solid var(--line);
}

.route-map li {
  padding: 1.2rem 0;
}

.route-map li > span {
  border-radius: 4px;
  background: var(--accent-soft);
  color: var(--primary);
}

.route-map h3 {
  font-size: 1.22rem;
}

.industry-grid {
  gap: 0.75rem;
}

.industry-card,
.industry-card-1,
.industry-card-2,
.industry-card-3,
.industry-card-4,
.industry-card-5 {
  min-height: 9rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--primary-deep);
}

.industry-card::before {
  display: none;
}

.industry-card h3 {
  color: var(--primary);
  font-size: 1.45rem;
}

.industry-arrow {
  color: var(--accent-strong);
}

.article-grid,
.article-grid-wide {
  gap: 1rem;
}

.article-card,
.article-card-featured,
.article-grid-wide .article-card-featured {
  min-height: 0;
  grid-column: auto;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  box-shadow: none;
}

.article-visual,
.article-card-featured .article-visual,
.article-grid-wide .article-card-featured .article-visual {
  display: none;
}

.article-card > div:last-child {
  min-height: 17rem;
  padding: 1.35rem;
}

.article-card h3 {
  font-size: 1.3rem;
}

.article-card:hover {
  transform: none;
  border-color: oklch(0.77 0.08 210);
  box-shadow: none;
}

.cta-band {
  padding-top: 0;
}

.cta-band-inner {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--primary);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
}

.subpage-hero {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: var(--bg-soft);
}

.subpage-hero p,
.article-header > p {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.subpage-hero h1 {
  max-width: 22ch;
  font-size: clamp(2.55rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.subpage-hero-inner > span {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.service-selector {
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
  border-block: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.service-selector h2 {
  color: var(--primary);
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 1.08;
}

.service-selector p {
  color: var(--ink-soft);
}

.service-selector dl {
  border-color: var(--line);
}

.service-selector dl div {
  padding-block: 0.75rem;
  border-color: var(--line);
}

.service-selector dt {
  color: var(--accent-strong);
}

.service-selector dd {
  color: var(--primary);
}

.service-detail {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.service-detail h2 {
  max-width: 20ch;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

.service-detail-dark {
  color: var(--ink);
}

.service-detail-dark::before {
  background: var(--bg-soft);
}

.service-detail-dark h2,
.service-detail-dark .service-number,
.service-detail-dark .text-link {
  color: var(--primary);
}

.service-detail-dark > div:last-child > p,
.service-detail-dark .check-list {
  color: var(--ink-soft);
}

.firm-value {
  background: var(--bg-soft);
  color: var(--ink);
}

.firm-value-grid {
  gap: 0;
  background: transparent;
}

.firm-value-grid > div {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.firm-value h2 {
  color: var(--primary);
}

.firm-value p {
  color: var(--ink-soft);
}

.candidate-steps li {
  padding: 1.1rem;
  box-shadow: none;
}

.case-study {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.case-study h2,
.story-grid h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.case-study-accent::before {
  background: var(--bg-soft);
}

.article-header {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.article-header h1 {
  max-width: 20ch;
  font-size: clamp(2.4rem, 5vw, 3.65rem);
  line-height: 1.07;
  letter-spacing: 0;
}

.article-prose h2,
.article-conclusion h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.article-aside,
.article-conclusion,
.contact-note,
.candidate-steps li,
.brief-result,
.brief-builder,
.contact-form {
  box-shadow: none;
}

.job-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.job-hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
}

.job-detail-grid article,
.included-grid article,
.scenario-grid article {
  box-shadow: none;
}

.contact-form {
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
}

.contact-note {
  border: 1px solid var(--line);
  background: var(--white);
}

.after-contact {
  background: var(--bg-soft);
}

.after-contact h2,
.briefing-callout h2,
.resource-band h2,
.candidate-promise h2,
.principles-title h2,
.industry-brief h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.site-footer {
  padding-top: clamp(2.75rem, 5vw, 4rem);
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-logo {
  width: 3.75rem;
}

.brand-footer .brand-copy strong {
  color: var(--white);
  font-size: 1.32rem;
}

.brand-footer .brand-copy small {
  color: oklch(0.82 0.05 220);
}

.footer-grid-wide {
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.site-footer h2 {
  font-size: 0.78rem;
}

@media (min-width: 58rem) {
  .service-editorial {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 0;
  }

  .service-editorial article,
  .service-editorial article:first-child,
  .service-editorial article:last-child,
  .service-editorial article.featured {
    min-height: 17rem;
    padding: 1.5rem;
    border: 1px solid var(--line);
  }

  .route-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .route-map li {
    display: block;
    padding: 1.35rem;
    border-right: 1px solid var(--line);
  }

  .route-map li:last-child {
    border-right: 0;
  }

  .route-map h3 {
    margin-top: 0.9rem;
  }

  .industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .industry-card,
  .industry-card-1 {
    min-height: 10rem;
  }

  .article-grid,
  .article-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-card-featured,
  .article-grid-wide .article-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 71.99rem) {
  .site-header.is-open .primary-nav {
    inset: 4.75rem var(--gutter) auto;
  }
}

@media (max-width: 42rem) {
  .brand-logo {
    width: 2.8rem;
  }

  .brand-copy {
    min-width: 6.7rem;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.53rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.45rem);
  }

  .proof-ribbon p {
    min-height: 4.8rem;
    padding: 0.85rem 0.65rem;
  }

  .proof-ribbon strong {
    font-size: 1rem;
  }

  .proof-ribbon span {
    font-size: 0.69rem;
  }

  .service-editorial article,
  .service-editorial article.featured {
    min-height: 0;
  }

  .industry-card,
  .industry-card-1 {
    min-height: 7.5rem;
  }

  .subpage-hero h1,
  .article-header h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
    letter-spacing: 0;
  }
}

/* Responsive hardening */
[id] {
  scroll-margin-top: 6rem;
}

.container {
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

.site-header {
  padding-top: env(safe-area-inset-top, 0);
}

.site-footer {
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0));
}

.service-detail-dark::before {
  display: none;
}

.job-filters,
.article-filters {
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.job-filters::-webkit-scrollbar,
.article-filters::-webkit-scrollbar,
.legal-toc::-webkit-scrollbar {
  display: none;
}

.job-filters button,
.article-filters button {
  min-height: 3rem;
  scroll-snap-align: start;
}

@media (pointer: coarse) {
  .button,
  .header-cta,
  .menu-button,
  .primary-nav a,
  .footer-grid a,
  .footer-bottom a,
  .legal-toc a,
  .job-filters button,
  .article-filters button,
  .section-link,
  .text-link {
    min-height: 2.75rem;
  }

  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    padding-block: 0.5rem;
  }

  .faq-list summary {
    min-height: 3.5rem;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
  }
}

@media (max-width: 42rem) {
  :root {
    --gutter: clamp(0.9rem, 4.5vw, 1.25rem);
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .site-header.is-open .primary-nav {
    inset-block-start: calc(4.35rem + env(safe-area-inset-top, 0));
    max-height: calc(100dvh - 5.25rem - env(safe-area-inset-top, 0));
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero {
    padding-block: 2.25rem 3rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.25rem);
    line-height: 1.02;
  }

  .subpage-hero,
  .article-header {
    padding-block: clamp(2.35rem, 10vw, 3.25rem);
  }

  .subpage-hero h1,
  .article-header h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.8rem);
    line-height: 1.07;
    overflow-wrap: anywhere;
  }

  .subpage-hero-inner > span,
  .article-header > span {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .section {
    padding-block: clamp(3rem, 12vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button,
  .cta-band .button,
  .job-card .button {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .cta-band-inner {
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .cta-band h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.25rem);
  }

  .breadcrumbs {
    min-height: 3rem;
    overflow: visible;
    white-space: normal;
  }

  .breadcrumbs > span[aria-current="page"] {
    display: none;
  }

  .job-toolbar {
    align-items: flex-start;
  }

  .job-filters,
  .article-filters {
    width: calc(100% + var(--gutter));
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
  }

  .job-results {
    width: 100%;
  }

  .contact-form,
  .brief-builder {
    padding: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .brief-builder input,
  .brief-builder select,
  .brief-builder textarea {
    min-height: 3.25rem;
    font-size: 1rem;
  }

  .contact-form textarea,
  .brief-builder textarea {
    min-height: 9rem;
  }

  .contact-form .consent-label {
    grid-template-columns: 1.5rem minmax(0, 1fr);
  }

  .contact-form .consent-label input {
    width: 1.35rem;
    min-height: 1.35rem;
  }

  .article-layout {
    gap: 1.5rem;
  }

  .article-aside {
    padding: 1rem;
  }

  .article-prose p,
  .article-prose li {
    font-size: 1rem;
  }

  .legal-toc {
    position: static;
    display: flex;
    gap: 0.5rem;
    width: calc(100% + var(--gutter));
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    overflow-x: auto;
    border: 0;
    scrollbar-width: none;
    scroll-snap-type: inline proximity;
  }

  .legal-toc p {
    display: none;
  }

  .legal-toc a {
    flex: 0 0 auto;
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--white);
    scroll-snap-align: start;
  }

  .footer-grid-wide {
    gap: 1.5rem;
  }

  .footer-grid > div:not(.footer-brand) {
    padding-top: 1.25rem;
    border-top: 1px solid oklch(1 0 0 / 0.14);
  }

  .footer-bottom {
    display: grid;
    justify-content: stretch;
    gap: 0.5rem;
  }

  .footer-bottom p:last-child {
    display: grid;
    gap: 0;
  }

  .footer-bottom a {
    min-height: 2.75rem;
  }
}

@media (max-width: 21rem) {
  :root {
    --gutter: 0.875rem;
  }

  .header-inner {
    gap: 0.7rem;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    display: none;
  }

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