:root {
  --ink: #102331;
  --muted: #5a6a73;
  --paper: #fbfcf9;
  --white: #ffffff;
  --deep: #102331;
  --teal: #0b7c78;
  --teal-dark: #075955;
  --green: #b7d94b;
  --amber: #f0b33d;
  --line: #dce5df;
  --shadow: 0 18px 50px rgba(16, 35, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #e6edf2;
  --muted: #9cb0bb;
  --paper: #0b141a;
  --deep: #071118;
  --line: #233845;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 16px clamp(16px, 4vw, 48px);
}

.nav-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(16, 35, 49, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 70px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

html[data-theme="dark"] .brand-logo {
  padding: 4px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 12px 14px;
  border-radius: 8px;
  color: #314551;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  background: #eef5f1;
  color: var(--teal-dark);
}

.nav-links a.active,
.nav-links .nav-cta {
  background: #e7f2ef;
  color: var(--teal-dark);
}

.nav-links .login-link {
  border: 1px solid #d7e4df;
  color: var(--ink);
}

.nav-links .nav-cta {
  border: 1px solid #c8dfd8;
}

.nav-links .admin-link {
  padding: 12px 18px;
  border: 1px solid #0b7c78;
  background: #0b7c78;
  color: #ffffff;
}

.nav-links .admin-link:hover {
  background: #075955;
  color: #ffffff;
}

.admin-nav-logout {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #e6b8b8;
  border-radius: 8px;
  background: #fff0f0;
  color: #8a2424;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.theme-toggle {
  position: relative;
  width: 58px;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid #c8dfd8;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: #eef5f1;
  color: #223541;
  font: inherit;
  cursor: pointer;
}

.theme-toggle:hover {
  background: #e0ede8;
  color: var(--teal-dark);
}

.theme-toggle-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f8c35b;
  box-shadow: 0 2px 8px rgba(16, 35, 49, 0.18);
  flex: 0 0 auto;
  transition: transform 0.2s ease, background 0.2s ease;
}

.theme-toggle-icon::before {
  content: "☀";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #513b07;
  font-size: 12px;
  line-height: 1;
}

.theme-toggle-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

html[data-theme="dark"] .theme-toggle-icon {
  transform: translateX(18px);
  background: #dce8ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .theme-toggle-icon::before {
  content: "☾";
  color: #172731;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #eef5f1;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

html[data-theme="dark"] .nav-shell {
  background: rgba(14, 23, 30, 0.9);
  border-color: rgba(120, 146, 161, 0.22);
}

html[data-theme="dark"] .nav-links a {
  color: #d8e5eb;
}

html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .theme-toggle:hover {
  background: #172731;
}

html[data-theme="dark"] .nav-links a.active,
html[data-theme="dark"] .nav-links .nav-cta {
  background: #19343b;
}

html[data-theme="dark"] .nav-links .login-link,
html[data-theme="dark"] .theme-toggle {
  border-color: #314754;
  background: #172731;
  color: #e6edf2;
}

html[data-theme="dark"] .nav-links .nav-cta {
  border-color: #305159;
}

html[data-theme="dark"] .nav-links .admin-link {
  border-color: #4cb8b1;
  background: #0b7c78;
  color: #ffffff;
}

html[data-theme="dark"] .admin-nav-logout {
  border-color: #6d343a;
  color: #ffd7d7;
  background: #351b20;
}

html[data-theme="dark"] .nav-toggle {
  background: #172731;
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .capability-grid article,
html[data-theme="dark"] .outcome-grid article,
html[data-theme="dark"] .industry-list span,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .candidate-form,
html[data-theme="dark"] .detail-card,
html[data-theme="dark"] .industry-matrix article,
html[data-theme="dark"] .values-grid article,
html[data-theme="dark"] .login-panel {
  background: #121d25;
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .employer-qualifier {
  background: rgba(25, 52, 59, 0.42);
}

html[data-theme="dark"] .icon {
  background: #19343b;
}

html[data-theme="dark"] .testimonial-author span {
  background: #19343b;
  color: #7ad5ce;
}

html[data-theme="dark"] .check-list li,
html[data-theme="dark"] .industry-list span,
html[data-theme="dark"] label {
  color: #d8e5eb;
}

html[data-theme="dark"] .check-list li::before {
  box-shadow: inset 0 0 0 5px #19343b;
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .google-btn {
  border-color: #314754;
  background: #0f1920;
  color: #e6edf2;
}

html[data-theme="dark"] .google-btn span {
  background: #172731;
}

html[data-theme="dark"] .site-footer {
  border-top: 1px solid rgba(120, 146, 161, 0.18);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 70px) 56px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 33, 0.86) 0%, rgba(9, 24, 33, 0.72) 35%, rgba(9, 24, 33, 0.24) 68%, rgba(9, 24, 33, 0.12) 100%),
    linear-gradient(0deg, rgba(11, 124, 120, 0.18), rgba(11, 124, 120, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  width: min(600px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--green);
  color: #1f2d15;
  box-shadow: 0 12px 28px rgba(183, 217, 75, 0.25);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--deep);
  color: var(--white);
}

.stat {
  min-height: 140px;
  padding: 34px clamp(20px, 4vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.stats-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px clamp(20px, 4vw, 46px) 18px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section,
.split-section,
.industries,
.testimonial,
.contact-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section,
.split-section,
.industries,
.contact-section {
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(26px, 6vw, 90px);
  align-items: end;
}

.intro p:last-child,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-head {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 35, 49, 0.07);
}

.service-card p,
.timeline p,
.detail-card p,
.industry-matrix p,
.values-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.link-card {
  display: block;
  color: inherit;
}

.link-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal-dark);
}

.link-card:hover {
  border-color: rgba(11, 124, 120, 0.32);
  transform: translateY(-3px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  background: #e7f2ef;
  color: var(--teal-dark);
  border-radius: 8px;
  font-weight: 900;
}

.capability-section {
  border-top: 1px solid var(--line);
}

.capability-grid,
.outcome-grid {
  display: grid;
  gap: 16px;
}

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

.capability-grid article,
.outcome-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 35, 49, 0.07);
}

.capability-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
  font-weight: 900;
}

