:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #f2f2f2;
  --text: #171717;
  --muted: #5f5f5f;
  --faint: #8f8f8f;
  --line: #e6e6e6;
  --line-strong: #d8d8d8;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --page: 1180px;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(calc(100% - 32px), var(--page));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand, .top-nav, .header-action { display: flex; align-items: center; }

.brand { gap: 10px; font-weight: 650; letter-spacing: -0.02em; }

.brand-mark {
  width: 30px;
  height: 28px;
  display: block;
  color: var(--text);
  object-fit: contain;
}

.top-nav { gap: 22px; color: var(--muted); font-size: 14px; }
.top-nav a:hover, .header-action:hover { color: var(--text); }

.header-action {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  background: var(--surface);
}

.page-shell {
  width: min(calc(100% - 32px), var(--page));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-copy, .hero-panel { padding: clamp(28px, 5vw, 56px); }
.hero-panel { border-left: 1px solid var(--line); background: linear-gradient(180deg, #fff, #f7f7f7); }

.eyebrow, .panel-label {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3, p { margin-top: 0; }

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(38px, 7.4vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-text, .hero-panel p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.64;
}

.hero-panel p {
  color: #191919;
}

.blog-toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-top: 32px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(16px);
}

.category-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; }
.category-tabs button {
  flex: 0 0 auto;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font: 500 14px/1 var(--sans);
  cursor: pointer;
}
.category-tabs button.active, .category-tabs button:hover { color: var(--text); background: var(--surface); border-color: var(--line); }

.search-box { min-width: 260px; display: grid; gap: 6px; color: var(--muted); font-size: 12px; }
.search-box input {
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--surface);
  font: 14px var(--sans);
  outline: none;
}
.search-box input:focus { border-color: var(--text); box-shadow: 0 0 0 4px rgba(0,0,0,.08); }

.section-block { margin-top: 34px; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding: 0 0 16px;
}
.section-heading h2 { margin: 0; font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.05em; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.article-card {
  min-height: 300px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.article-card a:hover { background: var(--surface); box-shadow: var(--shadow); transform: translateY(-1px); }

.article-card-large { grid-column: span 1; }
.article-card-large h3 { font-size: clamp(28px, 4vw, 42px); line-height: 1; }

.card-label, .post-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.article-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.article-card p { color: #3f3f3f; font-size: 14px; line-height: 1.42; }

.author-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
.avatar {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
}
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }

.empty-state { grid-column: 1/-1; padding: 32px; color: var(--muted); }

.cta-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,247,247,.96)),
    var(--surface);
  padding: clamp(28px, 5vw, 48px);
}
.cta-grid h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: -0.065em;
  line-height: .98;
}
.cta-copy {
  align-self: end;
  display: grid;
  gap: 22px;
}
.cta-grid p {
  max-width: 560px;
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.62;
}
.cta-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  border-top: 1px solid var(--line);
}
.cta-grid li {
  position: relative;
  padding: 13px 0 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.cta-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text);
}
code { font-family: var(--mono); font-size: .92em; background: var(--surface-soft); padding: 2px 5px; border-radius: 5px; }

.site-footer {
  width: min(calc(100% - 32px), var(--page));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  max-width: 520px;
  display: grid;
  gap: 10px;
}
.footer-brand span:first-child { color: var(--text); font-weight: 500; }
.footer-brand span:last-child { line-height: 1.55; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
}
.footer-links a:hover { color: var(--text); }

