:root {
  --lb-bg: #fbfaf7;
  --lb-band: #eef4f1;
  --lb-ink: #0a1220;
  --lb-copy: #4a5567;
  --lb-muted: #7a8599;
  --lb-line: rgba(10, 18, 32, 0.1);
  --lb-line-strong: rgba(10, 18, 32, 0.18);
  --lb-teal: #1d676c;
  --lb-mint: #1ddbb7;
  --lb-plum: #685769;
  --lb-amber: #c68b3a;
  --lb-white: #ffffff;
  --lb-dark: #0a1220;
}

body[data-page="leadbooster"] {
  background: var(--lb-bg);
}

.lb-hero,
.lb-stats,
.lb-intake,
.lb-audience,
.lb-cta {
  padding-top: 56px;
  padding-bottom: 56px;
}

.lb-hero {
  padding-top: 132px;
  padding-bottom: 88px;
}

.lb-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.lb-crumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--lb-muted);
}

.lb-crumbs a {
  color: inherit;
  transition: color .2s ease;
}

.lb-crumbs a:hover {
  color: var(--lb-teal);
}

.lb-crumbs .dash {
  width: 18px;
  height: 1px;
  background: var(--lb-line-strong);
}

.lb-brand {
  width: min(260px, 72vw);
  margin-bottom: 26px;
}

.lb-brand img,
.lb-cta__brand img {
  width: 100%;
  height: auto;
}

.lb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--lb-teal);
}

.lb-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lb-mint);
}

.lb-eyebrow--dark {
  color: rgba(251, 250, 247, 0.78);
}

.lb-hero__title {
  max-width: 10.8ch;
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(58px, 6.8vw, 108px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--lb-ink);
}

.lb-hero__lede {
  max-width: 51ch;
  margin-top: 28px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--lb-copy);
}

.lb-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.lb-hero__visual {
  --lb-tilt-rx: 0deg;
  --lb-tilt-ry: 0deg;
  --lb-tilt-x: 0px;
  --lb-tilt-y: 0px;
  --lb-pointer-x: 50%;
  --lb-pointer-y: 50%;
  position: relative;
  min-height: clamp(560px, 55vw, 690px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--lb-pointer-x) var(--lb-pointer-y), rgba(29, 219, 183, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(104, 87, 105, 0.14), transparent 34%),
    linear-gradient(225deg, rgba(198, 139, 58, 0.13), transparent 31%),
    linear-gradient(135deg, #f5f7f6, #ffffff 64%);
  perspective: 1200px;
}

.lb-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 82%);
}

.lb-widget {
  position: relative;
  z-index: 2;
  width: min(560px, 82%);
  min-height: 458px;
  padding: 18px;
  border: 1px solid rgba(10, 18, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(10, 18, 32, 0.14);
  transform:
    translate3d(var(--lb-tilt-x), var(--lb-tilt-y), 0)
    rotateX(var(--lb-tilt-rx))
    rotateY(var(--lb-tilt-ry));
  transition: transform .45s ease;
}

.lb-widget::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(29, 219, 183, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

.lb-widget__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lb-line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--lb-muted);
}

.lb-widget__top img {
  width: 152px;
  height: auto;
}

.lb-progress {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.lb-progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(10, 18, 32, 0.08);
}

.lb-progress .is-done,
.lb-progress .is-active {
  background: var(--lb-teal);
}

.lb-progress .is-active {
  position: relative;
  overflow: hidden;
}

.lb-progress .is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--lb-mint), transparent);
  animation: lbSweep 2.4s ease-in-out infinite;
}

.lb-question-card,
.lb-logic-card,
.lb-lead-row {
  position: relative;
  z-index: 2;
  border: 1px solid var(--lb-line);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.88);
}

.lb-question-card {
  margin-top: 18px;
  padding: 22px;
}

.lb-question-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--lb-muted);
}

.lb-question-card__meta strong {
  color: var(--lb-teal);
  font-weight: 500;
}

.lb-question-card h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--lb-ink);
}

.lb-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.lb-choice-grid span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 8px;
  background: #fff;
  font-weight: 500;
  color: var(--lb-copy);
}

.lb-choice-grid .is-selected {
  border-color: rgba(29, 103, 108, 0.42);
  background: rgba(29, 219, 183, 0.13);
  color: var(--lb-teal);
  box-shadow: inset 0 0 0 1px rgba(29, 219, 183, 0.18);
}

