/* ==========================================================================
   HireBench — Recruitment Agency Website
   Plain CSS, no build step. Design tokens + components ported 1:1 from the
   HireBench design system (claude.ai/design project 93ae25c4).
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
   01. Design tokens — colors
   02. Design tokens — typography
   03. Design tokens — spacing & layout
   04. Design tokens — radii, shadows, motion, blobs
   05. Base reset & element defaults
   06. Layout helpers (container, section, grid)
   07. Buttons & icon buttons
   08. Badges & tags
   09. Cards
   10. Eyebrow & section headings
   11. Icons, dotted grid, photo blob, avatars
   12. Stars & checklist
   13. Form controls (inputs, select, textarea, checkbox, radio, file, range)
   14. Site header & navigation
   15. Site footer
   16. Page hero / breadcrumb band
   17. Job card & company mark
   18. Service card, step item, info card
   19. Testimonial card
   20. Stats band, CTA band, logo strip
   21. Pagination & segmented toggle
   22. Home page sections
   23. Scroll-reveal animation
   24. Responsive
   ========================================================================== */


/* ==========================================================================
   01. Design tokens — colors
   ========================================================================== */
:root {
  /* --- Brand green --- */
  --green-50:  #F3F9EB;
  --green-100: #E4F2CF;
  --green-200: #CBE7A6;
  --green-400: #9FCF69;
  --green-500: #86C34A; /* primary */
  --green-600: #6BA835; /* hover / press */
  --green-700: #568A28;

  /* --- Navy --- */
  --navy-900: #0C1F2A;
  --navy-800: #102632;
  --navy-700: #15303F; /* headings, footer */
  --navy-500: #2A4C5E;
  --navy-200: #8FA4B0;

  /* --- Neutrals --- */
  --white:    #FFFFFF;
  --gray-50:  #F5F6F7; /* soft gray section background */
  --gray-100: #EEF0F1;
  --gray-200: #E7EAEC; /* borders */
  --gray-400: #A8B3BA;
  --gray-600: #5A6B77; /* body text */
  --gray-800: #3A4A54;

  /* --- Semantic status --- */
  --success-500: #86C34A;
  --success-50:  #F3F9EB;
  --warning-500: #F0A32C;
  --warning-50:  #FEF6E9;
  --danger-500:  #E0533D;
  --danger-50:   #FCEDEA;
  --info-500:    #2E85C3;
  --info-50:     #EAF3FA;

  /* --- Semantic aliases --- */
  --text-heading: var(--navy-700);
  --text-body:    var(--gray-600);
  --text-muted:   var(--gray-400);
  --text-inverse: var(--white);
  --text-link:    var(--green-600);
  --text-on-brand: var(--white);

  --surface-page:       var(--white);
  --surface-subtle:     var(--gray-50);
  --surface-card:       var(--white);
  --surface-brand:      var(--green-500);
  --surface-brand-soft: var(--green-50);
  --surface-dark:       var(--navy-700);
  --surface-footer:     var(--navy-700);

  --border-default: var(--gray-200);
  --border-strong:  var(--gray-400);
  --border-brand:   var(--green-500);

  --action-primary:       var(--green-500);
  --action-primary-hover: var(--green-600);
  --action-primary-press: var(--green-700);
  --action-dark:          var(--navy-700);
  --action-dark-hover:    var(--navy-800);

  --focus-ring: var(--green-600);

  /* Organic blob fills behind hero photography */
  --blob-green:      var(--green-500);
  --blob-green-soft: var(--green-100);
  --blob-navy:       var(--navy-700);
}


/* ==========================================================================
   02. Design tokens — typography
   ========================================================================== */
:root {
  --font-core: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;

  /* Display + heading scale (Poppins ExtraBold, navy, tight) */
  --fs-display: 56px;  --lh-display: 1.1;
  --fs-h1: 44px;       --lh-h1: 1.15;
  --fs-h2: 34px;       --lh-h2: 1.2;
  --fs-h3: 24px;       --lh-h3: 1.3;
  --fs-h4: 20px;       --lh-h4: 1.35;

  /* Body scale (Poppins Regular/Medium, gray) */
  --fs-lead: 18px;     --lh-lead: 1.7;
  --fs-body: 16px;     --lh-body: 1.7;
  --fs-small: 14px;    --lh-small: 1.6;
  --fs-caption: 12px;  --lh-caption: 1.5;

  /* Eyebrow / button label — uppercase, tracked */
  --fs-label: 13px;    --lh-label: 1.2;
  --ls-label: 0.08em;
  --ls-heading: -0.02em;
  --ls-display: -0.03em;
}


