/* Studio — section styles (loaded after index.html's <style>) */

/* ─── Marquee proof bar ───────────────────────────────────── */
.marquee { border-block: 1px solid var(--line); padding-block: 22px; overflow: hidden; background: var(--bg); }
.marquee-track { display: flex; gap: 64px; animation: scrollx 38s linear infinite; width: max-content; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: baseline; gap: 14px; white-space: nowrap; }
.marquee-item .n { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: -0.025em; color: var(--ink); }
.marquee-item .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.marquee-item .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; align-self: center; }

/* ─── Section primitives ──────────────────────────────────── */
section { position: relative; padding-block: clamp(80px, 12vh, 160px); }
.sect-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; padding-bottom: 64px; }
.sect-head .left { display: flex; flex-direction: column; gap: 20px; max-width: 22ch; }
.sect-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.sect-head h2 em { font-style: italic; font-weight: 300; }
.sect-head h2 .accent { color: var(--accent); }
.sect-head h2 .accent.dark-bg { color: var(--accent); background: var(--ink); padding: 0 0.15em; }
.sect-head .meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
.sect-head .meta * { white-space: nowrap; }

/* ─── Pillars / story section (horizontal) ────────────────── */
.pillars { background: var(--bg); border-bottom: 1px solid var(--line); }
.sect-head h2 .accent { color: var(--accent); background: var(--ink); padding: 0 0.12em; border-radius: 8px; font-style: italic; font-weight: 300; display: inline-block; line-height: 0.95; }
.sect-head h2 .dim { color: var(--muted); }

.pillars-head { align-items: flex-start; }
.pillars-head .left { max-width: none; flex: 1; }
.pillars-head h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.18em;
  row-gap: 0.1em;
  max-width: none;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
}
.pillars-head h2 .accent { line-height: 0.95; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin-top: 24px;
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar-col {
  background: var(--bg);
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 460px;
}
.pillar-col-head { display: flex; align-items: center; gap: 16px; }
.pillar-col-head .pillar-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pillar-col-head .pillar-rule { flex: 1; height: 1px; background: var(--line); }
.pillar-col-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--ink);
}
.pillar-col-title .accent {
  /* plain — no special chip treatment on column titles */
  color: inherit;
  background: none;
  padding: 0;
  border-radius: 0;
  font-style: normal;
  font-weight: inherit;
}
.pillar-col-body { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-2); flex: 1; max-width: 38ch; }
.pillar-col-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.pillar-stat .k { font-family: var(--font-display); font-weight: 300; font-size: 38px; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.pillar-stat .k em { font-style: italic; color: var(--accent); font-weight: 300; font-family: var(--font-display); font-size: 0.65em; vertical-align: 0.05em; margin-left: 2px; }
.pillar-stat .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ─── Services (huge rows) ────────────────────────────────── */
.services { background: var(--paper); }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 48px 16px;
  border-bottom: 1px solid var(--line-2);
  cursor: pointer;
  transition: padding-left var(--t-fast);
  text-decoration: none;
  color: var(--ink);
}
.svc-row:first-of-type { border-top: 1px solid var(--line-2); }
.svc-row:hover { padding-left: 32px; }
.svc-row .num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }
.svc-row .body { display: flex; flex-direction: column; gap: 14px; }
.svc-row h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px, 4.5vw, 72px); letter-spacing: -0.035em; margin: 0; line-height: 0.98; transition: all var(--t-fast); }
.svc-row .blurb { margin: 0; font-size: 17px; line-height: 1.45; color: var(--ink-2); max-width: 60ch; font-weight: 400; }
.svc-row .go { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.svc-row:hover h3 { font-style: italic; }
.svc-row:hover .go { color: var(--ink); }
.svc-row:hover .go .a { transform: translateX(4px); }
.svc-row .go .a { display: inline-block; transition: transform var(--t-fast); }

/* ─── Expertise grid ──────────────────────────────────────── */
.expertise { background: var(--bg); border-top: 1px solid var(--line); }
.ex-filter-row { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.ex-tag {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--ink-2);
  white-space: nowrap;
}
.ex-tag:hover { border-color: var(--ink); color: var(--ink); }
.ex-tag.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.ex-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
@media (max-width: 980px) { .ex-grid { grid-template-columns: repeat(2, 1fr); } }
.ex-card {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  cursor: pointer;
  transition: background var(--t-fast);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.ex-card:hover { background: var(--paper); }
.ex-card .top { display: flex; justify-content: space-between; align-items: center; }
.ex-card .num { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--muted); }
.ex-card .live { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.ex-card .live::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 8px var(--accent); }
.ex-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; line-height: 1.04; margin: 20px 0 12px; transition: font-style var(--t-fast); }
.ex-card:hover h3 { font-style: italic; }
.ex-card .blurb { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); flex: 1; }
.ex-card .footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 24px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); gap: 8px; }
.ex-card .footer span { white-space: nowrap; }
.ex-card .footer b { color: var(--ink); font-weight: 500; }
.ex-card .arr { color: var(--ink); transition: transform var(--t-fast); }
.ex-card:hover .arr { transform: translateX(4px); }

