/* ===== Building Pixels Staffing — Premium Modest Site ===== */
:root {
  /* Base */
  --bg: #FBFAF7;
  --paper: #FFFFFF;
  --bg-2: #F4F2EC;
  --ink: #1A2230;
  --ink-2: #3A4253;
  --ink-3: #6B7280;
  --ink-4: #9CA3AF;
  --line: #E6E2D8;
  --line-2: #D6D1C2;

  /* Brand */
  --blue: #3268B1;
  --blue-soft: #ECF1F8;
  --blue-deep: #244C84;
  --green: #31A954;
  --green-soft: #ECF7EF;
  --yellow: #FABB12;
  --yellow-soft: #FEF4DA;
  --red: #EA4436;
  --red-soft: #FCEAE8;

  --shadow-sm: 0 1px 2px rgba(26,34,48,0.04), 0 1px 1px rgba(26,34,48,0.03);
  --shadow-md: 0 6px 18px -6px rgba(26,34,48,0.10), 0 2px 4px -1px rgba(26,34,48,0.05);
  --shadow-lg: 0 18px 40px -14px rgba(26,34,48,0.15), 0 6px 14px -6px rgba(26,34,48,0.08);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --max: 1240px;
  --gutter: 32px;

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Geist", "Inter", -apple-system, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- Typography (modest scale) ----- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  /* width: 22px; */
  width: 0px;
  height: 1px;
  /* background: var(--ink-3); */
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 5.5vw, 80px); letter-spacing: -0.025em; line-height: 1.02; }
h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.06; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; }
h4 { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.25; font-weight: 600; }

/* Serif italic accent — used sparingly */
.serif-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 60ch;
}
p { text-wrap: pretty; color: var(--ink-2); }

/* ----- Layout ----- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }
.section { padding: clamp(64px, 7vw, 112px) 0; }
.section-tight { padding: clamp(40px, 5vw, 72px) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head .left { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.003em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.btn .arrow { display: inline-flex; transition: transform 0.22s cubic-bezier(.5,.0,.2,1); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--yellow); color: var(--ink); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ----- Nav ----- */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 8px 8px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  min-width: 98vw;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding-right: 8px;
  color: var(--ink);
}
.nav-logo .mark-img {
  width: 26px;
  height: auto;
}
.nav-logo .wm-line {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.nav-logo .wm-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
  margin-top: 3px;
}
.nav-logo .wm { display: flex; flex-direction: column; gap: 0; }
.nav-links {
  display: flex;
  gap: 2px;
}
.nav-links a {
  position: relative;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(26,34,48,0.05); }
.nav-links a.active { color: var(--blue); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-deep); }
.nav-mobile-toggle { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: transparent;
  }
  .nav-cta { display: none; }
}

