/* ============================================================
   Cablewise IT Solutions — Shared stylesheet · v2
   Inter (UI), JetBrains Mono (technical), Source Serif 4 (accent)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&family=Source+Serif+4:ital,wght@0,400;1,400;1,500&display=swap');

:root {
  /* Brand */
  --brand:        #162543;
  --brand-2:      #1d3562;
  --brand-3:      #0c4a6e;
  --brand-ink:    #0d1b2e;

  --accent:       #1a56d6;
  --accent-hover: #1d4ed8;
  --accent-soft:  #dbeafe;

  --coral:        #dc2626;
  --coral-soft:   #fef2f2;

  /* Surface */
  --bg:           #ffffff;
  --bg-2:         #f5f7fa;
  --bg-3:         #eef1f6;
  --line:         #e3e7ee;
  --line-2:       #f0f3f8;

  /* Ink */
  --ink:          #0d1b2e;
  --ink-2:        #2c3f58;
  --muted:        #5c7290;
  --dim:          #8da0b8;

  /* Semantic */
  --green:        #15803d;
  --green-bg:     #dcfce7;

  /* Type */
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --font-serif:   'Source Serif 4', Georgia, 'Times New Roman', serif;

  /* Radii / shadow */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;
  --radius-pill:  9999px;

  --shadow-sm:    0 1px 2px rgba(13,27,46,.04), 0 1px 1px rgba(13,27,46,.03);
  --shadow:       0 1px 3px rgba(13,27,46,.06), 0 8px 24px rgba(13,27,46,.06);
  --shadow-lg:    0 4px 12px rgba(13,27,46,.08), 0 24px 64px rgba(13,27,46,.10);

  /* Layout */
  --maxw:         1240px;
  --gutter:       24px;
  --nav-h:        72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 var(--font-ui);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
button { font: inherit; cursor: pointer; }

::selection { background: var(--brand); color: #fff; }

/* ----- Page progress bar ----- */
.page-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--brand);
  z-index: 100;
  transition: width .25s ease-out, opacity .4s ease .15s;
  pointer-events: none;
}

/* ----- Layout primitives ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 104px 0; position: relative; }
.section-bg-2 { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-bg-3 { background: var(--bg-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-deep { background: var(--brand); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex: none;
}
.section-deep .eyebrow { color: rgba(255,255,255,.7); }
.section-deep .eyebrow::before { background: #ff5454; }

.section-head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 60ch;
}
.section-deep .section-head h2 { color: #fff; }
.section-deep .section-head p { color: rgba(255,255,255,.7); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.005em;
  line-height: 1;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,86,214,.25);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover {
  background: var(--bg-2);
  color: var(--ink);
  border-color: var(--ink-2);
}
.section-deep .btn-secondary,
.hero .btn-secondary,
.cta-block .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.section-deep .btn-secondary:hover,
.hero .btn-secondary:hover,
.cta-block .btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-arrow { transition: transform .15s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ----- Navigation ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.nav-logo svg.cw-logo {
  height: 28px;
  width: auto;
}
.nav-logo .cw-logo-mark { color: var(--brand); }
.nav-logo .cw-logo-word { color: var(--ink); }
.nav-logo .cw-logo-sub  { fill: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -.005em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.hero::after {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,86,214,.35) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  margin: 0 0 36px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: #ff5454;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,84,84,.7);
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0 0 32px;
  max-width: 18ch;
  color: #fff;
  text-wrap: balance;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  color: #c7d4f1;
}

.hero-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 44px;
  max-width: 58ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 80px;
}

/* ----- Vendor migration strip ----- */
.hero-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-strip-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-right: 4px;
}
.vendor-source-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.vendor-mark {
  display: inline-flex;
  align-items: center;
  height: 32px;
  color: rgba(255,255,255,.6);
  filter: grayscale(100%);
  transition: color .2s, opacity .2s;
}
.vendor-mark svg { height: 28px; width: auto; display: block; }
.vendor-mark:hover { color: rgba(255,255,255,.9); }