/* ─── Inline video reel block ─────────────────────────────── */
.reel { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-block: 80px; }
@media (max-width: 980px) { .reel { grid-template-columns: 1fr; } }
.reel.reverse { direction: rtl; }
.reel.reverse > * { direction: ltr; }
.reel-media {
  aspect-ratio: 16 / 10;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.reel-media video, .reel-media img { width: 100%; height: 100%; object-fit: cover; }
.reel-media .reel-tag { position: absolute; top: 20px; left: 20px; padding: 6px 12px; background: rgba(0,0,0,0.45); color: #fff; backdrop-filter: blur(8px); border-radius: 999px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.reel-copy h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; line-height: 1.02; margin: 18px 0 18px; max-width: 16ch; }
.reel-copy h3 em { font-style: italic; }
.reel-copy p { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 24px; max-width: 50ch; }

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--bg); border-top: 1px solid var(--line); }
.quote-stage {
  padding-block: 24px 32px;
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-areas:
    "mark quote"
    ".    attr";
  column-gap: 24px;
}
.quote-mark {
  grid-area: mark;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 96px;
  line-height: 0.85;
  color: var(--accent);
  font-style: italic;
  align-self: start;
  margin-top: -0.18em;
}
.quote-q {
  grid-area: quote;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  max-width: 26ch;
}
.quote-q em { font-style: italic; }
.quote-attr { grid-area: attr; display: flex; align-items: center; gap: 14px; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }
.quote-name { font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: -0.005em; }
.quote-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.qctrl { display: flex; align-items: center; gap: 10px; margin-top: 32px; }
.qctrl button { width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 50%; background: transparent; cursor: pointer; transition: all var(--t-fast); display: inline-flex; align-items: center; justify-content: center; }
.qctrl button:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.qctrl .ix { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-left: 8px; white-space: nowrap; }
.qctrl .dots { display: flex; gap: 6px; margin-left: auto; }
.qctrl .dot { width: 24px; height: 2px; background: var(--line-2); cursor: pointer; transition: background var(--t-fast); }
.qctrl .dot.on { background: var(--ink); }