/* ==========================================================================
   03. Design tokens — spacing & layout
   ========================================================================== */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --section-y: 96px;       /* vertical rhythm between page sections */
  --section-y-tight: 64px;
  --container-max: 1200px;
  --container-pad: 24px;
  --gutter: 32px;
}


/* ==========================================================================
   04. Design tokens — radii, shadows, motion, blobs
   ========================================================================== */
:root {
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;   /* cards */
  --radius-xl: 24px;
  --radius-2xl: 32px;  /* media / blob containers */
  --radius-pill: 999px;

  --border-width: 1px;

  --shadow-xs: 0 1px 2px rgba(21, 48, 63, .04);
  --shadow-sm: 0 2px 8px rgba(21, 48, 63, .06);
  --shadow-md: 0 8px 24px rgba(21, 48, 63, .08);
  --shadow-lg: 0 16px 40px rgba(21, 48, 63, .10);
  --shadow-brand: 0 10px 24px rgba(134, 195, 74, .28);
  --shadow-inset-border: inset 0 0 0 1px var(--border-default);

  --ring-focus: 0 0 0 3px rgba(134, 195, 74, .35);

  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 320ms;

  /* Organic hero blob silhouettes */
  --blob-shape-1: 60% 40% 44% 56% / 52% 48% 52% 48%;
  --blob-shape-2: 44% 56% 62% 38% / 42% 58% 42% 58%;
}


/* ==========================================================================
   05. Base reset & element defaults
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-core);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-core);
  font-weight: var(--fw-extrabold);
  color: var(--text-heading);
  letter-spacing: var(--ls-heading);
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-h3); }
h4 { font-size: var(--fs-h4); line-height: var(--lh-h4); }

p { margin: 0; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--green-700); }

button { font-family: inherit; }
img, svg { max-width: 100%; display: block; }

:focus-visible { outline: none; box-shadow: var(--ring-focus); }


/* ==========================================================================
   06. Layout helpers (container, section, grid)
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Full-width section bands; tone controls the background */
.section { padding: var(--section-y) 0; background: var(--white); }
.section--subtle { background: var(--surface-subtle); }
.section--dark { background: var(--surface-dark); }
.section--tight { padding: var(--section-y-tight) 0; }

.grid { display: grid; gap: var(--gutter); align-items: stretch; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }


/* ==========================================================================
   07. Buttons & icon buttons
   ========================================================================== */
.btn {
  font-family: var(--font-core);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  /* md size (default) */
  font-size: var(--fs-label);
  padding: 14px 26px;
}
.btn--sm { font-size: 12px; padding: 10px 18px; }
.btn--lg { font-size: 14px; padding: 17px 34px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--action-primary);
  color: var(--text-on-brand);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover { background: var(--action-primary-hover); color: var(--text-on-brand); }

.btn--outline {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border-default);
}
.btn--outline:hover {
  background: var(--action-primary);
  color: var(--white);
  border-color: var(--action-primary);
}

.btn--dark { background: var(--action-dark); color: var(--text-inverse); }
.btn--dark:hover { background: var(--action-dark-hover); color: var(--text-inverse); }

.btn--on-brand {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}
.btn--on-brand:hover { background: var(--white); color: var(--green-600); border-color: var(--white); }

.btn--ghost { background: transparent; color: var(--text-link); }
.btn--ghost:hover { color: var(--green-700); }

.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* Round icon-only button (menu toggle, share icons, socials) */
.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  color: var(--text-heading);
  border: 1px solid var(--border-default);
  transition: all var(--dur-fast) var(--ease-out);
}
.icon-btn:hover { border-color: var(--action-primary); color: var(--green-600); }
.icon-btn--soft { background: var(--surface-subtle); border-color: transparent; }
.icon-btn--brand { background: var(--action-primary); color: var(--white); border-color: transparent; }
.icon-btn--brand:hover { background: var(--action-primary-hover); color: var(--white); }
.icon-btn--on-dark { background: rgba(255, 255, 255, .08); color: var(--navy-200); border-color: transparent; }
.icon-btn--on-dark:hover { background: var(--action-primary); color: var(--white); }