.lb-logic-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 16px;
}

.lb-logic-card span,
.lb-next-action span,
.lb-score-card span {
  display: block;
  margin-bottom: 7px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--lb-muted);
}

.lb-logic-card strong {
  display: block;
  font-size: .98rem;
  line-height: 1.35;
  color: var(--lb-ink);
}

.lb-logic-card i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--lb-mint) 0 26%, transparent 27%),
    conic-gradient(var(--lb-teal) 0 74%, rgba(10, 18, 32, 0.08) 74% 100%);
}

.lb-lead-row {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px;
  background: var(--lb-dark);
  color: var(--lb-white);
}

.lb-lead-row__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lb-mint);
  color: var(--lb-dark);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
}

.lb-lead-row div {
  min-width: 0;
  flex: 1;
}

.lb-lead-row strong,
.lb-lead-row small {
  display: block;
}

.lb-lead-row small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.lb-lead-row em {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 219, 183, 0.42);
  border-radius: 50%;
  color: var(--lb-mint);
  font-style: normal;
  font-family: var(--f-display);
  font-size: 1.65rem;
}

.lb-lead-particles {
  position: absolute;
  inset: 0;
  z-index: 7;
  overflow: visible;
  pointer-events: none;
}

.lb-lead-particle {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--lead-size, 54px);
  height: var(--lead-size, 54px);
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.7);
  box-shadow:
    0 16px 26px rgba(10, 18, 32, 0.2),
    0 0 0 1px rgba(29, 219, 183, 0.16);
  will-change: transform, opacity, filter;
}

.lb-lead-particle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lb-floating {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 220px;
  padding: 10px 12px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(10, 18, 32, 0.12);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--lb-ink);
  animation: lbFloat 5.6s ease-in-out infinite;
}

.lb-floating span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lb-mint);
}

.lb-floating--one {
  top: 18%;
  left: 7%;
}

.lb-floating--two {
  right: 6%;
  top: 42%;
  animation-delay: -1.4s;
}

.lb-floating--three {
  left: 12%;
  bottom: 16%;
  animation-delay: -2.6s;
}

.lb-stats {
  display: block;
}

.lb-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--lb-line);
  border-radius: 8px;
  background: var(--lb-line);
}

.lb-stat {
  position: relative;
  isolation: isolate;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  overflow: hidden;
  padding: 38px 34px 32px;
  border: 0;
  border-radius: 0;
  background: var(--lb-bg);
  color: var(--lb-ink);
  transition: color .5s ease, background .5s ease;
}

.lb-stat__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--lb-dark);
  transform: translateY(100%);
  transition: transform .7s cubic-bezier(.2, .85, .25, 1);
}

.lb-stat:hover,
.lb-stat:focus-visible {
  color: var(--lb-bg);
  outline: none;
}

.lb-stat:hover .lb-stat__bg,
.lb-stat:focus-visible .lb-stat__bg {
  transform: translateY(0);
}

.lb-stat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.lb-stat__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--lb-muted);
  transition: color .4s ease;
}

.lb-stat__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .82;
  transition: transform .5s cubic-bezier(.2, .85, .25, 1), opacity .35s ease;
}

.lb-stat__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lb-stat:hover .lb-stat__num,
.lb-stat:focus-visible .lb-stat__num {
  color: var(--lb-mint);
}

.lb-stat:hover .lb-stat__icon,
.lb-stat:focus-visible .lb-stat__icon {
  transform: rotate(-12deg) scale(1.1);
  opacity: 1;
}

.lb-stat__copy h3 {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: currentColor;
}

.lb-stat__copy p {
  max-width: 31ch;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--lb-copy);
  transition: color .4s ease;
}

.lb-stat:hover .lb-stat__copy p,
.lb-stat:focus-visible .lb-stat__copy p {
  color: rgba(255, 255, 255, 0.66);
}

.lb-section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.lb-section-head h2,
.lb-processing__copy h2,
.lb-cta h2 {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--lb-ink);
}

.lb-section-head p,
.lb-processing__copy p,
.lb-cta p {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: var(--lb-copy);
}

