/* ==========================================================================
   STAFFINGVERTEX — High-End Selective Talent Marketplace
   Design Philosophy: 20% Technology · 50% Premium Talent Platform · 30% Editorial Luxury
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* ── Layered Dark Palette: charcoal · graphite · black ── */
  --bg-deepest:   #080A0B;   /* Hero, Talent, Profile, Final CTA — the true base */
  --bg-dark:      #0B0E10;   /* Standard dark sections (alt rhythm) */
  --bg-graphite:  #101416;   /* Alternate elevated sections */
  --bg-card:      #15191D;   /* Cards, elevated surfaces */
  --bg-inset:     #1A1F25;   /* Form inputs, inset surfaces */
  --bg-deep-foot: #080A0B;   /* Footer */

  /* Legacy aliases — kept so existing references don't break */
  --bg-tone-dark:    var(--bg-deepest);
  --bg-tone-graphite: var(--bg-graphite);
  --bg-tone-deep:    var(--bg-deep-foot);
  --bg-dossier:      var(--bg-card);
  --bg-dossier-elevated: #1E242C;
  --bg-glass: rgba(8, 10, 11, 0.90);

  /* ── Typography ── crisp off-white on dark ── */
  --text-pure:      #FFFFFF;
  --text-primary:   #F2F3F3;   /* Headlines — near-white, warm */
  --text-secondary: #A7ADB0;   /* Body, descriptions — clearly readable */
  --text-muted:     #737B7F;   /* Metadata, labels, captions */
  --text-dark:      #080A0B;

  /* ── Borders & Dividers — solid graphite, not pure rgba white ── */
  --border-subtle: #1F2529;    /* Hairline dividers between sections */
  --border-medium: #252B2F;    /* Card borders, form fields */
  --border-strong: #363D42;    /* Active elements, highlighted borders */

  /* ── Precision Emerald — restrained intelligence accent ── */
  --accent-emerald:       #00BF74;   /* Slightly muted — less neon, more refined */
  --accent-emerald-dim:   rgba(0, 191, 116, 0.10);
  --accent-emerald-subtle: rgba(0, 191, 116, 0.05);

  /* ── Typography Scale ── */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ── Layout ── */
  --container-max: 1240px;
  --container-wide: 1320px;
  --container-narrow: 920px;
  --section-spacing: clamp(6rem, 9vw, 9.5rem);

  /* ── Easing ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  background-color: var(--bg-deepest);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  line-height: 1.75;
  background-color: var(--bg-deepest);
  color: var(--text-primary);
  min-height: 100vh;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-pure);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem; /* 18px */
  font-weight: 400;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

::selection {
  background: var(--text-pure);
  color: var(--text-dark);
}

/* Eyebrow Labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-emerald);
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background-color var(--duration-normal) ease, border-color var(--duration-normal) ease, backdrop-filter var(--duration-normal) ease;
}

.site-header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1875rem; /* 19px */
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-pure);
  text-transform: uppercase;
}

.brand-symbol {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-link {
  font-size: 1rem; /* 16px */
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover {
  color: var(--text-pure);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  color: var(--text-pure);
  padding: 0.6875rem 1.375rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.btn-header-cta:hover {
  background: var(--text-pure);
  color: var(--text-dark);
  border-color: var(--text-pure);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-pure);
}

/* ==========================================================================
   BUTTONS (CLEAN & EDITORIAL)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.0625rem 2.125rem;
  font-size: 1.0625rem; /* 17px */
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--text-pure);
  color: var(--text-dark);
  border-color: var(--text-pure);
}

.btn-primary:hover {
  background-color: #E5E7EB;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-pure);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--text-pure);
  transform: translateY(-2px);
}

.btn svg {
  transition: transform var(--duration-fast) ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTION 1: HERO (NEAR-BLACK)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--bg-deepest);
  min-height: 94vh;
  padding-top: calc(86px + 5.5rem);
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  opacity: 0.65;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.45rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
}

.hero-headline {
  font-size: clamp(3.25rem, 6.8vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 2rem;
  color: var(--text-pure);
}

.hero-headline span.headline-dim {
  color: #9CA3AF;
  font-weight: 700;
}

.hero-supporting {
  font-size: clamp(1.1875rem, 1.8vw, 1.375rem); /* 19–22px */
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Qualitative Positioning Pillars (Replacing invented numbers) */
.hero-pillars-grid {
  margin-top: 4.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 2.5rem;
  background: rgba(15, 19, 22, 0.75);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  text-align: left;
}

.pillar-item {
  display: flex;
  flex-direction: column;
}

.pillar-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem; /* 13px */
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pillar-title::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-emerald);
}