/* ==========================================================================
   08. Badges & tags
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  background: var(--surface-brand-soft); /* brand tone (default) */
  color: var(--green-700);
}
.badge--solid { background: var(--action-primary); color: var(--white); }
.badge--neutral { background: var(--surface-subtle); color: var(--text-body); }
.badge--navy { background: var(--surface-dark); color: var(--white); }
.badge--on-brand { background: rgba(255, 255, 255, .18); color: var(--white); }

/* Squarer, quieter label — job type, industry, skill */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  background: var(--surface-subtle);
  border: 1px solid var(--border-default);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--text-body);
}


/* ==========================================================================
   09. Cards
   ========================================================================== */
.card {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  transition:
    transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.card--subtle { background: var(--surface-subtle); }
.card--brand { background: var(--surface-brand); border-color: var(--action-primary); color: var(--white); }
.card--navy { background: var(--surface-dark); border-color: var(--navy-700); color: var(--white); }

.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}


/* ==========================================================================
   10. Eyebrow & section headings
   ========================================================================== */
.eyebrow {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--green-600);
}
.eyebrow--on-brand { color: rgba(255, 255, 255, .85); }

.section-heading { max-width: 620px; }
.section-heading .eyebrow { display: block; margin-bottom: var(--space-3); }
.section-heading__body {
  margin-top: var(--space-4);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--text-body);
}
.section-heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading--inverse h1,
.section-heading--inverse h2,
.section-heading--inverse h3 { color: var(--white); }
.section-heading--inverse .section-heading__body { color: rgba(255, 255, 255, .82); }


/* ==========================================================================
   11. Icons, dotted grid, photo blob, avatars
   ========================================================================== */
/* <i data-icon="name"> placeholders are hydrated into inline SVGs by main.js */
i[data-icon] { display: inline-flex; flex: 0 0 auto; }
i[data-icon] svg { display: inline-flex; flex: 0 0 auto; }

/* 6×6 grid of 3px dots, 14px gap — decorative */
.dotted-grid {
  width: 88px;
  height: 88px;
  background-image: radial-gradient(var(--gray-200) 1.5px, transparent 1.6px);
  background-size: 17px 17px;
  background-position: 1.5px 1.5px;
}

/* Layered organic blobs behind a photo; gray placeholder until photography lands */
.photo-blob { position: relative; width: 460px; height: 460px; }
.photo-blob__navy {
  position: absolute;
  inset: 6% -4% -2% 2%;
  background: var(--blob-navy);
  border-radius: var(--blob-shape-2);
}
.photo-blob__green {
  position: absolute;
  inset: 0 2% 4% -4%;
  background: var(--blob-green);
  border-radius: var(--blob-shape-1);
}
.photo-blob__media {
  position: absolute;
  inset: 7%;
  border-radius: var(--blob-shape-1);
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-blob__media img { width: 100%; height: 100%; object-fit: cover; }
.photo-blob__caption {
  font-size: var(--fs-caption);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  text-align: center;
  padding: 0 20%;
}
.photo-blob > .dotted-grid { position: absolute; right: -6px; top: -10px; }
/* Shape 2 variant (Why HireBench block) */
.photo-blob--shape2 .photo-blob__green,
.photo-blob--shape2 .photo-blob__media { border-radius: var(--blob-shape-2); }

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--gray-100);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-500);
  font-size: 14px;
  font-weight: var(--fw-semibold);
}
.avatar--no-ring { border: none; box-shadow: none; }
.avatar--lg { width: 48px; height: 48px; font-size: 15px; }

.avatar-group { display: flex; align-items: center; gap: var(--space-4); }
.avatar-group__stack { display: flex; }
.avatar-group__stack .avatar { position: relative; width: 46px; height: 46px; font-size: 15px; }
.avatar-group__stack .avatar + .avatar { margin-left: -15px; }
/* earlier avatars sit on top, like the design system */
.avatar-group__stack .avatar:nth-child(1) { z-index: 5; }
.avatar-group__stack .avatar:nth-child(2) { z-index: 4; }
.avatar-group__stack .avatar:nth-child(3) { z-index: 3; }
.avatar-group__stack .avatar:nth-child(4) { z-index: 2; }
.avatar-group__stack .avatar:nth-child(5) { z-index: 1; }
.avatar-group__label { font-weight: var(--fw-bold); color: var(--text-heading); font-size: var(--fs-small); }
.avatar-group__sublabel { font-size: var(--fs-caption); color: var(--text-muted); }


/* ==========================================================================
   12. Stars & checklist
   ========================================================================== */