.lb-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lb-feature-card {
  --lb-card-rx: 0deg;
  --lb-card-ry: 0deg;
  --lb-card-x: 0px;
  --lb-card-y: 0px;
  --lb-card-glow-x: 50%;
  --lb-card-glow-y: 50%;
  position: relative;
  min-height: 386px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--lb-line);
  border-radius: 8px;
  background: var(--lb-white);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    border-color .28s ease,
    box-shadow .28s ease,
    transform .5s cubic-bezier(.2,.8,.2,1);
}

.lb-feature-card.reveal.in {
  transform:
    translate3d(var(--lb-card-x), var(--lb-card-y), 0)
    rotateX(var(--lb-card-rx))
    rotateY(var(--lb-card-ry));
}

.lb-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--lb-card-glow-x) var(--lb-card-glow-y), rgba(29, 219, 183, 0.18), transparent 34%);
  transition: opacity .28s ease;
}

.lb-feature-card > * {
  position: relative;
  z-index: 1;
}

.lb-feature-card.is-tilting {
  border-color: rgba(29, 103, 108, 0.22);
  box-shadow: 0 24px 56px rgba(10, 18, 32, 0.12);
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    transform .12s ease;
}

.lb-feature-card.is-tilting::before {
  opacity: 1;
}

.lb-feature-card__num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--lb-muted);
}

.lb-feature-card__visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin: -2px -2px 18px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 28%, rgba(29, 219, 183, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(104, 87, 105, 0.1), transparent 36%),
    #f5f7f6;
  transition: transform .28s ease, box-shadow .28s ease;
}

.lb-feature-card.is-tilting .lb-feature-card__visual {
  transform: translateZ(18px) scale(1.01);
  box-shadow: inset 0 0 0 1px rgba(29, 219, 183, 0.08);
}

.lb-feature-card svg {
  width: min(100%, 398px);
  height: auto;
}

.lb-feature-card__visual--adaptive .lb-svg-appear,
.lb-feature-card__visual--context .lb-svg-focus,
.lb-feature-card__visual--logic .lb-svg-focus {
  transform-origin: center;
  animation: lbUiLift 3.6s ease-in-out infinite;
}

.lb-feature-card__visual--context .lb-svg-dot,
.lb-feature-card__visual--logic .lb-svg-dot {
  animation: lbDotTravel 3.6s ease-in-out infinite;
}

.lb-feature-card__visual--progressive .lb-svg-progress {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: lbProgressFill 4.8s ease-in-out infinite;
}

.lb-feature-card__visual--progressive .lb-svg-progress--two {
  animation-delay: .35s;
}

.lb-feature-card__visual--progressive .lb-svg-progress--three {
  animation-delay: .7s;
}

.lb-feature-card__visual--progressive .lb-svg-step-dots circle {
  fill: rgba(10, 18, 32, 0.16);
  animation: lbStepDot 4.8s ease-in-out infinite;
}

.lb-feature-card__visual--progressive .lb-svg-step-dots circle:nth-child(2) {
  animation-delay: .35s;
}

.lb-feature-card__visual--progressive .lb-svg-step-dots circle:nth-child(3) {
  animation-delay: .7s;
}

.lb-feature-card__visual--progressive .lb-svg-step-dots circle:nth-child(4) {
  animation-delay: 1.05s;
}

.lb-svg-grid path {
  stroke: rgba(10, 18, 32, 0.055);
  stroke-width: 1;
}

.lb-svg-panel {
  fill: rgba(255, 255, 255, 0.9);
  stroke: rgba(10, 18, 32, 0.12);
  stroke-width: 1.5;
}

.lb-svg-line {
  fill: none;
  stroke: rgba(10, 18, 32, 0.34);
  stroke-width: 5;
  stroke-linecap: round;
}

.lb-svg-line--title {
  stroke: rgba(10, 18, 32, 0.48);
}

.lb-svg-line--short {
  opacity: .78;
}

.lb-svg-chip,
.lb-svg-mini-pill {
  fill: rgba(29, 219, 183, 0.18);
  stroke: rgba(29, 103, 108, 0.34);
  stroke-width: 1.5;
}

.lb-svg-chip {
  fill: rgba(255, 255, 255, 0.88);
}

.lb-svg-chip--active {
  fill: rgba(29, 219, 183, 0.2);
  stroke: rgba(29, 103, 108, 0.42);
}

.lb-svg-input {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(29, 103, 108, 0.26);
  stroke-width: 1.4;
}