.vendor-arrow {
  color: rgba(255,255,255,.35);
  font-family: var(--font-mono);
  font-size: 18px;
}
.vendor-target {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 6px 16px 6px 12px;
  color: #fff;
  background: rgba(26,86,214,.22);
  border: 1px solid rgba(26,86,214,.55);
  border-radius: var(--radius-pill);
}
.vendor-target svg { height: 28px; width: auto; }
.vendor-target::before {
  content: "";
  width: 7px; height: 7px;
  background: #5b8def;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 10px rgba(91,141,239,.7);
}

/* ----- "Is this you?" cards ----- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.problem-card:hover {
  border-color: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.section-bg-3 .problem-card { background: var(--bg); }
.problem-card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  margin: 0 0 16px;
}
.problem-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}
.problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ----- Service cards ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.service:hover {
  border-color: var(--accent);
  box-shadow: 0 1px 3px rgba(26,86,214,.08), 0 12px 32px rgba(26,86,214,.10);
}
.service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.service-code {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.service h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
}
.service p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
  flex: 1;
}
.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-2);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-meta strong { color: var(--ink); font-weight: 600; }
.service-meta-sep { color: var(--dim); }

/* ----- Pricing table ----- */
.pricing-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.pricing-table thead th {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 24px;
}
.pricing-table thead th:last-child { text-align: right; }
.pricing-table tbody tr {
  border-top: 1px solid var(--line);
  transition: background .15s;
}
.pricing-table tbody tr:hover { background: var(--bg-2); }
.pricing-table tbody td {
  padding: 22px 24px;
  vertical-align: middle;
  font-size: 15px;
}
.pricing-table .price-service {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--ink);
}
.pricing-table .price-scope {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}
.pricing-table .price-value {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.pricing-table .price-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 4px 8px;
  background: var(--bg-2);
  border-radius: 4px;
  display: inline-block;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.pricing-note strong { color: var(--ink); font-weight: 600; }
.pricing-note-sep {
  width: 1px; height: 14px;
  background: var(--line);
}

.pricing-cards { display: none; }

/* ----- Process steps ----- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 24px 0 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  width: 40px;
  height: 1px;
  background: var(--line);
}
.process-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.process-num-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  position: relative;
  z-index: 1;
}
.section-bg-3 .process-num-dot { background: var(--bg-3); }
.section-bg-2 .process-num-dot { background: var(--bg-2); }
.process-step:first-child .process-num-dot { background: var(--accent); }
.process-step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}
.process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
}
.process-step .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-2);
  padding: 4px 8px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: inline-block;
}
.section-bg-2 .process-step .meta { background: var(--bg); }
.section-bg-3 .process-step .meta { background: var(--bg); }

/* ============================================================
   Founder section
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 72px;
  align-items: center;
}
.founder-photo {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--coral);
  box-shadow: 0 12px 36px rgba(13,27,46,.18), 0 2px 6px rgba(13,27,46,.08);
  background: var(--bg-3);
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder-body { max-width: 60ch; }
.founder-body .eyebrow { margin-bottom: 18px; }
.founder-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--ink);
}
.founder-bio p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.founder-bio p:last-child { margin-bottom: 0; }
.founder-team {
  margin-top: 20px !important;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15.5px !important;
  color: var(--ink) !important;
}

.founder-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 28px;
}
.founder-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-2);
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.founder-pill.is-primary {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(26,86,214,.15);
  font-weight: 600;
}

.founder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
}
.founder-cta:hover { color: var(--accent-hover); }
.founder-cta svg { transition: transform .15s; }
.founder-cta:hover svg { transform: translate(2px, -2px); }

/* ----- Final CTA ----- */
.cta-block {
  text-align: center;
  padding: 96px 0 120px;
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, #000 20%, transparent 70%);
  pointer-events: none;
}
.cta-block .container { position: relative; z-index: 1; max-width: 760px; }
.cta-block .eyebrow { color: rgba(255,255,255,.7); }
.cta-block .eyebrow::before { background: #ff5454; }
.cta-block h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
}
.cta-block p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
}
.cta-block .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ----- Footer ----- */
.footer {
  background: var(--brand-ink);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo svg.cw-logo { height: 28px; }
.footer-brand .nav-logo .cw-logo-mark { color: #fff; }
.footer-brand .nav-logo .cw-logo-word { color: #fff; }
.footer-brand .nav-logo .cw-logo-sub  { fill: rgba(255,255,255,.55); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 16px 0 0;
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}

/* ============================================================
   MSP page — partner programme variants
   ============================================================ */

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.partner-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--coral-soft);
  color: var(--coral);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.partner-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.018em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.25;
}
.partner-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.anti-conflict {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.anti-conflict h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0 0 24px;
  text-wrap: balance;
}
.anti-conflict p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 16px;
}
.anti-conflict-promises {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.anti-conflict-promises li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.anti-conflict-promises li:first-child { padding-top: 0; }
.anti-conflict-promises li:last-child { border-bottom: 0; padding-bottom: 0; }
.anti-conflict-promises-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px;
}
.anti-conflict-promises strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: 4px;
}
.anti-conflict-promises span {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.wholesale-note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.wholesale-note-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  background: var(--accent-soft);
  border-radius: 4px;
}
.wholesale-note p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  flex: 1;
  min-width: 280px;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero CTAs on-load fade-up (no IO needed; runs immediately) */
.hero-fade {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 600ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-fade-1 { animation-delay: 60ms; }
.hero-fade-2 { animation-delay: 160ms; }
.hero-fade-3 { animation-delay: 260ms; }
.hero-fade-4 { animation-delay: 360ms; }
.hero-fade-5 { animation-delay: 460ms; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-fade { opacity: 1; transform: none; animation: none; }
  .page-progress { display: none; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .problem-grid, .services-grid, .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
  .process-step:nth-child(2)::after { display: none; }
  .anti-conflict {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founder {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
  .founder-photo { max-width: 220px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --nav-h: 64px;
  }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero { padding: 72px 0 80px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-lede { font-size: 17px; margin-bottom: 32px; }
  .hero-ctas { margin-bottom: 56px; }
  .hero-ctas .btn { width: 100%; }
  .hero-strip { flex-direction: column; align-items: flex-start; gap: 18px; }
  .vendor-source-row { gap: 20px; }
  .vendor-mark svg { height: 24px; }

  .problem-grid, .services-grid, .partner-grid {
    grid-template-columns: 1fr;
  }
  .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-step { padding-right: 0; }
  .process-step::after { display: none !important; }

  /* Convert pricing table to cards */
  .pricing-wrap { background: transparent; border: 0; box-shadow: none; overflow: visible; }
  .pricing-table { display: none; }
  .pricing-cards { display: grid; gap: 12px; }
  .pricing-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
  }
  .pricing-card-tier {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .pricing-card-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.015em;
    margin: 0 0 4px;
    color: var(--ink);
  }
  .pricing-card-scope {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 16px;
  }
  .pricing-card-price {
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
  }
  .pricing-note { border-radius: var(--radius); margin-top: 14px; border: 1px solid var(--line); }

  .founder-photo { max-width: 180px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .cta-block { padding: 72px 0 80px; }
  .cta-block .hero-ctas { flex-direction: column; }
  .cta-block .hero-ctas .btn { width: 100%; }
}

@media (min-width: 1600px) {
  :root { --maxw: 1320px; }
  .hero h1 { font-size: 80px; }
}

/* ============================================================
   Inline booking widget (v2.2)
   ============================================================ */
.book-embed {
  background: var(--bg-2);
  padding: 96px 0;
  scroll-margin-top: var(--nav-h);
}
.book-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.book-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 16px 0;
  color: var(--ink);
  text-wrap: balance;
}
.book-head p {
  font-size: 17px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto;
}
.calendly-inline-widget {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(13,27,46,.04), 0 16px 48px rgba(13,27,46,.06);
  overflow: hidden;
}

/* ============================================================
   Mobile nav menu (v2.2)
   ============================================================ */
@media (max-width: 720px) {
  .nav-open .nav-links {
    display: flex !important;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px) saturate(150%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 20px;
    gap: 0;
    box-shadow: 0 16px 32px rgba(13,27,46,.08);
  }
  .nav-open .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line-2);
  }
  .nav-open .nav-links li:last-child { border-bottom: 0; }
  .nav-open .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
  }
  .nav-open .nav-cta {
    display: inline-flex !important;
    margin: 12px 4px 0;
    width: calc(100% - 8px);
    justify-content: center;
    height: 48px;
    font-size: 15px;
  }
  /* Hamburger animates to X when open */
  .nav-open .nav-toggle svg path { stroke: var(--accent); }
}
@media (max-width: 480px) {
  .book-embed { padding: 64px 0; }
  .calendly-inline-widget { height: 720px !important; }
}

/* ============================================================
   v3 patch — design + new components
   ============================================================ */

/* Page progress bar — accent blue against navy hero (Design low #2) */
.page-progress { background: var(--accent) !important; height: 3px !important; }

/* Card resting shadows (Design high #5) */
.problem-card, .service, .partner-card {
  box-shadow: 0 1px 2px rgba(13,27,46,.04), 0 4px 14px rgba(13,27,46,.05);
  border: 1px solid rgba(227,231,238,.7);
}
.problem-card:hover, .service:hover, .partner-card:hover {
  box-shadow: 0 4px 12px rgba(13,27,46,.08), 0 24px 64px rgba(13,27,46,.10);
}

/* Section colour rhythm — stronger differentiation (Design high #4) */
:root {
  --bg-2: #f3f6fb;
  --bg-3: #e5ebf4;
}

/* Vendor strip surface (Design high #3) */
.hero-strip {
  margin-top: 56px;
  padding: 20px 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.vendor-mark { color: rgba(255,255,255,.78) !important; opacity: .88; }
.vendor-mark:hover { opacity: 1; }
.vendor-mark svg { filter: none !important; }
.vendor-arrow { font-size: 22px !important; color: rgba(255,255,255,.55); padding: 0 4px; }

/* Demote nav-cta, strengthen hero secondary (Design high #6) */
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  height: 40px;
  font-size: 13.5px;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.hero .btn-secondary,
.section-deep .btn-secondary {
  border-color: rgba(255,255,255,.45) !important;
  background: rgba(255,255,255,.04) !important;
}
.hero .btn-secondary:hover,
.section-deep .btn-secondary:hover {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.7) !important;
}

/* Hero eyebrow link (small "For MSP partners" anchor) */
.hero-eyebrow-link {
  display: inline-flex;
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 2px;
}
.hero-eyebrow-link:hover { color: #fff; border-bottom-color: #fff; }
.hero { position: relative; }
@media (max-width: 720px) {
  .hero-eyebrow-link { display: none; }
}

/* Founder layout — tighter column (Design high #8) */
.founder { grid-template-columns: 280px 1fr !important; gap: 56px !important; align-items: start !important; }
.founder-photo {
  border: 2px solid rgba(220,38,38,.55) !important;
  position: relative;
}
.founder-photo::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  opacity: .25;
  pointer-events: none;
}
.founder-team {
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-left: 3px solid var(--coral) !important;
}

/* Pricing rows for extreme tiers (Strategy high #6) */
.pricing-row-pre td { background: rgba(26,86,214,.04); border-top: 2px solid var(--accent-soft); }
.pricing-row-bespoke td { background: rgba(13,27,46,.03); border-top: 2px solid var(--line); }
.pricing-row-bespoke .price-tier { background: var(--brand); color: #fff; }
.pricing-row-pre .price-tier { background: var(--accent); color: #fff; }
.pricing-table tbody tr:nth-child(even):not(.pricing-row-pre):not(.pricing-row-bespoke) { background: #fafbfd; }

/* FAQ section (Strategy high #5) */
.faq-section { background: var(--bg); padding: 96px 0; }
.faq-section .section-head { margin: 0 auto 48px; text-align: center; }
.faq-section .section-head p { margin-left: auto; margin-right: auto; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
  overflow: hidden;
}
.faq-item[open] {
  border-color: rgba(26,86,214,.3);
  box-shadow: 0 4px 12px rgba(13,27,46,.06);
}
.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--muted);
  transition: transform .2s, color .2s;
  flex: none;
}
.faq-item[open] > summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-item .faq-answer p { margin: 0; }

/* MSP worked example block (Strategy high #7) */
.msp-worked-example {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(13,27,46,.04), 0 4px 14px rgba(13,27,46,.05);
}
.msp-worked-example .eyebrow { margin-bottom: 12px; }
.msp-worked-example h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 20px;
  color: var(--ink);
}
.msp-example-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.msp-example-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.msp-example-label { font-size: 15px; color: var(--ink-2); }
.msp-example-value { font-family: var(--font-mono); font-size: 17px; font-weight: 600; color: var(--ink); }
.msp-example-margin {
  background: linear-gradient(90deg, transparent 0%, var(--accent-soft) 100%);
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
}
.msp-example-margin .msp-example-value { color: var(--accent); }
.msp-example-note {
  margin: 16px 0 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Anti-conflict extra (sub-processor clarity) */
.anti-conflict-promises-extra {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--ink-2);
}
.anti-conflict-promises-extra strong { color: var(--ink); font-weight: 600; }
.anti-conflict-promises-extra p { margin: 0; }

/* Mobile responsiveness for new sections */
@media (max-width: 1024px) {
  .founder { grid-template-columns: 220px 1fr !important; gap: 40px !important; }
}
@media (max-width: 720px) {
  .founder { grid-template-columns: 1fr !important; gap: 32px !important; }
  .founder-photo { max-width: 180px; margin: 0 auto; }
  .founder-photo::before { inset: -10px; }
  .faq-section { padding: 64px 0; }
  .faq-item > summary { padding: 18px 18px; font-size: 15.5px; }
  .faq-item .faq-answer { padding: 0 18px 18px; }
  .msp-worked-example { padding: 22px 18px; }
  .msp-example-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
  .msp-example-margin { padding-left: 12px; padding-right: 12px; margin: 0; border-radius: 6px; }
  .founder-pill { padding: 9px 12px !important; font-size: 12px !important; }
}


/* ============================================================
   v3.1 — real PNG logos (replaces inline SVG cw-logo wordmark)
   ============================================================ */
.cw-logo.cw-logo-dark,
.cw-logo.cw-logo-light {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
}
/* Nav uses dark-text variant on white nav */
.nav .cw-logo-dark { height: 36px; }
/* Footer uses light/white-text variant on navy footer */
.footer .cw-logo-light { height: 40px; }
@media (max-width: 720px) {
  .nav .cw-logo-dark { height: 30px; }
  .footer .cw-logo-light { height: 32px; }
}

/* ============================================================
   v3.3 — hero strip, pricing tier, layout fixes
   ============================================================ */

/* Hero strip: PANW destination pill more compact + consistent baseline */
.vendor-target {
  height: 40px !important;
  padding: 0 14px !important;
  font-size: 13px !important;
}
.vendor-target svg { height: 22px !important; }

/* Allow hero strip to wrap cleanly; if vendor-target wraps, keep it left-aligned on its own line */
.hero-strip {
  flex-wrap: wrap;
  row-gap: 14px;
}

/* Pricing table — keep tier badges single line and top-aligned */
.pricing-table .price-tier {
  white-space: nowrap !important;
  vertical-align: middle !important;
}
.pricing-table td {
  vertical-align: middle !important;
}
.pricing-table tbody td:first-child {
  width: 96px;
  padding-left: 18px !important;
  padding-right: 8px !important;
}

/* Mobile pricing cards — supplement with rows we added in v3 */
@media (max-width: 720px) {
  .hero-strip { gap: 14px !important; }
  .vendor-source-row { flex-wrap: wrap; row-gap: 14px; }
  .vendor-target { align-self: flex-start; }
}


/* MSP hero strip — text destination chip (v3.3) */
.vendor-target-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.15;
  padding: 8px 18px !important;
  text-align: left;
  white-space: nowrap;
}
.vendor-target-text .vendor-target-line1 {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -.005em;
  color: #fff;
}
.vendor-target-text .vendor-target-line2 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}

/* Hide the dot accent on both destination chips — looked like a render glitch
   next to the PANW bars on the home strip */
.vendor-target::before,
.vendor-target-text::before { display: none !important; }

/* ============================================================
   v3.9 — polish pass (frontend-design skill)
   ============================================================ */

/* Hero decorative SVG — faint network topology on the right side
   evokes firewall migration: source nodes → PANW core → destination */
.hero-decor {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  width: min(640px, 48vw);
  height: auto;
  opacity: .85;
  pointer-events: none;
  z-index: 0;
  animation: hero-decor-breathe 8s ease-in-out infinite;
}
@keyframes hero-decor-breathe {
  0%, 100% { opacity: .85; }
  50%      { opacity: 1; }
}
@media (max-width: 960px)  { .hero-decor { width: 60vw; right: -20%; opacity: .55; } }
@media (max-width: 720px)  { .hero-decor { display: none; } }

/* Hero meta row — eyebrow chip + "For MSP partners" sister chip inline */
.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
}
.hero-meta-row .hero-eyebrow { margin: 0; }

/* "For MSP partners" chip — sister styling to eyebrow, slightly lighter */
.hero-eyebrow-link {
  position: static !important;   /* override the legacy absolute positioning */
  top: auto !important;
  right: auto !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-pill);
  border-bottom-color: rgba(255,255,255,.14) !important;
  padding-bottom: 8px !important;
  transition: color .18s, border-color .18s, background .18s, transform .18s;
}
.hero-eyebrow-link:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
  border-color: rgba(199,212,241,.55) !important;
  transform: translateY(-1px);
}

/* FAQ — replace static "+" with rotating chevron + smoother hover */
.faq-item > summary::after {
  content: '' !important;
  width: 18px !important;
  height: 18px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354607a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: transform .25s ease, filter .25s ease;
  flex: none;
  color: transparent !important;
}
.faq-item[open] > summary::after {
  transform: rotate(180deg) !important;
  filter: hue-rotate(220deg) saturate(2.5) brightness(.9);
}
.faq-item > summary:hover {
  background: var(--bg-2);
}

/* Card hover affordance — coral underline animates in on hover */
.problem-card,
.service,
.partner-card {
  position: relative;
  overflow: hidden;
}
.problem-card::after,
.service::after,
.partner-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.problem-card:hover::after,
.service:hover::after,
.partner-card:hover::after {
  transform: scaleX(1);
}

/* Pricing — XL "Talk to us" row gets a coral left-edge marker so it reads
   as the bespoke tier without screaming for attention */
.pricing-table tr:has(td .price-tier-xl),
.pricing-row[data-tier="xl"] {
  box-shadow: inset 3px 0 0 var(--coral);
}
/* Fallback: last data row in pricing table */
.pricing-table tbody tr:last-child {
  box-shadow: inset 3px 0 0 var(--coral);
}

/* Hero secondary CTA — brighten border on hover instead of grey */
.hero .btn-secondary:hover,
.cta-block .btn-secondary:hover {
  border-color: rgba(199,212,241,.85) !important;
  background: rgba(91,141,239,.08) !important;
}

/* Nav CTA — slightly tighter type + subtle hover lift */
.nav-cta {
  background: var(--accent) !important;
  letter-spacing: -.005em;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26,86,214,.25);
}

/* Footer — coral hairline at top for a refined editorial seam */
.footer { border-top: 2px solid rgba(255,84,84,.18) !important; }

/* ============================================================
   v3.7 — anchor scroll offset + mobile-nav cleanup
   ============================================================ */

/* Push every anchor-target section down so the sticky nav doesn't
   land on top of the heading after a deep-link jump. */
section[id],
.founder,
.book-embed {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* Mobile (≤720px): clean nav-open drawer.
   Previous CSS re-enabled .nav-cta inside the flex row of .nav-inner,
   which squeezed the logo+burger when the drawer opened. The CTA now
   lives as the last item of the drawer panel itself, fully inside the
   absolutely-positioned overlay. */
@media (max-width: 720px) {
  /* Lock CTA hidden in the header row regardless of open/closed state */
  .nav-inner > .nav-cta { display: none !important; }

  /* Solid white drawer — no see-through to hero behind */
  .nav-open .nav-links {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding-bottom: 24px;
  }

  /* Bigger, more tappable burger */
  .nav-toggle { width: 44px; height: 44px; }
  .nav-toggle svg { width: 26px !important; height: 26px !important; }
}

/* ============================================================
   v3.10 — scoping callout box + misc copy fixes
   ============================================================ */
.scoping-callout {
  margin: 0 0 40px;
  padding: 20px 24px;
  border-left: 3px solid var(--coral);
  background: rgba(255,84,84,.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
}
.scoping-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
