/* ============================================================
   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; }
}