.lb-svg-label,
.lb-svg-small,
.lb-svg-tiny {
  font-family: var(--f-mono);
  letter-spacing: 0;
  fill: var(--lb-muted);
}

.lb-svg-label {
  font-size: 10px;
  text-transform: uppercase;
}

.lb-svg-small {
  font-size: 10px;
  fill: var(--lb-copy);
}

.lb-svg-small--center {
  text-anchor: middle;
}

.lb-svg-small--active {
  fill: var(--lb-teal);
  font-weight: 500;
}

.lb-svg-tiny {
  font-size: 9px;
  fill: var(--lb-teal);
}

.lb-svg-question {
  font-family: var(--f-display);
  font-size: 24px;
  letter-spacing: 0;
  fill: var(--lb-ink);
}

.lb-svg-dot {
  fill: var(--lb-mint);
}

.lb-svg-dot--large {
  filter: drop-shadow(0 0 10px rgba(29, 219, 183, 0.34));
}

.lb-svg-avatar {
  fill: rgba(29, 219, 183, 0.22);
  stroke: rgba(29, 103, 108, 0.34);
  stroke-width: 1.4;
}

.lb-svg-flow {
  fill: none;
  stroke: var(--lb-teal);
  stroke-width: 2.4;
  stroke-dasharray: 6 8;
  animation: lbFlowDash 2.8s linear infinite;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lb-svg-flow--soft {
  opacity: .34;
}

.lb-feature-card h3 {
  margin: 0 0 10px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--lb-ink);
}

.lb-feature-card p {
  max-width: 39ch;
  margin: 0;
  font-size: .95rem;
  line-height: 1.52;
  color: var(--lb-copy);
}

.lb-processing {
  margin: 56px 0;
  padding: 92px 0;
  color: var(--lb-white);
  background:
    radial-gradient(circle at 18% 24%, rgba(29, 219, 183, 0.18), transparent 32%),
    radial-gradient(circle at 88% 64%, rgba(198, 139, 58, 0.16), transparent 32%),
    var(--lb-dark);
}

.lb-processing__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .64fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.lb-processing__copy h2 {
  max-width: 17ch;
  color: var(--lb-white);
}

.lb-processing__copy p {
  max-width: 52ch;
  margin-top: 26px;
  color: rgba(251, 250, 247, 0.7);
}

.lb-processing__panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
}

.lb-score-card,
.lb-next-action {
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.95);
  color: var(--lb-ink);
}

.lb-score-card {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  padding: 22px clamp(132px, 36%, 240px) 22px 22px;
}

.lb-score-card strong {
  display: block;
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  color: var(--lb-teal);
}

.lb-score-card small {
  display: block;
  margin-top: 14px;
  color: var(--lb-copy);
}

.lb-score-card__lead {
  position: absolute;
  top: 50%;
  right: clamp(24px, 8%, 54px);
  width: clamp(86px, 10vw, 128px);
  height: clamp(86px, 10vw, 128px);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(20px, -48%, 0) scale(.76) rotate(7deg);
  transition:
    opacity .38s ease,
    transform .62s cubic-bezier(.16, 1, .3, 1);
  filter: drop-shadow(0 22px 34px rgba(10, 18, 32, 0.18));
}

.lb-score-card__lead::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(29, 103, 108, 0.18);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.68);
}

.lb-score-card__lead img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.lb-processing__panel:hover .lb-score-card__lead,
.lb-processing__panel:focus-within .lb-score-card__lead,
.lb-score-card__lead.is-visible {
  opacity: 1;
  transform: translate3d(0, -50%, 0) scale(1) rotate(0deg);
}

.lb-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.lb-segments span {
  position: relative;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.lb-segments .is-hot {
  border-color: rgba(29, 219, 183, 0.38);
  background:
    linear-gradient(90deg, rgba(29, 219, 183, 0.12), rgba(29, 219, 183, 0.26), rgba(29, 219, 183, 0.12));
  background-size: 220% 100%;
  color: var(--lb-mint);
  box-shadow:
    0 0 0 1px rgba(29, 219, 183, 0.08),
    0 0 18px rgba(29, 219, 183, 0.12);
  animation: lbHotPill 2.8s ease-in-out infinite;
}

.lb-segments .is-hot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lb-mint);
  opacity: .92;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(29, 219, 183, 0.72);
  animation: lbHotPillDot 2.8s ease-in-out infinite;
}