/* ─── Jobs section ────────────────────────────────────────── */
.jobs { background: var(--paper); border-top: 1px solid var(--line); }
.jobs-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  border: 1px solid var(--ink);
  background: var(--bg);
  padding: 10px;
  border-radius: 999px;
  align-items: stretch;
}
@media (max-width: 880px) { .jobs-form { grid-template-columns: 1fr; border-radius: 18px; } }
.jobs-field { padding: 14px 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 label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.jobs-field input, .jobs-field select { background: transparent; border: 0; color: var(--ink); font: inherit; font-size: 16px; padding: 2px 0; outline: none; font-family: var(--font-display); }
.jobs-field input::placeholder { color: var(--muted); }
.jobs-go { padding: 0 32px; background: var(--accent); color: var(--accent-ink); border-radius: 999px; font-family: var(--font-display); font-size: 14px; font-weight: 500; cursor: pointer; border: 0; transition: all var(--t-fast); display: inline-flex; align-items: center; gap: 10px; justify-content: center; }
.jobs-go:hover { background: var(--ink); color: var(--bg); }
.jobs-results { margin-top: 32px; display: flex; flex-direction: column; }
.job-row { display: grid; grid-template-columns: auto 1fr auto auto auto; gap: 24px; padding: 24px 16px; border-bottom: 1px solid var(--line-2); align-items: center; cursor: pointer; transition: padding-left var(--t-fast); text-decoration: none; color: var(--ink); }
.job-row:hover { padding-left: 32px; background: var(--bg); }
.job-row .job-id { font-family: var(--font-mono); font-size: 11px; color: var(--muted); white-space: nowrap; }
.job-row .job-title { font-family: var(--font-display); font-weight: 500; font-size: 21px; letter-spacing: -0.015em; }
.job-row:hover .job-title { font-style: italic; }
.job-row .pill { font-family: var(--font-mono); font-size: 10.5px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--line-2); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.job-row .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.job-row .arr { color: var(--ink); }

/* ─── Resources ───────────────────────────────────────────── */
.resources { background: var(--bg); border-top: 1px solid var(--line); }
.res-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; }
@media (max-width: 980px) { .res-grid { grid-template-columns: 1fr; } }
.res-list { display: flex; flex-direction: column; }
.res-item { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); cursor: pointer; transition: padding-left var(--t-fast); text-decoration: none; color: var(--ink); }
.res-item:last-child { border-bottom: 1px solid var(--line); }
.res-item:hover { padding-left: 16px; }
.res-item h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: -0.015em; line-height: 1.2; margin: 8px 0 0; transition: font-style var(--t-fast); }
.res-item:hover h4 { font-style: italic; }
.res-item .meta { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.res-item .meta span { white-space: nowrap; }
.res-item .read { font-family: var(--font-mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.pod-card { padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--bg); display: flex; flex-direction: column; gap: 22px; }
.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: 400; font-size: 22px; line-height: 1.2; letter-spacing: -0.015em; }
.pod-row { display: flex; align-items: center; gap: 16px; }
.pod-play { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--bg); display: flex; align-items: center; justify-content: center; cursor: pointer; flex: none; transition: background var(--t-fast); border: 0; font-size: 13px; }
.pod-play:hover { background: var(--accent); color: var(--accent-ink); }
.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); }
.pod-wave i.on { background: var(--ink); }
.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: 14px; border-top: 1px solid var(--line); }
.pod-stat .n { font-family: var(--font-display); font-weight: 300; font-size: 36px; letter-spacing: -0.025em; line-height: 1; color: var(--ink); }
.pod-stat .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ─── Clients band ───────────────────────────────────────── */
.clients { padding-block: 64px; background: var(--bg); border-block: 1px solid var(--line); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client-cell { padding: 28px 18px; border-right: 1px solid var(--line); display: flex; align-items: center; justify-content: center; min-height: 96px; color: var(--ink); transition: all var(--t-fast); }
.client-cell:hover { background: var(--paper); }
.client-cell:last-child { border-right: 0; }

/* per-client wordmarks (shared with Signal / Broadcast) */
.wm { display: inline-flex; align-items: center; line-height: 1; font-feature-settings: "ss01"; color: var(--ink); }
.wm-providence  { font-family: 'Manrope', serif; font-size: 22px; letter-spacing: 0.01em; font-weight: 300; font-style: italic; }
.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: 4px; color: var(--accent-ink); background: var(--accent); padding: 2px 4px; border-radius: 4px; margin-right: 6px; }
.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; }