.capability-grid p,
.outcome-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.outcome-section {
  padding-top: 0;
}

.outcome-grid {
  grid-template-columns: repeat(3, 1fr);
}

.outcome-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
  color: #314551;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #e7f2ef;
}

.feature-panel {
  padding: 28px;
  background: #0b7c78;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pipeline-step {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pipeline-step:last-child {
  border-bottom: 0;
}

.pipeline-step span {
  width: 82px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pipeline-step strong {
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0;
  text-align: right;
}

.pipeline-step.active {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline div {
  padding: 6px 0 0;
  border-top: 3px solid var(--teal);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 14px 0 24px;
  color: var(--white);
  background: var(--deep);
  border-radius: 50%;
  font-weight: 900;
}

.industries {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-list span {
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #314551;
  font-weight: 800;
}

.testimonial {
  padding: 84px 0 92px;
}

.testimonial blockquote {
  width: min(920px, 100%);
  margin: 0;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.testimonial p {
  margin: 26px 0 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.testimonial-author span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e7f2ef;
  color: var(--teal-dark);
  font-weight: 900;
}

.testimonial-author p {
  margin: 0;
}

.contact-section,
.login-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding-bottom: 110px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-weight: 800;
}

.contact-details a {
  color: var(--teal-dark);
}

.contact-line {
  display: grid;
  gap: 3px;
}

.contact-line span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--teal-dark);
}

.contact-details > span {
  color: var(--muted);
}

.contact-form,
.candidate-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.employer-qualifier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 124, 120, 0.04);
}

.candidate-lookup {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 124, 120, 0.04);
}

.candidate-lookup h3 {
  margin-bottom: 6px;
}

.candidate-lookup-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.btn.secondary.lookup-button,
.btn.secondary.note-button {
  width: fit-content;
  border-color: #c8dfd8;
  color: var(--teal-dark);
  background: #e7f2ef;
}

.candidate-profile-result {
  margin-top: 18px;
}

.candidate-status-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: #314551;
  font-size: 14px;
  font-weight: 800;
}

.field-hint {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdcd6;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcf9;
  font: inherit;
}

input[type="file"] {
  padding: 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 124, 120, 0.16);
  border-color: var(--teal);
}

.form-status,
.candidate-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.response-expectation {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: start;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
}

.site-footer p {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
}