.lb-next-action {
  padding: 18px;
}

.lb-next-action strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--lb-ink);
}

.lb-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
  isolation: isolate;
}

.lb-flow::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 40px;
  z-index: 0;
  border-top: 1px dashed rgba(29, 219, 183, 0.42);
}

.lb-flow::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 35px;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lb-mint);
  box-shadow:
    0 0 0 6px rgba(29, 219, 183, 0.1),
    0 0 22px rgba(29, 219, 183, 0.56);
  animation: lbFlowDot 7.2s linear infinite;
}

.lb-flow article {
  position: relative;
  z-index: 1;
  min-height: 208px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.045)),
    var(--lb-dark);
}

.lb-flow span {
  display: inline-flex;
  margin-bottom: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--lb-mint);
}

.lb-flow strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--lb-white);
}

.lb-flow p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.62);
}

.lb-audience__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .74fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.lb-audience__head h2 {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(48px, 5.7vw, 84px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  color: var(--lb-ink);
}

.lb-audience__head h2 em {
  color: var(--lb-teal);
  font-style: italic;
}

.lb-audience__head p {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.55;
  color: var(--lb-copy);
}

.lb-audience__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.lb-audience-card {
  position: relative;
  min-height: 428px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--lb-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--lb-white);
  color: var(--lb-ink);
  transform-origin: center bottom;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

.lb-audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background: var(--lb-dark);
  transition: opacity .5s cubic-bezier(.2,.8,.2,1);
}

.lb-audience-card > * {
  position: relative;
  z-index: 1;
}

.lb-audience-card:hover {
  transform: translateY(-8px) scale(1.018);
}

.lb-audience-card:hover::after {
  opacity: 1;
}

.lb-audience-card__num {
  display: inline-block;
  margin-bottom: 38px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(10, 18, 32, .42);
}

.lb-audience-card__shape {
  width: 100%;
  height: 112px;
  margin: 10px 0 48px;
  display: grid;
  place-items: center;
  color: var(--lb-mint);
  transition: color .5s ease;
}

.lb-audience-card__shape svg {
  width: min(100%, 124px);
  height: 100%;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lb-audience-card__shape circle {
  fill: none;
}

.lb-audience-card__shape circle:not([r="13"]) {
  fill: currentColor;
}

.lb-audience-card__shape .is-soft {
  opacity: .5;
}

.lb-audience-card:hover .lb-audience-card__shape svg {
  animation: lbShapePulse 1.6s cubic-bezier(.2,.8,.2,1);
}

.lb-audience-card h3 {
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--lb-ink);
  transition: color .35s ease;
}

.lb-audience-card p {
  margin: 0;
  max-width: 28ch;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--lb-white);
  opacity: 0;
  transition: color .35s ease, opacity .35s ease;
}

.lb-audience-card:hover h3,
.lb-audience-card:hover p,
.lb-audience-card:hover .lb-audience-card__num {
  color: var(--lb-white);
}

.lb-audience-card:hover p {
  opacity: .68;
}

.lb-audience-card:hover .lb-audience-card__shape {
  color: var(--lb-mint);
}

.lb-cta {
  padding-bottom: 112px;
}

.lb-cta__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 56px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(29, 219, 183, 0.15), rgba(104, 87, 105, 0.18)),
    var(--lb-dark);
  color: var(--lb-white);
}

.lb-cta__inner > :not(.lb-cta__icons) {
  position: relative;
  z-index: 2;
}

.lb-cta__inner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 219, 183, 0.8), transparent);
}

.lb-cta__icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lb-cta__lead-icon {
  position: absolute;
  width: var(--lead-icon-size, 72px);
  height: var(--lead-icon-size, 72px);
  display: block;
  opacity: 0;
  transform:
    translate3d(var(--lead-enter-x, 0), var(--lead-enter-y, 0), 0)
    rotate(var(--lead-rot, 0deg))
    scale(.68);
  transition:
    opacity .52s ease,
    transform .86s cubic-bezier(.16, 1, .3, 1);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

.lb-cta__lead-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: .68;
  filter: invert(1) drop-shadow(0 0 18px rgba(29, 219, 183, 0.16));
}

