/* Clarity — section styles (loaded after index.html's <style> block).
   Apple-true alternating light/dark sections. Generous vertical rhythm. */

/* ─── Section primitives ─────────────────────────────────── */
section { position: relative; }
section.s-light { background: var(--bg);      color: var(--ink); }
section.s-soft  { background: var(--bg-soft); color: var(--ink); }
section.s-paper { background: var(--paper);   color: var(--ink); }
section.s-dark  { background: var(--dark);    color: var(--dark-ink); }

.sect-pad { padding-block: clamp(96px, 14vh, 180px); }
.sect-pad-tight { padding-block: clamp(64px, 10vh, 120px); }

/* Section heading rhythm — Apple's giant centered title pattern */
.sect-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: clamp(48px, 6vh, 80px);
}
.sect-head .eyebrow { justify-content: center; margin-bottom: 12px; }
.sect-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  color: inherit;
  text-wrap: balance;
}
.sect-head h2 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em; line-height: 0.92;
}
.sect-head .sub {
  margin: 18px auto 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink-2);
  letter-spacing: -0.012em;
  max-width: 56ch;
}
section.s-dark .sect-head .sub { color: rgba(245,245,247,0.78); }

/* Asymmetric "two-up" head — also used in a few places */
.sect-head-asym {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: clamp(40px, 5vh, 64px);
}
.sect-head-asym .left h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.034em;
  margin: 12px 0 0;
}
.sect-head-asym .left h2 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.sect-head-asym .right {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.012em;
  max-width: 44ch;
}
@media (max-width: 880px) {
  .sect-head-asym { grid-template-columns: 1fr; gap: 16px; }
  .sect-head-asym .right { font-size: 17px; }
}

/* ─── Proof marquee — Apple-quiet stats row ──────────────── */
.proof {
  border-block: 1px solid var(--line);
  background: var(--bg);
  padding-block: 28px;
  overflow: hidden;
}
.proof-track {
  display: flex;
  gap: 56px;
  animation: scrollx 44s linear infinite;
  width: max-content;
}
@keyframes scrollx { to { transform: translateX(-50%); } }
.proof-item { display: inline-flex; align-items: baseline; gap: 12px; white-space: nowrap; }
.proof-item .n {
  font-family: var(--font-display); font-weight: 500;
  font-size: 26px; letter-spacing: -0.022em; color: var(--ink);
}
.proof-item .l {
  font-family: var(--font-display); font-size: 14px; font-weight: 400;
  color: var(--muted); letter-spacing: -0.005em;
}
.proof-item .sep { color: var(--line-2); margin-inline: 8px; }

/* ─── Two-up intro (Apple "Designed for X" pattern) ─────── */
.intro {
  text-align: center;
  padding-block: clamp(120px, 18vh, 200px);
}
.intro .eyebrow { justify-content: center; }
.intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 16px auto 0;
  max-width: 18ch;
  text-wrap: balance;
}
.intro h2 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.intro h2 .quiet { color: var(--muted); }
.intro p {
  font-family: var(--font-display);
  margin: 28px auto 0;
  max-width: 56ch;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.012em;
  text-wrap: pretty;
}
.intro .ctas { margin-top: 36px; display: inline-flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ─── Scroll-pinned product-reveal section (signature) ───── */
.reveal {
  background: var(--dark);
  color: var(--dark-ink);
  position: relative;
}
.reveal-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.reveal-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  z-index: 0;
}
.reveal-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.reveal-stop {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-inline: var(--pad);
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  pointer-events: none;
}
.reveal-stop.is-on { opacity: 1; transform: translateY(0); }
.reveal-stop .stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(92px, 14vw, 220px);
  letter-spacing: -0.05em;
  line-height: 0.94;
  color: #fff;
  margin: 0;
}
.reveal-stop .stat em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 0.82em;
  color: #6f93ff;
}
.reveal-stop .stat .unit {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.5em;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  margin-left: 6px;
}
.reveal-stop .phrase {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 26px auto 0;
  line-height: 1.25;
  color: rgba(245,245,247,0.94);
  text-wrap: balance;
}
.reveal-stop .phrase em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.reveal-progress {
  position: absolute; left: 50%; bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 8px;
}
.reveal-progress span {
  display: block;
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  transition: background var(--t-fast);
}
.reveal-progress span.on { background: #fff; }

/* The scroll-pin spacer determines how long the reveal "lasts" — 3 stops × 1vh each */
.reveal-spacer { height: 0; }

/* ─── Services — Apple bento tiles ──────────────────────── */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }
.svc-tile {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  padding: 40px 36px 36px;
  overflow: hidden;
  min-height: 460px;
  display: flex; flex-direction: column;
  transition: transform var(--t-med);
}
.svc-tile:hover { transform: translateY(-4px); }
.svc-tile .num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.svc-tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 28px 0 16px;
  color: var(--ink);
  max-width: 14ch;
}
.svc-tile h3 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.svc-tile .body {
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.008em;
  max-width: 38ch;
  flex: 1;
}
.svc-tile .foot {
  margin-top: 28px;
}

