  /* ============================================================
     VANTAGE SEARCH — LANDING PAGE
     Brand: Ink + White surfaces. Indigo as signal. Rule of one.
     Type: Inter Tight (body/display) · JetBrains Mono (eyebrows)
     ============================================================ */

  :root {
    /* Brand palette — from Vantage Brand Guidelines, May 2026 */
    --ink:           #0C0A09;
    --ink-80:        #2A2724;
    --ink-50:        #6B6660;
    --white:         #FFFFFF;
    --indigo:        #4F46E5;
    --indigo-deep:   #4338CA;
    --indigo-light:  #A5B4FC;
    --indigo-soft:   #EEF2FF;
    --rule:          #E7E5E0;

    /* Layout */
    --max-w:   1320px;
    --pad-x:   clamp(24px, 4.5vw, 72px);
    --gut:     clamp(20px, 2.4vw, 32px);

    /* Vertical rhythm */
    --sp-2:  8px;
    --sp-3:  12px;
    --sp-4:  16px;
    --sp-5:  24px;
    --sp-6:  32px;
    --sp-7:  48px;
    --sp-8:  64px;
    --sp-9:  96px;
    --sp-10: clamp(96px, 12vw, 160px);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Inter Tight', system-ui, -apple-system, "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-80);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  img, svg { display: block; max-width: 100%; }
  ::selection { background: var(--indigo); color: var(--white); }

  /* ---------- LAYOUT PRIMITIVES ---------- */
  .wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .mono {
    font-family: 'JetBrains Mono', ui-monospace, "SF Mono", Menlo, monospace;
  }

  /* ---------- TYPOGRAPHY SCALE ----------
     Per brand book (p. 08):
     Display:  Inter Tight 700, tracking -4%
     Headline: Inter Tight 600, tracking -3.5%
     Subhead:  Inter Tight 600, tracking -2.5%
     Body:     Inter Tight 400, 15/24
     Eyebrow:  JetBrains Mono 500, tracking +20%
  -------------------------------------------- */
  h1, h2, h3, h4 {
    font-family: 'Inter Tight', sans-serif;
    color: var(--ink);
    font-weight: 700;
  }

  .display {
    font-weight: 700;
    font-size: clamp(48px, 8vw, 116px);
    letter-spacing: 0.01em;
    line-height: 1.02;
    color: var(--ink);
  }
  .headline {
    font-weight: 700;
    font-size: clamp(36px, 5vw, 72px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
  }
  .subhead {
    font-weight: 600;
    font-size: clamp(22px, 2.4vw, 32px);
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--ink);
  }
  .lede {
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
    color: var(--ink-80);
    max-width: 60ch;
  }
  .body { font-size: 16px; line-height: 1.6; color: var(--ink-80); }
  .body p + p { margin-top: 1em; }

  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo);
    display: inline-block;
  }
  .eyebrow.muted { color: var(--ink-50); }
  .eyebrow.invert { color: var(--indigo-light); }

  .signal { color: var(--indigo); }

  /* ---------- SECTION FRAME ---------- */
  .section {
    padding-top: var(--sp-10);
    padding-bottom: var(--sp-10);
    border-top: 1px solid var(--rule);
  }
  .section.flush-top { border-top: 0; }
  .section.tight { padding-top: var(--sp-9); padding-bottom: var(--sp-9); }

  .section-head { margin-bottom: var(--sp-8); }
  .section-head .eyebrow { margin-bottom: var(--sp-5); }
  .section-head .lede { margin-top: var(--sp-5); }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .brand { display: inline-flex; align-items: center; gap: 16px; }
  .brand-lockup {
    display: block;
    height: 36px;
    width: auto;
    flex-shrink: 0;
  }
  .nav-links {
    display: none;
    gap: 32px;
    align-items: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.005em;
    text-transform: none;
    color: var(--ink-50);
  }
  @media (min-width: 920px) {
    .nav-links { display: flex; }
  }
  .nav-links a {
    position: relative;
    color: var(--ink-50);
    transition: color .15s ease, font-weight .15s ease;
  }
  /* Prevent layout shift when weight changes on hover/active */
  .nav-links a::after {
    content: attr(data-label);
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    font-weight: 700;
  }
  .nav-links a:hover { color: var(--indigo); }
  .nav-links a:active,
  .nav-links a.is-active {
    color: var(--indigo-deep);
    font-weight: 700;
  }

  .nav-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.005em;
    color: var(--white);
    background: var(--indigo);
    padding: 11px 18px;
    transition: background .15s ease, transform .15s ease;
  }
  .nav-cta:hover { background: var(--indigo-deep); }
  .nav-cta:active { background: var(--indigo-light); color: var(--ink); }
  .nav-cta .arr { transition: transform .15s ease; display: inline-block; }
  .nav-cta:hover .arr { transform: translateX(3px); }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    height: 56px;
    padding: 0 28px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
  }
  .btn .arr { transition: transform .15s ease; display: inline-block; }
  .btn:hover .arr { transform: translateX(4px); }
  .btn-primary {
    background: var(--indigo); color: var(--white); border-color: var(--indigo);
  }
  .btn-primary:hover { background: var(--indigo-deep); border-color: var(--indigo-deep); }
  .btn-secondary {
    background: var(--white); color: var(--ink); border-color: var(--ink);
  }
  .btn-secondary:hover { background: var(--ink); color: var(--white); }
  .btn-on-ink {
    background: var(--white); color: var(--ink); border-color: var(--white);
  }
  .btn-on-ink:hover { background: var(--indigo); color: var(--white); border-color: var(--indigo); }
  .btn-ghost-on-ink {
    background: transparent; color: var(--white); border-color: #3A3633;
  }
  .btn-ghost-on-ink:hover { border-color: var(--white); }

  /* ============================================================
     HERO — Full-bleed splash, matches brand book p.11
     ============================================================ */
  .hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: clamp(56px, 7vw, 96px);
    min-height: calc(100vh - 73px);
  }
  .hero-grid {
    position: relative;
    z-index: 2;
  }
  .hero-display .signal { color: var(--indigo); }
  .hero-eyebrow {
    display: inline-block;
    margin-top: var(--sp-7);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: clamp(12px, 1vw, 14px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo);
  }
  .hero-body {
    margin-top: var(--sp-5);
    max-width: 52ch;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.55;
    color: var(--ink-80);
  }
  .hero-body p + p { margin-top: 0.9em; }
  .hero-ctas {
    margin-top: var(--sp-7);
    display: inline-flex; flex-wrap: wrap; gap: 12px;
  }

  /* Hero coverage line — geography, understated */
  .hero-coverage {
    margin-top: var(--sp-5);
  }
  .hero-coverage-regions {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 26px);
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--ink);
  }
  .hero-coverage-regions .sep {
    color: var(--indigo);
    font-weight: 500;
    margin: 0 0.28em;
  }

  /* Bottom seam — "EXECUTIVE SEARCH · LONDON" + "vantagesearch.com" */
  .hero-seam {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-6);
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-5);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .hero-seam a { color: inherit; }
  .hero-seam a:hover { color: var(--ink); }

  /* Big V/ mark watermark on the right of hero — brand-book ghost treatment */
  .hero-mark {
    position: absolute;
    right: clamp(-160px, -7vw, -60px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(560px, 64vw, 1180px);
    z-index: 1;
    pointer-events: none;
  }
  .hero-mark svg { width: 100%; height: auto; }
  .hero-mark .v-shape    { fill: var(--rule); }
  .hero-mark .slash-shape { fill: var(--indigo-light); }
  @media (max-width: 720px) {
    .hero-mark {
      width: 130vw;
      right: -30vw;
      top: 55%;
      opacity: 0.7;
    }
  }

  /* ============================================================
     POSITIONING — Indigo banner + dual-audience cards
     ============================================================ */
  .positioning {
    padding: 0;
    border-top: 0;
  }

  .positioning-banner {
    background: var(--indigo);
    padding-top: clamp(88px, 11vw, 140px);
    padding-bottom: clamp(88px, 11vw, 140px);
    position: relative;
    overflow: hidden;
  }
  .positioning-banner > .wrap {
    position: relative;
    z-index: 2;
  }
  .positioning-mark {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(700px, 78vw, 1500px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 1;
  }
  .positioning-mark svg { width: 100%; height: auto; }
  .positioning-mark path { fill: #FFFFFF !important; }
  @media (max-width: 900px) {
    .positioning-mark {
      width: 140vw;
      right: -30vw;
      top: auto;
      bottom: -10%;
      transform: none;
      opacity: 0.12;
    }
  }
  .positioning-headline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 76px);
    letter-spacing: 0.01em;
    line-height: 1.08;
    color: var(--white);
    max-width: 22ch;
    position: relative;
    z-index: 2;
  }

  .positioning-cards-section {
    display: none;
    background: var(--white);
    padding-top: var(--sp-10);
    padding-bottom: var(--sp-10);
  }

  .positioning-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  @media (min-width: 900px) {
    .positioning-cards { grid-template-columns: 1fr 1fr; }
  }

  .position-card {
    padding-top: var(--sp-7);
    padding-bottom: var(--sp-7);
    border-bottom: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
  }
  @media (min-width: 900px) {
    .position-card {
      padding-right: var(--sp-8);
      border-bottom: 0;
      border-right: 1px solid var(--rule);
    }
    .position-card + .position-card {
      padding-right: 0;
      padding-left: var(--sp-8);
      border-right: 0;
    }
  }

  .position-card-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo);
  }

  .position-card-body {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 1.8vw, 26px);
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--ink);
    flex: 1;
    max-width: 32ch;
  }

  .position-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.005em;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    transition: color .15s ease, border-color .15s ease;
  }
  .position-card-link .arr { transition: transform .15s ease; }
  .position-card-link:hover { color: var(--indigo); border-color: var(--indigo); }
  .position-card-link:hover .arr { transform: translateX(3px); }

  /* ============================================================
     MARKETS — Three numbered markets with role lists
     ============================================================ */
  .markets-head { max-width: 60ch; }

  .markets-header {
    margin-bottom: var(--sp-9);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: center;
  }
  @media (min-width: 900px) {
    .markets-header {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
      gap: clamp(48px, 6vw, 96px);
    }
  }
  .markets-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: var(--sp-5);
  }
  .markets-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4.6vw, 68px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
  }
  .markets-sub {
    margin-top: var(--sp-5);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
    color: var(--ink-80);
    max-width: 50ch;
  }
  .markets-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }
  .markets-image img {
    display: block;
    width: 100%;
    height: auto;
  }

  .market {
    border-top: 1px solid var(--rule);
    padding-top: var(--sp-9);
    padding-bottom: var(--sp-9);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }
  .market:first-child { border-top: 1px solid var(--rule); padding-top: var(--sp-9); }
  .market:last-child { padding-bottom: 0; }
  @media (min-width: 900px) {
    .market {
      grid-template-columns: 8rem 1fr 1fr;
      gap: var(--sp-8);
      align-items: start;
    }
  }

  .market-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: clamp(44px, 5vw, 72px);
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .market-num .signal { color: var(--indigo); }
  .market-num .dash {
    color: var(--indigo);
    font-weight: 500;
  }

  .market-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.2vw, 42px);
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: var(--sp-5);
  }
  .market-copy {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-80);
    max-width: 48ch;
  }

  .roles-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: var(--sp-5);
  }
  .roles-list {
    border-top: 1px solid var(--rule);
  }
  .roles-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.015em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: var(--sp-4);
  }
  .roles-list li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--indigo);
    border-radius: 0;
    display: inline-block;
    transform: skewX(-18deg);
    flex-shrink: 0;
    margin-right: 4px;
  }

  /* Sweet-spot focus list — sits under the market copy (left column),
     lighter than the roles list so it supports rather than competes. */
  .market-focus { margin-top: var(--sp-5); }
  .focus-list { display: grid; gap: 0; }
  .focus-list li {
    padding: 3px 0;
    line-height: 1.35;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.015em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: var(--sp-4);
  }
  .focus-list li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--indigo);
    display: inline-block;
    transform: skewX(-18deg);
    flex-shrink: 0;
  }

  /* ============================================================
     SPEED — Indigo surface, manifesto moment
     ============================================================ */
  .speed {
    background: var(--indigo);
    color: rgba(255,255,255,0.92);
    border-top: 0;
    position: relative;
    overflow: hidden;
  }
  .speed.section {
    padding-top: clamp(80px, 9vw, 140px);
    padding-bottom: clamp(80px, 9vw, 140px);
  }
  .speed-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    align-items: end;
  }
  @media (min-width: 900px) {
    .speed-inner {
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: clamp(56px, 7vw, 120px);
    }
  }
  .speed-eyebrow {
    display: inline-block;
    margin-bottom: var(--sp-4);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo-light);
  }
  .speed-display {
    color: var(--white);
    font-weight: 700;
    font-size: clamp(48px, 7vw, 100px);
    letter-spacing: 0.01em;
    line-height: 1.02;
  }
  .speed-body {
    padding-bottom: 10px;
  }
  @media (max-width: 899px) {
    .speed-body {
      padding-bottom: 0;
      margin-top: var(--sp-5);
      padding-top: var(--sp-5);
      border-top: 1px solid rgba(255,255,255,0.20);
    }
  }
  .speed-body p {
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.94);
  }
  .speed-body p + p { margin-top: 1em; }

  /* Massive V/ watermark — fills the right half of the section */
  .speed-mark {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(700px, 78vw, 1500px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 1;
  }
  .speed-mark svg { width: 100%; height: auto; }
  .speed-mark path { fill: #FFFFFF !important; }
  @media (max-width: 900px) {
    .speed-mark {
      width: 140vw;
      right: -30vw;
      top: auto;
      bottom: -10%;
      transform: none;
      opacity: 0.12;
    }
  }

  /* ============================================================
     WHAT WE DELIVER — three powerful cards
     ============================================================ */
  .deliver-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  @media (min-width: 900px) {
    .deliver-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-4);
    }
  }
  .deliver-card {
    background: var(--indigo-soft);
    padding: clamp(28px, 3.2vw, 44px);
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    transition: transform .25s ease, box-shadow .25s ease;
    color: var(--ink);
  }
  .deliver-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px -28px rgba(79, 70, 229, 0.35);
  }
  .deliver-card.featured {
    background: var(--indigo);
    color: var(--white);
  }
  .deliver-card.featured:hover {
    box-shadow: 0 28px 60px -20px rgba(79, 70, 229, 0.55);
  }
  .card-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: clamp(48px, 5.2vw, 76px);
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--indigo);
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  .card-num .slash {
    color: var(--indigo);
    font-weight: 500;
    margin-left: 2px;
  }
  .card-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 2.6vw, 36px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
    margin-top: var(--sp-4);
  }
  .deliver-card.featured .card-title { color: var(--white); }
  .card-tagline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: clamp(17px, 1.35vw, 20px);
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--ink);
  }
  .deliver-card.featured .card-tagline { color: var(--white); }
  .card-body {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-80);
  }
  .deliver-card.featured .card-body { color: rgba(255,255,255,0.86); }
  .card-foot {
    margin-top: auto;
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(12,10,9,0.12);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .deliver-card.featured .card-foot { border-top-color: rgba(255,255,255,0.22); }
  .foot-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .deliver-card.featured .foot-label { color: rgba(255,255,255,0.7); }
  .foot-value {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.005em;
    color: var(--ink);
    line-height: 1.4;
  }
  .deliver-card.featured .foot-value { color: var(--white); }

  /* Role list inside a card (used by markets) */
  .card-roles-block {
    margin-top: auto;
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(12,10,9,0.12);
  }
  .card-roles-block .foot-label { display: block; margin-bottom: var(--sp-3); }
  .card-roles { list-style: none; padding: 0; margin: 0; }
  .card-roles li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(12,10,9,0.10);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.005em;
    line-height: 1.3;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .card-roles li:last-child { border-bottom: 0; }
  .card-roles li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--ink-50);
    transform: skewX(-18deg);
    flex-shrink: 0;
    margin-right: 2px;
  }
  .deliver-card.featured .card-roles-block { border-top-color: rgba(255,255,255,0.22); }
  .deliver-card.featured .card-roles li {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.18);
  }
  .deliver-card.featured .card-roles li::before { background: rgba(255,255,255,0.7); }

  /* ============================================================
     NETWORK PROOF — 4 firm-category columns
     ============================================================ */
  .network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
    margin-top: var(--sp-7);
  }
  @media (min-width: 900px) {
    .network-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-6);
    }
  }
  .firm-cat {
    border-top: 1px solid var(--ink);
    padding-top: var(--sp-5);
  }
  .firm-cat-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: var(--sp-5);
  }
  .firm-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    line-height: 1.2;
  }
  .firm-list li:last-child { border-bottom: 0; }

  /* Firm wordmarks — styled to evoke each brand's real mark */
  .firm {
    font-family: 'Calibri', 'Carlito', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0;
    color: var(--ink);
    display: inline-block;
  }
  .firm--mckinsey {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    color: #051C2C;
  }
  .firm--bcg          { color: #006A3D; letter-spacing: 0.10em; }
  .firm--bain         { color: #CC0000; letter-spacing: 0.04em; }
  .firm--kearney      { color: #1A1A1A; }
  .firm--pwc          { color: #DC6900; letter-spacing: 0; }
  .firm--deloitte     { color: #000000; }
  .firm--deloitte .dot { color: #86BC25; }
  .firm--ey           { background: #FFE600; color: #2E2E38; padding: 2px 8px; }
  .firm--kpmg         { color: #00338D; letter-spacing: 0.04em; }
  .firm--microsoft    { font-weight: 400; color: #1A1A1A; }
  .firm--oracle       { color: #C74634; letter-spacing: 0.18em; }
  .firm--accenture    { color: #A100FF; }
  .firm--capgemini    { color: #0070AD; }
  .firm--pe           { color: #0A2540; }

  /* ============================================================
     LEGACY — timeline narrative
     ============================================================ */
  .legacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  @media (min-width: 900px) {
    .legacy-grid {
      grid-template-columns: 1fr 1.5fr;
      gap: var(--sp-10);
      align-items: start;
    }
  }
  .legacy-display {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5vw, 76px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
  }
  .legacy-display .signal { color: var(--indigo); }
  .legacy-caption {
    margin-top: var(--sp-6);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-50);
    line-height: 1.9;
    max-width: none;
    white-space: nowrap;
  }
  @media (max-width: 720px) {
    .legacy-caption { white-space: normal; }
  }
  .legacy-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ink);
  }
  .legacy-step {
    padding: var(--sp-6) 0;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: var(--sp-6);
    align-items: start;
  }
  .legacy-step:last-child { border-bottom: 0; padding-bottom: 0; }
  .step-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: clamp(28px, 2.6vw, 36px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: 0.02em;
    padding-top: 4px;
  }
  .step-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }
  .step-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .step-headline {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 1.7vw, 24px);
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--ink);
  }
  .step-body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-80);
    max-width: 56ch;
    margin-top: 4px;
  }
  /* Bullet list inside a timeline step (services, current focus) */
  .step-list {
    margin-top: var(--sp-4);
    display: grid;
    gap: 0;
    max-width: 56ch;
  }
  .step-list li {
    position: relative;
    padding: 7px 0 7px 20px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .step-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px; height: 6px;
    background: var(--indigo);
    transform: skewX(-18deg);
  }

  /* ============================================================
     CLOSING CTA
     ============================================================ */
  .closing {
    text-align: left;
    background: var(--white);
  }
  .closing-display {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5.4vw, 80px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
    max-width: 18ch;
  }
  .closing-subhead {
    margin-top: var(--sp-6);
    max-width: 40ch;
    color: var(--ink-80);
    font-weight: 500;
    font-size: clamp(18px, 1.5vw, 22px);
    letter-spacing: 0.01em;
    line-height: 1.4;
  }
  .closing-ctas { margin-top: var(--sp-8); display: inline-flex; gap: 12px; flex-wrap: wrap; }
  .closing-caption {
    margin-top: var(--sp-6);
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    color: var(--ink-50);
    letter-spacing: 0.005em;
  }
  .closing-caption a {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    transition: color .15s ease, border-color .15s ease;
  }
  .closing-caption a:hover { color: var(--indigo); border-color: var(--indigo); }

  /* ============================================================
     FOOTER — clean single-row strip
     ============================================================ */
  .footer {
    border-top: 1px solid var(--rule);
    padding-top: var(--sp-6);
    padding-bottom: var(--sp-6);
    background: var(--white);
  }
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
  @media (min-width: 720px) {
    .footer-inner {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-6);
    }
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .brand-lockup--footer { height: 26px; }
  .footer-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  .footer-word {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: var(--ink);
  }
  .footer-sep {
    color: var(--ink-50);
    font-size: 14px;
  }
  .footer-line {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--indigo);
  }
  .footer-meta {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--ink-50);
    display: inline-flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
  }
  .footer-meta a:hover { color: var(--ink); }

  /* ---------- Document seam (brand-book style page seam) ---------- */
  .doc-seam {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-4) 0;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--ink-50);
    border-bottom: 1px solid var(--rule);
  }
  .doc-seam .signal { color: var(--indigo); }

  /* ---------- Mobile tweaks ---------- */
  @media (max-width: 720px) {
    .nav-cta { padding: 9px 14px; font-size: 13px; }
    .brand-lockup { height: 28px; }
  }
  @media (max-width: 560px) {
    .hero-seam { font-size: 10px; gap: var(--sp-5); }
  }

  /* ============================================================
     INNER PAGES — shared indigo page hero + content
     ============================================================ */
  .page-hero {
    position: relative;
    overflow: hidden;
    background: var(--indigo);
    padding-top: clamp(88px, 11vw, 140px);
    padding-bottom: clamp(88px, 11vw, 140px);
  }
  .page-hero > .wrap { position: relative; z-index: 2; }
  .page-hero-mark {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(700px, 78vw, 1500px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 1;
  }
  .page-hero-mark svg { width: 100%; height: auto; }
  .page-hero-mark path { fill: #FFFFFF !important; }
  @media (max-width: 900px) {
    .page-hero-mark {
      width: 140vw;
      right: -30vw;
      top: auto;
      bottom: -10%;
      transform: none;
      opacity: 0.12;
    }
  }
  .page-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    margin-bottom: var(--sp-5);
  }
  .page-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(44px, 6vw, 88px);
    letter-spacing: 0.01em;
    line-height: 1.04;
    color: var(--white);
    max-width: 18ch;
  }
  .page-title .signal { color: var(--white); }
  .page-lede {
    margin-top: var(--sp-6);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.5vw, 22px);
    letter-spacing: 0.01em;
    line-height: 1.45;
    color: var(--white);
    max-width: 56ch;
  }

  .page-body {
    padding-bottom: clamp(80px, 10vw, 140px);
  }
  .page-body p {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.6;
    color: var(--ink-80);
    max-width: 60ch;
  }
  .page-body p + p { margin-top: 1em; }

  /* Contact page-specific blocks */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    border-top: 1px solid var(--rule);
    padding-top: var(--sp-8);
  }
  @media (min-width: 720px) {
    .contact-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-7);
    }
  }
  .contact-block {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }
  .contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .contact-value {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 1.5vw, 22px);
    letter-spacing: 0.01em;
    color: var(--ink);
  }
  .contact-value a { border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: color .15s ease, border-color .15s ease; }
  .contact-value a:hover { color: var(--indigo); border-bottom-color: var(--indigo); }

  /* Team page */
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  @media (min-width: 900px) {
    .team-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .team-card {
    background: var(--indigo-soft);
    padding: clamp(28px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
  }
  .team-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2vw, 28px);
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: var(--ink);
  }
  .team-role {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo);
  }
  .team-bio {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-80);
  }

  /* Team · Editorial profile rows (image + bio) */
  .team-profiles { margin-top: var(--sp-7); }
  .profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-7);
    padding-top: var(--sp-9);
    padding-bottom: var(--sp-9);
    border-top: 1px solid var(--rule);
    scroll-margin-top: 96px;
  }
  .profile:first-child { border-top: 0; padding-top: var(--sp-7); }
  .profile:last-child  { padding-bottom: 0; }
  @media (min-width: 900px) {
    .profile {
      grid-template-columns: minmax(280px, 380px) 1fr;
      gap: var(--sp-10);
      align-items: start;
    }
  }
  .profile-portrait {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--indigo-soft);
    overflow: hidden;
    position: relative;
  }
  .profile-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
  }
  .profile-portrait:hover img { transform: scale(1.02); }
  .profile-body { padding-top: var(--sp-4); }
  @media (min-width: 900px) {
    .profile-body { padding-top: 0; }
  }
  .profile-role {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: var(--sp-5);
  }
  .profile-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: var(--sp-6);
  }
  .profile-name a { color: inherit; transition: color .15s ease; }
  .profile-name a:hover { color: var(--indigo); }
  .profile-bio p {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 1.1vw, 17px);
    line-height: 1.65;
    color: var(--ink-80);
    max-width: 64ch;
  }
  .profile-bio p + p { margin-top: 1em; }

  /* Profile highlight — callout for recent successes / current mandates in a bio */
  .profile-highlight {
    margin-top: var(--sp-6);
    padding: var(--sp-5) var(--sp-6);
    background: var(--indigo-soft);
    border-left: 3px solid var(--indigo);
    max-width: 64ch;
  }
  .profile-highlight-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--indigo-deep);
    margin-bottom: var(--sp-4);
  }
  .profile-highlight-list { display: grid; gap: 0; }
  .profile-highlight-list li {
    padding: 10px 0;
    border-top: 1px solid rgba(79, 70, 229, 0.18);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.05vw, 16px);
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: var(--sp-4);
  }
  .profile-highlight-list li:first-child { border-top: 0; padding-top: 0; }
  .profile-highlight-list li:last-child { padding-bottom: 0; }
  .profile-highlight-list li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--indigo);
    display: inline-block;
    transform: skewX(-18deg);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* About · Beliefs (3 numbered tenets) */
  .beliefs-grid {
    display: grid; grid-template-columns: 1fr; gap: 0;
    border-top: 1px solid var(--rule);
    margin-top: var(--sp-8);
  }
  @media (min-width: 900px) {
    .beliefs-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .belief {
    padding: var(--sp-7) 0;
    border-bottom: 1px solid var(--rule);
  }
  @media (min-width: 900px) {
    .belief {
      padding: var(--sp-7) var(--sp-7) var(--sp-7) 0;
      border-bottom: 0;
      border-right: 1px solid var(--rule);
    }
    .belief:last-child { border-right: 0; padding-right: 0; }
    .belief + .belief { padding-left: var(--sp-7); }
  }
  .belief-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.18em;
    color: var(--indigo);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--rule);
  }
  .belief-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 1.9vw, 24px);
    letter-spacing: 0.005em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--sp-5);
    text-wrap: balance;
  }
  .belief-body {
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-80);
    max-width: 38ch;
  }

  /* Contact · Audience cards (dual paths) */
  .audience-grid {
    margin-top: var(--sp-9);
    display: grid; grid-template-columns: 1fr; gap: 0;
    border-top: 1px solid var(--rule);
  }
  @media (min-width: 900px) {
    .audience-grid { grid-template-columns: 1fr 1fr; }
  }
  .audience {
    padding: var(--sp-7) 0;
    border-bottom: 1px solid var(--rule);
    display: flex; flex-direction: column; gap: var(--sp-5);
  }
  @media (min-width: 900px) {
    .audience {
      padding: var(--sp-7) var(--sp-8) var(--sp-7) 0;
      border-bottom: 0;
      border-right: 1px solid var(--rule);
    }
    .audience + .audience {
      padding-right: 0;
      padding-left: var(--sp-8);
      border-right: 0;
    }
  }
  .audience-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500; font-size: 12px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--indigo);
  }
  .audience-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 1.8vw, 26px);
    letter-spacing: 0.01em; line-height: 1.3;
    color: var(--ink); max-width: 32ch;
  }
  .audience-cta {
    display: inline-flex; align-items: center; gap: 8px;
    align-self: flex-start;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500; font-size: 15px;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    transition: color .15s, border-color .15s;
  }
  .audience-cta:hover { color: var(--indigo); border-color: var(--indigo); }
  .audience-cta .arr { transition: transform .15s; display: inline-block; }
  .audience-cta:hover .arr { transform: translateX(3px); }

  /* Contact · Direct lines (partner contact rows) */
  .contacts-grid {
    margin-top: var(--sp-9);
    display: grid; grid-template-columns: 1fr;
    border-top: 1px solid var(--rule);
  }
  @media (min-width: 720px) {
    .contacts-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 1100px) {
    .contacts-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .contact-row {
    padding: var(--sp-7) 0;
    border-bottom: 1px solid var(--rule);
  }
  @media (min-width: 720px) {
    .contact-row {
      padding: var(--sp-7) var(--sp-6) var(--sp-7) 0;
      border-right: 1px solid var(--rule);
    }
    .contact-row:nth-child(2n) {
      padding-right: 0; padding-left: var(--sp-6); border-right: 0;
    }
  }
  @media (min-width: 1100px) {
    .contact-row {
      padding: var(--sp-7) var(--sp-6) var(--sp-7) 0;
      border-right: 1px solid var(--rule);
    }
    .contact-row:nth-child(2n) {
      padding-right: var(--sp-6); padding-left: var(--sp-6); border-right: 1px solid var(--rule);
    }
    .contact-row:nth-child(3n) {
      padding-right: 0; padding-left: var(--sp-6); border-right: 0;
    }
  }
  .contact-role {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500; font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: var(--sp-4);
  }
  .contact-name {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 1.8vw, 26px);
    letter-spacing: 0.01em; line-height: 1.1;
    color: var(--ink);
    margin-bottom: var(--sp-5);
  }
  .contact-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--ink-80);
    line-height: 1.65;
    word-break: break-word;
  }
  .contact-line a {
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
    transition: color .15s, border-color .15s;
  }
  .contact-line a:hover { color: var(--indigo); border-color: var(--indigo); }
  .contact-line + .contact-line { margin-top: 4px; }

  /* Section eyebrow + title (shared for sub-sections) */
  .section-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500; font-size: 12px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: var(--sp-5);
  }
  .section-title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4.2vw, 60px);
    letter-spacing: 0.01em; line-height: 1.08;
    color: var(--ink); max-width: 22ch;
  }
  .section-sub {
    margin-top: var(--sp-5);
    max-width: 60ch;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
    color: var(--ink-80);
  }

  /* Contact · Office map */
  .office-map {
    margin: var(--sp-9) 0 0;
    border: 1px solid var(--rule);
    background: var(--indigo-soft);
    overflow: hidden;
    position: relative;
  }
  .office-map iframe {
    display: block;
    width: 100%;
    height: clamp(280px, 44vw, 540px);
    border: 0;
    filter: saturate(1.45) contrast(1.04);
  }
  .office-map--colour iframe {
    filter: saturate(1.55) contrast(1.05);
  }
  .office-map-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--sp-6);
    border-top: 1px solid var(--rule);
    background: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
  }
  .office-map-meta { color: var(--ink); }
  .office-map-link {
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 1px;
    transition: color .15s ease, border-color .15s ease;
  }
  .office-map-link:hover { color: var(--indigo); border-bottom-color: var(--indigo); }
  @media (max-width: 560px) {
    .office-map-caption { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  }

  /* ============================================================
     CONTACT FORM (Resend)
     ============================================================ */
  .contact-form {
    margin-top: var(--sp-8);
    max-width: 760px;
    display: grid;
    gap: var(--sp-6);
  }
  .hp-field {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    overflow: hidden;
  }
  .field-group { border: 0; padding: 0; margin: 0; }
  .field-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-50);
    margin-bottom: var(--sp-4);
  }
  .field-label .req { color: var(--indigo); margin-left: 2px; }

  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
  }
  .radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--rule);
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    color: var(--ink-80);
    transition: border-color .15s, color .15s;
    user-select: none;
  }
  .radio:hover { border-color: var(--ink); color: var(--ink); }
  .radio input {
    appearance: none;
    -webkit-appearance: none;
    width: 14px; height: 14px;
    border: 1.5px solid var(--ink-50);
    border-radius: 50%;
    margin: 0;
    position: relative;
    transition: border-color .15s;
  }
  .radio input:checked { border-color: var(--indigo); }
  .radio input:checked::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--indigo);
    border-radius: 50%;
  }
  .radio:has(input:checked) { border-color: var(--ink); color: var(--ink); }

  .field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  @media (min-width: 720px) {
    .field-row { grid-template-columns: 1fr 1fr; }
  }
  .field { display: flex; flex-direction: column; }
  .field-input {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 0;
    padding: 14px 16px;
    width: 100%;
    transition: border-color .15s;
  }
  .field-input::placeholder { color: var(--ink-50); }
  .field-input:focus {
    outline: none;
    border-color: var(--ink);
  }
  textarea.field-input {
    resize: vertical;
    min-height: 160px;
  }

  .form-action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-5);
    margin-top: var(--sp-3);
  }
  .form-submit { min-width: 180px; justify-content: center; }
  .form-submit:disabled { opacity: 0.55; cursor: not-allowed; }
  .form-status {
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-80);
    max-width: 40ch;
  }
  .form-status.is-success { color: var(--indigo); }
  .form-status.is-error   { color: #B91C1C; }

  /* ============================================================
     MOBILE NAV — hamburger toggle + slide-down drawer
     ============================================================ */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    margin-left: var(--sp-3);
    color: var(--ink);
  }
  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform .22s ease, opacity .15s ease;
    transform-origin: center;
  }
  .nav-toggle[aria-expanded="true"] { color: var(--indigo); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  @media (min-width: 920px) {
    .nav-toggle { display: none; }
  }

  .nav-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 40;
    display: flex;
    flex-direction: column;
    padding: var(--sp-7) var(--pad-x) var(--sp-8);
    transform: translateY(-110%);
    transition: transform .28s ease;
    overflow-y: auto;
    visibility: hidden;
  }
  .nav-drawer[aria-hidden="false"] {
    transform: translateY(0);
    visibility: visible;
  }
  .nav-drawer-links {
    display: flex;
    flex-direction: column;
  }
  .nav-drawer-links a {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.01em;
    color: var(--ink);
    padding: var(--sp-5) 0;
    border-bottom: 1px solid var(--rule);
    transition: color .15s ease;
  }
  .nav-drawer-links a:first-child { padding-top: 0; }
  .nav-drawer-links a:hover,
  .nav-drawer-links a:active { color: var(--indigo); }
  .nav-drawer-links a.is-active { color: var(--indigo-deep); }
  .nav-drawer-cta {
    margin-top: var(--sp-7);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--indigo);
    color: var(--white);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.005em;
    padding: 14px 22px;
    border: 0;
  }
  .nav-drawer-meta {
    margin-top: auto;
    padding-top: var(--sp-7);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--ink-50);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
  }
  .nav-drawer-meta a { color: inherit; border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
  body.nav-open { overflow: hidden; }
  @media (min-width: 920px) {
    .nav-drawer { display: none; }
  }

  /* ============================================================
     MOBILE OPTIMISATION — across all sections
     ============================================================ */
  @media (max-width: 720px) {
    /* Bigger tap target for primary CTA on mobile */
    .nav-cta { padding: 11px 16px; font-size: 13px; min-height: 40px; }

    /* Hero — keep V/ visible but not overwhelming */
    .hero-mark { width: 150vw; right: -45vw; top: 60%; opacity: 0.55; }
    .hero-display { max-width: 100%; }

    /* Section padding tighter on small screens */
    .section { padding-top: var(--sp-9); padding-bottom: var(--sp-9); }

    /* Deliver/markets cards — slightly tighter padding on mobile */
    .deliver-card { padding: 28px 24px; }
    .card-title { font-size: clamp(22px, 5vw, 26px); }
    .card-num { font-size: clamp(40px, 10vw, 52px); }

    /* Markets stacked rows */
    .market { padding-top: var(--sp-7); padding-bottom: var(--sp-7); gap: var(--sp-5); }
    .market-num { font-size: clamp(36px, 9vw, 48px); }

    /* Legacy timeline — keep readable */
    .legacy-step { grid-template-columns: 4rem 1fr; gap: var(--sp-4); padding: var(--sp-5) 0; }
    .step-num { font-size: clamp(20px, 5vw, 26px); padding-top: 2px; }
    .legacy-display { font-size: clamp(40px, 12vw, 64px); }

    /* Network firm grid → 2 columns on small */
    .network-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }

    /* Footer wraps gracefully */
    .footer-meta { font-size: 10px; gap: var(--sp-4); }

    /* Touch targets — ensure links/buttons ≥ 44px tappable */
    .btn { min-height: 48px; }
  }

  @media (max-width: 480px) {
    /* Single-column firm grid on tiny screens */
    .network-grid { grid-template-columns: 1fr; }
    /* Drawer link size slightly smaller */
    .nav-drawer-links a { font-size: 24px; padding: var(--sp-4) 0; }
  }

  /* Footer mobile — stack brand + tagline cleanly */
  @media (max-width: 600px) {
    .footer-tag { gap: 4px; align-items: flex-start; flex-direction: column; }
    .footer-sep { display: none; }
  }

  /* ============================================================
     CROSSOVER · Venn graphic + text (home page, after Speed)
     ============================================================ */
  .crossover-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: center;
  }
  @media (min-width: 900px) {
    .crossover-grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(56px, 7vw, 120px);
    }
  }
  .crossover-graphic {
    margin: 0;
    max-width: 560px;
    width: 100%;
    justify-self: start;
  }
  @media (max-width: 899px) {
    .crossover-graphic {
      justify-self: center;
      max-width: 480px;
    }
  }
  .crossover-graphic img {
    display: block;
    width: 100%;
    height: auto;
  }
  .crossover-text .section-eyebrow {
    display: inline-block;
    margin-bottom: var(--sp-5);
  }
  .crossover-text .section-title {
    margin-bottom: var(--sp-6);
    max-width: 14ch;
  }
  .crossover-body {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55;
    color: var(--ink-80);
    max-width: 48ch;
  }
  .crossover-body + .crossover-body { margin-top: 1em; }