.lb-cta__inner:hover .lb-cta__lead-icon,
.lb-cta__inner:focus-within .lb-cta__lead-icon {
  opacity: .62;
  transform:
    translate3d(0, 0, 0)
    rotate(var(--lead-rot, 0deg))
    scale(1);
  animation: lbCtaLeadFloat 6.8s ease-in-out infinite;
}

.lb-cta__inner:hover .lb-cta__lead-icon:nth-child(2n),
.lb-cta__inner:focus-within .lb-cta__lead-icon:nth-child(2n) {
  animation-duration: 8s;
}

.lb-cta__inner:hover .lb-cta__lead-icon:nth-child(3n),
.lb-cta__inner:focus-within .lb-cta__lead-icon:nth-child(3n) {
  animation-delay: -.7s;
}

.lb-cta__lead-icon--one {
  top: 8%;
  left: 4%;
  --lead-icon-size: 92px;
  --lead-enter-x: -54px;
  --lead-enter-y: -14px;
  --lead-rot: -9deg;
  transition-delay: .02s;
}

.lb-cta__lead-icon--two {
  top: 36%;
  left: 3%;
  --lead-icon-size: 58px;
  --lead-enter-x: -44px;
  --lead-rot: 12deg;
  transition-delay: .08s;
}

.lb-cta__lead-icon--three {
  bottom: 12%;
  left: 18%;
  --lead-icon-size: 76px;
  --lead-enter-y: 36px;
  --lead-rot: 7deg;
  transition-delay: .14s;
}

.lb-cta__lead-icon--four {
  top: 7%;
  right: 5%;
  --lead-icon-size: 86px;
  --lead-enter-x: 54px;
  --lead-enter-y: -12px;
  --lead-rot: 10deg;
  transition-delay: .04s;
}

.lb-cta__lead-icon--five {
  top: 36%;
  right: 3%;
  --lead-icon-size: 60px;
  --lead-enter-x: 46px;
  --lead-rot: -12deg;
  transition-delay: .1s;
}

.lb-cta__lead-icon--six {
  bottom: 8%;
  right: 7%;
  --lead-icon-size: 82px;
  --lead-enter-x: 34px;
  --lead-enter-y: 30px;
  --lead-rot: -6deg;
  transition-delay: .16s;
}

.lb-cta__lead-icon--seven {
  top: 20%;
  left: 17%;
  --lead-icon-size: 48px;
  --lead-enter-x: -22px;
  --lead-enter-y: -28px;
  --lead-rot: 18deg;
  transition-delay: .18s;
}

.lb-cta__lead-icon--eight {
  bottom: 25%;
  left: 8%;
  --lead-icon-size: 52px;
  --lead-enter-x: -36px;
  --lead-enter-y: 22px;
  --lead-rot: -18deg;
  transition-delay: .22s;
}

.lb-cta__lead-icon--nine {
  top: 22%;
  right: 18%;
  --lead-icon-size: 50px;
  --lead-enter-x: 30px;
  --lead-enter-y: -26px;
  --lead-rot: -17deg;
  transition-delay: .2s;
}

.lb-cta__lead-icon--ten {
  bottom: 26%;
  right: 17%;
  --lead-icon-size: 54px;
  --lead-enter-x: 34px;
  --lead-enter-y: 24px;
  --lead-rot: 15deg;
  transition-delay: .26s;
}

.lb-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.lb-cta__label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lb-mint);
}

.lb-cta h2.lb-cta__title {
  max-width: 100%;
  margin-top: 24px;
  font-size: clamp(3rem, 5.9vw, 5.375rem);
  line-height: .94;
  color: var(--lb-white);
}

.lb-cta__title span {
  display: block;
  white-space: nowrap;
}

.lb-cta p {
  max-width: 56ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.lb-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.lb-cta .btn--ghost {
  color: var(--lb-white);
  border-color: rgba(255, 255, 255, 0.32);
}

@keyframes lbSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes lbFlowDash {
  to {
    stroke-dashoffset: -28;
  }
}

@keyframes lbCtaLeadFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes lbHotPill {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow:
      0 0 0 1px rgba(29, 219, 183, 0.08),
      0 0 16px rgba(29, 219, 183, 0.12);
  }
  50% {
    background-position: 100% 50%;
    box-shadow:
      0 0 0 1px rgba(29, 219, 183, 0.2),
      0 0 26px rgba(29, 219, 183, 0.28);
  }
}