.stars { display: flex; gap: 2px; color: var(--warning-500); }
.stars i[data-icon] svg { fill: currentColor; }
.stars .is-empty { opacity: .25; }

/* Green circled check list — benefits pattern (Home / For Employers / About) */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4) var(--space-6);
}
.checklist--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checklist li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--fs-body);
  color: var(--text-body);
}
.checklist__disc {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--action-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 3px;
}


/* ==========================================================================
   13. Form controls
   ========================================================================== */
.field { display: block; }
.field__label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
}
.field__label .req { color: var(--danger-500); }
.field__hint {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-caption);
  color: var(--text-muted);
}
.field__error {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--fs-caption);
  color: var(--danger-500);
}

.input, .textarea, .select {
  width: 100%;
  font-family: var(--font-core);
  font-size: var(--fs-small);
  color: var(--text-heading);
  background: var(--white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: var(--gray-400); }
.input:focus, .textarea:focus, .select:focus { border-color: var(--border-brand); box-shadow: var(--ring-focus); }
.input.is-invalid, .textarea.is-invalid, .select.is-invalid { border-color: var(--danger-500); }
.input.is-invalid:focus, .textarea.is-invalid:focus, .select.is-invalid:focus { box-shadow: 0 0 0 3px rgba(224, 83, 61, .25); }

.textarea { resize: vertical; line-height: 1.6; min-height: 120px; }

/* Input with a leading icon */
.input-wrap { position: relative; display: block; }
.input-wrap > i[data-icon] {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.input-wrap .input { padding-left: 44px; }

/* Select with custom chevron */
.select-wrap { position: relative; display: block; }
.select-wrap .select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select-wrap > i[data-icon] {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

/* Checkbox / radio — real inputs, visually hidden, styled proxies */
.checkbox, .radio {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--fs-small);
  color: var(--text-body);
}
.checkbox--count { justify-content: space-between; }
.checkbox__main { display: flex; align-items: center; gap: var(--space-3); }
.checkbox__count { font-size: var(--fs-caption); color: var(--text-muted); }
.checkbox input, .radio input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.checkbox__box {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-xs);
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--dur-fast) var(--ease-out);
}
.checkbox__box i[data-icon] { opacity: 0; transition: opacity var(--dur-fast) var(--ease-out); }
.checkbox input:checked ~ .checkbox__main .checkbox__box,
.checkbox input:checked ~ .checkbox__box {
  background: var(--action-primary);
  border-color: var(--action-primary);
}
.checkbox input:checked ~ .checkbox__main .checkbox__box i[data-icon],
.checkbox input:checked ~ .checkbox__box i[data-icon] { opacity: 1; }
.checkbox input:focus-visible ~ .checkbox__main .checkbox__box,
.checkbox input:focus-visible ~ .checkbox__box { box-shadow: var(--ring-focus); }

.radio__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.radio__dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--action-primary);
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease-out);
}
.radio input:checked ~ .radio__dot { border-color: var(--action-primary); }
.radio input:checked ~ .radio__dot::after { transform: scale(1); }
.radio input:focus-visible ~ .radio__dot { box-shadow: var(--ring-focus); }

/* File upload drop area */
.file-upload { position: relative; }
.file-upload input[type="file"] { position: absolute; opacity: 0; width: 1px; height: 1px; }
.file-upload__drop {
  display: block;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  text-align: center;
  cursor: pointer;
  background: var(--surface-subtle);
  transition: all var(--dur-fast) var(--ease-out);
}
.file-upload__drop:hover,
.file-upload input:focus-visible ~ .file-upload__drop {
  border-color: var(--action-primary);
  background: var(--surface-brand-soft);
}
.file-upload__drop > i[data-icon] { color: var(--green-600); }
.file-upload__text { margin-top: var(--space-2); font-size: var(--fs-small); color: var(--text-body); }
.file-upload__text .browse { color: var(--green-600); font-weight: var(--fw-semibold); }
.file-upload__hint { margin-top: 4px; font-size: var(--fs-caption); color: var(--text-muted); }

/* Range slider (salary filter) */
.range { --range-pct: 50%; }
.range__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  font-size: var(--fs-small);
}
.range__label { font-weight: var(--fw-semibold); color: var(--text-heading); }
.range__value { color: var(--green-600); font-weight: var(--fw-semibold); }
.range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(to right, var(--action-primary) var(--range-pct), var(--gray-200) var(--range-pct));
  outline: none;
  margin: 6px 0;
  cursor: pointer;
}
.range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--action-primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.range input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--action-primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* Form status notes (success + failure) */
.form-note {
  display: none;
  margin-top: var(--space-4);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--success-50);
  color: var(--green-700);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}
