/* =========================================================
   compactica site — homepage + blog
   layered on the compactica design system tokens
   ========================================================= */

/* ---------- fonts (local) ---------- */
@font-face {
  font-family: "Baloo 2";
  src: url("fonts/Baloo2-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Baloo 2";
  src: url("fonts/Baloo2-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Baloo 2";
  src: url("fonts/Baloo2-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Carlito = open-source Calibri metric substitute */
@import url("https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400&display=swap");

/* ---------- tokens ---------- */
:root {
  --c-blue: #1e7fc0;
  --c-blue-bright: #5fb6f1;
  --c-blue-dark: #145a8c;
  --c-blue-tint: #eaf3fb;
  --c-white: #ffffff;
  --c-navy: #1f2f3a;
  --c-navy-soft: #2a3f4e;
  --c-grey: #e6e6e6;
  --c-grey-line: #d0d4d8;
  --c-grey-text: #5a6470;
  --c-black: #000000;
  --c-paper: #faf9f7;

  --fg-1: var(--c-black);
  --fg-2: var(--c-grey-text);

  --font-brand: "Baloo 2", "Quicksand", system-ui, sans-serif;
  --font-body:  Calibri, "Carlito", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;

  --shadow-1: 0 1px 2px rgba(31, 47, 58, 0.08);
  --shadow-2: 0 6px 20px rgba(31, 47, 58, 0.12);
  --shadow-3: 0 18px 48px rgba(31, 47, 58, 0.18);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--c-blue-dark); }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout shells ---------- */
.page { max-width: 1280px; margin: 0 auto; }
.gutter { padding-left: 56px; padding-right: 56px; }
.section { padding-top: 96px; padding-bottom: 96px; }
.section.tight { padding-top: 64px; padding-bottom: 64px; }
.section.dark { background: var(--c-navy); color: #fff; }
.section.tint { background: var(--c-blue-tint); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.on-dark .eyebrow,
.dark .eyebrow { color: var(--c-blue-bright); }
.display {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 84px;
  line-height: 1.0;
  letter-spacing: -0.005em;
  text-transform: lowercase;
  margin: 0;
}
.display.sm { font-size: 64px; }
.h1 {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: lowercase;
  margin: 0;
}
.h2 {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  text-transform: lowercase;
  margin: 0;
}
.h3 {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  text-transform: lowercase;
  margin: 0;
}
.h4 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  text-transform: lowercase;
  margin: 0;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
  text-wrap: pretty;
}
.body { font-size: 16px; line-height: 1.6; margin: 0; }
.muted { color: var(--fg-2); }
.bright { color: var(--c-blue-bright); }
/* abbreviations keep their source casing even inside lowercase headlines */
.abbr { text-transform: none; }
.dark .h1, .dark .h2, .dark .h3, .dark .h4, .dark .display { color: #fff; }
.dark .lead { color: rgba(255,255,255,0.78); }
.dark .muted { color: rgba(255,255,255,0.6); }
.dark .body { color: rgba(255,255,255,0.86); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-brand);
  font-weight: 500; font-size: 16px;
  text-transform: lowercase;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn.lg { font-size: 18px; padding: 14px 26px; }
.btn-primary { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }
.btn-primary:hover { background: var(--c-blue-dark); border-color: var(--c-blue-dark); color: #fff; text-decoration: none; }
.btn-on-dark { background: #fff; color: var(--c-navy); border-color: #fff; }
.btn-on-dark:hover { background: var(--c-blue-bright); border-color: var(--c-blue-bright); color: var(--c-navy); text-decoration: none; }
.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; text-decoration: none; }
.btn-secondary { background: transparent; color: var(--c-black); border: 1.5px solid var(--c-black); }
.btn-secondary:hover { background: #f4f5f6; color: var(--c-black); text-decoration: none; }
.btn .arrow { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--c-navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark img { width: 32px; height: 32px; }
.nav-mark .wm {
  font-family: var(--font-brand); font-weight: 500; font-size: 24px;
  text-transform: lowercase; color: #fff; line-height: 1;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--font-brand); font-weight: 500; font-size: 15px;
  text-transform: lowercase; color: rgba(255,255,255,0.85);
}
.nav-links a:hover { color: var(--c-blue-bright); }
.nav-links a.active { color: #fff; border-bottom: 2px solid var(--c-blue-bright); padding-bottom: 4px; margin-bottom: -6px; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* light variant for non-hero pages (blog) */
.nav.light { background: #fff; border-bottom: 1px solid var(--c-grey); }
.nav.light .nav-mark .wm { color: var(--c-black); }
.nav.light .nav-links a { color: var(--c-black); }
.nav.light .nav-links a:hover { color: var(--c-blue); }
.nav.light .nav-links a.active { color: var(--c-blue); border-bottom-color: var(--c-blue); }

/* ---------- hero (photo-led, full-bleed) ---------- */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-photo, .hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo img { z-index: 0; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,25,35,0.15) 0%, rgba(15,25,35,0.45) 45%, rgba(15,25,35,0.85) 100%);
  z-index: 1;
}
.hero .page { position: relative; z-index: 2; width: 100%; padding-top: 96px; padding-bottom: 64px; }
.hero .display { color: #fff; max-width: 880px; }
.hero .display .accent { color: var(--c-blue-bright); }
.hero .lead { color: rgba(255,255,255,0.86); margin-top: 22px; max-width: 560px; }
.hero .ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-tag {
  position: absolute; top: 24px; right: 56px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(15,25,35,0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--c-blue-bright);
  box-shadow: 0 0 0 4px rgba(95,182,241,0.22);
  animation: pulse-dot 1.8s var(--ease) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(95,182,241,0.22); }
  50%      { box-shadow: 0 0 0 7px rgba(95,182,241,0.10); }
}

/* ---------- trust strip ---------- */
.trust-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-grey);
}
.trust-strip-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-strip .caption {
  font-family: var(--font-brand); font-weight: 500; font-size: 14px;
  color: var(--fg-2); text-transform: lowercase; letter-spacing: 0.02em;
  flex: 0 0 auto;
}
.trust-logos {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.trust-logos .name {
  font-family: var(--font-brand); font-weight: 700; font-size: 19px;
  color: var(--c-navy);
  text-transform: uppercase; letter-spacing: 0.04em;
  opacity: 0.65;
  transition: opacity var(--dur-fast) var(--ease);
}
.trust-logos .name:hover { opacity: 1; }

/* ---------- two-surfaces (cab + office) ---------- */
.surfaces {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.surface {
  border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.surface-photo {
  aspect-ratio: 16/10; background: var(--c-black); overflow: hidden; position: relative;
}
.surface-photo img { width: 100%; height: 100%; object-fit: cover; }
.surface-photo.white { background: var(--c-grey); }
.surface-photo.white img { object-position: top center; }
.surface-body { padding: 26px 30px 30px; }
.surface-body .h3 { color: #fff; margin: 10px 0 12px; }
.surface-body .body { color: rgba(255,255,255,0.78); }
.surface-feat {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.surface-feat .feat-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.7);
}
.surface-feat .feat-item .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--c-blue-bright);
}

/* ---------- stat strip (on white) ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--c-grey);
  border-bottom: 1px solid var(--c-grey);
}
.stat { padding: 32px 36px; border-right: 1px solid var(--c-grey); }
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--font-brand); font-weight: 700; font-size: 48px;
  line-height: 1; color: var(--c-black);
}
.stat .num .unit { font-size: 22px; color: var(--fg-2); font-weight: 500; margin-left: 4px; }
.stat .lbl { font-size: 13px; color: var(--fg-2); margin-top: 10px; max-width: 220px; }

/* ---------- problem cards ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: #fff;
  border: 1px solid var(--c-grey-line);
  border-radius: 22px;
  padding: 28px 28px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.problem-card .badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--c-blue-tint); color: var(--c-blue-dark);
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.problem-card h3 { font-family: var(--font-brand); font-weight: 500; font-size: 26px; text-transform: lowercase; line-height: 1.1; margin: 0; }
.problem-card p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.problem-card .visual {
  margin-top: 4px;
  padding: 18px;
  border-radius: 14px;
  background: var(--c-blue-tint);
  font-family: var(--font-brand); font-weight: 500;
  color: var(--c-navy);
}

/* ---------- solution steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; position: relative; }
.step { display: flex; flex-direction: column; gap: 10px; }
.step .num {
  font-family: var(--font-brand); font-weight: 700; font-size: 14px;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}
.step h3 { font-family: var(--font-brand); font-weight: 500; font-size: 24px; text-transform: lowercase; line-height: 1.15; margin: 0; }
.step p { color: var(--fg-2); font-size: 15px; line-height: 1.55; margin: 0; }
.step .step-vis {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid var(--c-grey-line);
  background: var(--c-paper);
  padding: 18px;
  min-height: 140px;
  display: flex; flex-direction: column; gap: 10px;
}

/* asphalt-people callout */
.callout {
  margin-top: 56px;
  background: var(--c-blue-tint);
  border-radius: 22px;
  padding: 36px 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px;
  align-items: center;
}
.callout h3 { font-family: var(--font-brand); font-weight: 500; font-size: 26px; text-transform: lowercase; line-height: 1.15; margin: 0 0 8px; }
.callout p { color: var(--c-navy); font-size: 15px; line-height: 1.55; margin: 0; max-width: 720px; }
.callout .badge {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
  margin-bottom: 6px; display: inline-block;
}

/* ---------- proof / case studies ---------- */
.proof-feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  margin-bottom: 56px;
}
.proof-feature .photo {
  border-radius: 22px; overflow: hidden;
  aspect-ratio: 5/4;
  position: relative;
  background: var(--c-navy);
}
.proof-feature .photo img { width: 100%; height: 100%; object-fit: cover; }
.proof-feature .quote {
  font-family: var(--font-brand); font-weight: 500; font-size: 32px;
  line-height: 1.2; text-transform: lowercase; color: var(--c-black);
  margin: 0;
}
.proof-feature .quote::before { content: '"'; color: var(--c-blue); margin-right: 2px; }
.proof-feature .quote::after { content: '"'; color: var(--c-blue); margin-left: 2px; }
.proof-feature .who {
  margin-top: 24px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg-2);
}
.proof-feature .who strong { color: var(--c-black); font-weight: 700; }
.proof-feature .label {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
  margin-bottom: 16px;
}

.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-card {
  background: #fff;
  border: 1px solid var(--c-grey-line);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.case-card:hover { box-shadow: var(--shadow-2); }
.case-card .photo { aspect-ratio: 16/9; overflow: hidden; background: var(--c-grey); }
.case-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.case-card .body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card .meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-body); font-size: 12px; color: var(--fg-2);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.case-card h3 { font-family: var(--font-brand); font-weight: 500; font-size: 24px; text-transform: lowercase; margin: 0; line-height: 1.15; }
.case-card h3.perspective {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
  line-height: 1.3;
}
.case-card p { color: var(--fg-2); font-size: 15px; margin: 0; }
.case-card .more {
  margin-top: auto; padding-top: 6px;
  font-family: var(--font-brand); font-weight: 500; font-size: 15px;
  color: var(--c-blue); text-transform: lowercase;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- features list ---------- */
.features-block { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: flex-start; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 24px; }
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--c-grey);
}
.feature-item:nth-child(-n+2) { border-top: none; padding-top: 0; }
.feature-item .check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 999px; background: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.feature-item .check svg { width: 12px; height: 12px; color: #fff; }
.feature-item .label { font-family: var(--font-body); font-size: 15px; color: var(--c-black); line-height: 1.4; }
.feature-item .label strong { font-weight: 700; }

/* ---------- roadmap (sidebar) ---------- */
.roadmap-sidebar {
  background: var(--c-paper);
  border: 1px solid var(--c-grey-line);
  border-radius: 22px;
  padding: 28px 28px 28px;
}
.roadmap-sidebar .eyebrow { display: block; margin-bottom: 8px; }
.roadmap-sidebar .h3 { margin: 0 0 18px; }
.roadmap-list { display: flex; flex-direction: column; gap: 0; position: relative; }
.roadmap-list::before {
  content: ""; position: absolute;
  left: 9px; top: 12px; bottom: 12px;
  width: 2px; background: var(--c-grey);
}
.roadmap-item {
  display: grid; grid-template-columns: 22px 1fr; gap: 16px;
  padding: 12px 0;
  align-items: flex-start;
  position: relative;
}
.roadmap-item .marker {
  width: 20px; height: 20px;
  border-radius: 999px;
  border: 2px solid var(--c-grey);
  background: var(--c-paper);
  z-index: 1;
  margin-top: 2px;
}
.roadmap-item.now .marker {
  background: var(--c-blue); border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(30,127,192,0.18);
}
.roadmap-item .when {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
  margin-bottom: 4px;
}
.roadmap-item.now .when { color: var(--c-blue); }
.roadmap-item:not(.now) .when { color: var(--fg-2); }
.roadmap-item h4 { font-family: var(--font-brand); font-weight: 500; font-size: 18px; text-transform: lowercase; margin: 0 0 4px; line-height: 1.2; }
.roadmap-item p { font-size: 13px; color: var(--fg-2); margin: 0; line-height: 1.5; }
.roadmap-sidebar .full-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-family: var(--font-brand); font-weight: 500; font-size: 14px;
  color: var(--c-blue); text-transform: lowercase;
}

/* ---------- deployment ---------- */
.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.deploy-item h3 { font-family: var(--font-brand); font-weight: 500; font-size: 24px; text-transform: lowercase; margin: 0 0 10px; line-height: 1.15; }
.deploy-item .num {
  font-family: var(--font-brand); font-weight: 700; font-size: 13px;
  color: var(--c-blue); letter-spacing: 0.06em;
  text-transform: lowercase;
  margin-bottom: 12px; display: block;
}
.deploy-item p { color: var(--fg-2); font-size: 15px; margin: 0; line-height: 1.55; }
.deploy-item .meta {
  margin-top: 14px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.deploy-item .chip {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  color: var(--c-navy);
  background: var(--c-blue-tint);
  padding: 4px 10px; border-radius: 999px;
}

/* ---------- final CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--c-blue);
  color: #fff;
  padding: 64px 64px 64px;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-image: url("assets/photography/paving-aerial-mat.jpg");
  background-size: cover; background-position: center;
  opacity: 0.18;
  mix-blend-mode: lighten;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.cta-band .h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.9); margin-top: 16px; }
.cta-band .ctas { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot { background: var(--c-navy); color: #fff; padding: 72px 56px 36px; }
.foot-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.foot h4 {
  font-family: var(--font-brand); font-weight: 500;
  text-transform: lowercase; font-size: 14px;
  color: rgba(255,255,255,0.55); margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { font-family: var(--font-body); font-size: 14px; color: #fff; }
.foot a:hover { color: var(--c-blue-bright); }
.foot .brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot .brand img { width: 36px; height: 36px; }
.foot .brand span { font-family: var(--font-brand); font-weight: 500; text-transform: lowercase; font-size: 24px; }
.foot .copy { color: rgba(255,255,255,0.62); font-size: 13px; max-width: 320px; line-height: 1.6; }
.foot .legal {
  max-width: 1280px; margin: 56px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.55);
}

/* ============================================================
   BLOG STYLES
   ============================================================ */

.blog-header {
  padding-top: 80px; padding-bottom: 32px;
  border-bottom: 1px solid var(--c-grey);
}
.blog-header .display { font-size: 84px; }
.blog-header .lead { margin-top: 16px; max-width: 580px; }

.blog-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-grey);
}
.blog-filter {
  font-family: var(--font-brand); font-weight: 500; font-size: 14px;
  text-transform: lowercase;
  padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--c-grey-line);
  background: #fff;
  color: var(--c-black);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.blog-filter:hover { border-color: var(--c-blue); color: var(--c-blue); }
.blog-filter.active { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }

/* Featured post (latest) */
.featured {
  margin-top: 56px;
  border: 1px solid var(--c-grey-line);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 380px;
  transition: box-shadow var(--dur-base) var(--ease);
  background: #fff;
}
.featured:hover { box-shadow: var(--shadow-2); }
.featured .photo { position: relative; background: var(--c-grey); overflow: hidden; }
.featured .photo img { width: 100%; height: 100%; object-fit: cover; }
.featured .photo .tag {
  position: absolute; top: 20px; left: 20px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-navy);
}
.featured .body { padding: 36px 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.featured .body .label {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
}
.featured h2 {
  font-family: var(--font-brand); font-weight: 500; font-size: 38px;
  line-height: 1.1; text-transform: lowercase; margin: 0;
  color: var(--c-black);
  text-decoration: none;
}
.featured a:hover h2 { color: var(--c-blue-dark); }
.featured p { color: var(--fg-2); font-size: 16px; line-height: 1.55; margin: 0; }
.featured .meta {
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
  margin-top: 4px;
}
.featured .meta strong { color: var(--c-black); font-weight: 700; }

/* Recent posts grid */
.posts-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 72px 0 28px;
}
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px;
}
.post-card {
  display: flex; flex-direction: column; gap: 14px;
  background: transparent;
  text-decoration: none;
  color: inherit;
}
.post-card .photo {
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-grey);
  position: relative;
  transition: transform var(--dur-base) var(--ease);
}
.post-card:hover .photo { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.post-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.post-card:hover .photo img { transform: scale(1.03); }
.post-card .tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.92);
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-navy);
}
.post-card h3 {
  font-family: var(--font-brand); font-weight: 500; font-size: 22px;
  line-height: 1.18; text-transform: lowercase; margin: 0;
  color: var(--c-black);
}
.post-card:hover h3 { color: var(--c-blue-dark); }
.post-card .meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
}
.post-card .meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--c-grey-line); }
.post-card p { color: var(--fg-2); font-size: 14px; line-height: 1.5; margin: 0; }

/* category tag colors */
.tag.thought-piece { background: rgba(255,255,255,0.92); color: var(--c-navy); }
.tag.case-study { background: var(--c-blue); color: #fff; }
.tag.product-update { background: #22c55e; color: #fff; }
.tag.tech-deep-dive { background: #7c5cdb; color: #fff; }
.tag.webinar { background: #f59e0b; color: #fff; }

/* load more */
.load-more {
  text-align: center; margin: 56px 0 0;
}

/* subscribe band */
.subscribe-band {
  background: var(--c-blue-tint);
  border-radius: 22px;
  padding: 40px 48px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center;
  margin-top: 96px;
}
.subscribe-band .h3 { color: var(--c-navy); }
.subscribe-band p { color: var(--c-navy); margin: 6px 0 0; font-size: 15px; }
.subscribe-form { display: flex; gap: 8px; align-items: stretch; }
.subscribe-form input {
  flex: 1; padding: 12px 18px; border-radius: 14px;
  border: 1.5px solid var(--c-grey-line);
  font-family: var(--font-body); font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.subscribe-form input:focus { border-color: var(--c-blue); }

/* ============================================================
   BLOG POST (single)
   ============================================================ */

.post-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 56px 96px;
}
.post-shell .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-brand); font-weight: 500; font-size: 14px;
  color: var(--fg-2); text-transform: lowercase;
  margin-bottom: 28px;
}
.post-shell .back-link:hover { color: var(--c-blue); }
.post-cat {
  display: inline-flex;
  padding: 4px 12px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.post-cat.thought-piece { background: var(--c-blue-tint); color: var(--c-blue-dark); }
.post-cat.case-study { background: var(--c-blue); color: #fff; }
.post-cat.product-update { background: #dcf5e3; color: #15803d; }
.post-cat.tech-deep-dive { background: #ede8ff; color: #5b3fc0; }
.post-cat.webinar { background: #fef0d5; color: #b76a08; }

/* references / footnotes at the end of a post body */
.post-refs-head {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-2);
  margin: 6px 0 2px;
}
.post-body .post-refs { margin: 0; padding-left: 22px; }
.post-body .post-refs li { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin-bottom: 7px; }
.post-body .post-refs li em { color: var(--c-black); }

.post-title {
  font-family: var(--font-brand); font-weight: 500; font-size: 56px;
  line-height: 1.05; text-transform: lowercase;
  margin: 18px 0 16px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.post-dek {
  font-size: 21px; line-height: 1.5;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 60ch;
  text-wrap: pretty;
}
.post-byline {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--c-grey);
  border-bottom: 1px solid var(--c-grey);
  margin-bottom: 36px;
}
.post-byline .avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--c-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 16px;
}
.post-byline .who {
  font-family: var(--font-body); font-size: 14px;
}
.post-byline .who strong { font-family: var(--font-brand); font-weight: 500; font-size: 17px; color: var(--c-black); text-transform: lowercase; display: block; margin-bottom: 2px; }
.post-byline .who span { color: var(--fg-2); }
.post-byline .spacer { flex: 1; }
.post-byline .share { display: flex; gap: 6px; }
.post-byline .share a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--c-grey-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2);
  font-size: 14px;
}
.post-byline .share a:hover { background: var(--c-blue-tint); color: var(--c-blue); border-color: var(--c-blue); }

.post-cover {
  width: 100%;
  aspect-ratio: 2.1/1;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 48px;
  background: var(--c-grey);
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-cover-cap {
  font-size: 13px; color: var(--fg-2);
  text-align: center;
  margin-top: -32px; margin-bottom: 48px;
}

/* post body — typography */
.post-body { font-size: 18px; line-height: 1.7; color: var(--c-black); }
.post-body > * + * { margin-top: 1em; }
.post-body p { margin: 0; max-width: 64ch; }
.post-body h2 {
  font-family: var(--font-brand); font-weight: 500; font-size: 32px;
  line-height: 1.15; text-transform: lowercase;
  margin: 56px 0 16px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.post-body h3 {
  font-family: var(--font-brand); font-weight: 500; font-size: 24px;
  line-height: 1.2; text-transform: lowercase;
  margin: 40px 0 12px;
}
.post-body a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.post-body strong { font-weight: 700; color: var(--c-black); }
.post-body em { font-style: italic; }
.post-body blockquote {
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--c-blue);
  font-family: var(--font-brand); font-weight: 500;
  font-size: 26px; line-height: 1.3;
  text-transform: lowercase;
  color: var(--c-navy);
  font-style: normal;
}
.post-body blockquote p { max-width: none; }
.post-body blockquote cite {
  display: block; font-style: normal;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; color: var(--fg-2);
  margin-top: 10px;
  text-transform: none;
}
.post-body ul, .post-body ol { padding-left: 24px; margin: 0; }
.post-body li { margin-bottom: 8px; }
.post-body figure { margin: 40px 0; }
.post-body figure img { width: 100%; border-radius: 14px; border: 1px solid var(--c-grey-line); }
.post-body figcaption { font-size: 13px; color: var(--fg-2); text-align: center; margin-top: 10px; }
.post-body hr { border: none; border-top: 1px solid var(--c-grey); margin: 56px 0; }

.post-body .callout-box {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--c-blue-tint);
  border-radius: 14px;
  border-left: 3px solid var(--c-blue);
}
.post-body .callout-box .label {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
  display: block; margin-bottom: 10px;
}
.post-body .callout-box h4 {
  font-family: var(--font-brand); font-weight: 500; font-size: 22px;
  text-transform: lowercase; line-height: 1.2;
  margin: 0 0 10px;
  color: var(--c-navy);
}
.post-body .callout-box p { margin: 0; color: var(--c-navy); font-size: 16px; }

/* post author footer */
.post-author-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--c-grey-line);
  border-radius: 22px;
  margin: 64px 0 0;
  background: var(--c-paper);
}
.post-author-card .avatar {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--c-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 22px;
}
.post-author-card .info strong {
  font-family: var(--font-brand); font-weight: 500; font-size: 19px;
  text-transform: lowercase; color: var(--c-black);
  display: block; margin-bottom: 4px;
}
.post-author-card .info span { font-size: 14px; color: var(--fg-2); }

/* related posts */
.related-section {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 56px 96px;
  border-top: 1px solid var(--c-grey);
}
.related-section .label-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* post-bottom CTA */
.post-cta {
  background: var(--c-blue-tint);
  padding: 48px 56px;
  text-align: center;
}
.post-cta .h3 { margin: 0 0 8px; }
.post-cta p { color: var(--fg-2); margin: 0 0 20px; font-size: 16px; }

/* ============================================================
   BRANDED PHOTO OVERLAYS — toggleable via body[data-overlay]
   ============================================================ */
.branded-photo { position: relative; isolation: isolate; }
.branded-photo > img {
  transition: filter 320ms var(--ease);
}

/* ───── "is-mark" — subtle watermark + bottom fade (case studies / archival) ───── */
.branded-photo.is-mark::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    url("assets/compactica-mark.png") no-repeat right 14px bottom 14px / 28px 28px,
    linear-gradient(180deg, transparent 65%, rgba(31,47,58,0.4) 100%);
  z-index: 2;
}

/* ───── "is-tagged" — live-data pill + mark + navy fade (live surfaces) ───── */
.branded-photo.is-tagged::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    url("assets/compactica-mark.png") no-repeat right 14px bottom 14px / 28px 28px,
    linear-gradient(180deg, transparent 45%, rgba(31,47,58,0.65) 100%);
  z-index: 2;
}
.branded-photo.is-tagged::after {
  content: '● live · ' attr(data-loc);
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #fff;
  padding: 5px 11px;
  background: rgba(15,25,35,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}

/* ---------- helpers ---------- */
.center-narrow { max-width: 720px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 24px; } .mt-6 { margin-top: 32px; } .mt-7 { margin-top: 48px; } .mt-8 { margin-top: 64px; }
.mb-7 { margin-bottom: 48px; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-head h2 { margin: 0 0 18px; }
.section-head .lead { margin-left: auto; margin-right: auto; }
.section-head.left .lead { margin-left: 0; margin-right: 0; }

/* ============================================================
   v2 HOMEPAGE — emotion → logic → fear restructure
   (layered on the same compactica tokens / components)
   ============================================================ */

/* ---------- hero (split: emotion copy + shift card) ---------- */
.hero-v2 {
  position: relative;
  background: var(--c-navy);
  color: #fff;
  overflow: hidden;
}
.hero-v2 .hero-bg, .hero-v2 .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-v2 .hero-bg img { z-index: 0; }
.hero-v2 .hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,18,26,0.65) 0%, rgba(11,18,26,0.18) 36%, rgba(11,18,26,0.28) 100%),
    linear-gradient(95deg, rgba(11,18,26,0.97) 0%, rgba(11,18,26,0.95) 46%, rgba(11,18,26,0.78) 66%, rgba(11,18,26,0.40) 100%);
}
.hero-v2 .page { position: relative; z-index: 2; padding-top: 88px; padding-bottom: 92px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.hero-copy { max-width: 640px; }
.hero-copy .display { color: #fff; text-shadow: 0 2px 18px rgba(11,18,26,0.55), 0 1px 3px rgba(11,18,26,0.45); }
.hero-copy .lead { text-shadow: 0 1px 12px rgba(11,18,26,0.65), 0 1px 2px rgba(11,18,26,0.5); }

/* tweakable accent (defaults to brand bright blue) */
.hero-v2 { --hero-accent: var(--c-blue-bright); }
.hero-v2 .hero-copy .display .accent { color: var(--hero-accent); }

/* overlay strength variants (lighter = default for the hero) */
.hero-v2[data-overlay="lighter"] .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(11,18,26,0.42) 0%, rgba(11,18,26,0.04) 34%, rgba(11,18,26,0.08) 100%),
    linear-gradient(95deg, rgba(11,18,26,0.86) 0%, rgba(11,18,26,0.66) 42%, rgba(11,18,26,0.36) 66%, rgba(11,18,26,0.08) 100%);
}
.hero-v2[data-overlay="darker"] .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(11,18,26,0.78) 0%, rgba(11,18,26,0.30) 34%, rgba(11,18,26,0.32) 100%),
    linear-gradient(95deg, rgba(11,18,26,0.99) 0%, rgba(11,18,26,0.98) 50%, rgba(11,18,26,0.88) 72%, rgba(11,18,26,0.58) 100%);
}
.hero-copy .lead { color: rgba(255,255,255,0.84); margin-top: 22px; max-width: 46ch; }
.hero-copy .ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-copy .ctas .reassure {
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.6);
}

/* ---------- "yesterday's shifts" dashboard card ---------- */
.shift-card {
  background: #fff; color: var(--c-black);
  border-radius: 20px; box-shadow: var(--shadow-3);
  overflow: hidden;
}
.shift-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--c-grey);
}
.shift-card-head .title {
  font-family: var(--font-brand); font-weight: 700; font-size: 18px; text-transform: lowercase;
}
.shift-card-head .when {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--fg-2);
}
.shift-card-head .when .dot {
  width: 7px; height: 7px; border-radius: 999px; background: #22c55e;
}
.shift-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  padding: 16px 24px; border-bottom: 1px solid var(--c-grey);
}
.shift-row:last-child { border-bottom: none; }
.grade {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 800; font-size: 21px; color: #fff;
}
.grade.a { background: #22c55e; }
.grade.b { background: var(--c-blue); }
.grade.c { background: #f59e0b; }
.shift-meta .crew { font-family: var(--font-brand); font-weight: 700; font-size: 15px; text-transform: lowercase; line-height: 1.2; }
.shift-meta .why { font-size: 13px; color: var(--fg-2); margin-top: 3px; line-height: 1.35; }
.shift-amt { text-align: right; white-space: nowrap; }
.shift-amt .v { font-family: var(--font-brand); font-weight: 700; font-size: 16px; }
.shift-amt.pos .v { color: #15803d; }
.shift-amt .t { font-size: 11px; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.06em; }
.shift-amt.pending .v { color: var(--c-blue-dark); font-size: 14px; }
.shift-card-foot {
  padding: 14px 24px; background: var(--c-paper);
  font-family: var(--font-body); font-size: 13px; color: var(--fg-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.shift-card-foot strong { color: var(--c-black); font-weight: 700; }

/* ---------- logic: 4 value cards (2x2) ---------- */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.value-card {
  background: #fff; border: 1px solid var(--c-grey-line); border-radius: 22px;
  padding: 32px 32px 34px; display: flex; flex-direction: column; gap: 12px;
}
.value-card .vk {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-blue);
}
.value-card .vk .n {
  font-family: var(--font-brand); font-weight: 800; font-size: 13px; color: var(--c-blue-dark);
}
.value-card h3 {
  font-family: var(--font-brand); font-weight: 500; font-size: 24px;
  text-transform: lowercase; line-height: 1.18; margin: 0;
}
.value-card p { font-size: 15px; color: var(--fg-2); line-height: 1.6; margin: 0; }

/* ---------- logic: use cases (term + description rows) ---------- */
.usecase-list { max-width: 980px; margin: 0 auto; }
.usecase-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: baseline;
  padding: 26px 0; border-top: 1px solid var(--c-grey);
}
.usecase-item:first-child { border-top: none; padding-top: 0; }
.usecase-item .uterm {
  font-family: var(--font-brand); font-weight: 500; font-size: 22px;
  text-transform: lowercase; color: var(--c-black); line-height: 1.18;
}
.usecase-item p { font-size: 16px; color: var(--fg-2); line-height: 1.6; margin: 0; }
.usecase-item p strong { color: var(--c-black); font-weight: 700; }

/* ---------- fear: density playbook lead magnet ---------- */
.playbook { background: var(--c-navy); color: #fff; }
.playbook-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 60px; align-items: center; }
.playbook h2 { color: #fff; max-width: 18ch; }
.playbook .body { color: rgba(255,255,255,0.82); margin-top: 20px; font-size: 17px; line-height: 1.65; max-width: 58ch; }
.playbook .offer {
  margin-top: 22px; font-family: var(--font-brand); font-weight: 500; font-size: 18px;
  color: #fff; text-transform: lowercase; max-width: 50ch; line-height: 1.4;
}
.playbook .offer .bright { color: var(--c-blue-bright); }
.playbook-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px; padding: 28px;
}
.pb-cover {
  aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
  background: linear-gradient(150deg, var(--c-blue-dark) 0%, var(--c-navy) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.pb-cover .pb-kick {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-blue-bright);
}
.pb-cover .pb-title {
  font-family: var(--font-brand); font-weight: 700; font-size: 27px;
  text-transform: lowercase; line-height: 1.08; color: #fff;
}
.pb-cover .pb-mark { display: flex; align-items: center; gap: 8px; }
.pb-cover .pb-mark img { width: 22px; height: 22px; }
.pb-cover .pb-mark span { font-family: var(--font-brand); font-weight: 500; font-size: 15px; text-transform: lowercase; color: rgba(255,255,255,0.85); }
.playbook-form { display: flex; gap: 8px; margin-top: 22px; }
.playbook-form input {
  flex: 1; min-width: 0; padding: 13px 16px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.07);
  color: #fff; font-family: var(--font-body); font-size: 15px; outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.playbook-form input::placeholder { color: rgba(255,255,255,0.5); }
.playbook-form input:focus { border-color: var(--c-blue-bright); }
.playbook .fine {
  margin-top: 14px; font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.55); line-height: 1.5;
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: 1fr; }
  .usecase-item { grid-template-columns: 1fr; gap: 8px; }
  .playbook-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-hero { background: var(--c-navy); color: #fff; }
.team-hero .page { padding-top: 84px; padding-bottom: 72px; }
.team-hero .eyebrow { color: var(--c-blue-bright); }
.team-hero h1 { color: #fff; max-width: 16ch; }
.team-hero .lead { color: rgba(255,255,255,0.82); margin-top: 20px; max-width: 60ch; }

/* roster grid (portrait + name + role + linkedin) */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.member {
  display: flex; flex-direction: column;
}
.member .portrait {
  aspect-ratio: 1 / 1; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--c-grey-line);
  margin-bottom: 18px;
  box-shadow: var(--shadow-2);
}
.member .portrait img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
}
.member .name {
  font-family: var(--font-brand); font-weight: 500; font-size: 26px;
  text-transform: lowercase; line-height: 1.1; margin: 0;
  display: inline-flex; align-items: center; gap: 8px; color: var(--c-black);
}
.member .name a { color: inherit; display: inline-flex; align-items: center; gap: 8px; }
.member .name a:hover { color: var(--c-blue-dark); }
.member .name .li {
  width: 18px; height: 18px; flex: 0 0 auto; color: var(--c-blue);
  opacity: 0.65; transition: opacity var(--dur-fast) var(--ease);
}
.member .name a:hover .li { opacity: 1; }
.member .role {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--c-blue);
  margin: 8px 0 0;
}
.member .bio { font-size: 14.5px; color: var(--fg-2); line-height: 1.6; margin: 12px 0 0; }
.member .bio + .bio { margin-top: 10px; }
.member .bio .k {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-navy);
  display: block; margin-bottom: 2px;
}

/* leadership note band */
.team-cta { background: var(--c-paper); border-top: 1px solid var(--c-grey); }
.team-cta .inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.team-cta h2 { max-width: 18ch; }
.team-cta p { color: var(--fg-2); font-size: 16px; margin: 12px 0 0; max-width: 52ch; line-height: 1.6; }

@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 620px) {
  .team-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   MOBILE / RESPONSIVE (added 2026-06-10)
   ============================================================ */
.nav-toggle { display: none; }
.nav-burger { display: none; }

@media (max-width: 820px) {
  .gutter { padding-left: 22px; padding-right: 22px; }

  /* ---- collapsible mobile nav ---- */
  .nav-inner { flex-wrap: wrap; height: auto; min-height: 72px; row-gap: 0; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; margin-left: auto; padding: 10px;
    cursor: pointer; background: none; border: 0;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px; border-radius: 2px; background: #fff;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav.light .nav-burger span { background: var(--c-black); }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle:checked ~ .nav-links,
  .nav-toggle:checked ~ .nav-cta { display: flex; }

  .nav-links {
    flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 10px;
  }
  .nav-links a {
    padding: 13px 2px; font-size: 17px; width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.light .nav-links a { border-bottom-color: var(--c-grey); }
  .nav-links a.active { border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--c-blue-bright); margin-bottom: 0; padding-bottom: 13px; }
  .nav.light .nav-links a.active { color: var(--c-blue); }
  .nav-cta { flex-basis: 100%; padding: 6px 0 14px; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* burger -> X when open */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---- collapse multi-column content layouts to one column ---- */
  .surfaces, .problem-grid, .steps, .callout, .proof-feature, .case-grid,
  .features-block, .features-list, .deploy-grid, .cta-band-inner, .foot-grid,
  .featured, .subscribe-band, .posts-grid, .related-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }

  .proof-feature, .features-block, .cta-band-inner, .featured, .subscribe-band { gap: 28px; }
  .foot-grid { gap: 32px; }
  .featured { min-height: 0; }

  /* full-width primary actions */
  .ctas { flex-direction: column; align-items: stretch; }
  .ctas .btn { width: 100%; justify-content: center; }

  /* stack the playbook email form so the button isn't clipped */
  .playbook-form { flex-direction: column; }
  .playbook-form input,
  .playbook-form .btn { width: 100%; }
  .playbook-form .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .gutter { padding-left: 18px; padding-right: 18px; }
}