.pillar-desc {
  font-size: 0.9375rem; /* 15px */
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 2: "LESS SEARCHING. MORE SIGNAL." (LIGHTER GRAPHITE)
   ========================================================================== */
.section-difference {
  background-color: var(--bg-graphite);
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  border-top: 1px solid var(--border-subtle);
}

.difference-top {
  max-width: 860px;
  margin-bottom: 4.75rem;
}

.difference-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-pure);
}

.difference-lead {
  font-size: 1.3125rem; /* 21px */
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Horizontal Typographic Flow */
.principles-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--border-medium);
  padding-top: 3.25rem;
}

.principle-col {
  display: flex;
  flex-direction: column;
}

.principle-index {
  font-family: var(--font-mono);
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  color: var(--accent-emerald);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.principle-heading {
  font-size: 1.375rem; /* 22px */
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.principle-text {
  font-size: 1.0625rem; /* 17px */
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   SECTION 3: TALENT DIRECTORY (NEAR-BLACK)
   ========================================================================== */
.section-talent-directory {
  background-color: var(--bg-deepest);
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  border-top: 1px solid var(--border-subtle);
}

.directory-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.75rem;
  gap: 2rem;
}

.directory-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  color: var(--text-pure);
}

.directory-subtitle {
  font-size: 1.1875rem; /* 19px */
  color: var(--text-secondary);
  max-width: 460px;
}

.directory-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}

.directory-row {
  display: grid;
  grid-template-columns: 1.3fr 2.1fr 1fr auto;
  align-items: center;
  padding: 1.875rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  position: relative;
}

