/* ────────────────────────────────────────────────────────────
   Vector56 — main stylesheet
   Manrope · monochrome · pill outlines · single blue accent
   ──────────────────────────────────────────────────────────── */

/* Typography ─ Manrope from Google Fonts (swap to self-hosted later) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── Reset ─────────────────────────────────────────────────── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ── Tokens ────────────────────────────────────────────────── */

:root {
  --ink: #0a0a0a;
  --ink-2: #222222;
  --paper: #ffffff;
  --muted: #555555;
  --hairline: #e6e6e6;
  --accent: #2562ff;          /* blue (logo + Submit button) */

  --container: 1440px;
  --pad-x: 64px;

  --font: 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

@media (max-width: 800px) {
  :root { --pad-x: 28px; }
}

/* ── Base ──────────────────────────────────────────────────── */

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Header / nav ──────────────────────────────────────────── */

header.site {
  padding: 28px 0 0;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.logo img {
  height: 36px;
  width: auto;
}
nav.primary {
  display: flex;
  gap: 40px;
  font-size: 17px;
  font-weight: 400;
}
nav.primary a {
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 4px;
}
nav.primary a.current {
  text-decoration: underline;
  text-underline-offset: 6px;
}
nav.primary a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.nav-dropdown > span {
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  padding-bottom: 4px;
  user-select: none;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  min-width: 200px;
  z-index: 100;
  padding-top: 8px;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
}
.nav-dropdown-menu a:hover {
  background: var(--hairline);
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-pill:hover {
  background: var(--ink);
  color: #fff;
}
.btn-blue {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
}
.btn-blue:hover { filter: brightness(0.92); }

/* ── Hero ──────────────────────────────────────────────────── */

section.hero {
  padding: 64px 0 96px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  min-height: 78vh;
}
.hero-headline {
  font-size: clamp(56px, 7.5vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.hero-tag {
  margin-top: 32px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.4;
}
.hero-side {
  padding-bottom: 64px;
}
.hero-side p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 460px;
}

/* ── Statement block ───────────────────────────────────────── */

section.statement {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  text-align: right;
}
.statement h2 {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.statement .lines {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink);
}

/* ── Bridge (centered statement) ───────────────────────────── */

section.bridge {
  padding: 80px 0;
  text-align: center;
}
section.bridge h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 auto 36px;
  max-width: 800px;
}
section.bridge .lines {
  font-size: 19px;
  line-height: 1.9;
  font-weight: 400;
}

/* ── Services list ─────────────────────────────────────────── */

section.services {
  padding: 120px 0 100px;
  text-align: center;
}
section.services h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}
.service { margin-bottom: 36px; }
.service h3 {
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
}
.service p {
  font-size: 17px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Two-column value section ──────────────────────────────── */

section.value-cols {
  padding: 120px 0 160px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  text-align: center;
}
.value-col h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.value-col p {
  font-size: 18px;
  line-height: 1.6;
}
.value-col a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── About page ────────────────────────────────────────────── */

section.page-intro {
  padding: 64px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
section.page-intro h1 {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
section.page-intro p {
  font-size: 19px;
  line-height: 1.6;
}
section.page-intro p + p { margin-top: 1em; }

section.two-col {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
section.two-col .col h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
section.two-col .col p { font-size: 18px; line-height: 1.7; }
section.two-col .col p + p { margin-top: 0.6em; }
section.two-col ul {
  list-style: none;
  margin: 12px 0;
  font-size: 18px;
  line-height: 1.8;
}
section.two-col ul li::before {
  content: "• ";
  margin-right: 4px;
}

section.right-block {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
section.right-block h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: right;
}
section.right-block p {
  font-size: 19px;
  line-height: 1.7;
  text-align: right;
}
section.right-block p + p { margin-top: 1em; }

/* ── Workshop page ─────────────────────────────────────────── */

section.workshop-hero {
  padding: 64px 0 80px;
  text-align: center;
}
section.workshop-hero h1 {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
section.workshop-hero .tag {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
section.workshop-hero .lead {
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.5;
  color: var(--ink-2);
}
.big-stat {
  font-size: clamp(180px, 28vw, 320px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-align: center;
  margin: 80px 0 32px;
}
.big-stat-caption {
  text-align: center;
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto 80px;
  line-height: 1.6;
  color: var(--ink-2);
}

.modules { padding: 60px 0; }
.modules h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 56px;
}
.module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 32px 0;
}
.module h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.module p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
}

.audience, .format, .pricing {
  padding: 80px 0;
  text-align: center;
}
.audience h2, .format h2, .pricing h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.audience p, .format p {
  font-size: 19px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 32px auto 0;
}
.price-card {
  border: 1px solid var(--hairline);
  padding: 48px 32px;
  border-radius: 12px;
  text-align: left;
}
.price-card .amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.price-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

/* ── Contact form ──────────────────────────────────────────── */

section.contact {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
section.contact h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 14px;
  font: inherit;
  background: transparent;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}
.form-status { margin-top: 16px; font-size: 15px; }
.form-status.ok { color: #1a8a3a; }
.form-status.err { color: #b00020; }

/* ── Long-form text pages (terms, privacy) ─────────────────── */

article.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0 120px;
}
article.legal h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
article.legal h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
}
article.legal p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1em;
  color: var(--ink-2);
}
article.legal p.legal-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  font-style: italic;
}
article.legal hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 48px 0;
}
article.legal table.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
article.legal table.legal-table th,
article.legal table.legal-table td {
  border: 1px solid var(--hairline);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--ink-2);
}
article.legal table.legal-table th {
  background: #f7f7f7;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 800px) {
  article.legal table.legal-table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ── Footer ────────────────────────────────────────────────── */

footer.site {
  padding: 48px 0 64px;
  border-top: 1px solid var(--hairline);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
footer.site a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0 8px;
}
footer.site .brandline { margin-bottom: 12px; }

/* ── Homepage redesign ─────────────────────────────────────── */

.logo img { height: 46px; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Credential labels — plain inline text, no pill */
.hp-credentials,
.hp-founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}
.hp-credentials span,
.hp-founder-creds span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hp-credentials span + span::before,
.hp-founder-creds span + span::before {
  content: ' · ';
  font-weight: 400;
  color: var(--muted);
}

/* Hero */
.hp-hero {
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--hairline);
}
.hp-hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 66vh;
}
.hp-hero-headline {
  font-size: clamp(64px, 10.5vw, 152px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hp-hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 28px;
  max-width: 520px;
}
.hp-hero-right p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 400px;
}

/* 80% stat — dark inversion */
.hp-stat {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 80px;
}
.hp-stat-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.hp-stat-num {
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--paper);
}
.hp-stat-pct {
  font-size: 0.45em;
  vertical-align: super;
  letter-spacing: -0.02em;
}
.hp-stat-body p {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 24px;
  max-width: 480px;
  color: var(--paper);
}
.hp-stat-body a {
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.7;
}
.hp-stat-body a:hover { opacity: 1; }