/* ----- Mobile Menu (full-screen) ----- */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 70;
  display: flex;
  flex-direction: column;
  animation: menuIn 240ms cubic-bezier(.2,.7,.2,1);
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile-menu .mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-menu .mm-close {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-menu .mm-links {
  flex: 1;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}
.nav-mobile-menu .mm-links a {
  padding: 18px 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.018em;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.nav-mobile-menu .mm-links a .n {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.nav-mobile-menu .mm-links a.active { color: var(--blue); }
.nav-mobile-menu .mm-foot {
  padding: 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mobile-menu .mm-foot .cta {
  background: var(--blue);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.nav-mobile-menu .mm-foot .contact-line {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
}
.nav-mobile-menu .mm-foot .contact-line strong { color: var(--ink); font-weight: 500; }

/* ----- Page Heading (inner pages) ----- */
.page-heading {
  padding: 156px 0 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-heading .ph-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-heading .ph-text { display: flex; flex-direction: column; gap: 8px; }
.page-heading h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.page-heading .ph-lead-wrap { padding-bottom: 6px; }
.page-heading .ph-lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0;
  text-wrap: pretty;
}
.page-heading.center .ph-grid { grid-template-columns: 1fr; text-align: center; }
.page-heading.center .ph-lead { margin: 0 auto; }
@media (max-width: 800px) {
  .page-heading { padding: 116px 0 44px; }
  .page-heading .ph-grid { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

/* ----- CTA Band ----- */
.cta-band {
  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
}
.cta-band.dark { background: var(--ink); color: #fff; }
.cta-band.dark .eyebrow { color: rgba(255,255,255,0.6); }
/* .cta-band.dark .eyebrow::before { background: rgba(255,255,255,0.4); } */
.cta-band.dark h2 { color: #fff; }
.cta-band.dark .lead { color: rgba(255,255,255,0.72); }

.cta-band.paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.cta-band-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.cta-band-grid h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
}
@media (max-width: 900px) {
  .cta-band-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band-actions { justify-self: start; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 140px 0 56px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.hero-headline {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.hero-headline .line { display: block; }
.hero-headline .serif-em { color: var(--blue); }
.hero-lead {
  max-width: 50ch;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 28px 0 0;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-meta .badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-meta strong { color: var(--ink); font-weight: 600; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  max-width: 460px;
  justify-self: end;
  width: 100%;
}
.hero-visual .photo {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 14px),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--ink) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: rgba(255,255,255,0.7);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.hero-visual .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-visual .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,34,48,0.08) 0%, rgba(26,34,48,0.28) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual .photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 14px;
  z-index: 2;
}
.hero-visual .ph-label { position: relative; z-index: 3; }

.hero-visual .float-card {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
}
.hero-visual .float-card .label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-visual .float-card.tl { top: 20px; left: 20px; }
.hero-visual .float-card.br { bottom: 20px; right: 20px; }
.hero-visual .float-card .v {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}
.hero-visual .float-card .v small { font-size: 14px; color: var(--blue); margin-left: 2px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 100%; aspect-ratio: 5/4; justify-self: stretch; }
}

.stats {
  background: var(--blue-deep);
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-top: none;
  border-bottom: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat:last-child { border-right: none; }
.stat:not(:first-child) { padding-left: 12px; }
.stat-num {
  font-family: var(--sans);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yellow);
  font-weight: 500;
  display: inline-block;
}
.stat-num .unit { font-size: 0.4em; margin-left: 2px; font-weight: 400; }
.stat-num .accent-bar { display: none; }
.stat:nth-child(1) .accent-bar { background: var(--green); }
.stat:nth-child(2) .accent-bar { background: var(--yellow); }
.stat:nth-child(3) .accent-bar { background: var(--blue); }
.stat:nth-child(4) .accent-bar { background: var(--red); }
.stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  line-height: 1.3;
  max-width: none;
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat { padding: 20px 16px; border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ----- Story ----- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.story-text h2 { margin-bottom: 20px; }
.story-text .lead { margin-bottom: 20px; }
.story-text p { font-size: 16px; line-height: 1.6; margin: 0 0 14px; color: var(--ink-2); }
.story-text .signature {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.story-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.placeholder-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(26,34,48,0.04) 0, rgba(26,34,48,0.04) 1px, transparent 1px, transparent 14px),
    var(--bg-2);
  color: var(--ink-3);
}
.placeholder-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed var(--line-2);
  border-radius: 12px;
}
.placeholder-photo .ph-label { position: relative; z-index: 2; }

.placeholder-photo.blue {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 14px),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--ink) 100%);
  color: rgba(255,255,255,0.65);
}
.placeholder-photo.blue::before { border-color: rgba(255,255,255,0.18); }

.placeholder-photo.yellow {
  background:
    repeating-linear-gradient(135deg, rgba(26,34,48,0.05) 0, rgba(26,34,48,0.05) 1px, transparent 1px, transparent 14px),
    var(--yellow-soft);
  color: var(--ink-2);
}
.placeholder-photo.green {
  background:
    repeating-linear-gradient(135deg, rgba(26,34,48,0.05) 0, rgba(26,34,48,0.05) 1px, transparent 1px, transparent 14px),
    var(--green-soft);
  color: var(--ink-2);
}

.story-portrait .portrait-badge {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: #fff80;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.story-portrait .portrait-badge .name { font-weight: 600; font-size: 14px; }
.story-portrait .portrait-badge .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  
.story-portrait .portrait-badge {
  position: absolute;
  bottom: 20px;
  left: 25px;
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.story-portrait .portrait-badge .name { font-weight: 600; font-size: 14px; }
.story-portrait .portrait-badge .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
}

/* ----- Pillars ----- */
.pillars { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
  position: relative;
}
.pillar:hover { background: var(--bg); }
.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.pillar .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pillar:nth-child(1) .icon { background: var(--green-soft); color: var(--green); }
.pillar:nth-child(2) .icon { background: var(--yellow-soft); color: #B6840B; }
.pillar:nth-child(3) .icon { background: var(--blue-soft); color: var(--blue); }
.pillar:nth-child(4) .icon { background: var(--red-soft); color: var(--red); }
.pillar h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.pillar p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ----- Industries ----- */
.industries-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ind-tab {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  font-size: 13.5px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease;
}
.ind-tab .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-4);
}
.ind-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.ind-tab:nth-child(1).active .dot { background: var(--green); }
.ind-tab:nth-child(2).active .dot { background: var(--red); }
.ind-tab:nth-child(3).active .dot { background: var(--blue); }
.ind-tab:nth-child(4).active .dot { background: var(--yellow); }
.ind-tab:hover:not(.active) { background: var(--bg-2); border-color: var(--ink-3); }

.industry-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 380px;
}
.industry-card h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 14px; font-weight: 500; }
.industry-card p { font-size: 16px; line-height: 1.6; max-width: 50ch; margin: 0 0 20px; }
.industry-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.industry-stats .ind-stat { display: flex; flex-direction: column; gap: 4px; }
.industry-stats .ind-stat .v {
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.industry-stats .ind-stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 800px) { .industry-card { grid-template-columns: 1fr; min-height: 0; } }

/* ----- Services ----- */
.services { background: var(--ink); color: #fff; }
.services .eyebrow { color: rgba(255,255,255,0.6); }
.services .eyebrow::before { background: rgba(255,255,255,0.4); }
.services h2 { color: #fff; }
.services .lead { color: rgba(255,255,255,0.72); }

.service-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.3fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: start;
  transition: background 0.3s ease, padding 0.3s ease;
}
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.service-row:hover { padding-left: 14px; padding-right: 14px; background: rgba(255,255,255,0.02); }
.service-row .num {
  font-family: var(--sans);
  font-size: 44px;
  line-height: 1;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.service-row .num .acc {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  margin-top: 14px;
}
.service-row:nth-child(1) .num .acc { background: var(--green); }
.service-row:nth-child(2) .num .acc { background: var(--yellow); }
.service-row:nth-child(3) .num .acc { background: var(--blue); }
.service-row:nth-child(4) .num .acc { background: var(--red); }

.service-row h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.018em;
}
.service-row .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: block;
}
.service-row p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.6; margin: 0 0 18px; }
.service-row .roles { display: flex; flex-wrap: wrap; gap: 6px; }
.service-row .roles .chip {
  padding: 6px 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.service-row .roles .chip:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.service-row .checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-row .checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}
.service-row:nth-child(2) .checks li svg { color: var(--yellow); }
.service-row:nth-child(3) .checks li svg { color: var(--blue); }
.service-row:nth-child(4) .checks li svg { color: var(--red); }
.service-row .checks li svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
@media (max-width: 800px) {
  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .service-row:hover { padding-left: 0; padding-right: 0; }
}

/* ----- Process ----- */
.process { background: var(--bg); padding: clamp(64px, 7vw, 104px) 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.process-step {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.process-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.process-step .step-num {
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.process-step:nth-child(1) .step-num .dot-c { background: var(--green); }
.process-step:nth-child(2) .step-num .dot-c { background: var(--yellow); }
.process-step:nth-child(3) .step-num .dot-c { background: var(--blue); }
.process-step .step-num .dot-c {
  width: 10px; height: 10px; border-radius: 50%;
}
.process-step h4 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.process-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.process-step .duration {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ensure body text grows to fill available space so durations align */
.process-step p { flex: 1 1 auto; }
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr; } }

/* ----- Talent Directory ----- */
.talent { background: var(--paper); border-top: 1px solid var(--line); }
.talent-cats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.talent-cat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.talent-cat:hover { border-color: var(--ink-3); }
.talent-cat.open { background: var(--paper); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.talent-cat-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  padding: 20px 24px;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.talent-cat-head .cat-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.talent-cat-head .cat-name {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.012em;
}
.talent-cat-head .cat-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.talent-cat-head .cat-toggle {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.2s;
}
.talent-cat.open .cat-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.talent-cat .swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.talent-cat .cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 24px 24px;
}
.talent-role {
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.talent-role:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.talent-role .level {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 3px 6px;
  background: var(--paper);
  border-radius: 4px;
}
.talent-role:hover .level { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.1); }
@media (max-width: 800px) {
  .talent-cat .cat-grid { grid-template-columns: 1fr; }
  .talent-cat-head { padding: 16px 18px; grid-template-columns: auto 1fr auto; }
  .talent-cat-head .cat-count { display: none; }
}

/* ----- Testimonials ----- */
.testimonials { padding: clamp(64px, 7vw, 112px) 0; }
.tm-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}
.tm-track::-webkit-scrollbar { height: 6px; }
.tm-track::-webkit-scrollbar-track { background: var(--line); border-radius: 3px; }
.tm-track::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 3px; }

.tm-card {
  flex: 0 0 440px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: box-shadow 0.2s;
}
.tm-card:hover { box-shadow: var(--shadow-md); }
.tm-card .quote-mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.7;
  height: 28px;
  overflow: visible;
}
.tm-card:nth-child(4n+1) .quote-mark { color: var(--green); }
.tm-card:nth-child(4n+2) .quote-mark { color: var(--yellow); }
.tm-card:nth-child(4n+3) .quote-mark { color: var(--blue); }
.tm-card:nth-child(4n+4) .quote-mark { color: var(--red); }
.tm-card .tm-text {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}
.tm-card .tm-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.tm-card .tm-meta .name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.tm-card .tm-meta .role { font-size: 12.5px; color: var(--ink-3); }
.tm-card .tm-meta .ind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.tm-card:nth-child(4n+1) .tm-meta .ind { color: var(--green); background: var(--green-soft); }
.tm-card:nth-child(4n+2) .tm-meta .ind { color: #B6840B; background: var(--yellow-soft); }
.tm-card:nth-child(4n+3) .tm-meta .ind { color: var(--blue); background: var(--blue-soft); }
.tm-card:nth-child(4n+4) .tm-meta .ind { color: var(--red); background: var(--red-soft); }

.tm-controls { display: flex; gap: 8px; margin-top: 20px; }
.tm-controls button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
}
.tm-controls button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 600px) { .tm-card { flex-basis: 84vw; padding: 22px; } }

