@font-face {
  font-family: "Kessel";
  src: url("fonts/Kessel-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kessel";
  src: url("fonts/Kessel-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kessel";
  src: url("fonts/Kessel-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1b3c53;
  --navy-deep: #0d2839;
  --gold: #eab454;
  --gold-deep: #b98532;
  --white: #fffefb;
  --cream: #f5f0e6;
  --cream-deep: #e9e1d3;
  --ink: #16364b;
  --muted: #667680;
  --line: rgba(27, 60, 83, .18);
  --container: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button, summary { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Kessel", Georgia, serif;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.1vw, 5.3rem);
  font-weight: 300;
  line-height: .97;
}

h2 strong { font-weight: 900; }
h3 { line-height: 1.02; }

.container {
  width: min(calc(100% - 56px), var(--container));
  margin-inline: auto;
}

.section { padding: 124px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

.eyebrow-light { color: var(--gold); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 20px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--navy-deep);
  font-size: .83rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
}

.button-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
}

.interest-bar {
  min-height: 30px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  background: rgba(255, 254, 251, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: height .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.is-scrolled {
  height: 70px;
  box-shadow: 0 10px 28px rgba(13, 40, 57, .08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand { display: block; width: min(220px, 100%); }
.brand img { width: 100%; height: auto; }

.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: 31px;
}

.primary-nav a {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover { color: var(--gold-deep); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  padding: 58px 0 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(234, 180, 84, .08), transparent 23rem),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
  align-items: start;
  gap: clamp(45px, 5.5vw, 78px);
}

.hero-copy { padding: 13px 0 38px; }

.hero-copy h1 {
  max-width: 690px;
  margin: 0 0 25px;
  color: var(--navy);
  font-size: clamp(3.7rem, 4.45vw, 5rem);
  font-weight: 900;
  line-height: .93;
}

.hero-copy mark {
  position: relative;
  z-index: 0;
  background: none;
  color: var(--gold-deep);
}

.hero-copy mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: .02em;
  left: 0;
  height: .09em;
  background: var(--gold);
  transform: rotate(-.5deg);
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-path-card {
  position: relative;
  min-height: 635px;
  margin: 0;
  padding: 42px;
  background: var(--cream);
  border: 1px solid rgba(27, 60, 83, .08);
  border-radius: 74px 74px 46px 74px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(13, 40, 57, .09);
}

.hero-path-card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(27, 60, 83, .16);
  border-radius: 65px 65px 38px 65px;
  pointer-events: none;
}

.path-line {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  overflow: visible;
}

.path-line path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-main {
  stroke: var(--gold);
  stroke-width: 7;
}

.path-arrow {
  stroke: var(--gold-deep);
  stroke-width: 5;
}

.hero-route-card {
  position: absolute;
  z-index: 3;
  padding: 18px 19px;
  background: rgba(255, 254, 251, .98);
  border: 1px solid rgba(27, 60, 83, .09);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(13, 40, 57, .07);
}

.route-find {
  top: 38px;
  left: 42px;
  width: 245px;
}

.route-follow {
  top: 226px;
  right: 31px;
  width: 281px;
}

.route-convert {
  bottom: 34px;
  left: 42px;
  width: 276px;
}

.route-card-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 6px;
}

.route-card-heading span {
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 800;
}

.route-card-heading b {
  color: var(--navy);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-route-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.42rem;
  font-weight: 700;
}

.hero-route-card p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 650;
}

.route-brand-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 13px;
}

.route-brand-row > span {
  height: 42px;
  display: grid;
  place-items: center;
  padding: 7px;
  background: var(--cream);
  border: 1px solid rgba(27, 60, 83, .06);
  border-radius: 6px;
  overflow: hidden;
}

.route-brand-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.route-brand-row svg {
  width: 27px;
  height: 23px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
}

.route-brand-row .linkedin-chip {
  background: #1178b3;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.crm-row > span { height: 39px; }
.crm-row > span:nth-child(1) img { width: 25px; }
.crm-row > span:nth-child(2) img { width: 29px; }
.crm-row > span:nth-child(3) img { width: 23px; }
.crm-row .zoho-chip img { width: 57px; max-width: none; }

.conversation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.people-talk {
  width: 112px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.people-talk .talk-gold { stroke: var(--gold-deep); }

.handshake-seal {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  padding: 8px;
  border: 3px double var(--gold-deep);
  border-radius: 50%;
  color: var(--gold-deep);
  transform: rotate(5deg);
}

.handshake-seal svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.handshake-seal b {
  font-size: .5rem;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.diagram-note {
  position: absolute;
  z-index: 2;
  color: var(--muted);
  font-family: "Kessel";
  font-size: .88rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
}

.diagram-note::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 1px;
  background: var(--gold-deep);
}

.note-qualified { top: 76px; right: 25px; transform: rotate(3deg); }
.note-qualified::before { bottom: -9px; left: -13px; transform: rotate(44deg); }
.note-cold { top: 240px; left: 25px; transform: rotate(-4deg); }
.note-cold::before { right: -24px; bottom: -3px; transform: rotate(32deg); }
.note-pipeline { right: 18px; bottom: 74px; transform: rotate(-3deg); }
.note-pipeline::before { bottom: -8px; left: -15px; transform: rotate(47deg); }

.hero-path-card figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* V5 blueprint route, tightened so the whole proposition lands above the fold. */
.hero-route {
  position: relative;
  align-self: start;
  margin: -10px 0 0;
  background: var(--white);
  border: 1px solid rgba(27, 60, 83, .15);
  border-radius: 2px;
  box-shadow: 14px 17px 0 rgba(234, 180, 84, .5);
  transform: rotate(.35deg);
}

.hero-route::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(27, 60, 83, .2);
}

.route-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.live-mark { display: inline-flex; align-items: center; gap: 7px; }
.live-mark i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(234, 180, 84, .2);
}

.route-canvas {
  position: relative;
  min-height: 510px;
  background:
    linear-gradient(rgba(27, 60, 83, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 60, 83, .055) 1px, transparent 1px);
  background-size: 29px 29px;
  overflow: hidden;
}

.route-line { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.route-line-shadow, .route-line-main, .route-arrow { fill: none; stroke-linecap: round; }
.route-line-shadow { stroke: rgba(27, 60, 83, .12); stroke-width: 11; }
.route-line-main { stroke: var(--gold); stroke-width: 4; stroke-dasharray: 10 9; animation: routeFlow 18s linear infinite; }
.route-arrow { stroke: var(--gold-deep); stroke-width: 5; }

@keyframes routeFlow { to { stroke-dashoffset: -380; } }

.route-node {
  position: absolute;
  z-index: 2;
  padding: 13px 14px;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 rgba(27, 60, 83, .14);
}

.node-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.node-index, .node-type {
  color: var(--gold-deep);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

.node-type { color: var(--muted); letter-spacing: .08em; }
.route-node > strong, .route-node > small { display: block; }
.route-node > strong { margin: 0 0 4px; font-family: "Kessel"; font-size: 1.12rem; line-height: 1.02; }
.route-node > small { color: var(--muted); font-size: .64rem; font-weight: 700; line-height: 1.35; }

.node-demand { top: 20px; left: 4%; width: 225px; min-height: 147px; }
.node-system {
  top: 158px;
  left: 28%;
  width: 255px;
  min-height: 190px;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.node-system .node-type, .node-system > small { color: rgba(255, 254, 251, .68); }
.node-result { right: 4%; bottom: 17px; width: 220px; min-height: 145px; border-color: var(--gold-deep); }

.acquisition-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-top: 9px;
}

.channel-icon {
  min-width: 0;
  min-height: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 2px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--navy);
  text-align: center;
}

.channel-icon b { max-width: 100%; font-size: .52rem; line-height: 1.05; }
.channel-pair { height: 19px; display: flex; align-items: center; justify-content: center; gap: 3px; }
.channel-pair img { width: 19px; height: 17px; object-fit: contain; }
.channel-pair img:last-child { width: 15px; }
.brand-mark { width: 23px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.linkedin-mark rect { fill: currentColor; stroke: none; }
.linkedin-mark circle { fill: var(--white); stroke: none; }
.linkedin-mark path { fill: none; stroke: var(--white); stroke-width: 2.2; }
.people-icon { color: var(--gold-deep); }

.crm-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 9px;
}

.crm-logo {
  min-width: 0;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px;
  background: rgba(255, 254, 251, .97);
  border: 1px solid rgba(234, 180, 84, .5);
  color: var(--navy-deep);
  overflow: hidden;
}

.crm-logo img { width: 18px; height: 21px; flex: 0 0 auto; object-fit: contain; }
.crm-logo b { display: none; }
.crm-logo.zoho-logo img { width: 45px; height: 18px; max-width: none; }

.follow-up-sequence {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 254, 251, .2);
}

.follow-up-sequence > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
}

.follow-up-sequence svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.follow-up-sequence > i { height: 1px; flex: 1 1 8px; background: rgba(255, 254, 251, .44); }
.follow-up-sequence > b { margin-left: 2px; color: rgba(255, 254, 251, .7); font-size: .54rem; }

.deal-visual { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 8px 0 5px; }
.node-result .people-talk { width: 88px; }
.deal-stamp {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  padding: 6px;
  border: 3px double var(--gold-deep);
  border-radius: 50%;
  color: var(--gold-deep);
  transform: rotate(6deg);
}
.deal-stamp svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.deal-stamp b { font-size: .43rem; letter-spacing: .06em; line-height: 1; text-transform: uppercase; }

.route-note {
  position: absolute;
  z-index: 1;
  padding: 5px 8px;
  background: var(--cream);
  color: var(--navy);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.note-one { left: 5%; bottom: 48px; }
.note-two { right: 5%; top: 91px; transform: rotate(3deg); }
.hero-route figcaption { padding: 11px 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: .66rem; line-height: 1.45; }

.hero-foot {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--line);
}

.hero-foot > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-platform-logos li {
  width: 40px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 6px;
  background: var(--cream);
  border: 1px solid rgba(27, 60, 83, .09);
  border-radius: 4px;
}

.hero-platform-logos img {
  width: 27px;
  height: 23px;
  object-fit: contain;
}

.hero-platform-logos .platform-symbol {
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.platform-symbol-linkedin > span:first-child {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  background: #0a66c2;
  border-radius: 2px;
  color: white;
  font-size: .78rem;
  line-height: 1;
}

.platform-symbol-email svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.micro-proof {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 18px 0 18px 35px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.45;
  text-decoration: none;
}

.micro-proof b { color: var(--navy); }
.micro-proof i { color: var(--navy); font-style: normal; }
.micro-avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
}

.video-proof-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
  background:
    linear-gradient(rgba(255, 254, 251, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 251, .035) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 34px 34px;
  color: var(--white);
}

.video-proof-section::before {
  content: "CLIENT PROOF / VIDEO FIRST";
  position: absolute;
  top: 25px;
  right: max(28px, calc((100vw - var(--container)) / 2));
  color: rgba(255, 254, 251, .28);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.video-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.video-proof-heading h2 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5rem);
}

.video-proof-heading h2 strong { color: var(--gold); }

.video-proof-intro > p {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 254, 251, .68);
  font-size: .96rem;
  line-height: 1.65;
}

.video-proof-controls {
  display: flex;
  gap: 9px;
}

.video-proof-controls button {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 254, 251, .35);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.video-proof-controls button:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.video-proof-controls button:disabled {
  opacity: .28;
  cursor: default;
}

.video-proof-section.is-static .video-proof-controls { visibility: hidden; }

.video-proof-viewport { margin-top: 52px; }

.video-proof-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 8px 18px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-proof-track::-webkit-scrollbar { display: none; }

.video-proof-card {
  min-width: 0;
  flex: 0 0 30.5%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(234, 180, 84, .45);
  color: var(--navy);
  scroll-snap-align: start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.video-proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 9px 0 rgba(234, 180, 84, .72);
}

.video-proof-card-featured { box-shadow: 8px 9px 0 rgba(234, 180, 84, .72); }

.video-proof-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071b29;
  border-bottom: 1px solid var(--line);
}

.video-proof-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-proof-number {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  min-width: 42px;
  padding: 7px 9px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  pointer-events: none;
}

.video-proof-body {
  min-height: 340px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 25px 22px;
}

.video-proof-tag {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.video-proof-card blockquote {
  min-height: 112px;
  margin: 0;
  font-family: "Kessel", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.video-proof-summary {
  min-height: 112px;
  margin: 0;
  font-family: "Kessel", Georgia, serif;
  font-size: clamp(1.18rem, 1.6vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.video-proof-outcome {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-proof-outcome > strong {
  color: var(--gold-deep);
  font-family: "Kessel", Georgia, serif;
  font-size: 2.65rem;
  line-height: .8;
}

.video-proof-outcome > strong > span {
  font-size: .34em;
  font-weight: 700;
  letter-spacing: 0;
}

.video-proof-outcome > strong.is-word {
  font-size: 1.65rem;
  letter-spacing: -.03em;
}

.video-proof-outcome > span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.video-proof-credit {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
}

.video-proof-credit > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold);
  font-size: .61rem;
  font-weight: 850;
}

.video-proof-credit p { margin: 0; line-height: 1.25; }
.video-proof-credit strong { display: block; font-size: .76rem; }
.video-proof-credit small { display: block; margin-top: 2px; color: var(--muted); font-size: .67rem; }

.video-proof-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 22px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 254, 251, .16);
  color: rgba(255, 254, 251, .62);
  font-size: .76rem;
}

.video-proof-foot p { margin: 0; }
.video-proof-foot strong { color: var(--white); }
.video-proof-foot > a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(234, 180, 84, .7);
  color: var(--gold);
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a[aria-current="page"] { color: var(--gold-deep); }

.case-library-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 58px;
  background:
    linear-gradient(rgba(27, 60, 83, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 60, 83, .045) 1px, transparent 1px),
    var(--white);
  background-size: 38px 38px;
}

.case-library-hero::after {
  content: "PROOF LIBRARY";
  position: absolute;
  right: max(28px, calc((100vw - var(--container)) / 2));
  bottom: 21px;
  color: rgba(27, 60, 83, .28);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.case-library-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .62fr);
  align-items: end;
  gap: clamp(55px, 9vw, 135px);
}

.case-library-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Kessel", Georgia, serif;
  font-size: clamp(4.7rem, 7.6vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .83;
}

.case-library-hero h1 mark {
  position: relative;
  display: inline;
  background: transparent;
  color: var(--gold-deep);
}

.case-library-hero h1 mark::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.04em;
  left: 0;
  height: .055em;
  background: var(--gold);
}

.case-library-hero-intro > p {
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.case-library-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.case-library-ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 85px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-library-ledger span {
  min-height: 69px;
  display: flex;
  align-items: center;
  padding: 15px 22px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-library-ledger span:last-child { border-right: 0; }

.case-video-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 254, 251, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 254, 251, .035) 1px, transparent 1px),
    var(--navy-deep);
  background-size: 34px 34px;
  color: var(--white);
}

.case-video-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(55px, 9vw, 125px);
}

.case-video-heading h2 { color: var(--white); }
.case-video-heading h2 strong { color: var(--gold); }
.case-video-heading > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 254, 251, .68);
  font-size: .98rem;
}

.case-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.case-video-grid .video-proof-card { flex: none; }
.case-video-grid .video-proof-card:nth-child(4) { box-shadow: 8px 9px 0 rgba(234, 180, 84, .45); }

.case-library-index { background: var(--cream); }

.case-library-index-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .6fr);
  align-items: end;
  gap: clamp(55px, 9vw, 130px);
}

.case-library-index-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.case-library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 54px;
  padding: 13px;
  background: rgba(255, 254, 251, .62);
  border: 1px solid var(--line);
}

.case-library-filters button {
  min-height: 44px;
  padding: 9px 15px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
}

.case-library-filters button:hover,
.case-library-filters button.is-active {
  background: var(--navy);
  color: var(--white);
}

.case-library-count {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 27px;
}

.case-library-card {
  min-height: 335px;
  display: flex;
  flex-direction: column;
  padding: 28px 27px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 6px 7px 0 rgba(27, 60, 83, .08);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.case-library-card:hover {
  transform: translateY(-4px);
  box-shadow: 7px 8px 0 rgba(234, 180, 84, .48);
}

.case-library-card[hidden] { display: none; }

.case-library-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.case-library-card-top span {
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.case-library-card-top b {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.case-library-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.08;
}

.case-library-card > p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.58;
}

.case-library-card > a,
.case-library-pending {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 27px;
  color: var(--navy);
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none;
}

.case-library-card > a { border-bottom: 1px solid var(--gold); }
.case-library-pending { color: var(--muted); }

.problem-section { background: var(--white); }

.problem-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.problem-intro h2 { margin-bottom: 31px; }
.problem-intro > p:last-child { max-width: 500px; color: var(--muted); font-size: 1rem; }

.problem-choices {
  border-top: 1px solid var(--line);
}

.problem-choices details { border-bottom: 1px solid var(--line); }
.problem-choices summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  color: var(--navy);
  font-family: "Kessel";
  font-size: 1.22rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.problem-choices summary::-webkit-details-marker { display: none; }
.problem-choices summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-family: "Manrope";
  font-size: .78rem;
  transition: background .2s, transform .2s;
}

.problem-choices details[open] summary span {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.choice-answer {
  max-width: 590px;
  padding: 2px 52px 27px 0;
}

.choice-answer b { color: var(--navy); }
.choice-answer p { margin: 6px 0 13px; color: var(--muted); font-size: .9rem; }
.choice-answer a {
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.problem-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 92px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.problem-principles div { display: flex; gap: 15px; }
.problem-principles span { color: var(--gold-deep); font-size: .67rem; font-weight: 800; }
.problem-principles p { margin: 0; color: var(--muted); font-family: "Kessel"; font-size: 1rem; line-height: 1.35; }

.lemon-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.lemon-heading, .services-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 100px;
}

.lemon-heading h2 { color: var(--white); }
.lemon-heading h2 strong { color: var(--gold); }
.lemon-intro { max-width: 490px; color: rgba(255, 254, 251, .72); }
.lemon-intro p:last-child { margin-bottom: 0; }

.lemon-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-top: 65px;
}

.lemon-step { min-width: 0; }
.lemon-crop {
  position: relative;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  margin-bottom: 27px;
  border-bottom: 1px solid rgba(255, 254, 251, .22);
  overflow: hidden;
}

.lemon-crop img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
}

.lemon-step > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.lemon-step h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
}

.lemon-step p { margin: 0; color: rgba(255, 254, 251, .66); font-size: .87rem; }

.lemon-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 62px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 254, 251, .14);
}

.lemon-foot p { max-width: 650px; margin: 0; color: rgba(255, 254, 251, .68); font-size: .78rem; }
.lemon-foot a { color: var(--gold); font-size: .78rem; font-weight: 800; text-underline-offset: 5px; }

.services-section { background: var(--cream); }
.services-heading { margin-bottom: 57px; }
.services-heading > p { max-width: 430px; margin: 0; color: var(--muted); }

.service-ledger { border-top: 1px solid var(--line); }
.service-row { border-bottom: 1px solid var(--line); }
.service-row summary {
  display: grid;
  grid-template-columns: 78px 1.05fr 1.15fr auto;
  align-items: center;
  gap: 32px;
  min-height: 154px;
  cursor: pointer;
  list-style: none;
}

.service-row summary::-webkit-details-marker { display: none; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
}

.service-icon svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-title small, .service-title b { display: block; }
.service-title small {
  margin-bottom: 7px;
  color: var(--gold-deep);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-title b {
  color: var(--navy);
  font-family: "Kessel";
  font-size: 1.75rem;
  line-height: 1;
}

.service-summary { max-width: 430px; color: var(--muted); font-size: .9rem; }
.service-row summary > i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.15rem;
  font-style: normal;
  transition: transform .25s, background .25s;
}

.service-row[open] summary > i { background: var(--gold); transform: rotate(45deg); }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 70px 42px 110px;
}

.service-detail p { margin: 0; color: var(--muted); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-cards li {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 10px;
  background: rgba(255, 254, 251, .76);
  border: 1px solid rgba(27, 60, 83, .07);
  color: var(--navy);
  text-align: center;
}

.service-cards li > b { max-width: 145px; font-size: .7rem; font-weight: 800; line-height: 1.35; }
.detail-visual {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
}
.detail-visual svg { width: 34px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.detail-visual .spark { stroke: var(--gold-deep); }
.brand-pair img { width: 32px; height: 28px; object-fit: contain; }
.brand-pair img:last-child { width: 24px; }
.mini-linkedin { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 2px; background: #1178b3; color: #fff; font-family: Arial, sans-serif; font-size: .95rem; font-weight: 800; }
.crm-mini-grid { display: grid; grid-template-columns: repeat(4, 29px); gap: 5px; }
.crm-mini-grid img { width: 27px; height: 27px; padding: 4px; background: var(--cream); border-radius: 3px; object-fit: contain; }
.crm-mini-grid img:last-child { width: 38px; max-width: none; transform: translateX(-4px); }

.journey-section { background: var(--white); }
.journey-heading {
  margin-bottom: 47px;
}

.journey-heading > div:first-child { max-width: 760px; }
.journey-heading h2 { margin-bottom: 24px; }
.journey-heading p:last-child { max-width: 600px; margin: 0; color: var(--muted); }

.journey-streams { display: grid; gap: 20px; }
.journey-stream {
  --stream-colour: var(--gold);
  padding: 24px 28px 26px;
  background: #faf6ee;
  border: 1px solid rgba(27, 60, 83, .14);
}
.journey-stream-bad {
  --stream-colour: #a85f4e;
  background: #fbf4f1;
  border-color: rgba(168, 95, 78, .28);
}
.journey-stream-good {
  background: #f8f2e5;
  border-color: rgba(185, 133, 50, .32);
}
.stream-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 21px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(185, 133, 50, .35);
}
.journey-stream-bad .stream-heading { border-bottom-color: rgba(168, 95, 78, .34); }
.stream-heading span {
  padding: 5px 9px;
  background: var(--stream-colour);
  color: var(--white);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.stream-heading b { color: var(--navy); font-family: "Kessel"; font-size: 1.1rem; }
.stream-route { position: relative; }
.stream-route ol {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stream-line {
  position: absolute;
  z-index: 1;
  top: 27px;
  right: 9%;
  left: 9%;
  height: 3px;
  background: var(--stream-colour);
}

.journey-stream-bad .stream-line { background: repeating-linear-gradient(90deg, var(--stream-colour) 0 18px, rgba(168, 95, 78, .15) 18px 28px); }
.stream-route li { min-width: 0; text-align: center; }
.stream-dot {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: var(--white);
  border: 2px solid #faf6ee;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(185, 133, 50, .52);
}
.journey-stream-bad .stream-dot { box-shadow: 0 0 0 1px rgba(168, 95, 78, .5); }

.stream-dot svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stream-dot-end { background: var(--stream-colour); }
.stream-dot-end svg { stroke: var(--white); }
.journey-stream-bad li:nth-child(n+3) .stream-dot {
  border-style: dashed;
}

.stream-route li b, .stream-route li small { display: block; }
.stream-route li b {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: "Kessel";
  font-size: .98rem;
  line-height: 1.15;
}
.stream-route li small { max-width: 160px; margin-inline: auto; color: var(--muted); font-size: .65rem; line-height: 1.42; }

.journey-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 22px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
}

.journey-note p { max-width: 650px; margin: 0; }
.journey-note b { color: var(--navy); }
.journey-note > span { color: var(--navy); font-weight: 750; }

.client-carousel {
  overflow: hidden;
  padding: 30px 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 254, 251, .12);
  color: var(--white);
}

.client-carousel-inner {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.client-carousel-inner > p {
  margin: 0;
  color: rgba(255, 254, 251, .62);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.45;
  text-transform: uppercase;
}

.client-logo-window {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.client-logo-track {
  width: max-content;
  display: flex;
  animation: client-logo-scroll 34s linear infinite;
}

.client-logo-set {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.client-logo {
  width: 136px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  opacity: .82;
}

.client-logo img {
  max-width: 100%;
  max-height: 49px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.client-logo-window:hover .client-logo-track,
.client-logo-window:focus-within .client-logo-track { animation-play-state: paused; }

@keyframes client-logo-scroll {
  to { transform: translateX(-50%); }
}

.case-study { background: var(--navy-deep); color: var(--white); }
.case-study-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.case-copy h2 { margin-bottom: 42px; color: var(--white); }
.case-copy h2 em { color: var(--gold); font-style: normal; white-space: normal; }
.case-copy blockquote { margin: 0 0 12px; padding-left: 22px; border-left: 3px solid var(--gold); font-family: "Kessel"; font-size: 1.4rem; line-height: 1.35; }
.quote-credit { margin-bottom: 34px; color: rgba(255, 255, 254, .62); font-size: .72rem; font-weight: 700; }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy-deep); box-shadow: 6px 6px 0 var(--gold); letter-spacing: .045em; text-transform: uppercase; }

.case-proof { padding: 20px; border: 1px solid rgba(255, 255, 254, .16); background: rgba(255, 255, 254, .04); }
.case-video { position: relative; aspect-ratio: 16 / 9; background: #081b27; overflow: hidden; }
.case-video iframe { width: 100%; height: 100%; border: 0; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; }
.metric-grid > div { padding: 28px 20px 14px; border-right: 1px solid rgba(255, 255, 254, .14); }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid dt { color: var(--gold); font-family: "Kessel"; font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 700; line-height: 1; }
.metric-grid dd { margin: 8px 0 0; color: rgba(255, 255, 254, .64); font-size: .65rem; font-weight: 800; line-height: 1.4; text-transform: uppercase; }

.questions-section {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 254, 251, .08);
  color: var(--white);
}

.questions-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.questions-copy h2 { margin-bottom: 31px; color: var(--white); }
.questions-copy h2 strong { color: var(--white); }
.questions-copy > p { max-width: 540px; color: rgba(255, 254, 251, .69); }
.questions-copy > a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.question-map {
  position: relative;
  margin: 0;
  padding: 40px 42px 34px;
  background:
    linear-gradient(rgba(27, 60, 83, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 60, 83, .05) 1px, transparent 1px),
    var(--white);
  background-size: 27px 27px;
  border-radius: 9px;
  color: var(--navy);
  box-shadow: 18px 22px 0 rgba(13, 40, 57, .28);
  transform: rotate(.7deg);
}

.question-map::after {
  content: "L&Q";
  position: absolute;
  top: 22px;
  right: 25px;
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.question-map figcaption {
  color: var(--gold-deep);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.question-map h3 {
  margin: 10px 0 35px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
}

.map-workflow {
  position: relative;
  min-height: 190px;
  padding: 3px 5px 0;
}

.map-top-row {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) 35px minmax(155px, 1.2fr);
  align-items: center;
  width: 88%;
  margin-inline: auto;
  gap: 8px;
}

.map-node {
  position: relative;
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .72rem;
  text-align: center;
}

.map-focus {
  background: var(--gold);
  border-color: var(--gold-deep);
  outline: 2px dashed var(--gold-deep);
  outline-offset: 6px;
}

.map-focus::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  height: 62px;
  border-left: 2px dotted rgba(27, 60, 83, .45);
  transform: translateX(-50%);
}

.map-top-row > i { color: var(--gold-deep); font-size: 1.2rem; font-style: normal; font-weight: 800; text-align: center; }
.map-detour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 45px;
  margin-top: 58px;
  padding: 0 20px;
}

.map-not-here {
  position: relative;
  display: grid;
  justify-self: start;
  color: var(--muted);
  font-family: "Kessel";
  font-style: italic;
  line-height: 1.05;
  transform: rotate(-2deg);
}
.map-not-here b { color: var(--navy); font-size: 1rem; }
.map-not-here span { font-size: .72rem; }
.map-not-here i { position: absolute; top: -15px; right: -30px; color: var(--gold-deep); font-size: 1.45rem; font-style: normal; transform: rotate(-10deg); }
.map-eventually {
  min-height: 44px;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 145px;
  padding: 8px 12px;
  background: rgba(245, 240, 230, .42);
  border: 1px dashed rgba(27, 60, 83, .4);
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.map-answer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map-answer span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 900;
}
.map-answer b { color: var(--navy); font-size: .76rem; }
.map-caption {
  margin: 0;
  padding-top: 14px;
  color: var(--muted);
  font-size: .65rem;
}

.question-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 86px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 254, 251, .15);
}

.question-method > div { position: relative; padding-left: 24px; }
.question-method > div::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.question-method span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 800;
}

.question-method h3 { margin: 0 0 10px; font-size: 1.75rem; font-weight: 300; }
.question-method p { margin: 0; color: rgba(255, 254, 251, .62); font-size: .78rem; }

.fit-section { background: var(--white); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 110px;
  align-items: center;
}

.fit-copy h2 { margin-bottom: 31px; }
.fit-copy > p:last-child { max-width: 560px; color: var(--muted); }
.fit-list ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 21px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: "Kessel";
  font-size: 1.2rem;
}

.fit-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  color: var(--gold-deep);
  font-family: "Manrope";
  font-weight: 900;
}

.fit-list > p { margin: 32px 0 0; color: var(--muted); font-size: .82rem; }
.fit-list > p b { color: var(--navy); }

.final-cta {
  padding: 92px 0;
  background: var(--gold);
  color: var(--navy-deep);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 100px;
}

.final-cta .eyebrow { color: var(--navy); }
.final-cta .eyebrow > span { background: var(--navy); }
.final-cta h2 { font-size: clamp(3.1rem, 5.3vw, 5.7rem); }
.final-cta-action { max-width: 560px; }
.final-cta-action > p { max-width: 520px; margin: 0 0 25px; }

.booking-options { display: grid; gap: 10px; }
.booking-option {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 13px 18px 13px 14px;
  background: var(--white);
  border: 1px solid rgba(13, 40, 57, .18);
  color: var(--navy-deep);
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(13, 40, 57, .12);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.booking-option:hover,
.booking-option:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(13, 40, 57, .14);
}

.booking-option-dark {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.booking-option-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Manrope";
  font-size: .78rem;
  font-weight: 800;
}

.booking-option > span:nth-child(2) { display: grid; gap: 3px; }
.booking-option small {
  color: inherit;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: .62;
}
.booking-option strong { font-family: "Kessel"; font-size: 1.12rem; line-height: 1.05; }
.booking-option i { font-family: "Manrope"; font-size: 1.2rem; font-style: normal; }
.final-cta-action .booking-note { display: block; margin-top: 15px; color: rgba(13, 40, 57, .7); }

.site-footer {
  padding: 56px 0;
  background: var(--navy-deep);
  color: rgba(255, 254, 251, .68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 70px;
  align-items: start;
}

.footer-brand {
  max-width: 235px;
  padding: 11px 14px;
  background: var(--white);
  border-radius: 3px;
}

.footer-grid p { margin: 21px 0 0; font-size: .75rem; }
.footer-grid nav { display: grid; gap: 9px; }
.footer-grid nav a, .footer-contact a {
  color: var(--white);
  font-size: .78rem;
  text-decoration: none;
}

.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; text-align: right; }
.footer-contact span { font-size: .68rem; }

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 430px; gap: 45px; }
  .hero-copy h1 { font-size: clamp(3.55rem, 6vw, 4.7rem); }
  .hero-route { transform: none; }
  .service-row summary { grid-template-columns: 68px 1fr 1fr auto; gap: 22px; }
  .stream-route ol { gap: 12px; }
  .questions-grid { gap: 60px; }
  .client-carousel-inner { grid-template-columns: 180px minmax(0, 1fr); }
  .video-proof-card { flex-basis: 47%; }
  .case-video-grid, .case-library-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .section { padding: 98px 0; }
  .header-inner { grid-template-columns: 210px 1fr auto; gap: 20px; }
  .primary-nav { gap: 18px; }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; padding-bottom: 0; }
  .hero-copy h1 { font-size: clamp(3.8rem, 9vw, 5.15rem); }
  .hero-route { width: min(100%, 620px); margin: 28px auto 0; }
  .hero-foot { margin-top: 56px; }
  .video-proof-heading { grid-template-columns: 1fr; gap: 32px; }
  .video-proof-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; }
  .video-proof-intro > p { margin-bottom: 0; }
  .video-proof-card { flex-basis: 68%; }
  .case-library-hero-grid, .case-video-heading, .case-library-index-heading { grid-template-columns: 1fr; gap: 38px; }
  .case-library-hero-intro { max-width: 650px; }
  .case-library-ledger { grid-template-columns: repeat(2, 1fr); }
  .case-library-ledger span:nth-child(2) { border-right: 0; }
  .case-library-ledger span:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .problem-layout, .case-study-grid, .questions-grid, .fit-grid { grid-template-columns: 1fr; }
  .problem-layout { gap: 60px; }
  .lemon-heading, .services-heading { grid-template-columns: 1fr; gap: 32px; }
  .lemon-steps { gap: 27px; }
  .service-row summary { grid-template-columns: 64px 1fr auto; }
  .service-summary { grid-column: 2 / 3; padding-bottom: 24px; }
  .service-row summary > i { grid-column: 3; grid-row: 1 / span 2; }
  .service-detail { grid-template-columns: 1fr; gap: 23px; padding-left: 86px; }
  .journey-stream { padding-inline: 22px; }
  .stream-route ol { gap: 8px; }
  .stream-route li b { font-size: .9rem; }
  .case-study-grid { gap: 58px; }
  .case-proof { max-width: 740px; }
  .questions-copy { max-width: 690px; }
  .question-map { max-width: 720px; }
  .fit-grid { gap: 60px; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { align-items: flex-start; text-align: left; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 82px 0; }
  h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .interest-bar { min-height: 28px; font-size: .58rem; }
  .site-header, .site-header.is-scrolled { height: 66px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { max-width: 190px; }
  .header-cta { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 23px;
    height: 2px;
    display: block;
    background: var(--navy);
    transition: transform .2s;
  }
  .menu-toggle > span:last-child { margin-top: -12px; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    z-index: 90;
    top: 94px;
    right: 0;
    left: 0;
    display: none;
    padding: 24px 17px 35px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 25px 40px rgba(13, 40, 57, .12);
  }
  .primary-nav.is-open { display: grid; gap: 0; }
  .primary-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .hero { padding-top: 47px; }
  .hero-copy .eyebrow { max-width: 310px; }
  .hero-copy h1 { margin-bottom: 24px; font-size: clamp(3.15rem, 14vw, 4.35rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-actions .button { width: 100%; }
  .hero-route { width: calc(100% - 8px); margin-top: 25px; box-shadow: 8px 10px 0 rgba(234, 180, 84, .5); }
  .route-topline { align-items: flex-start; flex-direction: column; gap: 4px; }
  .route-canvas { min-height: 610px; }
  .route-line { display: none; }
  .route-canvas::before { content: ""; position: absolute; top: 46px; bottom: 52px; left: 29px; width: 3px; background: repeating-linear-gradient(var(--gold) 0 10px, rgba(27, 60, 83, .15) 10px 18px); }
  .route-node { right: auto; left: 18px; width: calc(100% - 36px); }
  .node-demand { top: 18px; min-height: 145px; }
  .node-system { top: 188px; min-height: 192px; }
  .node-result { top: 408px; bottom: auto; min-height: 157px; }
  .route-note { display: none; }
  .hero-foot { grid-template-columns: 1fr; gap: 0; margin-top: 62px; padding: 24px 0; }
  .hero-platform-logos { max-width: 380px; }
  .micro-proof { margin-top: 21px; padding: 21px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .video-proof-section { padding: 82px 0 72px; }
  .video-proof-section::before { display: none; }
  .video-proof-heading h2 { font-size: clamp(2.85rem, 12vw, 4.35rem); }
  .video-proof-intro { align-items: flex-start; flex-direction: column; gap: 22px; }
  .video-proof-viewport { width: calc(100% + 17px); margin-top: 42px; }
  .video-proof-track { padding-right: 40px; }
  .video-proof-card { flex-basis: min(88%, 390px); }
  .video-proof-card:hover { transform: none; }
  .video-proof-body { min-height: 326px; padding: 21px 20px 19px; }
  .video-proof-card blockquote, .video-proof-summary { min-height: 103px; font-size: 1.25rem; }
  .video-proof-foot { align-items: flex-start; flex-direction: column; gap: 8px; }
  .case-library-hero { padding: 72px 0 42px; }
  .case-library-hero::after { display: none; }
  .case-library-hero h1 { font-size: clamp(3.7rem, 17vw, 5.2rem); }
  .case-library-hero-actions { align-items: flex-start; flex-direction: column; }
  .case-library-hero-actions .button { width: 100%; }
  .case-library-ledger { margin-top: 60px; }
  .case-library-ledger span { min-height: 60px; padding-inline: 14px; font-size: .64rem; }
  .case-video-heading h2, .case-library-index-heading h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .case-video-grid, .case-library-grid { grid-template-columns: 1fr; }
  .case-video-grid { gap: 28px; margin-top: 44px; }
  .case-video-grid .video-proof-card { width: 100%; }
  .case-library-filters { margin-top: 40px; padding: 8px; }
  .case-library-filters button { flex: 1 1 calc(50% - 9px); }
  .case-library-grid { gap: 16px; }
  .case-library-card { min-height: 290px; padding: 24px 22px 22px; }
  .problem-principles { grid-template-columns: 1fr; gap: 25px; margin-top: 57px; }
  .problem-principles br { display: none; }
  .lemon-heading { gap: 27px; }
  .lemon-steps { grid-template-columns: 1fr; gap: 60px; margin-top: 47px; }
  .lemon-crop { aspect-ratio: 1.2 / 1; margin-bottom: 20px; }
  .lemon-step h3 { font-size: 1.7rem; }
  .lemon-step p { font-size: .92rem; }
  .lemon-foot { align-items: flex-start; flex-direction: column; margin-top: 50px; }
  .services-heading { margin-bottom: 37px; }
  .service-row summary {
    grid-template-columns: 58px 1fr auto;
    gap: 15px;
    min-height: 135px;
    padding: 15px 0;
  }
  .service-icon { width: 46px; height: 46px; }
  .service-icon svg { width: 31px; height: 31px; }
  .service-title b { font-size: 1.45rem; }
  .service-summary { grid-column: 2 / 4; padding: 0 0 6px; font-size: .84rem; }
  .service-row summary > i { grid-column: 3; grid-row: 1; }
  .service-detail { padding: 0 0 34px 73px; }
  .service-detail ul { grid-template-columns: 1fr; }
  .service-cards li { min-height: 92px; flex-direction: row; justify-content: flex-start; padding: 14px 17px; text-align: left; }
  .service-cards li > b { max-width: none; }
  .detail-visual { width: 145px; flex: 0 0 145px; }
  .journey-heading { margin-bottom: 47px; }
  .journey-heading p:last-child { font-size: .94rem; }
  .journey-stream { padding: 21px 19px 24px; }
  .stream-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .stream-route { padding-left: 3px; }
  .stream-route ol { grid-template-columns: 1fr; gap: 0; }
  .stream-line { top: 25px; right: auto; bottom: 72px; left: 27px; width: 3px; height: auto; }
  .stream-route li {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 0 15px;
    min-height: 96px;
    text-align: left;
  }
  .stream-dot { grid-row: 1 / span 2; width: 52px; height: 52px; margin: 0; }
  .stream-route li b { align-self: end; margin: 0; font-size: 1.08rem; }
  .stream-route li small { max-width: 290px; margin: 0; }
  .journey-note { align-items: flex-start; flex-direction: column; margin-top: 18px; }
  .client-carousel { padding: 32px 0 26px; }
  .client-carousel-inner { grid-template-columns: 1fr; gap: 20px; }
  .client-carousel-inner > p { max-width: 230px; }
  .client-logo-window { width: calc(100% + 17px); }
  .client-logo-set { gap: 34px; padding-right: 34px; }
  .client-logo { width: 120px; height: 52px; }
  .case-study { padding-top: 94px; }
  .case-study-grid { gap: 46px; }
  .case-proof { padding: 9px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-grid > div { display: flex; align-items: center; gap: 16px; padding: 18px 11px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 254, .14); }
  .metric-grid > div:last-child { border-bottom: 0; }
  .metric-grid dt { width: 88px; flex: 0 0 auto; font-size: 2.3rem; }
  .questions-grid { gap: 55px; }
  .question-map { padding: 32px 23px 27px; transform: none; }
  .map-top-row { width: 100%; grid-template-columns: 1fr 24px 1.18fr; gap: 5px; }
  .map-node { min-height: 51px; padding: 7px; font-size: .64rem; }
  .map-detour { gap: 15px; padding-inline: 0; }
  .map-eventually { width: 118px; font-size: .61rem; }
  .question-method { grid-template-columns: 1fr; gap: 32px; margin-top: 64px; }
  .fit-list li { padding-right: 10px; font-size: 1.1rem; }
  .final-cta { padding: 76px 0; }
  .final-cta h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .booking-option { grid-template-columns: 42px 1fr auto; padding-inline: 12px 15px; }
  .booking-option-icon { width: 42px; height: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-contact { align-items: flex-start; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: 3.05rem; }
  .service-detail { padding-left: 0; }
  .detail-visual { width: 116px; flex-basis: 116px; }
  .crm-mini-grid { grid-template-columns: repeat(4, 25px); }
  .crm-mini-grid img { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .client-logo-track { animation: none; }
}