.directory-row:hover {
  background-color: var(--bg-card);
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.directory-row.active {
  background-color: var(--bg-card);
  border-bottom-color: var(--accent-emerald);
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.row-name {
  font-size: 1.3125rem; /* 21px */
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.02em;
}

.row-roles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.row-roles-main {
  font-size: 1rem; /* 16px */
  color: var(--text-secondary);
}

/* Subtle Expanded Depth on Hover/Active */
.row-depth-detail {
  font-family: var(--font-mono);
  font-size: 0.8125rem; /* 13px */
  color: var(--text-secondary);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.directory-row:hover .row-depth-detail, .directory-row.active .row-depth-detail {
  max-height: 40px;
  opacity: 1;
  margin-top: 0.25rem;
}

.row-metric {
  font-family: var(--font-mono);
  font-size: 0.875rem; /* 14px */
  color: var(--accent-emerald);
}

.row-arrow {
  color: var(--text-muted);
  transition: transform var(--duration-fast) ease, color var(--duration-fast) ease;
}

.directory-row:hover .row-arrow {
  color: var(--text-pure);
  transform: translateX(4px);
}

.directory-callout-panel {
  margin-top: 2.75rem;
  padding: 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.callout-info h4 {
  font-size: 1.3125rem;
  margin-bottom: 0.35rem;
}

.callout-info p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 4: THE PROCESS (LIGHTER GRAPHITE)
   ========================================================================= */
.section-process {
  background-color: var(--bg-graphite);
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  border-top: 1px solid var(--border-subtle);
}

.process-header {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4.75rem;
}

.process-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.35rem;
}

.process-header p {
  font-size: 1.1875rem; /* 19px */
}

.process-sequence {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1.75rem;
  margin-bottom: 4.25rem;
}

.process-step-col {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 18px;
  height: 100%;
}

.step-large-num {
  font-family: var(--font-mono);
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  color: var(--accent-emerald);
  margin-bottom: 1.35rem;
  line-height: 1;
}

.step-label {
  font-size: 1.4375rem; /* 23px */
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.step-explanation {
  font-size: 1.0625rem; /* 17px */
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  padding-top: 4rem;
}

.process-conclusion-statement {
  text-align: center;
  font-size: 1.1875rem; /* 19px */
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.process-conclusion-statement strong {
  color: var(--text-pure);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 5: CANDIDATE PROFILE CENTERPIECE (NEAR-BLACK BACKGROUND, PROMINENT SCALE)
   ========================================================================== */
.section-talent-centerpiece {
  background-color: var(--bg-deepest);
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.centerpiece-header {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.centerpiece-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.35rem;
}

.centerpiece-header p {
  font-size: 1.1875rem;
}

/* Scaled-up Dossier Card (~12-15% Visual Presence) */
.dossier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(255,255,255,0.04) inset;
}

.dossier-nav-tabs {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 2.5rem;
  background: rgba(8, 10, 11, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dossier-nav-tabs::-webkit-scrollbar {
  display: none;
}

.dossier-tab-btn {
  background: none;
  border: 1px solid transparent;
  padding: 0.6875rem 1.375rem;
  border-radius: 9999px;
  font-size: 0.9375rem; /* 15px */
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--duration-fast) ease;
}

.dossier-tab-btn:hover {
  color: var(--text-pure);
}

.dossier-tab-btn.active {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-medium);
  font-weight: 600;
}

/* Dossier Main Layout */
.dossier-content-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  padding: 3.5rem;
  align-items: start;
}

.candidate-portrait-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.portrait-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  background-color: var(--bg-inset);
  position: relative;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

.portrait-badge-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(8, 10, 11, 0.90);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-medium);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.portrait-badge-overlay::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
}

.dossier-details-col {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.dossier-header-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.75rem;
}

.candidate-name {
  font-size: clamp(2.25rem, 3.5vw, 2.75rem); /* 36–44px */
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  margin-bottom: 0.35rem;
}

.candidate-title {
  font-size: 1.25rem; /* 20px */
  color: var(--accent-emerald);
  font-weight: 600;
}

.dossier-match-pill {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.match-val {
  font-size: 2.375rem; /* 38px */
  font-weight: 800;
  color: var(--accent-emerald);
  line-height: 1;
}

.match-sub {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

.dossier-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.spec-pill {
  padding: 0.5rem 1.125rem;
  background: var(--bg-inset);
  border: 1px solid var(--border-medium);
  border-radius: 9999px;
  font-size: 0.9375rem; /* 15px */
  color: var(--text-primary);
}

.dossier-bio {
  font-size: 1.1875rem; /* 19px */
  color: var(--text-secondary);
  line-height: 1.75;
}

.skills-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.skills-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.skills-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.skill-tag-item {
  padding: 0.5rem 1rem;
  background: var(--bg-inset);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  font-size: 0.9375rem; /* 15px */
  color: var(--text-primary);
  font-weight: 500;
}

.dossier-action-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  gap: 1.5rem;
}

.action-status-text {
  font-size: 1rem; /* 16px */
  color: var(--text-secondary);
}

.action-status-text strong {
  color: var(--text-pure);
}

/* ==========================================================================
   SECTION 6: FOR COMPANIES (LIGHTER GRAPHITE)
   ========================================================================== */
.section-companies {
  background-color: var(--bg-graphite);
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
  border-top: 1px solid var(--border-subtle);
}

.companies-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.companies-headline {
  font-size: clamp(2.5rem, 4.5vw, 3.875rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1.75rem;
  color: var(--text-pure);
}

.companies-body {
  font-size: 1.25rem; /* 20px */
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.75rem;
}

.company-cta-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.company-secondary-link {
  font-size: 1rem;
  color: var(--text-muted);
}

.company-secondary-link a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-secondary-link a:hover {
  color: var(--accent-emerald);
}

/* Refined Minimal Working Intake Card */
.intake-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  padding: 2.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.50);
}

.intake-card-title {
  font-size: 1.375rem; /* 22px */
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 0.5rem;
}

.intake-card-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.intake-form-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intake-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  display: block;
}

.intake-input, .intake-select {
  width: 100%;
  background: var(--bg-inset);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 0.9375rem 1.25rem;
  color: var(--text-pure);
  font-size: 1rem;
  transition: border-color var(--duration-fast) ease;
}

.intake-input:focus, .intake-select:focus {
  outline: none;
  border-color: var(--border-strong);
}

/* ==========================================================================
   SECTION 7: FINAL CTA (NEAR-BLACK)
   ========================================================================== */
.section-final-statement {
  background-color: var(--bg-deepest);
  padding-top: clamp(6.5rem, 11vw, 11.5rem);
  padding-bottom: clamp(6.5rem, 11vw, 11.5rem);
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.final-statement-headline {
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--text-pure);
}

.final-statement-sub {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-statement-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER (DEEP DARK)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-deep-foot);
  border-top: 1px solid var(--border-subtle);
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
}

.footer-main-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4.75rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand-col {
  max-width: 380px;
}

.footer-tagline-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-nav-columns {
  display: flex;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.footer-column-heading {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-link-anchor {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
}

.footer-link-anchor:hover {
  color: var(--text-pure);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.status-dot-green {
  width: 7px;
  height: 7px;
  background: var(--accent-emerald);
  border-radius: 50%;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) ease, visibility var(--duration-normal) ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  width: 100%;
  max-width: 620px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--duration-normal) var(--ease-out);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.75rem 2.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-close-btn {
  background: none;
  border: 1px solid var(--border-medium);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.modal-close-btn:hover {
  color: var(--text-pure);
  border-color: var(--text-pure);
}

.modal-body {
  padding: 2.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Toast Feedback */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-left: 3px solid var(--accent-emerald);
  border-radius: 12px;
  padding: 1.125rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  font-size: 0.9375rem;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transform: translateX(120%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.toast.show {
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .principles-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .process-sequence {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-arrow-divider {
    display: none;
  }
  
  .dossier-content-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .candidate-portrait-box {
    max-width: 320px;
  }
  
  .companies-split-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .directory-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .directory-row .row-roles-wrapper {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .principles-flow {
    grid-template-columns: 1fr;
  }
  
  .hero-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .directory-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .directory-row {
    grid-template-columns: 1fr;
  }

  .directory-callout-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .dossier-action-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   SUBPAGES & EDITORIAL CONTENT STYLES
   ========================================================================== */

/* Breadcrumb Navigation */
.page-breadcrumbs {
  padding-top: 7.5rem;
  padding-bottom: 1.5rem;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumbs-list a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.breadcrumbs-list a:hover {
  color: var(--accent-emerald);
}

.breadcrumbs-separator {
  color: var(--border-strong);
  user-select: none;
}

.breadcrumbs-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Subpage Hero */
.subpage-hero {
  padding-top: 1rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 50% 0%, rgba(0, 191, 116, 0.04) 0%, transparent 70%);
}

.subpage-hero-inner {
  max-width: 900px;
}

.subpage-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-pure);
}

.subpage-lead {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.subpage-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.meta-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 4px;
}

/* Content Layout */
.content-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.content-section.alt-bg {
  background-color: var(--bg-graphite);
}

.editorial-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.editorial-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--text-pure);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.editorial-body h2:first-child {
  margin-top: 0;
}

.editorial-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.editorial-body p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.editorial-body ul, .editorial-body ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.editorial-body li {
  margin-bottom: 0.625rem;
  color: var(--text-secondary);
}

.editorial-body strong {
  color: var(--text-pure);
}

.editorial-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent-emerald);
  background: var(--bg-card);
  border-radius: 0 6px 6px 0;
}

.editorial-body blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-primary);
}

/* Card Grids */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.surface-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color var(--duration-normal) ease, transform var(--duration-normal) var(--ease-out);
}

.surface-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-emerald);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.surface-card h3 {
  font-size: 1.25rem;
  color: var(--text-pure);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.surface-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Comparison Tables */
.table-responsive {
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: 8px;
  border: 1px solid var(--border-medium);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
  background: var(--bg-card);
}

.spec-table th {
  background: var(--bg-graphite);
  color: var(--text-pure);
  font-weight: 600;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--border-medium);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spec-table td {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: top;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.spec-table td strong {
  color: var(--text-pure);
}

/* Callout Box */
.callout-emerald-box {
  background: linear-gradient(135deg, rgba(0, 191, 116, 0.06) 0%, rgba(21, 25, 29, 0.6) 100%);
  border: 1px solid rgba(0, 191, 116, 0.25);
  border-radius: 8px;
  padding: 2.25rem;
  margin: 3rem 0;
}

.callout-emerald-box h3 {
  color: var(--text-pure);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.callout-emerald-box p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* FAQ Accordion or List */
.faq-block {
  margin: 3rem 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-question {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 0.625rem;
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Subpage CTA Banner */
.subpage-cta-banner {
  background: var(--bg-graphite);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 5rem 0;
  text-align: center;
}

.subpage-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.subpage-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-pure);
  margin-bottom: 1rem;
}

.subpage-cta-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .grid-2-col, .grid-3-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