.landing-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(0,0,0,.07), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(0,0,0,.05), transparent 24%),
    var(--bg);
}
.landing-shell { padding-top: 34px; }
.landing-header .header-action { background: var(--text); color: white; border-color: var(--text); }
.landing-header .header-action:hover { background: #303030; color: white; }

.wp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(245,245,245,.96)),
    var(--surface);
}
.wp-hero-copy { padding: clamp(32px, 6vw, 72px); }
.wp-hero-copy h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(44px, 8.2vw, 92px);
  line-height: .9;
  letter-spacing: -0.075em;
}
.wp-hero-premium {
  position: relative;
  box-shadow: 0 26px 70px rgba(0,0,0,.08);
}
.wp-hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(0,0,0,.08), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  opacity: .65;
}
.wp-hero-premium > * { position: relative; z-index: 1; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 28px; }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.primary-button { background: var(--text); color: white; border: 1px solid var(--text); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.secondary-button { background: var(--surface); color: var(--text); border: 1px solid var(--line-strong); }
.primary-button:hover, .secondary-button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.microcopy { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.audit-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: clamp(28px, 5vw, 46px);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(23,23,23,.92), rgba(23,23,23,.98)),
    var(--text);
  color: white;
}
.audit-card .panel-label { color: rgba(255,255,255,.64); }
.diagnostic-card h2 {
  margin: 0 0 24px;
  color: white;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -.06em;
}
.check-list, .steps-list, .price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255,255,255,.86);
  line-height: 1.4;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-weight: 800;
}
.stats-strip, .proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--surface);
}
.stats-strip div, .proof-strip div {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 22px;
  border-left: 1px solid var(--line);
}
.stats-strip strong, .proof-strip strong { font-size: 18px; letter-spacing: -.03em; }
.stats-strip span, .proof-strip span { color: var(--muted); font-size: 14px; line-height: 1.45; }
.proof-strip { background: #171717; color: white; border-color: #171717; }
.proof-strip div { border-left-color: rgba(255,255,255,.14); }
.proof-strip span { color: rgba(255,255,255,.66); }
.landing-heading { display: block; max-width: 780px; }
.service-grid, .pricing-grid, .faq-grid, .problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card, .price-card, .faq-grid article, .problem-grid article {
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.problem-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.problem-grid h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.05; letter-spacing: -.045em; }
.problem-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-card span, .price-label {
  display: block;
  margin-bottom: 30px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-card h3, .price-card h3, .faq-grid h3 { margin-bottom: 12px; font-size: 21px; line-height: 1.06; letter-spacing: -.04em; }
.service-card p, .faq-grid p, .split-section p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-grid-premium .service-card { min-height: 250px; transition: background .18s ease, box-shadow .18s ease, transform .18s ease; }
.service-grid-premium .service-card:hover { background: var(--surface); box-shadow: var(--shadow); transform: translateY(-1px); }
.split-section {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: var(--surface);
}
.split-section h2 { font-size: clamp(30px, 5vw, 56px); line-height: .98; letter-spacing: -.065em; }
.steps-list { counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  position: relative;
  display: grid;
  gap: 6px;
  padding: 0 0 22px 46px;
  border-bottom: 1px solid var(--line);
}
.steps-list li:not(:first-child) { padding-top: 22px; }
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
}
.steps-list li:not(:first-child)::before { top: 22px; }
.steps-list span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.audit-section { background: linear-gradient(135deg, #fff, #f5f5f5); }
.audit-list li { min-height: 82px; }
.industries-section {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: #171717;
  color: white;
}
.industries-section .eyebrow { color: rgba(255,255,255,.58); }
.industries-section h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.065em;
}
.industry-tags {
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.84);
  font-size: 14px;
}
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card { background: var(--surface); }
.price-card.highlighted { background: #171717; color: white; box-shadow: var(--shadow); }
.price-card.highlighted .price-label, .price-card.highlighted li { color: rgba(255,255,255,.72); }
.price { margin: 0 0 24px; font-size: 28px; line-height: 1; letter-spacing: -.05em; font-weight: 750; }
.price-card li { position: relative; padding-left: 16px; color: var(--muted); font-size: 14px; line-height: 1.38; }
.price-card li::before { content: ''; position: absolute; left: 0; top: .62em; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.pricing-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.landing-cta .button-row { margin-top: 0; }
.founder-note, .contact-section {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: var(--surface);
}
.founder-note h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.065em;
}
.founder-note > p, .contact-copy > p {
  align-self: end;
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.65;
}
.contact-section {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255,255,255,.97), rgba(247,247,247,.97)),
    var(--surface);
}
.mini-checks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mini-checks li {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-size: 13px;
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 50px rgba(0,0,0,.07);
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 12px;
  background: #fbfbfb;
  color: var(--text);
  font: 14px var(--sans);
  outline: none;
}
.lead-form textarea { min-height: 104px; padding-top: 11px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--text); box-shadow: 0 0 0 4px rgba(0,0,0,.08); background: white; }
.form-button { width: 100%; border: 0; cursor: pointer; font-family: var(--sans); }
.form-button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.form-status {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.form-status[data-state="success"] { color: #166534; }
.form-status[data-state="error"] { color: #b42318; }
.form-status[data-state="loading"] { color: var(--muted); }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.faq-section { margin-top: 52px; }
.faq-section > h2 { font-size: clamp(30px, 5vw, 44px); letter-spacing: -.055em; }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.post-shell {
  width: min(calc(100% - 32px), 1040px);
  padding-top: 34px;
}

.post-article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,1) 360px),
    radial-gradient(circle at 18% 0%, rgba(0,0,0,.08), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px, 44px 44px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.post-hero {
  padding: clamp(28px, 7vw, 76px) clamp(24px, 7vw, 84px) clamp(34px, 6vw, 62px);
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-flex;
  align-items: center;
  height: 34px;
  margin-bottom: clamp(34px, 7vw, 72px);
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.back-link:hover { color: var(--text); border-color: var(--text); background: var(--surface); }

.post-kicker {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 22px;
  gap: 8px;
}
.post-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.post-article h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(40px, 8vw, 82px);
  line-height: .92;
  letter-spacing: -0.075em;
}
.post-excerpt {
  max-width: 760px;
  color: #3f3f3f;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.48;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.post-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(28px, 6vw, 76px) clamp(24px, 7vw, 84px);
  background: var(--surface);
}

.post-aside {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.post-aside::before {
  content: '';
  width: 32px;
  height: 1px;
  margin-bottom: 10px;
  background: var(--text);
}
.aside-label {
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.post-body {
  max-width: 660px;
  padding-top: 0;
}
.post-body p {
  margin: 0 0 22px;
  color: #191919;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
}
.post-body ul {
  margin: -6px 0 26px 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}
.post-body li {
  position: relative;
  padding-left: 14px;
  color: #191919;
  font-size: 15px;
  line-height: 1.56;
  letter-spacing: 0;
}
.post-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .68em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
}
.post-body p:first-child {
  color: #191919;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
  font-weight: 400;
}
.post-body blockquote {
  position: relative;
  margin: -4px 0 24px;
  padding: 2px 0 2px 34px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
  font-style: italic;
  font-weight: 500;
}
.post-body blockquote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -2px;
  color: #a3a3a3;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 860px) {
  .top-nav { display: none; }
  .hero-grid, .cta-grid, .wp-hero, .split-section, .industries-section, .founder-note, .contact-section { grid-template-columns: 1fr; }
  .hero-panel { border-left: 0; border-top: 1px solid var(--line); }
  .audit-card { min-height: auto; border-left: 0; border-top: 1px solid var(--line); }
  .stats-strip, .proof-strip, .service-grid, .pricing-grid, .faq-grid, .problem-grid { grid-template-columns: 1fr; }
  .service-grid, .pricing-grid, .faq-grid, .problem-grid { border-left: 1px solid var(--line); }
  .wp-hero-copy h1 { font-size: clamp(42px, 14vw, 64px); line-height: .94; }
  .primary-button, .secondary-button { width: 100%; }
  .blog-toolbar { align-items: stretch; flex-direction: column; }
  .search-box { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 244px; }
  .article-card a { padding: 24px; gap: 14px; }
  .article-card-large h3 { font-size: 22px; line-height: 1.02; }
  .article-card h3 { font-size: 21px; line-height: 1.03; }
  .article-card p { font-size: 14px; line-height: 1.38; }
  .cta-grid { margin-top: 44px; padding: 34px 42px 38px; }
  .cta-grid h2 { font-size: 32px; line-height: 1; letter-spacing: -0.06em; }
  .cta-grid p { font-size: 15px; line-height: 1.58; }
  .cta-grid li { padding: 12px 0 12px 18px; font-size: 13px; }
  .site-footer { flex-direction: column; padding-bottom: 76px; }
  .footer-links { justify-content: flex-start; }
  .post-shell { width: min(calc(100% - 24px), 1040px); padding-top: 20px; }
  .post-hero { padding: 24px 22px 34px; }
  .back-link { margin-bottom: 42px; }
  .post-article h1 { font-size: clamp(38px, 12.5vw, 58px); line-height: .96; }
  .post-layout { display: block; padding: 30px 22px 44px; }
  .post-aside { position: static; margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .post-body { max-width: none; }
  .post-body p { font-size: 15px; line-height: 1.56; margin-bottom: 20px; }
  .post-body li { font-size: 15px; line-height: 1.5; }
  .post-body ul { gap: 10px; margin: -5px 0 24px 18px; }
  .post-body p:first-child { font-size: 15px; line-height: 1.56; }
  .post-body blockquote { margin: -3px 0 22px; padding: 2px 0 2px 32px; font-size: 15px; line-height: 1.56; font-style: italic; }
  .post-body blockquote::before { left: 0; top: -2px; font-size: 30px; }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