/* ─── Pillars — three columns on a soft paper ──────────── */
.pillars { background: var(--paper); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar-col {
  background: var(--bg);
  border-radius: 22px;
  padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 440px;
}
.pillar-col .num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.pillar-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.pillar-col h3 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.pillar-col .body {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  letter-spacing: -0.008em;
  flex: 1;
  max-width: 36ch;
}
.pillar-col .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.pillar-col .stat .k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.028em;
  color: var(--ink);
  line-height: 1;
}
.pillar-col .stat .k em {
  font-family: var(--font-display);
  font-style: normal; font-weight: 500;
  font-size: 0.6em; color: var(--accent);
  margin-left: 2px;
  vertical-align: 0.05em;
}
.pillar-col .stat .l {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: -0.005em;
}

/* ─── Expertise — Apple filter pills + tile grid ───────── */
.expertise { background: var(--bg); }
.ex-filter {
  display: flex; gap: 8px;
  justify-content: center;
  padding-bottom: 36px;
  flex-wrap: wrap;
}
.ex-tag {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 980px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.ex-tag:hover { border-color: var(--ink); color: var(--ink); }
.ex-tag.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.ex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .ex-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ex-grid { grid-template-columns: 1fr; } }

.ex-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  min-height: 260px;
  transition: transform var(--t-med);
  color: inherit;
}
.ex-card:hover { transform: translateY(-3px); }
.ex-card .row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.ex-card .row .group {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.ex-card .row .live {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 6px;
}
.ex-card .row .live::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.ex-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.ex-card .blurb {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  flex: 1;
}
.ex-card .foot {
  margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.ex-card .foot b { color: var(--ink); font-weight: 500; }
.ex-card .foot .arr { color: var(--accent); font-size: 18px; transition: transform var(--t-fast); }
.ex-card:hover .foot .arr { transform: translateX(4px); }

/* ─── Case-study reel (Apple full-bleed media moment) ──── */
.case {
  background: var(--dark);
  color: var(--dark-ink);
}
.case-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .case-inner { grid-template-columns: 1fr; gap: 32px; } }
.case-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--dark-2);
}
.case-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-media .tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 980px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.case-copy .eyebrow { color: #6f93ff; }
.case-copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 16px 0 22px;
  color: #fff;
  text-wrap: balance;
}
.case-copy h3 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.case-copy p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: rgba(245,245,247,0.82);
  letter-spacing: -0.012em;
  max-width: 50ch;
  margin: 0 0 28px;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 28px;
}
.case-stats .k {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.case-stats .l {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(245,245,247,0.6);
  margin-top: 6px;
  letter-spacing: -0.005em;
}

/* ─── Testimonials — Apple single-quote stage ──────────── */
.testimonials { background: var(--bg); }
.tm-stage {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.tm-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.85;
  color: var(--accent);
  margin-bottom: -0.2em;
}
.tm-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.tm-quote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}
.tm-attr {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 14px;
}
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.tm-who {
  text-align: left;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.tm-who .role {
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.tm-ctrl {
  margin-top: 40px;
  display: flex; gap: 10px;
  justify-content: center;
  align-items: center;
}
.tm-ctrl button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.tm-ctrl button:hover { background: var(--paper-2); }
.tm-ctrl .dots {
  display: flex; gap: 6px; margin-left: 14px;
}
.tm-ctrl .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-2);
  cursor: pointer;
  transition: background var(--t-fast);
}
.tm-ctrl .dot.on { background: var(--accent); }