/* Highlight patterns */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.highlight-card {
  padding: 24px 22px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlight-card .pin {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.highlight-card:nth-child(1) .pin { background: var(--green-soft); color: var(--green); }
.highlight-card:nth-child(2) .pin { background: var(--yellow-soft); color: #B6840B; }
.highlight-card:nth-child(3) .pin { background: var(--blue-soft); color: var(--blue); }
.highlight-card:nth-child(4) .pin { background: var(--red-soft); color: var(--red); }
.highlight-card h4 {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.highlight-card p { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .highlights-grid { grid-template-columns: 1fr; } }

/* ----- FAQ ----- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.faq-grid.single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item { background: transparent; border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  width: 100%;
  text-align: left;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.faq-q .toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.faq-item.open .toggle { background: var(--blue); color: #fff; border-color: var(--blue); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.5,0,.2,1), padding 0.3s;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 0 22px; }
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }

/* ----- Contact ----- */
.contact { background: var(--ink); color: #fff; padding: clamp(64px, 8vw, 120px) 0; }
.contact .eyebrow { color: rgba(255,255,255,0.6); }
/* .contact .eyebrow::before { background: rgba(255,255,255,0.4); } */
.contact h2 { color: #fff; }
.contact .lead { color: rgba(255,255,255,0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 88px);
  margin-top: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info .info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: center;
}
.contact-info .info-row .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-info .info-row .value { color: #fff; font-size: 14.5px; }
.contact-info .info-row .value a:hover { color: var(--yellow); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: span 2; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  justify-content: space-between;
}
.field label .req { color: var(--yellow); }
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--yellow); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink); color: #fff; }
.field textarea {
  min-height: 84px;
  resize: vertical;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 12px 14px;
}
.field .err {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 12px;
}
.contact-form .submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.contact-form .submit-row .promise { font-size: 12px; color: rgba(255,255,255,0.6); }
.contact-form .submit-btn {
  background: var(--yellow);
  color: var(--ink);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.18s;
}
.contact-form .submit-btn:hover { background: #fff; }
.contact-form .submit-btn .arrow { transition: transform 0.22s; }
.contact-form .submit-btn:hover .arrow { transform: translateX(3px); }

.success { text-align: center; padding: 32px 8px; }
.success .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.success h3 { color: #fff; margin-bottom: 8px; font-weight: 500; }
.success p { color: rgba(255,255,255,0.7); max-width: 38ch; margin: 0 auto; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
}

/* ----- Brands strip ----- */
.brands-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.brands-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--gutter);
  margin-bottom: 18px;
}
.brands-track {
  display: flex;
  gap: 48px;
  animation: scrollLogos 36s linear infinite;
  width: max-content;
  align-items: center;
}
.brands-strip:hover .brands-track { animation-play-state: paused; }
.brands-track .brand {
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  white-space: nowrap;
  font-weight: 500;
}
.brands-track .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line-2);
  flex-shrink: 0;
}
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Footer ----- */
.footer {
  background: var(--paper);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid li a { color: var(--ink-2); font-size: 14px; }
.footer-grid li a:hover { color: var(--blue); }
.footer-brand .logo-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.footer-brand .logo-row img { width: 48px; height: auto; }
.footer-brand .word { font-size: 22px; font-weight: 600; letter-spacing: -0.018em; line-height: 1.2; }
.footer-brand .word .sub {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
}
.footer-brand p { max-width: 36ch; font-size: 14px; color: var(--ink-3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-bottom .stripe {
  display: inline-flex;
  gap: 0;
}
.footer-bottom .stripe span {
  width: 18px; height: 4px;
}
.footer-bottom .stripe span:nth-child(1) { background: var(--green); }
.footer-bottom .stripe span:nth-child(2) { background: var(--yellow); }
.footer-bottom .stripe span:nth-child(3) { background: var(--blue); }
.footer-bottom .stripe span:nth-child(4) { background: var(--red); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ----- Reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }
