/* ─────────────────────────────────────────────────────────────────────────
   Rocket Farm Studios — Soft Geometric brand styles
   ─────────────────────────────────────────────────────────────────────────
   Hand-extracted from the React source for handoff. One pass per concern:
     1. Root tokens (colors, spacing, font stacks)
     2. Reusable atoms (.lb-display, .lb-btn, .lb-pill, .lb-marquee)
     3. Site chrome (sticky nav + mega menu)
     4. Hero (pill, role chips, metric cards + icons + animations)
     5. Section components (sounds-like, problems, CTA, paths, industries,
        awards, reviews, fueling slider, blog cards, contact, footer)
   Sections are commented so devs can split into per-component files later.
   ───────────────────────────────────────────────────────────────────────── */

/* ─── 1. Root tokens ──────────────────────────────────────────────────── */
html, body { margin: 0; padding: 0; }
/* `<figure>` carries a UA default margin of `1em 40px` that silently shrinks
   any figure-based card (e.g. case-study quote CTAs) below its parent
   container width. Reset here so figures inherit the same width as sibling
   divs by default. Individual figure components can add their own margin. */
figure { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fbf7f0;
  color: #1c1a16;
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

/* `.lb-root` is a legacy wrapper class from the original React app. The token
   block that used to live here was a duplicate of `:root` in tokens.css and
   silently overrode the mobile `--pad` override on any page that wrapped
   content in `<div class="lb-root">` (e.g. enterprise.html). Removed in favor
   of a single source of truth in tokens.css. The class itself remains
   harmless — pages that still have the wrapper just see it as a plain block. */
.lb-root {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
}

/* track anchors used by hero role chips — leave room for the sticky nav */
#track-ent, #track-fnd, #track-ops, #track-hrd { scroll-margin-top: 100px; }
#tracks { scroll-margin-top: 88px; }

/* brief cue on the track card matching the clicked hero chip.
   Use outline longhands (the `outline` shorthand + var() drops the colour in
   some engines) and a plain shadow (color-mix isn't universally supported). */
.lbp-tk-card.is-cued {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  /* the base card transitions box-shadow; override so the cue lands at once */
  transition: none;
}

/* ─── 2. Atoms ────────────────────────────────────────────────────────── */
.lb-display {
  font-family: 'Bricolage Grotesque', 'GT Eesti', system-ui, sans-serif;
  font-variation-settings: 'opsz' 96, 'wdth' 100;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.lb-mono     { font-family: 'IBM Plex Mono','JetBrains Mono', ui-monospace, monospace; }
.lb-eyebrow  {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.lb-wrap {
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: 1320px;
  margin: 0 auto;
}

.lb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; background: rgba(255,255,255,0.6);
  border: 1px solid var(--hair);
}
.lb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; cursor: pointer;
  transition: all .25s cubic-bezier(.2,.7,.3,1);
  border: 1px solid transparent;
  text-decoration: none;
}
.lb-btn-primary       { background: var(--ink); color: var(--bg); }
.lb-btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.lb-btn-ghost        { border-color: var(--hair); color: var(--ink); background: rgba(255,255,255,0.5); }
.lb-btn-ghost:hover  { border-color: var(--ink); }
.lb-btn:active       { transform: translateY(0) scale(.98); }

.lb-link {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 1px;
}
.lb-card {
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1),
              box-shadow .35s, border-color .25s;
}
.lb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -12px rgba(28,26,22,0.14), 0 2px 4px rgba(28,26,22,0.04);
}
.lb-tag {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  font-size: 11.5px; background: rgba(255,255,255,0.7);
}

/* marquee + decorative animation primitives */
@keyframes lb-marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes lb-spin     { from { transform: rotate(0); }    to { transform: rotate(360deg); } }
@keyframes lb-float1   { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(20px,-30px) rotate(8deg); } }
@keyframes lb-float2   { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(-25px,20px) rotate(-6deg); } }
.lb-marquee {
  display: flex; gap: 48px; white-space: nowrap;
  animation: lb-marquee 40s linear infinite;
  align-items: center;
}
.lb-marquee:hover { animation-play-state: paused; }
.lb-spinner { display: inline-block; animation: lb-spin 20s linear infinite; transform-origin: center; }
.lb-blob    { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }

/* ─── 3. Sticky nav + mega menu ──────────────────────────────────────── */
.rfs-nav {
  position: sticky; top: 0; z-index: 50;
  padding: 20px 56px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding .35s cubic-bezier(.2,.7,.3,1),
              background .35s, border-color .35s, backdrop-filter .35s;
}
.rfs-nav.is-scrolled {
  padding: 12px 24px;
  background: rgba(251,247,240,0.85);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom-color: var(--hair);
}
.rfs-nav-row {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.rfs-nav-logo img { height: 24px; width: auto; display: block; }
.rfs-nav-links {
  display: flex; gap: 2px; font-size: 13.5px;
  background: rgba(255,255,255,0.6);
  padding: 6px; border-radius: 99px;
  border: 1px solid var(--hair);
}
.rfs-nav-links a {
  color: var(--ink); text-decoration: none;
  padding: 7px 12px; border-radius: 99px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.rfs-nav-links a:hover,
.rfs-nav-links a.is-open {
  background: var(--ink); color: var(--bg);
}
.rfs-nav-cta {
  padding: 10px 16px; font-size: 13px;
  white-space: nowrap;
}

/* mega menu panel — hidden by default, JS toggles .is-open */
.rfs-mega {
  position: absolute; top: 100%; left: 0; right: 0;
  display: none;
  justify-content: center;
  padding: 0 24px 24px;
  z-index: 49;
  animation: lbp-mega-in .22s cubic-bezier(.2,.7,.3,1);
}
.rfs-mega.is-open { display: flex; }
@keyframes lbp-mega-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rfs-mega-card {
  width: 100%; max-width: 1320px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 28px;
  box-shadow: 0 24px 60px -12px rgba(28,26,22,0.22), 0 4px 12px rgba(28,26,22,0.06);
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
}
.rfs-mega-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px 12px 20px 24px;
}
.rfs-mega-col {
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--hair);
  padding-right: 18px;
}
.rfs-mega-col:last-child { border-right: none; padding-right: 0; padding-left: 6px; }
.rfs-mega-col-title {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin: 4px 12px 10px;
  min-height: 32px; /* reserve space so wrapping headers (e.g. "From Idea to Launch") stay aligned */
}
.rfs-mega-item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: background .18s, color .18s;
  --item-accent: var(--accent);
}
.rfs-mega-item:hover { background: color-mix(in oklab, var(--item-accent, var(--accent)) 10%, transparent); }
.rfs-mega-item:hover .rfs-mega-name { color: var(--item-accent, var(--accent)); }
.rfs-mega-name {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 16px; line-height: 1.2; margin-bottom: 3px;
  font-weight: 600;
  transition: color .18s;
}
.rfs-mega-desc {
  font-size: 12.5px; line-height: 1.45;
  color: var(--muted);
  text-wrap: pretty;
}
.rfs-mega-collink {
  font-size: 13px;
  margin: 12px 12px 0;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* mega menu right-side dark CTA */
.rfs-mega-cta {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--bg);
  border-radius: 20px; padding: 28px 26px;
  display: flex; align-items: flex-start;
}
.rfs-mega-cta-blob {
  position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 99px;
  background: color-mix(in oklab, var(--accent) 55%, transparent);
  filter: blur(60px); pointer-events: none; opacity: 0.7;
}
.rfs-mega-cta-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.rfs-mega-cta-h {
  font-size: 22px; line-height: 1.15;
  margin: 0; color: var(--bg);
  text-wrap: balance; letter-spacing: -0.01em;
}
.rfs-mega-cta-p {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(251,247,240,0.72); margin: 0;
  text-wrap: pretty;
}
.rfs-mega-cta-btn {
  align-self: flex-start; margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff !important;
  border: 1.5px solid var(--accent);
  padding: 12px 22px; font-size: 14px;
  border-radius: 999px; text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}
.rfs-mega-cta-btn:hover {
  background: #fff; border-color: #fff;
  color: var(--accent) !important;
  transform: translateY(-1px);
}

/* ─── 4. Hero (pill, role chips, metric cards) ───────────────────────── */
.lbp-hero-pill {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: transparent !important;
  padding: 8px 16px !important;
  font-weight: 500; letter-spacing: 0.01em;
  animation: lbp-pill-halo 2.4s ease-in-out infinite,
             lbp-pill-bob  5.6s ease-in-out infinite;
  transform-origin: center;
}
.lbp-hero-pill:hover { animation-play-state: paused; transform: translateY(-1px); }
@keyframes lbp-pill-halo {
  0%, 100% { box-shadow: 0 0 0 0  color-mix(in oklab, var(--accent) 45%, transparent); }
  60%      { box-shadow: 0 0 0 14px color-mix(in oklab, var(--accent) 0%,  transparent); }
}
@keyframes lbp-pill-bob {
  0%, 86%, 100% { transform: translateY(0)    rotate(0); }
  90%           { transform: translateY(-2px) rotate(-1.5deg); }
  94%           { transform: translateY(0)    rotate(1.2deg); }
  98%           { transform: translateY(-1px) rotate(0); }
}

/* Hero metric cards */
.lbp-metric {
  background: #fff; border-radius: 24px;
  padding: 24px 26px 18px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform .35s cubic-bezier(.2,.7,.3,1),
              box-shadow .35s, background .25s;
}
.lbp-metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -10px rgba(28,26,22,0.12);
}
.lbp-num {
  display: inline-block;
  font-size: 44px; line-height: 1;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), color .25s;
}
.lbp-metric:hover .lbp-num {
  transform: translateY(-1px);
  color: var(--metric-tone, var(--accent));
}
.lbp-metric-label {
  margin-top: 8px;
  text-transform: capitalize !important;
  letter-spacing: 0.01em !important;
  font-size: 12px !important;
}
.lbp-metric-icon {
  position: absolute; top: 16px; right: 18px;
  width: 56px; height: 56px; border-radius: 14px;
  background: transparent; color: var(--metric-tone, var(--accent));
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.5,1.6,.4,1);
}
.lbp-metric-icon svg { width: 36px; height: 36px; }
.lbp-metric:hover .lbp-metric-icon { transform: rotate(-6deg) scale(1.06); }

/* per-icon idle animations */
@keyframes lbp-mi-spin       { to { transform: rotate(360deg); } }
@keyframes lbp-mi-pop        { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes lbp-mi-pulse-ring { 0% { transform: scale(0.4); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }
.lbp-mi-check {
  stroke-dasharray: 24; stroke-dashoffset: 24;
  transition: stroke-dashoffset .55s cubic-bezier(.5,1.4,.4,1);
}
.lbp-metric:hover .lbp-mi-check { stroke-dashoffset: 0; }
.lbp-mi-bld-win { stroke-dasharray: 6 4; stroke-dashoffset: 0; }
.lbp-metric:hover .lbp-mi-bld-win { animation: lbp-mi-bld-blink 2.4s linear infinite; }
@keyframes lbp-mi-bld-blink {
  0%, 100% { stroke-dashoffset: 0;  opacity: .6; }
  50%      { stroke-dashoffset: 10; opacity: 1; }
}
.lbp-mi-bld-a, .lbp-mi-bld-b { transform-origin: center bottom; transform-box: fill-box; }
.lbp-metric:hover .lbp-mi-bld-a { animation: lbp-mi-bld-pop 1.6s ease-in-out infinite; }
.lbp-metric:hover .lbp-mi-bld-b { animation: lbp-mi-bld-pop 1.6s ease-in-out infinite .3s; }
@keyframes lbp-mi-bld-pop { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(1.03); } }
.lbp-mi-trophy-star { transform-origin: 16px 11px; transform-box: fill-box; opacity: .9; }
.lbp-metric:hover .lbp-mi-trophy-star { animation: lbp-mi-pop 1.4s ease-in-out infinite; }
.lbp-mi-trophy-cup { transform-origin: 16px 8px; transform-box: fill-box; }
.lbp-metric:hover .lbp-mi-trophy-cup { animation: lbp-mi-trophy-tilt 2.2s ease-in-out infinite; }
@keyframes lbp-mi-trophy-tilt {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-3deg); }
  75%      { transform: rotate(3deg); }
}

/* always-on idle animations (alert / coin / clock / target stat icons).
   Unlike the hover-only icons above, these animate continuously so the
   stat cards read as "alive" without a pointer (used on the AI Audit page). */
.lbp-mi-alert-bang { animation: lbp-mi-blink 1.6s ease-in-out infinite; }
@keyframes lbp-mi-blink { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }
.lbp-mi-coin { transform-origin: center; transform-box: fill-box; animation: lbp-mi-bob 2.4s ease-in-out infinite; }
@keyframes lbp-mi-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.lbp-mi-clock-hand { transform-origin: 16px 16px; transform-box: view-box; animation: lbp-mi-spin 4s linear infinite; }
.lbp-mi-target-r2,
.lbp-mi-target-dot { transform-origin: 16px 16px; transform-box: view-box; }
.lbp-mi-target-r2  { animation: lbp-mi-breathe 2.2s ease-in-out infinite; }
.lbp-mi-target-dot { animation: lbp-mi-pop 1.8s ease-in-out infinite; }
@keyframes lbp-mi-breathe { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.12); opacity: .55; } }

/* blob field behind the hero */
.lbp-blob-field {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
}

/* ─── 5a. "This sounds like you if…" section ─────────────────────────── */
.ent-sly-head {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: flex-end;
  margin-bottom: 52px;
}
.ent-sly-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--muted); margin: 0;
  max-width: 460px; text-wrap: pretty; padding-bottom: 6px;
}
.ent-checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.ent-check-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--hair);
  transition: transform .25s cubic-bezier(.2,.7,.3,1),
              box-shadow .25s, border-color .2s;
}
.ent-check-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(28,26,22,0.12);
  border-color: color-mix(in oklab, var(--ck) 35%, var(--hair));
}
.ent-check-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--ck) 14%, #fff);
  color: var(--ck);
  flex-shrink: 0;
  margin-top: 1px;
}
.ent-check-body {
  font-size: 15.5px; line-height: 1.5;
  color: var(--ink); font-weight: 500;
  text-wrap: pretty;
}

/* ─── 5b. "Three problems" cards (Track card chrome) ─────────────────── */
.ent-pp-header {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: flex-end;
  margin-bottom: 56px;
}
.ent-pp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: start;
}
.lbp-tk-card {
  position: relative;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 14px 18px 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1),
              box-shadow .35s, border-color .25s;
}
.lbp-tk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -16px rgba(28,26,22,0.16);
}
.lbp-tk-panel {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: var(--track-panel);
  display: flex; align-items: center; justify-content: center;
  color: rgba(28,26,22,0.35);
  margin-bottom: 14px;
  overflow: hidden;
  padding: 10px 14px;
  opacity: 0.75;
}
.lbp-tk-eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.lbp-tk-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600; font-size: 20px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin: 4px 0 8px; text-wrap: balance;
}
.lbp-tk-desc {
  font-size: 13.5px; line-height: 1.5; color: var(--muted);
  margin: 0;
}
/* per-problem-icon hover animations */
.ent-pp-rank-pick { transform-origin: left center; transform-box: fill-box; opacity: 0.65; transform: scaleX(0.78); transition: transform .55s cubic-bezier(.5,1.6,.4,1), opacity .35s; }
.lbp-tk-card:hover .ent-pp-rank-pick { opacity: 1; transform: scaleX(1); }
.ent-pp-rank-bar  { transform: translateX(-6px); transform-box: fill-box; transition: transform .4s cubic-bezier(.2,.7,.3,1) var(--di, 0ms); }
.lbp-tk-card:hover .ent-pp-rank-bar  { transform: translateX(0); }
.ent-pp-shield-body  { transition: fill-opacity .35s; }
.ent-pp-shield-check { stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset .7s cubic-bezier(.5,1.4,.4,1) .15s; }
.lbp-tk-card:hover .ent-pp-shield-body  { fill-opacity: 0.22; }
.lbp-tk-card:hover .ent-pp-shield-check { stroke-dashoffset: 0; }
.ent-pp-plat-rise { stroke-dashoffset: 100; transition: stroke-dashoffset 1s cubic-bezier(.2,.7,.3,1); }
.lbp-tk-card:hover .ent-pp-plat-rise { stroke-dashoffset: 0; }
.ent-pp-plat-dot  { transform-origin: center; transform-box: fill-box; }
.lbp-tk-card:hover .ent-pp-plat-dot  { animation: ent-pp-plat-pulse 1.6s ease-in-out infinite .9s; }
.ent-pp-plat-ring { transform-origin: center; transform-box: fill-box; opacity: 0; transform: scale(.6); transition: opacity .35s 1s, transform .55s cubic-bezier(.5,1.6,.4,1) 1s; }
.lbp-tk-card:hover .ent-pp-plat-ring { opacity: .45; transform: scale(1); }
@keyframes ent-pp-plat-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* ─── 5c. Dark conversion CTA (Skip the maturity model) ──────────────── */
.ent-cta {
  position: relative; padding: 44px 48px;
  background: var(--ink); border-radius: 28px;
  overflow: hidden; color: var(--bg);
}
.ent-cta-bg {
  position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; border-radius: 99px;
  background: color-mix(in oklab, var(--accent) 55%, transparent);
  filter: blur(60px); pointer-events: none; opacity: 0.65;
}
.ent-cta-pattern { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.ent-cta-body {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.5fr auto;
  gap: 40px; align-items: center;
}
.ent-cta .lbp-hero-pill { --accent: var(--accent-green); margin-bottom: 18px !important; }
.ent-cta-h {
  font-size: clamp(28px, 3.2vw, 42px); line-height: 1.05;
  margin: 0; color: var(--bg); text-wrap: balance; letter-spacing: -0.02em;
}
.ent-cta-p {
  font-size: 15px; line-height: 1.55;
  color: rgba(251,247,240,0.7); margin: 16px 0 0; max-width: 620px;
  text-wrap: pretty;
}
.ent-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }
.ent-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff !important;
  border: 1.5px solid var(--accent);
  padding: 14px 26px; font-size: 14.5px;
  border-radius: 999px; text-decoration: none;
  transition: background .25s, border-color .25s, color .25s, transform .2s;
}
.ent-cta-btn:hover {
  background: #fff; border-color: #fff;
  color: var(--accent) !important;
  transform: translateY(-1px);
}
.ent-cta-mail {
  color: rgba(251,247,240,0.55);
  font-size: 12.5px; text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.ent-cta-mail:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }

/* ─── 5d. "Three ways enterprises come in" path cards ────────────────── */
.ent-paths-head {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: flex-end;
  margin-bottom: 48px;
}
.ent-paths-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--muted); margin: 0;
  max-width: 460px; text-wrap: pretty; padding-bottom: 6px;
}
.ent-paths-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: stretch;
}
.ent-path-card,
.ent-path-cta {
  --pc: var(--accent, #f05d3c);
}
.ent-path-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: 14px 18px 24px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .25s;
}
.ent-path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(28,26,22,0.14);
  border-color: color-mix(in oklab, var(--pc) 30%, var(--hair));
}
.ent-path-panel {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: var(--pp);
  display: flex; align-items: center; justify-content: center;
  margin: 0 -4px;
  overflow: hidden;
  padding: 10px 14px;
  opacity: 0.75;
}
.ent-path-eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pc); font-weight: 600;
  padding: 0 6px;
}
.ent-path-quote {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.25;
  color: var(--ink); margin: 0; text-wrap: pretty;
  letter-spacing: -0.015em;
  padding: 0 6px;
}
.ent-path-divider { height: 1px; background: var(--hair); margin: 4px 6px; }
.ent-path-chips   { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0 6px; }
.ent-path-chip {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  display: inline-flex; align-items: center;
  padding: 7px 14px; font-size: 13px; font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.ent-path-chip-filled  { background: color-mix(in oklab, var(--pc) 18%, #fff); color: var(--pc); border: 1px solid color-mix(in oklab, var(--pc) 40%, transparent); }
.ent-path-chip-ghost   { background: rgba(255,255,255,0.6); color: var(--ink); border: 1px solid var(--hair); }
.ent-path-chip-dashed  { background: rgba(255,255,255,0.4); color: var(--muted); border: 1.5px dashed color-mix(in oklab, var(--pc) 40%, var(--hair)); font-style: italic; }
.ent-path-join         { color: var(--muted); font-size: 13px; }
.ent-path-walk {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 14px; line-height: 1.55;
  color: var(--ink); margin: 0; text-wrap: pretty;
  padding: 0 6px;
}
.ent-path-walk strong { font-weight: 700; }
.ent-path-cta {
  margin: 8px 6px 0;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pc, var(--accent, #f05d3c)) !important;
  color: #fff !important;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; align-self: flex-start;
  border: 1.5px solid var(--pc, var(--accent, #f05d3c));
  transition: background .25s, transform .2s, box-shadow .25s, border-color .25s;
}
.ent-path-cta:hover {
  background: var(--ink) !important;
  border-color: var(--ink);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px color-mix(in oklab, var(--pc, var(--accent, #f05d3c)) 50%, transparent);
}
/* path icon hover animations */
.ent-pi-rank-pick { transform-origin: left center; transform-box: fill-box; opacity: 0.65; transform: scaleX(0.78); transition: transform .55s cubic-bezier(.5,1.6,.4,1), opacity .35s; }
.ent-path-card:hover .ent-pi-rank-pick { opacity: 1; transform: scaleX(1); }
.ent-pi-rank-bar  { transform: translateX(-6px); transform-box: fill-box; transition: transform .4s cubic-bezier(.2,.7,.3,1) var(--di, 0ms); }
.ent-path-card:hover .ent-pi-rank-bar  { transform: translateX(0); }
.ent-pi-leak-drop { transform-origin: center; transform-box: fill-box; opacity: 0; }
.ent-path-card:hover .ent-pi-leak-drop.d1 { animation: ent-leak-drop 1.6s ease-in-out infinite; }
.ent-path-card:hover .ent-pi-leak-drop.d2 { animation: ent-leak-drop 1.6s ease-in-out infinite .2s; }
.ent-path-card:hover .ent-pi-leak-drop.d3 { animation: ent-leak-drop 1.6s ease-in-out infinite .4s; }
@keyframes ent-leak-drop {
  0%   { opacity: 0; transform: translateY(-6px) scale(0.6); }
  25%  { opacity: 1; transform: translateY(0)    scale(1); }
  70%  { opacity: 1; transform: translateY(8px)  scale(0.9); }
  100% { opacity: 0; transform: translateY(14px) scale(0.6); }
}
.ent-pi-leak-trend { stroke-dasharray: 50; stroke-dashoffset: 50; transition: stroke-dashoffset .8s cubic-bezier(.2,.7,.3,1) .2s; }
.ent-path-card:hover .ent-pi-leak-trend { stroke-dashoffset: 0; }
.ent-pi-build-gear { animation: none; }
.ent-path-card:hover .ent-pi-build-gear { animation: ent-gear-spin 6s linear infinite; }
@keyframes ent-gear-spin { to { transform: rotate(360deg); } }
.ent-pi-build-shield { transition: fill-opacity .35s; }
.ent-path-card:hover .ent-pi-build-shield { fill-opacity: 0.22; }

/* ─── 5e. Industries grid ────────────────────────────────────────────── */
.ent-ind-head {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: flex-end;
  margin-bottom: 48px;
}
.ent-ind-eyebrow { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.ent-ind-h {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -0.025em; margin: 0;
  color: var(--ink); font-weight: 600; text-wrap: balance;
}
.ent-ind-h em { font-style: normal; color: var(--accent); }
.ent-ind-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--muted); margin: 0;
  max-width: 460px; text-wrap: pretty; padding-bottom: 6px;
}
.ent-ind-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ent-ind-card {
  --ic: var(--accent);
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 36px 36px 32px;
  border: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .25s;
}
.ent-ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -18px rgba(28,26,22,0.18);
  border-color: color-mix(in oklab, var(--ic) 30%, var(--hair));
}
.ent-ind-brand {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ic); font-weight: 700;
}
.ent-ind-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin: 0; font-weight: 600;
  text-wrap: balance;
}
.ent-ind-pill {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: color-mix(in oklab, var(--ic) 14%, transparent);
  color: var(--ic); font-weight: 600;
}
.ent-ind-pill::before { content: ''; width: 6px; height: 6px; border-radius: 99px; background: var(--ic); }
.ent-ind-desc {
  font-size: 14.5px; line-height: 1.6;
  color: var(--muted); margin: 0;
  text-wrap: pretty;
}

/* ─── 5f. Recognition (awards strip + clutch-style reviews) ──────────── */
.lbp-aw-head {
  margin-bottom: 48px;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: flex-end;
}
.lbp-aw-eyebrow { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.lbp-aw-h {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink); margin: 0; font-weight: 600; text-wrap: balance;
}
.lbp-aw-h em { color: var(--accent); font-style: italic; font-weight: 500; }
.lbp-aw-sub  { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 460px; text-wrap: pretty; padding-bottom: 6px; }
.lbp-aw-track-wrap {
  position: relative; overflow: hidden;
  margin-left: calc(-1 * var(--pad)); margin-right: calc(-1 * var(--pad));
  padding: 12px 0;
}
.lbp-aw-track-wrap::before,
.lbp-aw-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.lbp-aw-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.lbp-aw-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
@keyframes lbp-aw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lbp-aw-track {
  display: flex; gap: 36px; align-items: center;
  width: max-content;
  animation: lbp-aw-scroll 38s linear infinite;
  padding: 0 18px;
}
.lbp-aw-track:hover { animation-play-state: paused; }
.lbp-aw-badge { flex-shrink: 0; height: 120px; display: flex; align-items: center; transition: transform .35s cubic-bezier(.5,1.6,.4,1); }
.lbp-aw-badge img {
  height: 100%; width: auto; display: block;
  filter: drop-shadow(0 4px 10px rgba(28,26,22,0.06));
  transition: transform .35s cubic-bezier(.5,1.6,.4,1), filter .25s;
}
.lbp-aw-badge:hover img { transform: translateY(-3px) scale(1.03); filter: drop-shadow(0 8px 16px rgba(28,26,22,0.14)); }

/* reviews grid */
.lbp-rv-wrap   { margin-top: 80px; }
.lbp-rv-head   { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; }
.lbp-rv-title  {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink); margin: 0;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.lbp-rv-score        { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--ink); }
.lbp-rv-stars        { display: inline-flex; gap: 2px; }
.lbp-rv-score-count  {
  color: var(--accent); font-weight: 600; font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  padding-bottom: 1px;
}
.lbp-rv-poweredby { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.lbp-rv-poweredby strong { color: var(--ink); font-weight: 600; letter-spacing: 0.04em; }
.lbp-rv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.lbp-rv-card {
  --rc: var(--accent);
  position: relative;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 24px 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .25s;
  overflow: hidden;
}
.lbp-rv-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--rc); opacity: 0.85;
}
.lbp-rv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px -16px rgba(28,26,22,0.14);
  border-color: color-mix(in oklab, var(--rc) 30%, var(--hair));
}
.lbp-rv-rating {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.lbp-rv-quote {
  font-size: 15px; line-height: 1.55; color: var(--ink);
  margin: 0; text-wrap: pretty; font-weight: 500;
}
.lbp-rv-quote::before { content: "\201C"; }
.lbp-rv-quote::after  { content: "\201D"; }
.lbp-rv-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--muted); margin: 0;
  text-transform: uppercase;
}
.lbp-rv-meta strong { color: var(--ink); font-weight: 600; }
.lbp-rv-verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed var(--hair);
}
.lbp-rv-cta      { margin-top: 36px; display: flex; justify-content: center; }
.lbp-clutch-link {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  padding-bottom: 2px; transition: border-color .25s;
}
.lbp-clutch-link:hover { border-color: var(--accent); }

/* ─── 5g. "Fueling innovation" testimonial slider ───────────────────── */
.lbp-fu { padding-top: 100px; padding-bottom: 120px; position: relative; }
.lbp-fu-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, color-mix(in oklab, var(--accent) 4%, var(--bg)) 50%, transparent 100%);
  pointer-events: none;
}
.lbp-fu-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: flex-end; margin-bottom: 56px; position: relative; z-index: 1; }
.lbp-fu-eyebrow { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.lbp-fu-h {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(36px, 4.4vw, 64px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink); margin: 0; font-weight: 600; text-wrap: balance;
}
.lbp-fu-h em { color: var(--accent); font-style: normal; }
.lbp-fu-sub { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 380px; text-wrap: pretty; padding-bottom: 6px; }
.lbp-fu-controls { display: flex; gap: 10px; margin-top: 18px; }
.lbp-fu-btn {
  width: 44px; height: 44px; border-radius: 99px;
  background: #fff; border: 1.5px solid var(--hair);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.lbp-fu-btn:hover    { background: var(--ink); border-color: var(--ink); color: var(--bg); transform: translateY(-1px); }
.lbp-fu-btn:disabled { opacity: 0.35; cursor: default; transform: none; background: #fff; color: var(--ink); border-color: var(--hair); }
.lbp-fu-track-wrap {
  position: relative;
  margin-left: calc(-1 * var(--pad)); margin-right: calc(-1 * var(--pad));
  overflow: hidden;
}
.lbp-fu-track {
  display: flex; gap: 24px;
  padding: 8px var(--pad) 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.lbp-fu-track::-webkit-scrollbar { display: none; }
.lbp-fu-card {
  --rc: var(--accent);
  flex: 0 0 clamp(320px, 38vw, 520px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 26px;
  padding: 32px 32px 28px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .25s;
}
.lbp-fu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--rc); opacity: 0.85;
}
.lbp-fu-card::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 999px;
  background: color-mix(in oklab, var(--rc) 14%, transparent);
  filter: blur(40px); pointer-events: none; opacity: 0.7;
}
.lbp-fu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(28,26,22,0.16);
  border-color: color-mix(in oklab, var(--rc) 30%, var(--hair));
}
.lbp-fu-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; z-index: 1; }
.lbp-fu-industry  { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rc); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.lbp-fu-industry::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--rc); }
.lbp-fu-mark      { height: 44px; min-width: 44px; padding: 0 8px; border-radius: 0; background: transparent; border: none; color: var(--rc); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.lbp-fu-mark img  { height: 28px; width: auto; max-width: 130px; display: block; object-fit: contain; }
.lbp-fu-quote {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.45; color: var(--ink);
  margin: 0; font-weight: 500; font-style: italic;
  text-wrap: pretty;
  position: relative; z-index: 1;
  flex: 1;
}
.lbp-fu-quote::before { content: "\201C"; color: var(--rc); font-size: 1.3em; line-height: 0; vertical-align: -0.2em; margin-right: 0.05em; }
.lbp-fu-quote::after  { content: "\201D"; color: var(--rc); font-size: 1.3em; line-height: 0; vertical-align: -0.4em; }
.lbp-fu-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed var(--hair);
  position: relative; z-index: 1;
}
.lbp-fu-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in oklab, var(--rc) 80%, #000) 0%, var(--rc) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600; font-size: 17px; letter-spacing: -0.02em;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px -4px color-mix(in oklab, var(--rc) 60%, transparent);
}
.lbp-fu-name   { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
.lbp-fu-role   { font-size: 13px; color: var(--muted); margin: 2px 0 0; line-height: 1.3; }
.lbp-fu-role strong { color: var(--ink); font-weight: 600; }
.lbp-fu-raised { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rc); margin-top: 6px; font-weight: 600; }

/* ─── 5h. Blog cards ─────────────────────────────────────────────────── */
.lbp-blog-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: flex-end; margin-bottom: 36px; }
.lbp-blog-sub  { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 0; max-width: 460px; text-wrap: pretty; padding-bottom: 6px; }
.lbp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lbp-blog-card {
  background: #fff; border-radius: 24px; padding: 0;
  text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--hair);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .25s;
}
.lbp-blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(28,26,22,0.16); border-color: color-mix(in oklab, var(--accent) 30%, var(--hair)); }
.lbp-blog-img-wrap { aspect-ratio: 16 / 9; overflow: hidden; border-top-left-radius: 24px; border-top-right-radius: 24px; background: oklch(0.92 0.02 280); }
.lbp-blog-img      { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.lbp-blog-card:hover .lbp-blog-img { transform: scale(1.04); }
.lbp-blog-body { padding: 22px 26px 28px; }
.lbp-blog-date { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.lbp-blog-title { font-size: 20px; margin: 12px 0 0; line-height: 1.25; text-wrap: balance; font-weight: 600; }
.lbp-blog-cta-wrap { margin-top: 40px; display: flex; justify-content: center; }

/* ─── 5i. Contact + footer ───────────────────────────────────────────── */
.lbp-ct {
  background: linear-gradient(135deg, oklch(0.93 0.05 140), oklch(0.94 0.06 80));
  border-radius: 40px; padding: 80px 72px;
  position: relative; overflow: hidden;
}
.lbp-ct-blob {
  position: absolute; top: -80px; right: -80px;
  width: 340px; height: 340px; border-radius: 99px;
  background: oklch(0.92 0.08 60);
  opacity: 0.7; filter: blur(40px); pointer-events: none;
}
.lbp-ct-h { font-size: clamp(48px, 6vw, 96px); margin: 0; line-height: 0.95; max-width: 900px; text-wrap: balance; font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.025em; }
.lbp-ct-p { font-size: 20px; line-height: 1.5; color: var(--ink); opacity: 0.75; margin-top: 28px; max-width: 600px; text-wrap: pretty; }
.lbp-ct-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.lbp-ct-addr-row { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lbp-ct-addr {
  background: rgba(255,255,255,0.6); border-radius: 20px;
  padding: 22px 24px; backdrop-filter: blur(8px);
}
.lbp-ct-addr-city  { font-size: 26px; line-height: 1; font-weight: 600; font-family: 'Bricolage Grotesque', system-ui, sans-serif; }
.lbp-ct-addr-line  { font-size: 13px; color: var(--muted); margin-top: 6px; }
.lbp-footer {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.lbp-footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--muted); }
.lbp-footer-links a { color: inherit; text-decoration: none; }
.lbp-footer-meta { font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11px; color: var(--muted); }

/* ─── 6. Responsive ──────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .ent-pp-grid, .ent-pp-header,
  .ent-paths-grid, .ent-paths-head,
  .lbp-aw-head,
  .lbp-rv-grid { grid-template-columns: 1fr !important; }
  .lbp-rv-grid  { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 820px) {
  .ent-sly-head, .ent-checklist,
  .ent-ind-head, .ent-ind-grid,
  .ent-cta-body,
  .lbp-blog-head, .lbp-blog-grid,
  .lbp-fu-head { grid-template-columns: 1fr !important; }
  .ent-cta-actions { align-items: flex-start; }
  .ent-cta { padding: 36px 28px; }
  .lbp-ct  { padding: 56px 32px; }
  .lbp-ct-addr-row { grid-template-columns: 1fr; }
  .rfs-nav { padding: 12px 20px; }
  .rfs-nav-links { display: none; }
}
@media (max-width: 640px) {
  .lbp-rv-grid { grid-template-columns: 1fr !important; }
}

/* ── Phone: testimonial slider — cards were touching the device edges ──
   On desktop the track is full-bleed (negative-pad margin) so cards slide
   under the page gutter. On phones we want each card to sit inside the
   24px gutter with a touch of internal scroll padding.  */
@media (max-width: 560px) {
  .lbp-fu { padding-top: 56px; padding-bottom: 56px; }
  .lbp-fu-head { margin-bottom: 28px; }
  .lbp-fu-track-wrap { margin-left: 0; margin-right: 0; }
  .lbp-fu-track     { padding: 8px 0 24px; gap: 14px; }
  /* border-box so the card's padding fits inside its flex track, not on
     top of it — otherwise the card overflows the wrap and visually
     touches the screen edge. */
  .lbp-fu-card      { flex: 0 0 100%; box-sizing: border-box; padding: 26px 24px 22px; }
  .lbp-fu-controls  { margin-top: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lbp-hero-pill { animation: none; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration:  .01ms !important;
  }
}