/* ─── Clients band — Apple "Trusted by" quiet ────────── */
.clients { background: var(--bg-soft); border-block: 1px solid var(--line); padding-block: 80px; }
.clients h4 {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-cell {
  padding: 28px 10px;
  display: flex; align-items: center; justify-content: center;
  min-height: 96px;
  color: var(--ink);
  transition: background var(--t-fast);
  border-right: 1px solid var(--line);
}
.client-cell:last-child { border-right: 0; }
.client-cell:hover { background: var(--bg); }
/* shrink wordmarks slightly so all 9 fit comfortably on one desktop row */
.clients-grid .wm { transform: scale(0.85); transform-origin: center; }

/* responsive ladder — keep column count and border-right resets in sync */
@media (max-width: 1180px) {
  .clients-grid { grid-template-columns: repeat(5, 1fr); }
  .client-cell:nth-child(5n) { border-right: 0; }
  .clients-grid .wm { transform: scale(0.95); }
}
@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .client-cell:nth-child(5n) { border-right: 1px solid var(--line); }
  .client-cell:nth-child(3n) { border-right: 0; }
  .clients-grid .wm { transform: none; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .client-cell:nth-child(2n) { border-right: 0; }
}

/* Wordmarks (shared family of treatments) */
.wm { display: inline-flex; align-items: center; line-height: 1; font-feature-settings: "ss01"; color: var(--ink); }
.wm-providence  { font-family: var(--font-serif); font-style: italic; font-size: 24px; font-weight: 400; letter-spacing: 0.005em; }
.wm-providence::before { content: '+'; color: #9b1c1c; margin-right: 6px; font-weight: 500; font-family: var(--font-display); font-size: 22px; font-style: normal; }
.wm-mossadams   { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase; }
.wm-mossadams::after { content: ''; display: inline-block; width: 6px; height: 6px; background: currentColor; border-radius: 50%; margin-left: 4px; }
.wm-appen       { font-family: var(--font-display); font-size: 20px; font-weight: 300; letter-spacing: -0.02em; }
.wm-appen i     { color: #1e4ed8; font-style: normal; }
.wm-remitly     { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.025em; font-style: italic; color: #2a4f78; }
.wm-whitepages  { font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
.wm-whitepages b{ font-weight: 700; color: #1f6b3a; }
.wm-madrona     { font-family: var(--font-display); font-size: 21px; font-weight: 300; letter-spacing: 0.01em; font-style: italic; }
.wm-madrona::before { content: '/\\'; font-family: var(--font-mono); font-style: normal; font-size: 12px; margin-right: 8px; color: var(--muted); letter-spacing: -0.1em; }
.wm-realself    { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; text-transform: lowercase; color: #d94464; }
.wm-realself b  { color: var(--ink); font-weight: 700; }
.wm-knowlabs    { font-family: var(--font-mono); font-size: 14px; font-weight: 500; letter-spacing: 0.04em; text-transform: lowercase; }
.wm-knowlabs::before { content: '\003e_'; margin-right: 6px; color: #fff; background: var(--accent); padding: 2px 4px; border-radius: 4px; }
.wm-pacagen     { font-family: var(--font-display); font-size: 19px; font-weight: 400; letter-spacing: -0.01em; }
.wm-pacagen i   { font-style: normal; font-weight: 700; color: #1f6b3a; }

/* ─── Jobs preview ─────────────────────────────────────── */
.jobs { background: var(--bg); }
.jobs-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  background: var(--paper);
  border-radius: 980px;
  padding: 8px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto 36px;
}
@media (max-width: 880px) {
  .jobs-form { grid-template-columns: 1fr; border-radius: 20px; padding: 12px; }
}
.jobs-field {
  padding: 12px 22px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.jobs-field:last-of-type { border-right: 0; }
@media (max-width: 880px) {
  .jobs-field { border-right: 0; border-bottom: 1px solid var(--line); }
}
.jobs-field span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.003em;
}
.jobs-field input, .jobs-field select {
  background: transparent; border: 0; outline: 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  padding: 2px 0;
  letter-spacing: -0.008em;
}
.jobs-field input::placeholder { color: var(--muted-2); }
.jobs-go {
  padding: 0 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 980px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 0;
  letter-spacing: -0.005em;
  transition: background var(--t-fast);
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.jobs-go:hover { background: var(--accent-2); }

.jobs-list {
  display: flex; flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.job-row {
  display: grid;
  grid-template-columns: 90px 1fr auto auto auto;
  gap: 24px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding-left var(--t-fast);
  color: var(--ink);
}
.job-row:hover { padding-left: 28px; background: var(--bg-soft); }
.job-row .job-id {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.003em;
  font-weight: 500;
}
.job-row .job-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.022em;
  line-height: 1.2;
}
.job-row .job-sub {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: -0.005em;
}
.job-row .meta {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.job-row .pill {
  font-family: var(--font-display);
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 980px;
  color: var(--ink-2);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.003em;
}
.job-row .arr { color: var(--accent); font-size: 18px; }
@media (max-width: 880px) {
  .job-row { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .job-row .meta, .job-row .pill { font-size: 12px; }
}

.jobs-foot {
  text-align: center;
  margin-top: 36px;
}

/* ─── Resources + Podcast ──────────────────────────────── */
.resources { background: var(--bg-soft); }
.res-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
@media (max-width: 980px) { .res-grid { grid-template-columns: 1fr; gap: 36px; } }
.res-list { display: flex; flex-direction: column; }
.res-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left var(--t-fast);
  color: inherit;
}
.res-item:last-child { border-bottom: 1px solid var(--line); }
.res-item:hover { padding-left: 18px; }
.res-item .meta {
  display: flex; gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.003em;
  font-weight: 500;
}
.res-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin: 8px 0 0;
  color: var(--ink);
}
.res-item .read {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: -0.005em;
  align-self: center;
}

.pod-card {
  background: var(--bg);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
}
.pod-card .lbl {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.003em;
}
.pod-cover {
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.pod-cover video, .pod-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pod-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.pod-title em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.pod-row { display: flex; align-items: center; gap: 14px; }
.pod-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex: none;
  font-size: 13px;
  transition: background var(--t-fast);
  border: 0;
}
.pod-play:hover { background: var(--accent-2); }
.pod-wave {
  flex: 1;
  height: 28px;
  display: flex; align-items: center; gap: 2px;
}
.pod-wave i {
  background: var(--line-2);
  flex: 1; display: block;
  transition: background var(--t-fast);
  border-radius: 2px;
}
.pod-wave i.on { background: var(--accent); }
.pod-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.pod-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pod-stats .n {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink);
}
.pod-stats .l {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: -0.005em;
}

/* ─── CTA band ─────────────────────────────────────────── */
.cta {
  background: var(--dark);
  color: var(--dark-ink);
  text-align: center;
  padding-block: clamp(120px, 18vh, 200px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -30% 0 auto 50%;
  width: 90vw; height: 90vw;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(30,58,138,0.30), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 124px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}
.cta h2 em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  font-size: 1.08em;
}
.cta h2 .quiet { color: rgba(245,245,247,0.5); }
.cta p {
  max-width: 56ch;
  margin: 28px auto 0;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: rgba(245,245,247,0.78);
  letter-spacing: -0.012em;
}
.cta .btns {
  margin-top: 40px;
  display: inline-flex; gap: 22px;
  justify-content: center; flex-wrap: wrap;
  align-items: center;
}

/* ─── Footer ──────────────────────────────────────────── */
footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding-block: 64px 32px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.foot-brand .brand-mark { width: 18px; height: 18px; }
.foot-addr {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 16px;
  letter-spacing: -0.005em;
}
.foot-addr a { color: var(--accent); }
.foot-social {
  display: flex; gap: 14px; margin-top: 18px;
}
.foot-social a {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.foot-social a:hover { color: var(--accent); }
.foot-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 14px;
  letter-spacing: -0.003em;
}
.foot-col a {
  display: block;
  padding: 5px 0;
  color: var(--ink-2);
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}
.foot-col a:hover { color: var(--ink); }
.foot-meta {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.003em;
  flex-wrap: wrap; gap: 12px;
}

/* ─── Mobile passes ──────────────────────────────────── */
@media (max-width: 768px) {
  .sect-pad { padding-block: clamp(64px, 10vh, 100px); }
  .sect-head { padding-bottom: 32px; }
  .sect-head h2 { font-size: clamp(32px, 7vw, 48px); }
  .intro h2 { font-size: clamp(36px, 9vw, 56px); }
  .intro p { font-size: 17px; }
  .reveal-stop .stat { font-size: clamp(72px, 22vw, 140px); }
  .reveal-stop .phrase { font-size: 18px; }
  .svc-tile { padding: 32px 26px 28px; min-height: 360px; }
  .pillar-col { padding: 32px 26px 26px; min-height: 0; }
  .pillar-col .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pillar-col .stat .k { font-size: 26px; }
  .ex-card { padding: 24px 22px 22px; min-height: 220px; }
  .ex-card h3 { font-size: 20px; }
  .tm-quote { font-size: clamp(22px, 5vw, 32px); }
  .case-stats { gap: 20px; }
  .case-stats .k { font-size: 28px; }
  .cta h2 { font-size: clamp(40px, 10vw, 72px); }
  .cta p { font-size: 16px; }
  .res-item h4 { font-size: 18px; }
}
@media (max-width: 640px) {
  .reveal-stop .stat { font-size: clamp(64px, 24vw, 110px); }
  .foot-meta { flex-direction: column; align-items: flex-start; }
}