.form-note.is-visible { display: block; }
.form-note--error { background: var(--danger-50); color: #9C3122; }


/* ==========================================================================
   14. Site header & navigation
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-default);
  position: relative;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding-top: 20px;
  padding-bottom: 20px;
}

/* HireBench wordmark — "Hire" navy, "Bench" green */
.wordmark {
  font-size: 26px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark__hire { color: var(--navy-700); }
.wordmark__bench { color: var(--green-500); }
.wordmark--inverse .wordmark__hire { color: var(--white); }

.site-nav { display: flex; gap: var(--space-8); align-items: center; }
.site-nav__item { position: relative; }
.site-nav__link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  font-family: var(--font-core);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-nav__link:hover { color: var(--green-600); }
.site-nav__link.is-active {
  font-weight: var(--fw-semibold);
  color: var(--green-600);
  border-bottom-color: var(--action-primary);
}

/* Find Jobs dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  display: none;
  z-index: 30;
}
.site-nav__item.is-open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
}
.dropdown-menu a:hover { background: var(--surface-subtle); color: var(--green-600); }
.site-nav__item.is-open .site-nav__link i[data-icon] { transform: rotate(180deg); }
.site-nav__link i[data-icon] { transition: transform var(--dur-base) var(--ease-out); }

/* Mobile toggle + panel (hidden on desktop) */
.menu-toggle { display: none; }
.mobile-menu { display: none; }


/* ==========================================================================
   15. Site footer
   ========================================================================== */
.site-footer { background: var(--surface-footer); color: var(--navy-200); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--gutter);
  padding-top: 80px;
  padding-bottom: 48px;
}
.site-footer__col { display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start; }
.site-footer__head {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--white);
  margin-bottom: var(--space-3);
}
.site-footer__blurb {
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  color: var(--navy-200);
  max-width: 300px;
}
.site-footer__link { font-size: var(--fs-small); color: var(--navy-200); cursor: pointer; }
a.site-footer__link:hover { color: var(--white); }
.site-footer__contact {
  font-size: var(--fs-small);
  color: var(--navy-200);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.site-footer__contact i[data-icon] { color: var(--green-500); margin-top: 2px; }

.social-row { display: flex; gap: var(--space-2); margin-top: var(--space-2); }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  transition: background var(--dur-fast) var(--ease-out);
}
.social-btn:hover { background: var(--action-primary); }
.social-btn img { width: 16px; height: 16px; }
.social-btn__letters {
  font-size: 12px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -.02em;
  color: var(--navy-200);
}
.social-btn:hover .social-btn__letters { color: var(--white); }

.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: var(--fs-caption);
}
.site-footer__legal { display: flex; gap: var(--space-6); }
.site-footer__legal a { color: var(--navy-200); }
.site-footer__legal a:hover { color: var(--white); }


/* ==========================================================================
   16. Page hero / breadcrumb band (every page except Home)
   ========================================================================== */
.page-hero {
  background: var(--surface-dark);
  padding: 72px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: var(--blob-shape-1);
  background: rgba(134, 195, 74, .14);
}
.page-hero__inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.page-hero h1 { color: var(--white); }
.breadcrumb-trail {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-small);
  color: var(--navy-200);
}
.breadcrumb-trail a { color: var(--navy-200); display: inline-flex; align-items: center; gap: var(--space-2); }
.breadcrumb-trail a:hover { color: var(--white); }
.breadcrumb-trail .is-current { color: var(--green-500); }
.breadcrumb-trail i[data-icon] { color: var(--navy-200); }


/* ==========================================================================
   17. Job card & company mark
   ========================================================================== */
.job-card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.job-card .badge { align-self: flex-start; }
.job-card__company { display: flex; gap: var(--space-3); align-items: center; }
.company-mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  flex: 0 0 auto;
  background: var(--surface-subtle);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-extrabold);
  color: var(--navy-700);
  font-size: 16px;
}
.job-card__company-name { font-size: var(--fs-small); font-weight: var(--fw-semibold); color: var(--text-heading); }
.job-card__location {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.job-card__desc {
  margin-top: var(--space-2);
  font-size: var(--fs-small);
  line-height: var(--lh-small);
  color: var(--text-body);
}
.job-card__meta { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.job-card__salary { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--text-heading); }
.job-card__foot {
  border-top: 1px solid var(--border-default);
  padding-top: var(--space-4);
  margin-top: auto;
}


/* ==========================================================================
   18. Service card, step item, info card
   ========================================================================== */
.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--surface-brand-soft);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.service-card { display: flex; flex-direction: column; gap: var(--space-4); }
.service-card p { font-size: var(--fs-small); line-height: var(--lh-small); color: var(--text-body); }
/* highlighted (solid green) variant */
.service-card.card--brand .icon-tile { background: rgba(255, 255, 255, .18); color: var(--white); }
.service-card.card--brand h4 { color: var(--white); }
.service-card.card--brand p { color: rgba(255, 255, 255, .88); }

/* Numbered process step */
.step__head { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-brand-soft);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.step__num {
  font-size: 44px;
  font-weight: var(--fw-extrabold);
  color: var(--gray-200);
  line-height: 1;
}
.step p { margin-top: var(--space-2); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--text-body); }

/* Contact-style info card */
.info-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.info-card__lines { font-size: var(--fs-small); line-height: var(--lh-small); color: var(--text-body); }


/* ==========================================================================
   19. Testimonial card
   ========================================================================== */
.testimonial { display: flex; flex-direction: column; gap: var(--space-5); }
.testimonial__quote { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--text-body); }
.testimonial__person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-default);
}
.testimonial__name { font-weight: var(--fw-bold); color: var(--text-heading); font-size: var(--fs-small); }
.testimonial__role { font-size: var(--fs-caption); color: var(--text-muted); }


/* ==========================================================================
   20. Stats band, CTA band, logo strip
   ========================================================================== */
.stats-band { background: var(--surface-brand); padding: 64px 0; }
.stats-band--dark { background: var(--surface-dark); }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.stat { text-align: center; color: var(--white); }
.stat__value {
  font-size: 42px;
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-heading);
  line-height: 1.1;
}
.stat__label { margin-top: var(--space-2); font-size: var(--fs-small); color: rgba(255, 255, 255, .85); }

.cta-band { background: var(--surface-brand); padding: 72px 0; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.logo-strip { background: var(--surface-subtle); padding: 56px 0; text-align: center; }
.logo-strip__label { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: var(--space-8); }
.logo-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-16);
  filter: grayscale(1);
  opacity: .6;
}
.logo-strip__name {
  font-size: 22px;
  font-weight: var(--fw-extrabold);
  color: var(--navy-700);
  letter-spacing: -.02em;
}


/* ==========================================================================
   21. Pagination & segmented toggle
   ========================================================================== */
.pagination { display: flex; gap: var(--space-2); justify-content: center; }
.pagination a, .pagination button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-core);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  background: var(--white);
  color: var(--text-heading);
  border: 1px solid var(--border-default);
  transition: all var(--dur-fast) var(--ease-out);
}
.pagination a:hover, .pagination button:hover { border-color: var(--action-primary); color: var(--green-600); }
.pagination .is-active {
  background: var(--action-primary);
  color: var(--white);
  border-color: var(--action-primary);
}

.segmented {
  display: inline-flex;
  padding: 4px;
  gap: 4px;
  background: var(--surface-subtle);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
}
.segmented button {
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: var(--font-core);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  background: transparent;
  color: var(--text-body);
  transition: all var(--dur-fast) var(--ease-out);
}
.segmented button.is-active { background: var(--action-primary); color: var(--white); }


/* ==========================================================================
   22. Home page sections
   ========================================================================== */
/* Hero */
.hero { background: var(--white); padding: 80px 0 140px; position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-16);
  align-items: center;
}
.hero h1 {
  margin-top: var(--space-4);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
}
.hero__lead {
  margin-top: var(--space-5);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  max-width: 520px;
}
.hero__actions { display: flex; gap: var(--space-4); margin-top: var(--space-8); flex-wrap: wrap; }
.hero .avatar-group { margin-top: var(--space-10); }
.hero__media { justify-self: end; position: relative; }
.hero__media > .dotted-grid.hero__dots2 { position: absolute; left: -18px; bottom: 6px; right: auto; top: auto; }

/* Service cards overlapping the hero */
.services-band { background: var(--surface-subtle); padding-bottom: var(--section-y); }
.services-band .container { transform: translateY(-72px); margin-bottom: -40px; }

/* Why HireBench */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}
.why__media { position: relative; justify-self: start; }
.why__media .photo-blob { width: 420px; height: 420px; }
.exp-badge {
  position: absolute;
  right: -18px;
  bottom: 10px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
}
.exp-badge__num {
  font-size: 30px;
  font-weight: var(--fw-extrabold);
  color: var(--green-600);
  line-height: 1;
}
.exp-badge__label {
  margin-top: 6px;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  color: var(--navy-700);
}
.why .checklist { margin-top: var(--space-8); }
.why .btn { margin-top: var(--space-8); }

/* Centered section headings keep their bottom rhythm */
.section-head-gap { margin-bottom: var(--space-16); }

/* Open roles */
.roles__more { text-align: center; margin-top: var(--space-12); }


/* ==========================================================================
   22b. Inner pages (About / For Employers / Jobs / Job Detail / Contact)
   ========================================================================== */
/* Honest gray stand-in for photography that isn't blob-masked */
.photo-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  text-align: center;
  padding: var(--space-4);
}

/* --- For Employers --- */
.navy-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.navy-cta-card p { font-size: var(--fs-small); line-height: var(--lh-small); color: rgba(255, 255, 255, .82); }
.navy-cta-card .btn { align-self: flex-start; }

.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.industry-card { padding: var(--space-6); display: flex; align-items: center; gap: var(--space-4); }
.industry-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--surface-brand-soft);
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.industry-card__name { font-weight: var(--fw-bold); color: var(--text-heading); font-size: var(--fs-small); }

.request__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--space-16);
  align-items: start;
}
.request__grid .checklist { margin-top: var(--space-8); }
.form-card { padding: var(--space-10); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-grid .span-2 { grid-column: 1 / -1; }
.form-card > .btn { margin-top: var(--space-6); }

/* --- Find Jobs --- */
.jobs-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--gutter);
  align-items: start;
}
.jobs-sidebar { padding: var(--space-6); display: grid; gap: var(--space-8); align-self: start; }
.filter-group__title {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-4);
}
.filter-group__list { display: grid; gap: var(--space-3); }
.filters-toggle { display: none; }

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--fs-small);
}
.results-head strong { color: var(--text-heading); }
.results-head .select-wrap { width: 190px; }

.jobs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.jobs-grid + .pagination { margin-top: var(--space-10); }

.employer-banner { background: var(--surface-dark); padding: 36px 0; }
.employer-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.employer-banner__text { color: var(--white); font-size: var(--fs-lead); font-weight: var(--fw-semibold); }

/* --- Job Detail --- */
.job-header-card { display: flex; gap: var(--space-6); align-items: center; }
.job-header-card__body { flex: 1; }
.job-header-card h2 { margin-top: var(--space-3); }
.job-header-card__meta {
  margin-top: var(--space-3);
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-size: var(--fs-small);
}
.job-header-card__meta span { display: inline-flex; gap: 6px; align-items: center; }
.job-header-card__meta .salary { font-weight: var(--fw-bold); color: var(--text-heading); }
.company-mark--lg { width: 72px; height: 72px; font-size: 24px; }

.job-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--gutter);
  align-items: start;
}
.job-body__main { display: grid; gap: var(--space-6); }
.job-body__main .card h3 + p { margin-top: var(--space-4); }
.job-body__main .card h3 + .checklist { margin-top: var(--space-4); }
.job-body__main .card h3:not(:first-child) { margin-top: var(--space-8); }
.apply-card__note { margin-top: var(--space-3); font-size: var(--fs-small); }
.apply-card .form-grid { margin-top: var(--space-6); }
.apply-card > .btn { margin-top: var(--space-6); }

.job-side { display: grid; gap: var(--space-6); position: sticky; top: var(--space-6); }
.job-side .card { padding: var(--space-6); }
.overview-list { margin-top: var(--space-5); display: grid; gap: var(--space-4); }
.overview-row { display: flex; gap: var(--space-3); align-items: center; }
.overview-row__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-brand-soft);
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.overview-row__text { font-size: var(--fs-caption); color: var(--text-muted); }
.overview-row__text strong { display: block; font-size: var(--fs-small); color: var(--text-heading); }
.job-side .card > .btn { margin-top: var(--space-6); }
.share-row { display: flex; gap: var(--space-2); margin-top: var(--space-4); }

/* --- About --- */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.story__extra { margin-top: var(--space-5); }
.story__photo { height: 380px; }

.team-card { padding: var(--space-6); text-align: center; }
.team-card .photo-placeholder { height: 200px; border-radius: var(--radius-lg); }
.team-card__name { margin-top: var(--space-5); font-weight: var(--fw-extrabold); color: var(--text-heading); }
.team-card__role { margin-top: 4px; font-size: var(--fs-small); color: var(--green-600); }

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: stretch;
}
.contact-form-card { padding: var(--space-10); }
.contact-form-card .segmented { margin-bottom: var(--space-6); }
.contact-form-card .form-stack { display: grid; gap: var(--space-5); margin-top: var(--space-6); }
.contact-form-card .form-stack .btn { justify-self: start; }
.contact__aside { display: grid; gap: var(--space-6); }
.contact__map { min-height: 320px; flex: 1; height: 100%; }
.hours-list { margin-top: var(--space-4); display: grid; gap: var(--space-3); font-size: var(--fs-small); }
.hours-list > div {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-default);
}
.hours-list strong { color: var(--text-heading); }

[hidden] { display: none !important; }


/* ==========================================================================
   23. Scroll-reveal animation (respects reduced motion)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}


/* ==========================================================================
   24. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  /* Header collapses to hamburger */
  .site-nav, .site-header__cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu {
    display: none;
    padding: 0 var(--container-pad) var(--space-5);
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 40;
  }
  .mobile-menu.is-open { display: block; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu__link {
    padding: 14px 0;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--text-heading);
    border-bottom: 1px solid var(--border-default);
    text-decoration: none;
    display: block;
  }
  .mobile-menu__link.is-active { color: var(--green-600); font-weight: var(--fw-semibold); }
  .mobile-menu__link--sub { padding-left: var(--space-5); color: var(--text-body); }
  .mobile-menu .btn { margin-top: var(--space-5); }

  /* Hero stacks */
  .hero { padding: var(--space-12) 0 var(--space-16); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero__media { justify-self: center; }

  /* Overlap band flattens */
  .services-band { padding-bottom: var(--space-16); padding-top: var(--space-16); }
  .services-band .container { transform: none; margin-bottom: 0; }

  /* Grids step down */
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .why__media { justify-self: center; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  /* Inner pages */
  .request__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .story__grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .job-body { grid-template-columns: 1fr; gap: var(--space-8); }
  .job-side { position: static; }
  .industries-grid { grid-template-columns: 1fr 1fr; }

  .jobs-layout { grid-template-columns: 1fr; gap: var(--space-6); }
  .filters-toggle { display: inline-flex; }
  .jobs-sidebar { display: none; }
  .jobs-sidebar.is-open { display: grid; margin-top: var(--space-4); }
  .jobs-grid { grid-template-columns: 1fr; }
  .results-head .select-wrap { display: none; }
}

@media (max-width: 640px) {
  :root { --container-pad: 20px; }

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

  .hero h1 { font-size: 34px; line-height: 1.15; }
  .photo-blob, .why__media .photo-blob { width: 300px; height: 300px; }
  .exp-badge { width: 108px; height: 108px; right: -6px; }
  .exp-badge__num { font-size: 24px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .checklist--2col { grid-template-columns: 1fr; }

  .stats-band { padding: var(--space-12) 0; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .stat__value { font-size: 32px; }

  .cta-band { padding: var(--space-12) 0; }
  .logo-strip { padding: var(--space-12) 0; }
  .logo-strip__row { gap: var(--space-6); }
  .logo-strip__name { font-size: 18px; }

  .site-footer__grid { grid-template-columns: 1fr; gap: var(--space-10); padding-top: var(--space-12); padding-bottom: var(--space-12); }

  .section-head-gap { margin-bottom: var(--space-10); }
  .roles__more { margin-top: var(--space-10); }

  /* Inner pages */
  .page-hero { padding: 56px 0 60px; }
  .page-hero h1 { font-size: 32px; }
  .form-card, .contact-form-card { padding: var(--space-6); }
  .form-grid { grid-template-columns: 1fr; }
  .form-card > .btn, .apply-card > .btn { width: 100%; }
  .job-header-card { flex-direction: column; align-items: flex-start; }
  .job-header-card h2 { font-size: 26px; }
  .job-header-card > .btn { width: 100%; }
  .story__photo { height: 220px; }
  .contact__map { min-height: 220px; }
  .employer-banner { padding: var(--space-10) 0; }
  .segmented { width: 100%; }
  .segmented button { flex: 1; padding: 11px 10px; }
  .contact-form-card .form-stack .btn { justify-self: stretch; }
}