.footer-brand-block small,
.footer-brand-block a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.page-hero {
  min-height: 58vh;
  display: grid;
  align-content: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.page-hero h1 {
  width: min(850px, 100%);
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
}

.page-hero p:last-child {
  width: min(720px, 100%);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.employer-hero,
.candidate-hero,
.contact-hero,
.login-hero {
  border-bottom: 1px solid var(--line);
}

.login-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: 1.08fr 0.92fr;
  padding-top: 86px;
}

.login-side-stack {
  display: grid;
  gap: 20px;
}

.login-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.login-panel-head p:last-child,
.employer-preview p {
  color: var(--muted);
  line-height: 1.7;
}

.google-btn {
  min-height: 52px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 18px;
  border: 1px solid #cfdcd6;
  border-radius: 8px;
  background: #ffffff;
  color: #223541;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.google-auth-box {
  min-height: 44px;
  margin: 8px 0 12px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.google-auth-box > div {
  width: min(100%, 420px);
}

.google-auth-box:empty {
  display: none;
}

.google-auth-box:not(:empty) + .google-btn {
  display: none;
}

.google-btn span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef5f1;
  color: var(--teal-dark);
  font-weight: 900;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.employer-panel {
  position: sticky;
  top: 118px;
  background: var(--deep);
  color: var(--white);
}

.employer-panel .eyebrow {
  color: var(--green);
}

.employer-panel .login-panel-head p:last-child,
.employer-preview p {
  color: rgba(255, 255, 255, 0.72);
}

.employer-preview {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.employer-preview span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.employer-preview strong {
  display: block;
  margin: 10px 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1;
}

.btn.dark {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
}

.admin-panel {
  background: linear-gradient(180deg, rgba(11, 124, 120, 0.08), rgba(11, 124, 120, 0.02));
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-status {
  min-height: 22px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.admin-role-label {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-dashboard,
.admin-lock {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.summary-grid,
.admin-grid {
  display: grid;
  gap: 18px;
}

.admin-view-switch {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-view-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-view-button.active {
  background: var(--teal);
  color: var(--white);
}

.admin-search {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 49, 0.06);
}

.admin-search label {
  max-width: 560px;
}

.admin-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 35, 49, 0.06);
}

.filter-button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--teal);
  background: #e7f2ef;
  color: var(--teal-dark);
}

.export-button {
  margin-left: auto;
}

.export-status {
  flex-basis: 100%;
  min-height: 20px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.summary-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 24px;
}

.summary-card,
.admin-list-panel,
.admin-user-panel,
.admin-lock-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.summary-card span,
.admin-badge,
.admin-entry span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.summary-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.admin-user-panel {
  margin-bottom: 24px;
}

.admin-user-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.admin-user-status {
  min-height: 22px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.admin-user-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.admin-user-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 124, 120, 0.03);
}

.admin-user-entry span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-user-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.reset-password-button {
  border-color: #c8dfd8;
  color: var(--teal-dark);
  background: #e7f2ef;
}

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

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-head h3 {
  margin-bottom: 0;
}

.admin-badge {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-entry {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 124, 120, 0.03);
}

.admin-entry-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.admin-entry-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.super-admin-candidate-actions,
.super-admin-delete-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e6b8b8;
  border-radius: 8px;
  background: #fff7f7;
}

.super-admin-candidate-actions span,
.super-admin-delete-strip span {
  color: #8a2424;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.super-admin-delete-strip {
  margin: 12px 0 16px;
}

.admin-entry p {
  margin-bottom: 8px;
  color: var(--muted);
}

.admin-entry p:last-child {
  margin-bottom: 0;
}

.workflow-box {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.workflow-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #eef5f1;
}

.workflow-current span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-current strong {
  color: var(--teal-dark);
}

.status-timeline {
  display: grid;
  gap: 10px;
}

.status-timeline div {
  position: relative;
  padding-left: 22px;
}

.status-timeline div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.status-timeline strong {
  display: block;
  margin-bottom: 3px;
}

.status-timeline span,
.admin-notes span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-timeline p {
  margin: 4px 0 0;
}

.workflow-actions,
.admin-note-form {
  display: grid;
  gap: 12px;
}

.workflow-actions {
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
}

.workflow-next:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.workflow-decision.rejected {
  border-color: #e6b8b8;
  color: #8a2424;
  background: #fff0f0;
}

.danger-button {
  border-color: #e6b8b8;
  color: #8a2424;
  background: #fff0f0;
}

.delete-candidate-button {
  width: fit-content;
  min-height: 40px;
  padding: 10px 14px;
}

.delete-sales-button {
  width: fit-content;
  min-height: 40px;
  padding: 10px 14px;
}

.attachment-link {
  display: inline-flex;
  margin-left: 8px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
}

.missing-attachment {
  display: inline-flex;
  margin-left: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-notes {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.admin-notes p {
  margin: 0;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

html[data-theme="dark"] .summary-card,
html[data-theme="dark"] .admin-list-panel,
html[data-theme="dark"] .admin-user-panel,
html[data-theme="dark"] .admin-lock-panel {
  background: #121d25;
}

html[data-theme="dark"] .candidate-lookup,
html[data-theme="dark"] .admin-view-switch,
html[data-theme="dark"] .admin-search,
html[data-theme="dark"] .admin-filter-bar,
html[data-theme="dark"] .candidate-status-card {
  background: #121d25;
}

html[data-theme="dark"] .admin-panel {
  background: linear-gradient(180deg, rgba(11, 124, 120, 0.14), rgba(11, 124, 120, 0.05));
}

html[data-theme="dark"] .admin-entry {
  background: rgba(25, 52, 59, 0.42);
}

html[data-theme="dark"] .workflow-current {
  background: #172731;
}

html[data-theme="dark"] .workflow-current strong,
html[data-theme="dark"] .btn.secondary.lookup-button,
html[data-theme="dark"] .btn.secondary.note-button {
  color: #e6edf2;
}

html[data-theme="dark"] .btn.secondary.lookup-button,
html[data-theme="dark"] .btn.secondary.note-button {
  border-color: #314754;
  background: #172731;
}

html[data-theme="dark"] .admin-notes {
  background: rgba(15, 25, 32, 0.78);
}

html[data-theme="dark"] .workflow-decision.rejected {
  border-color: #6d343a;
  color: #ffd7d7;
  background: #351b20;
}

html[data-theme="dark"] .admin-user-entry {
  background: rgba(25, 52, 59, 0.42);
}

html[data-theme="dark"] .danger-button {
  border-color: #6d343a;
  color: #ffd7d7;
  background: #351b20;
}

html[data-theme="dark"] .reset-password-button {
  border-color: #314754;
  color: #e6edf2;
  background: #172731;
}

html[data-theme="dark"] .super-admin-candidate-actions,
html[data-theme="dark"] .super-admin-delete-strip {
  border-color: #6d343a;
  background: #25161a;
}

html[data-theme="dark"] .super-admin-candidate-actions span,
html[data-theme="dark"] .super-admin-delete-strip span {
  color: #ffd7d7;
}

html[data-theme="dark"] .filter-button.active {
  border-color: #4cb8b1;
  background: #19343b;
  color: #e6edf2;
}

html[data-theme="dark"] .attachment-link {
  color: #7ad5ce;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-card {
  min-height: 360px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(16, 35, 49, 0.07);
}

.detail-card h2,
.industry-matrix h2,
.values-grid h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.industry-matrix,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-matrix article,
.values-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  background: var(--deep);
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 96px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--deep);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 48px);
}

.cta-band .eyebrow {
  color: var(--green);
}

@media (max-width: 980px) {
  .service-grid,
  .capability-grid,
  .timeline,
  .stats-band,
  .detail-grid,
  .industry-matrix,
  .outcome-grid,
  .summary-grid,
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .split-section,
  .contact-section,
  .login-section,
  .admin-user-form,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .employer-panel {
    position: static;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px;
  }

  .nav-shell {
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 56px;
    height: 50px;
  }

  .brand strong {
    display: block;
    max-width: min(260px, calc(100vw - 190px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  html[data-theme="dark"] .nav-links {
    background: #121d25;
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    min-height: 88vh;
    padding-top: 116px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 24, 33, 0.9), rgba(9, 24, 33, 0.58));
  }

  .hero-image {
    object-position: 64% center;
  }

  .stats-band,
  .service-grid,
  .capability-grid,
  .outcome-grid,
  .employer-qualifier,
  .timeline {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section,
  .split-section,
  .industries,
  .contact-section,
  .login-section,
  .page-hero,
  .cta-band {
    width: min(100% - 28px, 1180px);
  }

  .section,
  .split-section,
  .industries,
  .contact-section {
    padding: 64px 0;
  }

  .admin-dashboard,
  .admin-lock {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .admin-toolbar,
  .panel-head,
  .admin-entry-head {
    display: grid;
  }

  .login-section {
    padding: 64px 0;
  }

  .page-hero {
    min-height: auto;
    padding: 128px 0 54px;
  }

  .detail-grid,
  .industry-matrix,
  .summary-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    margin-bottom: 64px;
    padding: 26px;
  }

  .pipeline-step {
    display: grid;
    gap: 8px;
  }

  .pipeline-step strong {
    text-align: left;
  }

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