@keyframes lbHotPillDot {
  0%, 100% {
    left: 8px;
    opacity: .45;
    transform: translateY(-50%) scale(.82);
  }
  45%, 55% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  100% {
    left: calc(100% - 13px);
  }
}

@keyframes lbUiLift {
  0%, 100% {
    transform: translateY(0);
    opacity: .78;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes lbDotTravel {
  0%, 100% {
    opacity: .55;
    transform: translateX(-5px);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

@keyframes lbProgressFill {
  0%, 18% {
    stroke-dashoffset: 140;
  }
  50%, 82% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 140;
  }
}

@keyframes lbStepDot {
  0%, 22%, 100% {
    fill: rgba(10, 18, 32, 0.16);
  }
  42%, 82% {
    fill: var(--lb-mint);
  }
}

@keyframes lbFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes lbShapePulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes lbFlowDot {
  0% {
    left: 22px;
  }
  100% {
    left: calc(100% - 33px);
  }
}

@keyframes lbFlowDotY {
  0% {
    top: 22px;
  }
  100% {
    top: calc(100% - 33px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-flow::after,
  .lb-cta__lead-icon {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .lb-hero__grid,
  .lb-processing__grid {
    grid-template-columns: 1fr;
  }

  .lb-hero__visual {
    min-height: 620px;
  }

  .lb-flow,
  .lb-audience__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lb-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .lb-section-head,
  .lb-audience__head,
  .lb-feature-grid {
    grid-template-columns: 1fr;
  }

  .lb-cta__inner {
    padding: 44px 28px;
    justify-items: start;
  }

  .lb-cta h2.lb-cta__title {
    font-size: clamp(2.15rem, 6.5vw, 3.4rem);
  }

  .lb-cta__title span {
    white-space: normal;
  }

  .lb-flow,
  .lb-audience__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lb-flow::before,
  .lb-flow::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .lb-hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .lb-hero__copy {
    text-align: center;
  }

  .lb-crumbs,
  .lb-hero__cta-row,
  .lb-eyebrow {
    justify-content: center;
  }

  .lb-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .lb-hero__title,
  .lb-hero__lede,
  .lb-processing__copy h2,
  .lb-processing__copy p,
  .lb-section-head p {
    margin-left: auto;
    margin-right: auto;
  }

  .lb-hero__lede {
    font-size: 1rem;
  }

  .lb-hero__visual {
    min-height: 560px;
  }

  .lb-widget {
    width: calc(100% - 28px);
    padding: 14px;
  }

  .lb-widget__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .lb-widget__top img {
    width: 136px;
  }

  .lb-score-card {
    min-height: 188px;
    padding-right: 112px;
  }

  .lb-score-card__lead {
    right: 20px;
    width: 78px;
    height: 78px;
  }

  .lb-question-card h2 {
    max-width: 12ch;
  }

  .lb-floating {
    display: none;
  }

  .lb-stats__grid,
  .lb-feature-grid,
  .lb-flow,
  .lb-audience__grid {
    grid-template-columns: 1fr;
  }

  .lb-flow {
    gap: 14px;
  }

  .lb-flow::before {
    display: block;
    left: 0;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 0;
    border-top: 0;
    border-left: 1px dashed rgba(29, 219, 183, 0.42);
  }

  .lb-flow::after {
    display: block;
    left: -5px;
    top: 22px;
    animation: lbFlowDotY 6.4s linear infinite;
  }

  .lb-section-head,
  .lb-audience__head,
  .lb-processing__copy {
    text-align: center;
  }

  .lb-audience__head p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .lb-audience-card {
    text-align: center;
  }

  .lb-audience-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .lb-processing {
    padding: 68px 0;
  }

  .lb-flow article,
  .lb-audience__grid article,
  .lb-stat {
    min-height: auto;
  }

  .lb-cta__inner {
    text-align: center;
    justify-items: center;
  }

  .lb-cta h2.lb-cta__title {
    max-width: 100%;
    font-size: clamp(2rem, 10.4vw, 2.65rem);
  }

  .lb-cta__lead-icon {
    --lead-icon-size: 46px !important;
  }

  .lb-cta__lead-icon--three,
  .lb-cta__lead-icon--six,
  .lb-cta__lead-icon--seven,
  .lb-cta__lead-icon--nine {
    display: none;
  }

  .lb-cta h2,
  .lb-cta p {
    margin-left: auto;
    margin-right: auto;
  }
}