/* Pull quote */
.hp-pullquote {
  padding: 100px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hp-pullquote-inner {
  max-width: 860px;
  position: relative;
  padding-left: 72px;
}
.hp-pullquote-inner::before {
  content: '\201C';
  position: absolute;
  left: -12px;
  top: -56px;
  font-size: 200px;
  font-weight: 800;
  line-height: 1;
  color: #ebebeb;
  pointer-events: none;
}
.hp-pullquote-text {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hp-pullquote-attr {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* What we do */
.hp-about {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
}
.hp-about-body {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 820px;
  color: var(--ink);
}

/* Services */
.hp-services { padding: 80px 0; }
.hp-svc {
  display: grid;
  grid-template-columns: 48px 1fr 1.6fr;
  gap: 0 48px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.hp-svc-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.hp-svc h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hp-svc h3 a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hp-svc h3 a:hover { color: var(--muted); }
.hp-svc p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
.hp-svc p a { color: var(--muted); text-decoration: underline; }
.hp-svc-footer {
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}

/* Thinking / articles */
.hp-thinking {
  padding: 80px 0;
}
.hp-thinking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--hairline);
}
.hp-article {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--hairline);
}
.hp-article:last-child { border-right: none; }
.hp-article-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.hp-article-title {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
}
.hp-article-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.hp-article-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: auto;
}
.hp-article-link:hover { color: var(--muted); }