/* ─── CTA band ────────────────────────────────────────────── */
.cta {
  background: var(--ink);
  color: var(--bg);
  padding-block: clamp(100px, 14vh, 200px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: -20% 0 auto 50%;
  width: 90vw; height: 90vw;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, color-mix(in oklab, var(--accent) 22%, transparent), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 144px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}
.cta h2 em { font-style: italic; font-weight: 300; }
.cta h2 .accent { color: var(--accent); }
.cta p { max-width: 52ch; margin: 28px auto; font-size: 18px; line-height: 1.5; color: rgba(245,243,238,0.78); }
.cta .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn { border-color: rgba(245,243,238,0.5); color: var(--bg); }
.cta .btn:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.cta .btn-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.cta .btn-accent:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ─── Footer ──────────────────────────────────────────────── */
footer { padding-block: 64px 32px; background: var(--paper); border-top: 1px solid var(--line); }
.footgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
@media (max-width: 980px) { .footgrid { grid-template-columns: 1fr 1fr; } }
.footgrid h5 { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.footgrid a { display: block; padding: 5px 0; color: var(--ink-2); font-size: 14.5px; font-family: var(--font-display); }
.footgrid a:hover { color: var(--ink); font-style: italic; }
.footmeta { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.footmeta > * { white-space: nowrap; }
.footmeta a { color: var(--muted); }
.footmeta a:hover { color: var(--ink); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .pillar-row { grid-template-columns: 1fr; gap: 24px; }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-row .go { grid-column: 2; }
}

/* ─── Responsive: tablet & mobile breakpoints ───────────── */
@media (max-width: 1024px) {
  .pillars-head h2 { font-size: clamp(38px, 6vw, 84px); }
  .pillar-col { padding: 30px 28px 32px; min-height: 420px; }
  .pillar-col-title { font-size: clamp(32px, 4vw, 52px); }
}
@media (max-width: 768px) {
  .marquee-item .n { font-size: 24px; }
  .marquee-track { gap: 36px; }
  .sect-head { padding-bottom: 36px; }
  .sect-head h2 { font-size: clamp(36px, 7vw, 72px); }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-col { min-height: 0; padding: 28px 24px 32px; }
  .pillar-col-title { font-size: clamp(30px, 7vw, 44px); }
  .pillar-col-body { font-size: 15px; max-width: none; }
  .pillars-head h2 { font-size: clamp(40px, 9vw, 64px); }
  .reel { gap: 36px; padding-block: 48px; }
  .reel-copy h3 { font-size: clamp(26px, 6vw, 36px); }
  .ex-grid { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .ex-card { padding: 22px; min-height: 220px; }
  .ex-card h3 { font-size: 22px; }
  .quote-q { font-size: clamp(24px, 5vw, 38px); }
  .quote-stage { grid-template-columns: 60px 1fr; column-gap: 18px; }
  .quote-mark { font-size: 64px; }
  .jobs-form { grid-template-columns: 1fr; border-radius: 18px; }
  .jobs-field { border-right: 0; border-bottom: 1px solid var(--line); }
  .job-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 8px; }
  .job-row:hover { padding-left: 16px; }
  .job-row .job-title { font-size: 18px; }
  .res-grid { grid-template-columns: 1fr; gap: 36px; }
  .res-item h4 { font-size: 20px; }
  .pod-card { padding: 24px; }
  .cta { padding-block: clamp(60px, 10vh, 120px); }
  .cta h2 { font-size: clamp(40px, 11vw, 96px); }
  .footgrid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footmeta { font-size: 10px; gap: 10px; }
  .footmeta > * { white-space: normal; }
}
@media (max-width: 640px) {
  :root { --pad: 18px; }
  .topnav { padding-block: 12px; }
  .nav-pill { padding: 8px 14px; font-size: 11px; }
  .brand { font-size: 15px; }
  .sect-head h2 { font-size: clamp(32px, 9vw, 54px); }
  .pillars-head h2 { font-size: clamp(32px, 10vw, 52px); column-gap: 0.12em; }
  .pillar-col { padding: 24px 20px 28px; }
  .pillar-col-title { font-size: clamp(26px, 8vw, 36px); }
  .pillar-col-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pillar-stat .k { font-size: 30px; }
  .svc-row { grid-template-columns: 50px 1fr; gap: 20px; padding: 32px 4px; }
  .svc-row .go { grid-column: 2; font-size: 11px; }
  .svc-row h3 { font-size: clamp(24px, 7vw, 32px); }
  .ex-grid { grid-template-columns: 1fr; }
  .ex-card { min-height: 200px; }
  .ex-card h3 { font-size: 21px; margin: 16px 0 10px; }
  .quote-q { font-size: clamp(22px, 6vw, 30px); }
  .quote-stage { grid-template-columns: 48px 1fr; column-gap: 14px; }
  .quote-mark { font-size: 56px; }
  .qctrl button { width: 38px; height: 38px; }
  .pod-card { padding: 20px; }
  .pod-title { font-size: 18px; }
  .pod-stats .n { font-size: 28px; }
  .footgrid { grid-template-columns: 1fr; gap: 24px; }
  .footmeta { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cta h2 { font-size: clamp(34px, 12vw, 64px); }
  .cta p { font-size: 16px; }
  .res-item h4 { font-size: 18px; }
  .res-item { grid-template-columns: 1fr; }
  .ex-filter-row { gap: 6px; }
  .ex-tag { padding: 6px 12px; font-size: 12px; }
}

/* Hero role slider tightens on mobile */
@media (max-width: 640px) {
  .role-card { flex: 0 0 220px; padding: 16px 18px 14px; }
  .role-card .label { font-size: 18px; }
  .role-slider { gap: 12px; }
  .hero-corner-l, .hero-corner-r { display: none; }
}
@media (max-width: 480px) {
  .role-card { flex: 0 0 180px; }
  .role-card .label { font-size: 16px; }
}