/* ISO strip */
.hp-iso {
  background: #f5f5f5;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 72px 0;
}
.hp-iso-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hp-iso-left h2 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 10px 0 16px;
}
.hp-iso-left p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
}
.hp-iso-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hp-iso-right a {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hp-iso-right a:hover { color: var(--muted); }

/* Proof strip */
.hp-proof {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0;
}
.hp-proof .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hp-proof-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.hp-proof-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hp-proof-tags span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 5px 14px;
}

/* Featured insight */
.hp-insight {
  padding: 80px 0;
  background: var(--ink);
  color: var(--paper);
}
.hp-insight .eyebrow { color: rgba(255,255,255,0.45); }
.hp-insight-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 8px;
}
.hp-insight-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-block;
}
.hp-insight-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--paper);
}
.hp-insight-body p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-bottom: 28px;
}
.hp-insight-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hp-insight-link:hover { opacity: 0.7; }

/* Founder */
.hp-founder {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hp-founder-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hp-founder-quote p {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}
.hp-founder-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  display: block;
  margin-bottom: 20px;
}
.hp-founder-side p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Closing CTA — dark */
.hp-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  text-align: center;
}
.hp-cta h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 48px;
  color: var(--paper);
}
.btn-pill-inv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--paper);
  border-radius: 100px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  background: transparent;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-pill-inv:hover { background: var(--paper); color: var(--ink); }

/* ── Insights index ─────────────────────────────────────────── */

.insights-header {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--hairline);
}
.insights-header .eyebrow {
  margin-bottom: 20px;
}
.insights-header h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.insights-header p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
}
.insights-list {
  padding: 0 0 120px;
}
.insight-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px 64px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
}
.insight-row-type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
}
.insight-row-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.insight-row-title:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.insight-row-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
}
.insight-row-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s;
}
.insight-row-link:hover { background: var(--ink); color: var(--paper); }

/* ── Article page ─────────────────────────────────────────────── */

.article-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 80px;
}
.article-banner .eyebrow {
  color: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.2);
  margin-bottom: 28px;
}
.article-banner h1 {
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 900px;
  margin-bottom: 36px;
}
.article-byline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.article-byline span + span::before {
  content: ' · ';
  color: rgba(255,255,255,0.25);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px var(--pad-x) 100px;
}
.article-body p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 28px;
}
.article-body h2 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 64px 0 20px;
  color: var(--ink);
}
.article-body h2:first-child { margin-top: 0; }
.article-close {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0;
  text-align: center;
}
.article-close p {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.article-close .back-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-close .back-link:hover { color: var(--paper); }
.article-nav-header {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 28px;
  margin-bottom: 48px;
}

/* ── Mobile ────────────────────────────────────────────────── */

@media (max-width: 800px) {
  nav.primary { display: none; }

  section.hero,
  section.statement,
  section.value-cols,
  section.page-intro,
  section.two-col,
  section.right-block,
  section.contact,
  .pricing-grid,
  .module {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  section.hero { padding: 48px 0; min-height: auto; align-items: start; }
  section.statement { text-align: left; padding: 64px 0; }
  section.right-block h2,
  section.right-block p { text-align: left; }
  .big-stat { font-size: 160px; margin: 32px 0 16px; }

  .hp-hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 40px; }
  .hp-hero-right p { max-width: 100%; }
  .hp-stat-inner { grid-template-columns: 1fr; gap: 24px; }
  .hp-svc { grid-template-columns: 40px 1fr; }
  .hp-svc p { grid-column: 2; }
  .hp-iso-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-proof .container { gap: 16px; }
  .hp-insight-inner { grid-template-columns: 1fr; gap: 24px; }
  .hp-founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-pullquote-inner { padding-left: 0; }
  .hp-pullquote-inner::before { display: none; }
  .hp-thinking-grid { grid-template-columns: 1fr; }
  .hp-article { border-right: none; border-bottom: 1px solid var(--hairline); }
  .hp-article:last-child { border-bottom: none; }

  .insight-row { grid-template-columns: 1fr; gap: 16px; }
  .insight-row-type { padding-top: 0; }
  .insight-row-link { align-self: start; }
  .article-body { padding: 48px var(--pad-x) 72px; }
}
