/* ================================================================
   THRYVV.IO - calm authority WordPress homepage
   White base, coral + dark punctuation, soft shapes, human tone.
   ================================================================ */

:root {
  --c-coral: #FF5C46;
  --c-coral-deep: #E8472F;
  --c-coral-soft: #FFE8E2;
  --c-coral-pale: #FFF4F0;

  --c-ink: #0F1316;
  --c-ink-2: #1A2024;
  --c-graphite: #2A3338;
  --c-mid: #5B6770;
  --c-slate: #8A949C;
  --c-line: #ECE9E3;
  --c-line-2: #F2EFE9;

  --c-white: #FFFFFF;
  --c-paper: #FBFAF7;
  --c-cream: #F5F1E9;

  --c-mint: #C8E6CF;     /* friendly accent for "good news" */
  --c-amber: #F4B544;    /* DPN urgency */
  --c-amber-deep: #B26A12;

  --ff-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --ff-body: "Inter Tight", "Inter", system-ui, sans-serif;

  --fs-eyebrow: 0.74rem;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.2rem;
  --fs-h3: clamp(1.625rem, 1.3rem + 1.2vw, 2.25rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --fs-h1: clamp(2.75rem, 1.6rem + 5.5vw, 6rem);

  --tracking-tight: -0.028em;
  --tracking-snug: -0.014em;
  --tracking-caps: 0.14em;

  --gutter: clamp(20px, 4vw, 56px);
  --section-py: clamp(80px, 9vw, 140px);
  --container: 1280px;
  --container-narrow: 920px;

  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-blob: 40% 60% 60% 40% / 55% 45% 55% 45%;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-graphite);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

::selection { background: var(--c-coral); color: var(--c-white); }
:focus-visible { outline: 2px solid var(--c-coral); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-py); }
.section--white { background: var(--c-white); }
.section--coral { background: var(--c-coral); color: var(--c-white); }
.section--dark { background: var(--c-ink); color: rgba(255,255,255,0.78); }

.section--coral h1, .section--coral h2, .section--coral h3, .section--coral h4 { color: var(--c-white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-coral);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.section--coral .eyebrow { color: rgba(255,255,255,0.85); }
.section--dark .eyebrow { color: var(--c-coral); }

/* ================================================================
   Buttons - pill, soft, friendly
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn .arrow { display: inline-block; transition: transform var(--t-base) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--coral {
  background: var(--c-coral);
  color: var(--c-white);
  padding: 14px 22px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 24px -10px rgba(255, 92, 70, 0.55);
}
.btn--coral:hover { background: var(--c-coral-deep); transform: translateY(-1px); }

.btn--ink {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 14px 22px;
}
.btn--ink:hover, .btn--ink:focus-visible { background: var(--c-coral); color: var(--c-white) !important; }

.btn--white {
  background: var(--c-white);
  color: var(--c-ink);
  padding: 14px 22px;
}
.btn--white:hover { background: var(--c-ink); color: var(--c-white); }

.btn--ghost {
  color: var(--c-ink);
  background: transparent;
  border: 1px solid var(--c-ink);
  padding: 13px 21px;
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-white); }

.btn--link {
  padding: 6px 0;
  color: var(--c-ink);
  border-radius: 0;
  border-bottom: 1.5px solid var(--c-ink);
}
.btn--link:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }

.section--coral .btn--white:hover { background: var(--c-ink); color: var(--c-white); }
.section--coral .btn--link { color: var(--c-white); border-bottom-color: rgba(255,255,255,0.5); }
.section--coral .btn--link:hover { border-bottom-color: var(--c-white); color: var(--c-white); }
.section--dark .btn--ghost,
.shield .btn--ghost { color: var(--c-white); border-color: rgba(255,255,255,0.45); }
.section--dark .btn--ghost:hover,
.shield .btn--ghost:hover { background: var(--c-white); color: var(--c-ink); }
.section--dark .btn--link { color: var(--c-white); border-bottom-color: rgba(255,255,255,0.4); }

/* ================================================================
   DPN top banner
   ================================================================ */
.dpn-banner {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.dpn-banner__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 10px var(--gutter);
  flex-wrap: wrap;
}
.dpn-banner__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-amber);
  flex-shrink: 0;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 181, 68, 0.55); }
  60% { box-shadow: 0 0 0 8px rgba(244, 181, 68, 0); }
}
.dpn-banner__label { color: var(--c-white); font-weight: 600; }
.dpn-banner a {
  color: var(--c-amber);
  border-bottom: 1px solid rgba(244, 181, 68, 0.4);
  padding-bottom: 1px;
}
.dpn-banner a:hover { color: var(--c-white); border-bottom-color: var(--c-white); }

/* ================================================================
   Nav
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom-color: var(--c-line);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex; align-items: center; gap: 32px;
  padding: 18px var(--gutter);
}
.nav__logo img { height: 22px; width: auto; }
.nav__links {
  display: none;
  list-style: none; margin: 0; padding: 0;
  gap: 28px;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--c-graphite);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--c-coral); }

.nav__phone {
  display: none;
  font-size: 0.9rem;
  color: var(--c-graphite);
  margin-left: auto;
  font-weight: 500;
}
.nav__phone:hover { color: var(--c-coral); }

.nav__cta { margin-left: auto; }
.nav__cta .btn { padding: 11px 18px; font-size: 0.875rem; }

.nav__burger {
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-ink);
  color: var(--c-white);
}
.nav__burger:hover { background: var(--c-coral); }
.nav__burger svg {
  display: none;
}
.nav__burger::before {
  content: "☰";
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__phone { display: inline-flex; align-items: center; }
  .nav__cta { margin-left: 0; }
  .nav__burger { display: none; }
}

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-coral);
  color: var(--c-white);
  z-index: 100;
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) 32px;
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu__top img { height: 22px; filter: brightness(0) invert(1); }
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu__nav {
  list-style: none; margin: 0; padding: 28px 0 0;
  display: flex; flex-direction: column;
}
.mobile-menu__nav a {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 7vw, 2.75rem);
  color: var(--c-white);
  letter-spacing: var(--tracking-tight);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu__foot .btn { justify-content: center; background: var(--c-ink); color: var(--c-white); }
.mobile-menu__phone { text-align: center; font-size: 0.92rem; color: rgba(255,255,255,0.85); }

/* ================================================================
   Hero - oversized type, soft blob shapes, asymmetric
   ================================================================ */
.hero {
  position: relative;
  padding-block: clamp(72px, 9vw, 144px) clamp(72px, 8vw, 120px);
  overflow: hidden;
  background: var(--c-white);
}

/* refined hero background: thin rule only */
.hero__rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
  pointer-events: none;
}
.hero__corner {
  position: absolute;
  top: 32px; right: var(--gutter);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-mid);
  font-weight: 500;
  display: none;
}
@media (min-width: 1024px) { .hero__corner { display: block; } }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}
.hero__copy {
  min-width: 0;
}
.hero__image-space {
  margin: 0;
  min-width: 0;
  justify-self: stretch;
}
.hero__image {
  display: block;
  width: 100%;
  min-height: clamp(360px, 38vw, 560px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% center;
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: clamp(28px, 3vw, 44px);
  box-shadow: 0 28px 72px rgba(15, 19, 22, 0.12);
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__image {
    min-height: clamp(260px, 58vw, 420px);
    aspect-ratio: 16 / 11;
    object-position: center center;
  }
}
/* Evidence transition - team imagery + numbers */
.evidence {
  background: var(--c-white);
  padding-block: clamp(72px, 8vw, 128px);
  border-top: 1px solid var(--c-line);
}
.evidence__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
@media (min-width: 960px) {
  .evidence__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(56px, 6vw, 96px);
  }
}
.evidence__image {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
@media (min-width: 960px) {
  }
.evidence__caption {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.35rem);
  line-height: 1.4;
  color: var(--c-graphite);
  max-width: 36ch;
  letter-spacing: -0.005em;
  padding-left: 16px;
  border-left: 2px solid var(--c-coral);
}
.evidence__numbers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  min-width: 0;
}
.evidence__lede {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0;
  max-width: 22ch;
}
.evidence__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.evidence__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}
.evidence__num {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 1.6rem + 1.6vw, 3rem);
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.025em;
  font-weight: 400;
}
.evidence__num em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.evidence__num .ph { color: var(--c-coral); font-style: italic; opacity: 0.85; font-size: 0.9em; }
.evidence__label {
  font-size: 0.95rem;
  color: var(--c-graphite);
  line-height: 1.5;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-coral-pale);
  color: var(--c-coral);
  border: 1px solid var(--c-coral-soft);
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 36px;
}
.hero__chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-coral);
}

.hero__h1 {
  font-size: clamp(2.75rem, 1.6rem + 4.2vw, 5.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.034em;
  color: var(--c-ink);
  max-width: 14ch;
  margin: 0;
}
.hero__h1 em {
  font-style: italic;
  color: var(--c-coral);
  font-weight: 400;
}
.hero__highlight {
  display: inline-block;
  background: var(--c-coral);
  color: var(--c-white);
  padding: 0 0.18em;
  border-radius: 8px;
  transform: rotate(-1deg);
}

.hero__sub {
  margin-top: 36px;
  max-width: 50ch;
  font-size: var(--fs-body-lg);
  color: var(--c-graphite);
  line-height: 1.5;
}
.hero__sub--punch {
  margin-top: 14px;
  font-weight: 700;
  color: var(--c-ink);
}

.hero__foot {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.hero__foot-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-mid);
}
.hero__foot-meta::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--c-coral);
  border-radius: 50%;
}


/* ================================================================
   Post-hero situation marquee — restrained advisory recognition strip
   ================================================================ */
.situation-marquee {
  position: relative;
  z-index: 1;
  background: color-mix(in srgb, var(--c-white) 92%, #efe8dd 8%);
  border-top: 1px solid rgba(15, 19, 22, 0.08);
  border-bottom: 1px solid rgba(15, 19, 22, 0.08);
  overflow: hidden;
}
.situation-marquee__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(18px, 2.1vw, 26px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(250px, 0.30fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.situation-marquee__label {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.35;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-mid);
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.situation-marquee__viewport {
  min-width: 0;
  overflow: hidden;
  padding-left: clamp(34px, 4vw, 58px);
  border-left: 1px solid rgba(15, 19, 22, 0.10);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 93%, transparent 100%);
}
.situation-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: thryvv-situation-marquee 72s linear infinite;
  will-change: transform;
}
.situation-marquee:hover .situation-marquee__track,
.situation-marquee:focus-within .situation-marquee__track {
  animation-play-state: paused;
}
.situation-marquee__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 34px);
  flex-shrink: 0;
}
.situation-marquee__list + .situation-marquee__list {
  padding-left: clamp(18px, 2.8vw, 34px);
}
.situation-marquee__list li {
  position: relative;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: clamp(1.02rem, 0.95rem + 0.24vw, 1.18rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--c-ink);
}
.situation-marquee__list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: clamp(14px, 1.6vw, 20px);
  border-radius: 50%;
  background: rgba(232, 91, 74, 0.42);
  transform: translateY(-0.12em);
}
@keyframes thryvv-situation-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 760px) {
  .situation-marquee__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 18px 20px;
  }
  .situation-marquee__label {
    white-space: normal;
    font-size: 0.72rem;
  }
  .situation-marquee__viewport {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0, #000 88%, transparent 100%);
  }
  .situation-marquee__track {
    animation-duration: 82s;
  }
  .situation-marquee__list li {
    font-size: 1.02rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .situation-marquee__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }
  .situation-marquee__track {
    width: auto;
    animation: none;
    will-change: auto;
  }
  .situation-marquee__list {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .situation-marquee__list--duplicate {
    display: none;
  }
  .situation-marquee__list li {
    white-space: normal;
  }
}

/* ================================================================
   Stats - coral chips on white, friendly + warm
   ================================================================ */
.stats {
  background: var(--c-white);
  padding-block: 0 var(--section-py);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--c-ink);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
}
@media (min-width: 700px) { .stats__grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }

.stat {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background-color var(--t-fast) var(--ease);
}
.stat:hover { background: rgba(255,255,255,0.07); }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--c-white);
  letter-spacing: -0.025em;
}
.stat__num em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.stat__num .ph { color: var(--c-coral); font-style: italic; opacity: 0.8; font-size: 0.9em; }
.stat__label {
  margin-top: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

/* ================================================================
   Confessional intro - big honest statement
   ================================================================ */
.confess {
  background: var(--c-white);
}
.confess__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 1024px) {
  .confess__grid { grid-template-columns: 7fr 5fr; gap: 80px; align-items: end; }
}
.confess__big {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.875rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: var(--tracking-tight);
  color: var(--c-ink);
  max-width: 22ch;
}
.confess__big em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.confess__big .strike {
  text-decoration: line-through;
  text-decoration-color: var(--c-coral);
  text-decoration-thickness: 3px;
  color: var(--c-mid);
}
.confess__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 12px;
}
.confess__side p {
  font-size: 1.05rem;
  color: var(--c-graphite);
  line-height: 1.6;
  max-width: 42ch;
}

/* ================================================================
   Services - bento, mixed sizes, soft cards
   ================================================================ */
.services {
  background: var(--c-paper);
}
.services__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 800px) {
  .services__head { grid-template-columns: 5fr 5fr; gap: 56px; }
}
.services__h {
  font-size: var(--fs-h2);
  letter-spacing: var(--tracking-tight);
  margin-top: 24px;
  line-height: 1.04;
  max-width: 16ch;
}
.services__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.services__intro {
  font-size: var(--fs-body-lg);
  color: var(--c-graphite);
  line-height: 1.55;
  max-width: 50ch;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.bento__referrers {
  margin-top: 16px;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 800px) {
  .bento__referrers { grid-template-columns: 1fr auto; gap: 40px; }
}
.bento__referrers h3 {
  font-family: var(--ff-display);
  color: var(--c-white);
  font-size: clamp(1.25rem, 1rem + 0.6vw, 1.625rem);
  font-weight: 400;
  letter-spacing: var(--tracking-snug);
  line-height: 1.15;
  max-width: 28ch;
}
.bento__referrers p {
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 56ch;
}
.bento__referrers .btn { white-space: nowrap; }

.tile {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.tile:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -22px rgba(15,19,22,0.22); border-color: var(--c-graphite); }
.tile__rule {
  width: 28px;
  height: 2px;
  background: var(--c-coral);
  margin-bottom: 4px;
  transition: width var(--t-base) var(--ease);
}
.tile:hover .tile__rule { width: 56px; }
.tile__num {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-coral);
}
.tile__h {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.2rem + 0.6vw, 2rem);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.05;
  letter-spacing: var(--tracking-snug);
}
.tile__p {
  font-size: 0.98rem;
  color: var(--c-graphite);
  line-height: 1.55;
}
.tile__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.tile__list li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-graphite);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  transition: all var(--t-fast) var(--ease);
}
.tile__list li a:hover {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}

.tile__h { font-size: clamp(1.375rem, 1.15rem + 0.5vw, 1.625rem); }
.tile__p { font-size: 0.95rem; }
.services .tile__p { line-height: 1.5; }

/* ================================================================
   DPN - coral full-bleed punctuation
   ================================================================ */
.dpn {
  background: var(--c-coral);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.dpn::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}
.dpn__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.dpn__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .dpn__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
}
.dpn__h {
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  max-width: 18ch;
}
.dpn__h em { font-style: italic; }
.dpn__p {
  margin-top: 24px;
  color: rgba(255,255,255,0.92);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  max-width: 50ch;
}
.dpn__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.dpn__facts {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dpn-fact {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}
.dpn-fact__key {
  font-family: var(--ff-display);
  font-size: 1.625rem;
  color: var(--c-white);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-style: italic;
}
.dpn-fact__val {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

/* ================================================================
   How it works - friendly cards in a row, soft
   ================================================================ */
.how {
  background: var(--c-white);
}
.how__head { margin-bottom: 64px; max-width: 36ch; }
.how__h {
  font-size: var(--fs-h2);
  letter-spacing: var(--tracking-tight);
  margin-top: 24px;
  line-height: 1.04;
}
.how__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.step {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.step:hover { transform: translateY(-3px); background: var(--c-coral-pale); border-color: var(--c-coral-soft); }
.step__badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.step:nth-child(2) .step__badge { background: var(--c-coral); }
.step:nth-child(3) .step__badge { background: var(--c-mint); color: var(--c-ink); }
.step__h {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  color: var(--c-ink);
  letter-spacing: var(--tracking-snug);
  font-weight: 400;
  line-height: 1.1;
}
.step__p {
  font-size: 0.98rem;
  color: var(--c-graphite);
  line-height: 1.6;
}

.how__foot {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

/* ================================================================
   Quotes - overlapping cards, friendly
   ================================================================ */
.quotes {
  background: var(--c-paper);
}
.quotes__head {
  margin-bottom: 56px;
  max-width: 36ch;
}
.quotes__h {
  font-size: var(--fs-h2);
  margin-top: 24px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.04;
}
.quotes__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }

.quotes__stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .quotes__stack { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
  .quote:nth-child(2) { margin-top: 56px; }
}

.quote {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.quote:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -20px rgba(15,19,22,0.16); }
.quote__mark {
  position: absolute;
  top: 14px; right: 24px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 4.5rem;
  color: var(--c-coral);
  line-height: 1;
}
.quote__text {
  font-family: var(--ff-display);
  font-size: clamp(1.1875rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-ink);
  letter-spacing: var(--tracking-snug);
  margin: 0;
  max-width: 42ch;
}
.quote__attr {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-coral-pale);
  color: var(--c-coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
}
.quote__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink);
}
.quote__role { display: block; font-size: 0.85rem; color: var(--c-mid); }

/* ================================================================
   Manage support - split, dark with coral details
   ================================================================ */
.shield {
  background: var(--c-ink);
  color: rgba(255,255,255,0.78);
  position: relative;
  overflow: hidden;
}
.shield__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shield__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) {
  .shield__grid { grid-template-columns: 5fr 5fr; gap: 80px; }
}
.shield__h {
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  margin-top: 24px;
  max-width: 16ch;
}
.shield__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.shield__p {
  margin-top: 28px;
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 48ch;
}
.shield__cta {
  margin-top: 32px;
}

.shield__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
}
.shield__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.shield__panel-head .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-mint);
  font-weight: 500;
  font-size: 0.85rem;
}
.shield__panel-head .badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-mint);
}
.shield__list {
  list-style: none;
  margin: 0; padding: 0;
}
.shield__row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shield__row:last-child { border-bottom: 0; padding-bottom: 0; }
.shield__row .label { flex: 1; }
.shield__row .badge {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.shield__row .badge--ok { background: rgba(200, 230, 207, 0.16); color: var(--c-mint); }
.shield__row .badge--coral { background: rgba(255, 92, 70, 0.16); color: var(--c-coral); }
.shield__row .badge--neutral { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

/* ================================================================
   Final CTA - big, friendly, coral edges
   ================================================================ */
.final {
  background: var(--c-white);
}
.final__card {
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.final__card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,92,70,0.6), transparent);
  pointer-events: none;
}
.final__card::after {
  content: "thryvv";
  position: absolute;
  right: -1vw; bottom: -4vw;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(12rem, 20vw, 22rem);
  color: rgba(255,92,70,0.07);
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .final__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
}
.final__h {
  font-size: clamp(2.25rem, 1.4rem + 3.5vw, 4.5rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 0.98;
  letter-spacing: -0.032em;
  max-width: 14ch;
}
.final__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.final__col-r { display: flex; flex-direction: column; gap: 24px; padding-bottom: 8px; }
.final__p { color: rgba(255,255,255,0.8); font-size: var(--fs-body-lg); line-height: 1.55; max-width: 38ch; }
.final__actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.final__phone { color: var(--c-white); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 3px; }
.final__phone:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }

/* ================================================================
   Footer
   ================================================================ */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding-block: clamp(56px, 7vw, 88px) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 64px; }
}
.footer__brand img { height: 22px; margin-bottom: 22px; }
.footer__tagline { color: rgba(255,255,255,0.7); max-width: 36ch; margin-bottom: 24px; line-height: 1.55; }
.footer__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--c-white); font-weight: 500; }
.footer__phone:hover { color: var(--c-coral); }

.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,0.82); }
.footer__col a:hover { color: var(--c-coral); }

.footer__bottom { padding-top: 28px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .footer__bottom { grid-template-columns: 1fr auto; align-items: center; gap: 28px; } }
.footer__legal { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 60ch; }
.footer__legal a { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.18); }
.footer__legal a:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover { background: var(--c-coral); color: var(--c-white); border-color: var(--c-coral); }

/* ================================================================
   Sticky mobile CTA
   ================================================================ */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 40;
  padding: 8px;
  background: var(--c-ink);
  border-radius: var(--r-pill);
  display: flex;
  gap: 8px;
  transform: translateY(150%);
  transition: transform 360ms var(--ease);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.4);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  background: var(--c-coral);
  color: var(--c-white);
  padding: 12px 16px;
  font-size: 0.92rem;
}
.sticky-cta__call {
  min-width: 44px; height: 44px;
  padding-inline: 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}
.sticky-cta__call svg { flex-shrink: 0; }
@media (min-width: 1024px) { .sticky-cta { display: none !important; } }

/* ================================================================
   Reveal
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .dpn-banner__dot { animation: none; }
}

body.is-menu-open { overflow: hidden; }


/* WordPress adaptation overrides */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
.reveal { opacity: 1; transform: none; }
.reveal.is-in { opacity: 1; transform: none; }
@media (max-width: 760px) {
  :root { --section-py: 72px; }
  .hero { min-height: auto; padding-top: 86px; padding-bottom: 70px; }
  .hero__corner, .hero__rule { display: none; }
  .evidence, .section { padding-top: 72px; padding-bottom: 72px; }
  .dpn-banner__inner { line-height: 1.35; }
  .footer { padding-bottom: 94px; }
}

/* Brand tightening overrides */
.hero { min-height: auto; padding-top: clamp(92px, 11vw, 150px); padding-bottom: clamp(92px, 10vw, 150px); }
.evidence__visual-card {
  min-height: 440px;
  width: 100%;
  border: 1px solid rgba(15, 19, 22, 0.14);
  background:
    radial-gradient(circle at 24% 18%, rgba(232, 91, 74, 0.13), transparent 30%),
    linear-gradient(135deg, #fbfaf7 0%, #f1ede5 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--c-ink);
}
.evidence__visual-card::before {
  content: none;
}
.visual-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-coral-deep);
  font-weight: 700;
}
.evidence__visual-card strong {
  max-width: 12ch;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
}
.evidence__visual-card p { max-width: 34ch; margin: 0; color: var(--c-mid); }
.dpn { background: var(--c-ink); color: var(--c-white); }
.dpn::before { background: linear-gradient(135deg, transparent 0%, rgba(232,91,74,0.16) 100%); }
.dpn .eyebrow { color: var(--c-coral-soft); }
.dpn-fact { background: rgba(255,255,255,0.075); border-color: rgba(255,255,255,0.14); }
@media (max-width: 760px) { .evidence__visual-card { min-height: 320px; } }


/* Contact page alignment */
.thryvv-contact-page .contact-hero {
  padding-top: clamp(116px, 13vw, 170px);
  padding-bottom: clamp(76px, 8vw, 110px);
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}
.contact-hero__inner { max-width: 900px; }
.contact-dpn-strip { background: var(--c-white); padding: 34px 0 0; }
.dpn-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(232, 91, 74, 0.25);
  border-radius: var(--r-lg);
  background: var(--c-coral-pale);
}
.dpn-mini-card strong { display: block; color: var(--c-ink); font-size: 1.1rem; margin-bottom: 4px; }
.dpn-mini-card p { margin: 0; color: var(--c-mid); max-width: 66ch; }
.contact-section { background: var(--c-white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: minmax(0, 1.15fr) 0.85fr; gap: 56px; } }
.contact-form, .expect-card {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-paper);
  padding: clamp(24px, 4vw, 42px);
}
.form-heading h2, .expect-card h2 { font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem); margin: 18px 0 10px; }
.form-heading p { margin: 0 0 28px; color: var(--c-mid); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid__full { grid-column: 1 / -1; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; color: var(--c-ink); }
.contact-form label span { color: var(--c-coral-deep); }
.contact-form small { color: var(--c-mid); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-white);
  color: var(--c-ink);
  padding: 14px 15px;
  font: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid rgba(232,91,74,0.28); border-color: var(--c-coral); }
.contact-form button { margin-top: 24px; }
.form-status { margin: 18px 0 0; color: var(--c-coral-deep); font-weight: 700; }
.expect-card ol { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 18px; }
.expect-card li { border-top: 1px solid var(--c-line); padding-top: 18px; }
.expect-card strong { display: block; color: var(--c-ink); margin-bottom: 5px; }
.expect-card span { color: var(--c-mid); }
@media (max-width: 760px) {
  .dpn-mini-card { align-items: flex-start; flex-direction: column; }
  .thryvv-contact-page .contact-hero { padding-top: 98px; }
}




/* ================================================================
   Proof transition sequence — full-screen proof moments
   ================================================================ */
.proof-sequence {
  position: relative;
  background: #f7f1e8;
  border-top: 1px solid rgba(15, 19, 22, 0.09);
  border-bottom: 1px solid rgba(15, 19, 22, 0.09);
  overflow: clip;
}
.proof-sequence::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(15,19,22,0.028) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(15,19,22,0.020) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 12% 18%, rgba(232,91,74,0.09), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(232,91,74,0.07), transparent 28%);
}
.proof-panel {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
  isolation: isolate;
}
.proof-panel + .proof-panel {
  border-top: 1px solid rgba(15, 19, 22, 0.08);
}
.proof-panel__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
}
.proof-panel--reverse .proof-panel__inner {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}
.proof-panel--reverse .proof-panel__copy { order: 2; }
.proof-panel--reverse .proof-panel__photo { order: 1; }
.proof-panel__copy {
  position: relative;
  min-width: 0;
}
.proof-panel__rule {
  width: min(320px, 56vw);
  height: 1px;
  background: linear-gradient(90deg, var(--c-coral) 0%, rgba(232,91,74,0.34) 54%, transparent 100%);
  transform-origin: left center;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.proof-panel--reverse .proof-panel__rule {
  margin-left: auto;
  transform-origin: right center;
  background: linear-gradient(270deg, var(--c-coral) 0%, rgba(232,91,74,0.34) 54%, transparent 100%);
}
.proof-panel__number {
  font-family: var(--ff-display);
  font-size: clamp(6.4rem, 7vw + 4rem, 14rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: var(--c-ink);
  font-weight: 400;
  white-space: nowrap;
}
.proof-panel__line {
  max-width: 24ch;
  margin: clamp(22px, 3vw, 38px) 0 0;
  font-size: clamp(1.38rem, 0.9rem + 1.55vw, 2.65rem);
  line-height: 1.08;
  color: var(--c-graphite);
  letter-spacing: -0.025em;
}
.proof-panel--reverse .proof-panel__copy { text-align: right; }
.proof-panel--reverse .proof-panel__line { margin-left: auto; }
.proof-panel__photo {
  position: relative;
  min-height: clamp(420px, 58vh, 680px);
  border: 1px solid rgba(15, 19, 22, 0.13);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.38), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 30% 24%, rgba(232,91,74,0.13), transparent 30%),
    linear-gradient(135deg, #fcfaf5 0%, #eee5d8 48%, #ded2c3 100%);
  box-shadow:
    0 34px 90px rgba(48, 38, 30, 0.14),
    inset 0 0 0 18px rgba(255,255,255,0.16);
  overflow: hidden;
}
.proof-panel__photo::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(15, 19, 22, 0.08);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.025) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(15,19,22,0.02) 1px, transparent 1px) 0 0 / 28px 28px;
}
.proof-panel__photo::after {
  content: "";
  position: absolute;
  right: clamp(28px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 64px);
  width: min(42%, 230px);
  height: min(30%, 170px);
  border: 1px solid rgba(15,19,22,0.10);
  background: rgba(255,255,255,0.34);
  box-shadow: -38px -30px 0 rgba(255,255,255,0.16), -74px -58px 0 rgba(255,255,255,0.10);
}
.proof-panel__photo span {
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  top: clamp(24px, 4vw, 42px);
  z-index: 1;
  display: inline-flex;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  border: 1px solid rgba(15, 19, 22, 0.12);
  background: rgba(255,255,255,0.72);
  color: var(--c-mid);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
}
.proof-panel--one .proof-panel__photo { transform: rotate(0.35deg); }
.proof-panel--two .proof-panel__photo {
  transform: rotate(-0.35deg);
  background:
    linear-gradient(65deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 46%),
    radial-gradient(circle at 72% 18%, rgba(232,91,74,0.12), transparent 30%),
    linear-gradient(135deg, #f8f4ed 0%, #e9dfd0 54%, #dcd0c0 100%);
}
.proof-panel--three .proof-panel__photo {
  background:
    linear-gradient(100deg, rgba(255,255,255,0.36), rgba(255,255,255,0) 44%),
    radial-gradient(circle at 24% 78%, rgba(232,91,74,0.12), transparent 31%),
    linear-gradient(135deg, #fbf7ef 0%, #ebe1d4 48%, #d9cdbc 100%);
}
.proof-panel--three .proof-panel__rule::after {
  content: "";
  display: block;
  height: 3px;
  width: 58%;
  margin-top: 10px;
  background: var(--c-coral);
  border-radius: 999px;
  transform-origin: left center;
  opacity: 0.78;
}
.proof-panel:not(.is-in) .proof-panel__rule,
.proof-panel:not(.is-in) .proof-panel__number,
.proof-panel:not(.is-in) .proof-panel__line,
.proof-panel:not(.is-in) .proof-panel__photo {
  opacity: 0;
}
.proof-panel.is-in .proof-panel__rule {
  animation: proof-rule-draw 780ms var(--ease) both;
}
.proof-panel.is-in .proof-panel__number {
  animation: proof-number-rise 780ms var(--ease) 120ms both;
}
.proof-panel.is-in .proof-panel__line {
  animation: proof-line-appear 700ms var(--ease) 320ms both;
}
.proof-panel.is-in .proof-panel__photo {
  animation: proof-photo-place 900ms var(--ease) 180ms both;
}
.proof-panel--two.is-in .proof-panel__number { animation-name: proof-number-expand; }
.proof-panel--three.is-in .proof-panel__number { animation-duration: 1050ms; }
@keyframes proof-rule-draw {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes proof-number-rise {
  from { opacity: 0; transform: translateY(34px); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes proof-number-expand {
  from { opacity: 0; transform: scaleX(0.82) translateY(12px); transform-origin: center; filter: blur(2px); }
  to { opacity: 1; transform: scaleX(1) translateY(0); filter: blur(0); }
}
@keyframes proof-line-appear {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes proof-photo-place {
  from { opacity: 0; transform: translateY(22px) scale(0.965) rotate(-0.6deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(var(--proof-photo-rotate, 0deg)); }
}
.proof-panel--one { --proof-photo-rotate: 0.35deg; }
.proof-panel--two { --proof-photo-rotate: -0.35deg; }
.proof-panel--three { --proof-photo-rotate: 0deg; }
@media (min-width: 1024px) {
  .proof-panel {
    min-height: 100vh;
  }
  .proof-panel__inner {
    position: sticky;
    top: clamp(72px, 8vh, 96px);
  }
}
@media (max-width: 900px) {
  .proof-panel {
    min-height: 86vh;
    padding-block: 48px 58px;
  }
  .proof-panel__inner,
  .proof-panel--reverse .proof-panel__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .proof-panel--reverse .proof-panel__copy,
  .proof-panel--reverse .proof-panel__photo {
    order: initial;
  }
  .proof-panel__photo {
    order: 1;
    min-height: clamp(260px, 46vh, 430px);
  }
  .proof-panel__copy {
    order: 2;
  }
  .proof-panel--reverse .proof-panel__copy,
  .proof-panel--reverse .proof-panel__line {
    text-align: left;
    margin-left: 0;
  }
  .proof-panel--reverse .proof-panel__rule {
    margin-left: 0;
    transform-origin: left center;
    background: linear-gradient(90deg, var(--c-coral) 0%, rgba(232,91,74,0.34) 54%, transparent 100%);
  }
  .proof-panel__number {
    font-size: clamp(4.8rem, 22vw, 7.8rem);
  }
  .proof-panel__line {
    font-size: clamp(1.28rem, 5.5vw, 1.75rem);
  }
  .proof-panel__photo span {
    font-size: 0.63rem;
    line-height: 1.25;
  }
}
@media (prefers-reduced-motion: reduce) {
  .proof-panel:not(.is-in) .proof-panel__rule,
  .proof-panel:not(.is-in) .proof-panel__number,
  .proof-panel:not(.is-in) .proof-panel__line,
  .proof-panel:not(.is-in) .proof-panel__photo {
    opacity: 1;
  }
  .proof-panel.is-in .proof-panel__rule,
  .proof-panel.is-in .proof-panel__number,
  .proof-panel.is-in .proof-panel__line,
  .proof-panel.is-in .proof-panel__photo {
    animation: none;
  }
}

/* Proof sequence refinement — image placeholders as full-panel backgrounds */
.proof-panel {
  overflow: hidden;
  background: #efe5d7;
}
.proof-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250,247,240,0.96) 0%, rgba(250,247,240,0.88) 34%, rgba(250,247,240,0.48) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel--reverse::after {
  background:
    linear-gradient(270deg, rgba(250,247,240,0.96) 0%, rgba(250,247,240,0.88) 34%, rgba(250,247,240,0.48) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel__inner {
  position: static;
  min-height: min(720px, calc(100vh - 150px));
  display: flex;
  align-items: center;
}
.proof-panel__copy {
  position: relative;
  z-index: 2;
  width: min(620px, 52vw);
  padding: clamp(28px, 5vw, 64px) 0;
}
.proof-panel--reverse .proof-panel__copy {
  margin-left: auto;
}
.proof-panel__photo {
  position: absolute;
  inset: clamp(24px, 3vw, 44px);
  z-index: 0;
  min-height: 0;
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(48, 38, 30, 0.16);
  transform: none !important;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.24), rgba(255,255,255,0) 38%),
    radial-gradient(circle at 72% 32%, rgba(232,91,74,0.14), transparent 34%),
    linear-gradient(135deg, #fbf7ee 0%, #eadfce 42%, #d2c3b0 100%);
}
.proof-panel--two .proof-panel__photo {
  background:
    linear-gradient(62deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 44%),
    radial-gradient(circle at 24% 22%, rgba(232,91,74,0.13), transparent 32%),
    linear-gradient(135deg, #f8f2e8 0%, #e7dccb 48%, #cfc0ad 100%);
}
.proof-panel--three .proof-panel__photo {
  background:
    linear-gradient(98deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 78% 72%, rgba(232,91,74,0.13), transparent 32%),
    linear-gradient(135deg, #faf5ea 0%, #e6dac8 48%, #cdbda9 100%);
}
.proof-panel__photo::before {
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(15,19,22,0.035) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(15,19,22,0.028) 1px, transparent 1px) 0 0 / 46px 46px,
    repeating-linear-gradient(100deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 14px);
  opacity: 0.85;
}
.proof-panel__photo::after {
  right: clamp(44px, 9vw, 150px);
  bottom: clamp(46px, 8vw, 120px);
  width: min(34vw, 430px);
  height: min(27vh, 260px);
  background: rgba(255,255,255,0.26);
  box-shadow:
    -58px -42px 0 rgba(255,255,255,0.16),
    -112px -82px 0 rgba(255,255,255,0.09);
}
.proof-panel--reverse .proof-panel__photo::after {
  right: auto;
  left: clamp(44px, 9vw, 150px);
  box-shadow:
    58px -42px 0 rgba(255,255,255,0.16),
    112px -82px 0 rgba(255,255,255,0.09);
}
.proof-panel__photo span {
  z-index: 2;
  left: auto;
  top: auto;
  right: clamp(30px, 5vw, 70px);
  bottom: clamp(28px, 4vw, 56px);
  background: rgba(255,255,255,0.64);
  color: rgba(15, 19, 22, 0.62);
  backdrop-filter: blur(6px);
}
.proof-panel--reverse .proof-panel__photo span {
  right: auto;
  left: clamp(30px, 5vw, 70px);
}
.proof-panel__number,
.proof-panel__line {
  text-shadow: 0 1px 0 rgba(255,255,255,0.42);
}
.proof-panel__rule {
  height: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.38);
}
.proof-panel:not(.is-in) .proof-panel__photo {
  opacity: 0;
}
.proof-panel.is-in .proof-panel__photo {
  animation: proof-bg-place 1050ms var(--ease) 80ms both;
}
@keyframes proof-bg-place {
  from { opacity: 0; transform: scale(1.035); filter: blur(4px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@media (max-width: 900px) {
  .proof-panel {
    min-height: 92vh;
  }
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(250,247,240,0.22) 0%, rgba(250,247,240,0.50) 32%, rgba(250,247,240,0.96) 62%, rgba(250,247,240,0.98) 100%);
  }
  .proof-panel__inner {
    min-height: calc(92vh - 96px);
    display: flex;
    align-items: flex-end;
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  }
  .proof-panel__copy,
  .proof-panel--reverse .proof-panel__copy {
    width: 100%;
    margin-left: 0;
    padding: 0 0 clamp(30px, 7vh, 70px);
    text-align: left;
  }
  .proof-panel__photo {
    inset: 18px 18px auto 18px;
    height: min(54vh, 480px);
  }
  .proof-panel__photo::after {
    right: 28px;
    left: auto;
    bottom: 34px;
    width: 48%;
    height: 26%;
  }
  .proof-panel--reverse .proof-panel__photo::after {
    left: auto;
    right: 28px;
    box-shadow:
      -38px -28px 0 rgba(255,255,255,0.16),
      -74px -52px 0 rgba(255,255,255,0.09);
  }
  .proof-panel__photo span,
  .proof-panel--reverse .proof-panel__photo span {
    left: 22px;
    right: 22px;
    bottom: 22px;
    justify-content: center;
    text-align: center;
  }
}

/* Proof background readability pass */
.proof-panel::after {
  background:
    linear-gradient(90deg, rgba(250,247,240,0.995) 0%, rgba(250,247,240,0.96) 38%, rgba(250,247,240,0.66) 66%, rgba(250,247,240,0.22) 100%);
}
.proof-panel--reverse::after {
  background:
    linear-gradient(270deg, rgba(250,247,240,0.995) 0%, rgba(250,247,240,0.96) 38%, rgba(250,247,240,0.66) 66%, rgba(250,247,240,0.22) 100%);
}
.proof-panel__copy::before {
  content: "";
  position: absolute;
  inset: clamp(-18px, -2vw, -10px) clamp(-20px, -2.5vw, -12px);
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(250,247,240,0.72) 0%, rgba(250,247,240,0.38) 58%, transparent 78%);
  pointer-events: none;
}
.proof-panel__number {
  color: #111417;
  text-shadow: 0 2px 0 rgba(255,255,255,0.54), 0 20px 56px rgba(48,38,30,0.12);
}
.proof-panel__line {
  color: #25292c;
  text-shadow: 0 1px 0 rgba(255,255,255,0.62), 0 12px 34px rgba(48,38,30,0.10);
}
.proof-panel:not(.is-in) .proof-panel__rule,
.proof-panel:not(.is-in) .proof-panel__number,
.proof-panel:not(.is-in) .proof-panel__line,
.proof-panel:not(.is-in) .proof-panel__photo {
  opacity: 1;
}
@media (max-width: 900px) {
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(250,247,240,0.18) 0%, rgba(250,247,240,0.42) 30%, rgba(250,247,240,0.98) 58%, rgba(250,247,240,0.995) 100%);
  }
}

/* Keep proof copy legible throughout reveal, not just after animation completes */
.proof-panel.is-in .proof-panel__number {
  animation-duration: 560ms;
  animation-delay: 60ms;
}
.proof-panel.is-in .proof-panel__line {
  animation-duration: 520ms;
  animation-delay: 140ms;
}
@keyframes proof-number-rise {
  from { opacity: 0.58; transform: translateY(22px); filter: blur(1px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes proof-number-expand {
  from { opacity: 0.58; transform: scaleX(0.88) translateY(10px); transform-origin: center; filter: blur(1px); }
  to { opacity: 1; transform: scaleX(1) translateY(0); filter: blur(0); }
}
@keyframes proof-line-appear {
  from { opacity: 0.72; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Strong contrast layer for background-photo proof panels */
.proof-panel__copy::before {
  inset: clamp(-26px, -3vw, -16px) clamp(-28px, -3.5vw, -18px);
  background: linear-gradient(90deg, rgba(250,247,240,0.92) 0%, rgba(250,247,240,0.72) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel--reverse .proof-panel__copy::before {
  background: linear-gradient(270deg, rgba(250,247,240,0.92) 0%, rgba(250,247,240,0.72) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel__number {
  color: #050607 !important;
  font-weight: 500;
  opacity: 1 !important;
}
.proof-panel__line {
  color: #111417 !important;
  font-weight: 520;
  opacity: 1 !important;
}
@media (max-width: 900px) {
  .proof-panel__copy::before,
  .proof-panel--reverse .proof-panel__copy::before {
    background: linear-gradient(180deg, rgba(250,247,240,0.08) 0%, rgba(250,247,240,0.92) 24%, rgba(250,247,240,0.98) 100%);
  }
}

/* Final background-photo treatment: warm readable editorial gradient */
.proof-panel::after {
  background:
    linear-gradient(90deg, rgba(27,22,18,0.82) 0%, rgba(27,22,18,0.66) 34%, rgba(27,22,18,0.22) 62%, rgba(27,22,18,0.04) 100%);
}
.proof-panel--reverse::after {
  background:
    linear-gradient(270deg, rgba(27,22,18,0.82) 0%, rgba(27,22,18,0.66) 34%, rgba(27,22,18,0.22) 62%, rgba(27,22,18,0.04) 100%);
}
.proof-panel__copy::before,
.proof-panel--reverse .proof-panel__copy::before {
  background: none;
}
.proof-panel__number {
  color: #fffaf0 !important;
  text-shadow: 0 8px 34px rgba(0,0,0,0.28);
}
.proof-panel__line {
  color: rgba(255,250,240,0.94) !important;
  text-shadow: 0 5px 22px rgba(0,0,0,0.24);
}
.proof-panel__rule {
  background: linear-gradient(90deg, #e85b4a 0%, rgba(232,91,74,0.66) 58%, rgba(255,250,240,0.10) 100%);
  box-shadow: none;
}
.proof-panel--reverse .proof-panel__rule {
  background: linear-gradient(270deg, #e85b4a 0%, rgba(232,91,74,0.66) 58%, rgba(255,250,240,0.10) 100%);
}
@media (max-width: 900px) {
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(27,22,18,0.04) 0%, rgba(27,22,18,0.12) 34%, rgba(27,22,18,0.74) 64%, rgba(27,22,18,0.86) 100%);
  }
}

/* Extra legibility for proof copy over photo backgrounds */
.proof-panel__number {
  -webkit-text-stroke: 1.2px rgba(255,250,240,0.98);
  paint-order: stroke fill;
  font-weight: 700;
}
.proof-panel__line {
  font-weight: 700;
  max-width: 25ch;
}

/* Definitive readable editorial text panel over background image */
.proof-panel__copy {
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
  padding: clamp(30px, 4vw, 58px) !important;
  backdrop-filter: blur(8px);
}
.proof-panel__number {
  color: #08090a !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}
.proof-panel__line {
  color: #151719 !important;
  text-shadow: none !important;
}
.proof-panel__rule {
  background: linear-gradient(90deg, #e85b4a 0%, rgba(232,91,74,0.55) 65%, transparent 100%);
}
.proof-panel--reverse .proof-panel__rule {
  background: linear-gradient(270deg, #e85b4a 0%, rgba(232,91,74,0.55) 65%, transparent 100%);
}
@media (max-width: 900px) {
  .proof-panel__copy,
  .proof-panel--reverse .proof-panel__copy {
    background: rgba(255, 250, 240, 0.94);
    padding: 24px !important;
    margin-bottom: 22px;
  }
}


/* Proof sequence transition pass — backgrounds move in/out between proof moments */
.proof-sequence {
  background: #efe6d9;
}
.proof-panel {
  --proof-bg-opacity: 1;
  --proof-bg-scale: 1.03;
  --proof-bg-y: 0px;
  --proof-copy-opacity: 1;
  --proof-copy-y: 0px;
  --proof-rule-scale: 1;
  min-height: 116vh;
}
@media (min-width: 1024px) {
  .proof-panel {
    min-height: 122vh;
    position: sticky;
    top: 0;
  }
  .proof-panel--one { z-index: 1; }
  .proof-panel--two { z-index: 2; }
  .proof-panel--three { z-index: 3; }
  .proof-panel__inner {
    min-height: 100vh;
  }
}
.proof-panel::after {
  opacity: calc(0.74 + (var(--proof-bg-opacity) * 0.26));
  transition: opacity 420ms var(--ease);
}
.proof-panel__photo {
  opacity: var(--proof-bg-opacity) !important;
  transform: translate3d(0, var(--proof-bg-y), 0) scale(var(--proof-bg-scale)) !important;
  filter: saturate(calc(0.82 + (var(--proof-bg-opacity) * 0.18))) contrast(calc(0.96 + (var(--proof-bg-opacity) * 0.06))) !important;
  transform-origin: center center;
  transition:
    opacity 720ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  will-change: opacity, transform, filter;
}
.proof-panel__copy {
  opacity: var(--proof-copy-opacity);
  transform: translate3d(0, var(--proof-copy-y), 0);
  transition:
    opacity 520ms var(--ease),
    transform 650ms var(--ease),
    background-color 420ms var(--ease);
  will-change: opacity, transform;
}
.proof-panel__rule {
  transform: scaleX(var(--proof-rule-scale));
  transition: transform 650ms var(--ease), opacity 520ms var(--ease);
}
.proof-panel.is-transitioning-out .proof-panel__photo {
  filter: saturate(0.78) contrast(0.96) blur(1px) !important;
}
.proof-panel.is-transitioning-out .proof-panel__copy {
  opacity: max(0.34, var(--proof-copy-opacity));
}
.proof-panel.is-transitioning-in .proof-panel__photo {
  filter: saturate(1) contrast(1.02) blur(0) !important;
}
@media (max-width: 900px) {
  .proof-panel {
    min-height: 100vh;
  }
  .proof-panel__photo {
    transform: translate3d(0, calc(var(--proof-bg-y) * 0.45), 0) scale(var(--proof-bg-scale)) !important;
  }
  .proof-panel__copy {
    opacity: max(0.72, var(--proof-copy-opacity));
  }
}
@media (prefers-reduced-motion: reduce) {
  .proof-panel,
  .proof-panel__photo,
  .proof-panel__copy,
  .proof-panel__rule {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* Proof transition correction — keep transitions readable, avoid cropped sticky overlap */
@media (min-width: 1024px) {
  .proof-panel {
    position: relative !important;
    top: auto !important;
    min-height: 108vh;
  }
  .proof-panel__inner {
    min-height: min(760px, calc(100vh - 120px));
  }
}
.proof-panel__copy {
  opacity: max(0.86, var(--proof-copy-opacity));
}
.proof-panel__photo {
  opacity: max(0.48, var(--proof-bg-opacity)) !important;
}
.proof-panel.is-transitioning-out .proof-panel__copy {
  opacity: max(0.86, var(--proof-copy-opacity));
}
@media (max-width: 900px) {
  .proof-panel__copy,
  .proof-panel.is-transitioning-out .proof-panel__copy {
    opacity: max(0.92, var(--proof-copy-opacity));
  }
  .proof-panel__photo {
    opacity: max(0.58, var(--proof-bg-opacity)) !important;
  }
}

/* Proof transition readability polish — crisper copy panel during motion */
.proof-panel__copy,
.proof-panel--reverse .proof-panel__copy {
  background: rgba(255, 250, 240, 0.97) !important;
  border-color: rgba(255,255,255,0.72) !important;
  box-shadow: 0 28px 80px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.7) !important;
}
.proof-panel__number {
  color: #050607 !important;
}
.proof-panel__line {
  color: #0d1012 !important;
  font-weight: 650;
}

/* Proof mobile transition softness — lighter overlay while copy panel carries readability */
@media (max-width: 900px) {
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(27,22,18,0.02) 0%, rgba(27,22,18,0.06) 34%, rgba(27,22,18,0.42) 66%, rgba(27,22,18,0.54) 100%) !important;
  }
}

/* Director's Advocate transition sequence — contrast, explanation, proof */
.advocate-sequence {
  background: #f7f1e8;
  color: var(--c-ink);
}
.advocate-panel {
  min-height: 96vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 91, 74, 0.08), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #f3eadf 58%, #ebe0d2 100%);
}
.advocate-panel + .advocate-panel {
  border-top: 1px solid rgba(15,19,22,0.10);
}
.advocate-panel::after {
  display: none;
}
.advocate-panel__inner,
.proof-panel .advocate-panel__inner {
  position: relative !important;
  z-index: 2;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  min-height: min(780px, calc(100vh - 120px));
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.advocate-panel__inner--split {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 104px);
}
.advocate-contrast {
  max-width: 1040px;
}
.advocate-contrast__line,
.advocate-contrast__final {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 4.7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--c-ink);
}
.advocate-contrast__line--first {
  max-width: 16ch;
}
.advocate-contrast__line--can {
  margin-top: clamp(22px, 4vh, 48px);
  max-width: 12ch;
}
.advocate-contrast__final {
  margin-top: clamp(28px, 5vh, 64px);
  color: var(--c-coral-deep);
  font-style: italic;
}
.advocate-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.advocate-mark--cant::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  top: 54%;
  height: 0.08em;
  background: rgba(232,91,74,0.72);
  transform: scaleX(0);
  transform-origin: left center;
}
.advocate-mark--can::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.08em;
  bottom: 0.02em;
  height: 0.10em;
  border-radius: 999px;
  background: rgba(129, 166, 116, 0.56);
  transform: scaleX(0);
  transform-origin: left center;
}
.advocate-photo {
  position: relative;
  min-height: clamp(420px, 62vh, 720px);
  border: 1px solid rgba(15,19,22,0.12);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.36), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 72% 26%, rgba(232,91,74,0.12), transparent 32%),
    repeating-linear-gradient(95deg, rgba(15,19,22,0.025) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #fbf7ef 0%, #e7dccb 52%, #d3c3ae 100%);
  box-shadow: 0 34px 90px rgba(48,38,30,0.14), inset 0 0 0 18px rgba(255,255,255,0.14);
  overflow: hidden;
}
.advocate-photo::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(15,19,22,0.08);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.030) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(15,19,22,0.024) 1px, transparent 1px) 0 0 / 34px 34px;
}
.advocate-photo::after {
  content: "";
  position: absolute;
  right: clamp(34px, 5vw, 74px);
  bottom: clamp(34px, 5vw, 74px);
  width: min(42%, 260px);
  height: min(28%, 180px);
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(15,19,22,0.09);
  box-shadow: -46px -34px 0 rgba(255,255,255,0.14), -86px -66px 0 rgba(255,255,255,0.08);
}
.advocate-photo span {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 2;
  max-width: min(78%, 420px);
  padding: 10px 13px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,19,22,0.12);
  color: rgba(15,19,22,0.64);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.advocate-explain {
  max-width: 720px;
}
.advocate-explain__main {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 2.35vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.036em;
  color: var(--c-ink);
}
.advocate-explain__punch {
  margin-top: clamp(26px, 4vw, 46px);
  max-width: 38ch;
  font-size: clamp(1.05rem, 1vw, 1.3rem);
  line-height: 1.45;
  color: var(--c-graphite);
  font-weight: 700;
}
.advocate-note {
  position: relative;
  display: inline-block;
  color: var(--c-coral-deep);
}
.advocate-note::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.08em;
  border-radius: 999px;
  background: rgba(232,91,74,0.22);
}
.advocate-proof-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}
.advocate-proof-item {
  min-height: clamp(280px, 44vh, 470px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.6vw, 34px) 0 0;
  border-top: 2px solid rgba(232,91,74,0.72);
}
.advocate-proof-item__num {
  font-family: var(--ff-display);
  font-size: clamp(5.2rem, 10vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: var(--c-ink);
  white-space: nowrap;
}
.advocate-proof-item p {
  margin: clamp(22px, 3vw, 36px) 0 0;
  max-width: 20ch;
  font-size: clamp(1.1rem, 1.55vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-graphite);
}
.advocate-panel:not(.is-in) .advocate-contrast__line,
.advocate-panel:not(.is-in) .advocate-contrast__final,
.advocate-panel:not(.is-in) .advocate-photo,
.advocate-panel:not(.is-in) .advocate-explain__main,
.advocate-panel:not(.is-in) .advocate-explain__punch,
.advocate-panel:not(.is-in) .advocate-proof-item {
  opacity: 0;
}
.advocate-panel.is-in .advocate-contrast__line--first { animation: advocate-rise 620ms var(--ease) both; }
.advocate-panel.is-in .advocate-mark--cant::after { animation: advocate-draw 520ms var(--ease) 520ms both; }
.advocate-panel.is-in .advocate-contrast__line--can { animation: advocate-rise 620ms var(--ease) 780ms both; }
.advocate-panel.is-in .advocate-mark--can::after { animation: advocate-draw 520ms var(--ease) 1180ms both; }
.advocate-panel.is-in .advocate-contrast__final { animation: advocate-rise 700ms var(--ease) 1320ms both; }
.advocate-panel.is-in .advocate-photo { animation: advocate-photo-in 820ms var(--ease) 100ms both; }
.advocate-panel.is-in .advocate-explain__main { animation: advocate-rise 720ms var(--ease) 300ms both; }
.advocate-panel.is-in .advocate-explain__punch { animation: advocate-rise 620ms var(--ease) 760ms both; }
.advocate-panel.is-in .advocate-proof-item:nth-child(1) { animation: advocate-proof-in 620ms var(--ease) 80ms both; }
.advocate-panel.is-in .advocate-proof-item:nth-child(2) { animation: advocate-proof-in 620ms var(--ease) 300ms both; }
.advocate-panel.is-in .advocate-proof-item:nth-child(3) { animation: advocate-proof-in 620ms var(--ease) 520ms both; }
@keyframes advocate-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes advocate-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes advocate-photo-in {
  from { opacity: 0; transform: translateY(24px) scale(0.975); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes advocate-proof-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 1024px) {
  .advocate-panel {
    min-height: 100vh;
  }
}
@media (max-width: 900px) {
  .advocate-panel {
    min-height: auto;
    padding-block: 72px;
  }
  .advocate-panel__inner,
  .proof-panel .advocate-panel__inner,
  .advocate-panel__inner--split {
    min-height: auto;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .advocate-contrast__line,
  .advocate-contrast__final {
    font-size: clamp(2.25rem, 11vw, 4.7rem);
  }
  .advocate-photo {
    min-height: 390px;
    order: 1;
  }
  .advocate-explain {
    order: 2;
  }
  .advocate-explain__main {
    font-size: clamp(1.65rem, 7.5vw, 2.55rem);
  }
  .advocate-proof-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .advocate-proof-item {
    min-height: auto;
    padding-top: 22px;
  }
  .advocate-proof-item__num {
    font-size: clamp(5.4rem, 23vw, 8.2rem);
  }
  .advocate-proof-item p {
    max-width: 24ch;
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .advocate-panel:not(.is-in) .advocate-contrast__line,
  .advocate-panel:not(.is-in) .advocate-contrast__final,
  .advocate-panel:not(.is-in) .advocate-photo,
  .advocate-panel:not(.is-in) .advocate-explain__main,
  .advocate-panel:not(.is-in) .advocate-explain__punch,
  .advocate-panel:not(.is-in) .advocate-proof-item {
    opacity: 1;
  }
  .advocate-panel.is-in .advocate-contrast__line--first,
  .advocate-panel.is-in .advocate-contrast__line--can,
  .advocate-panel.is-in .advocate-contrast__final,
  .advocate-panel.is-in .advocate-photo,
  .advocate-panel.is-in .advocate-explain__main,
  .advocate-panel.is-in .advocate-explain__punch,
  .advocate-panel.is-in .advocate-proof-item {
    animation: none !important;
  }
  .advocate-mark--cant::after,
  .advocate-mark--can::after {
    transform: scaleX(1);
  }
}

/* Director's Advocate sequence polish — clearer pencil marks */
.advocate-mark--cant::after {
  left: -0.10em;
  right: -0.10em;
  top: 52%;
  height: 0.095em;
  transform: rotate(-1.2deg) scaleX(0);
}
.advocate-panel.is-in .advocate-mark--cant::after {
  animation-name: advocate-pencil-strike;
}
.advocate-mark--can::after {
  left: -0.08em;
  right: -0.14em;
  bottom: -0.025em;
  height: 0.125em;
  background: rgba(129, 166, 116, 0.70);
  transform: rotate(-1deg) scaleX(0);
}
.advocate-panel.is-in .advocate-mark--can::after {
  animation-name: advocate-pencil-underline;
}
@keyframes advocate-pencil-strike {
  from { transform: rotate(-1.2deg) scaleX(0); }
  to { transform: rotate(-1.2deg) scaleX(1); }
}
@keyframes advocate-pencil-underline {
  from { transform: rotate(-1deg) scaleX(0); }
  to { transform: rotate(-1deg) scaleX(1); }
}

/* Director's Advocate sequence polish — make the positive can mark unmissable */
.advocate-mark--can {
  background: linear-gradient(to top, rgba(129, 166, 116, 0.34) 0 0.18em, transparent 0.18em 100%);
  padding-inline: 0.02em;
}
.advocate-mark--can::after {
  bottom: 0.015em;
  height: 0.16em;
  background: rgba(129, 166, 116, 0.84);
  z-index: -1;
}

/* Single Director's Advocate bridge — replaces the previous three full-screen transition panels */
.advocate-bridge {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 156px) var(--gutter) clamp(74px, 9vw, 128px);
  background:
    radial-gradient(circle at 84% 8%, rgba(232, 91, 74, 0.09), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f5ecdf 56%, #efe3d3 100%);
  color: var(--c-ink);
  border-top: 1px solid rgba(15, 19, 22, 0.08);
  border-bottom: 1px solid rgba(15, 19, 22, 0.08);
}
.advocate-bridge::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.30) 100%);
}
.advocate-bridge__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}
.advocate-bridge__copy {
  max-width: 760px;
}
.advocate-bridge__eyebrow {
  color: var(--c-coral-deep);
}
.advocate-bridge__h {
  margin: 14px 0 clamp(28px, 4vw, 48px);
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  color: var(--c-ink);
  max-width: 8.6ch;
}
.advocate-bridge__contrast {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  max-width: 690px;
}
.advocate-bridge__contrast p {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.048em;
  color: var(--c-ink);
}
.advocate-bridge__contrast p + p {
  color: var(--c-coral-deep);
}
.advocate-bridge__explain {
  margin: clamp(26px, 4vw, 46px) 0 0;
  max-width: 62ch;
  font-size: clamp(1.08rem, 1.28vw, 1.38rem);
  line-height: 1.58;
  color: var(--c-graphite);
  font-weight: 620;
}
.advocate-bridge__image {
  position: relative;
  min-height: clamp(390px, 43vw, 640px);
  margin: 0;
  border-radius: clamp(28px, 3vw, 46px);
  border: 1px solid rgba(15,19,22,0.12);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.42), rgba(255,255,255,0) 40%),
    radial-gradient(circle at 76% 22%, rgba(232,91,74,0.12), transparent 30%),
    repeating-linear-gradient(95deg, rgba(15,19,22,0.026) 0 1px, transparent 1px 19px),
    linear-gradient(135deg, #fbf7ef 0%, #eadfcc 50%, #d8c7af 100%);
  box-shadow: 0 34px 86px rgba(48,38,30,0.13), inset 0 0 0 18px rgba(255,255,255,0.13);
  overflow: hidden;
}
.advocate-bridge__image::before {
  content: "";
  position: absolute;
  inset: clamp(30px, 5vw, 72px);
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: clamp(18px, 2vw, 32px);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.03) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(15,19,22,0.024) 1px, transparent 1px) 0 0 / 34px 34px;
}
.advocate-bridge__image::after {
  content: "";
  position: absolute;
  right: clamp(34px, 5vw, 74px);
  bottom: clamp(34px, 5vw, 74px);
  width: min(42%, 260px);
  height: min(28%, 180px);
  border-radius: 22px;
  background: rgba(255,255,255,0.27);
  border: 1px solid rgba(15,19,22,0.09);
  box-shadow: -46px -34px 0 rgba(255,255,255,0.14), -86px -66px 0 rgba(255,255,255,0.08);
}
.advocate-bridge__image span {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 2;
  padding: 10px 13px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,19,22,0.12);
  color: rgba(15,19,22,0.64);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 760;
  backdrop-filter: blur(6px);
}
.advocate-proof-strip {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: clamp(54px, 7vw, 92px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 62px);
  border-top: 1px solid rgba(15,19,22,0.16);
  padding-top: clamp(24px, 3vw, 36px);
}
.advocate-proof-strip__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: end;
}
.advocate-proof-strip__item strong {
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 6vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: var(--c-ink);
  white-space: nowrap;
}
.advocate-proof-strip__item span {
  max-width: 18ch;
  font-size: clamp(0.98rem, 1.1vw, 1.22rem);
  line-height: 1.24;
  color: var(--c-graphite);
  font-weight: 650;
  padding-bottom: 0.36em;
}
.advocate-bridge .advocate-mark--cant::after,
.advocate-bridge .advocate-mark--can::after {
  transform: scaleX(1);
}
.advocate-bridge:not(.is-in) .advocate-bridge__copy,
.advocate-bridge:not(.is-in) .advocate-bridge__image,
.advocate-bridge:not(.is-in) .advocate-proof-strip__item {
  opacity: 0;
  transform: translateY(22px);
}
.advocate-bridge.is-in .advocate-bridge__copy {
  animation: advocate-rise 700ms var(--ease) both;
}
.advocate-bridge.is-in .advocate-bridge__image {
  animation: advocate-photo-in 820ms var(--ease) 120ms both;
}
.advocate-bridge.is-in .advocate-mark--cant::after {
  animation: advocate-pencil-strike 520ms var(--ease) 420ms both;
}
.advocate-bridge.is-in .advocate-mark--can::after {
  animation: advocate-pencil-underline 520ms var(--ease) 780ms both;
}
.advocate-bridge.is-in .advocate-proof-strip__item:nth-child(1) { animation: advocate-proof-in 580ms var(--ease) 280ms both; }
.advocate-bridge.is-in .advocate-proof-strip__item:nth-child(2) { animation: advocate-proof-in 580ms var(--ease) 440ms both; }
.advocate-bridge.is-in .advocate-proof-strip__item:nth-child(3) { animation: advocate-proof-in 580ms var(--ease) 600ms both; }
@media (max-width: 980px) {
  .advocate-bridge {
    padding-block: 76px 72px;
  }
  .advocate-bridge__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .advocate-bridge__h {
    max-width: 10ch;
    font-size: clamp(3.05rem, 14vw, 5.15rem);
  }
  .advocate-bridge__contrast p {
    font-size: clamp(2.1rem, 8.8vw, 3.6rem);
  }
  .advocate-bridge__image {
    min-height: 360px;
  }
  .advocate-proof-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .advocate-proof-strip__item {
    border-top: 1px solid rgba(15,19,22,0.12);
    padding-top: 22px;
  }
  .advocate-proof-strip__item:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .advocate-proof-strip__item span {
    max-width: 25ch;
  }
}
@media (prefers-reduced-motion: reduce) {
  .advocate-bridge:not(.is-in) .advocate-bridge__copy,
  .advocate-bridge:not(.is-in) .advocate-bridge__image,
  .advocate-bridge:not(.is-in) .advocate-proof-strip__item {
    opacity: 1;
    transform: none;
  }
}
/* Advocate bridge visibility safeguard: content must remain readable if scroll reveal has not fired before capture. */
.advocate-bridge:not(.is-in) .advocate-bridge__copy,
.advocate-bridge:not(.is-in) .advocate-bridge__image,
.advocate-bridge:not(.is-in) .advocate-proof-strip__item {
  opacity: 1;
  transform: none;
}

/* Sticky CTA safety: when hidden by JS, keep it out of screenshots and interaction flow. */
.sticky-cta:not(.is-visible) {
  visibility: hidden;
  pointer-events: none;
}
.sticky-cta.is-visible {
  visibility: visible;
  pointer-events: auto;
}

/* Who We Are trust-section refinement — remove second-hero heading, use real landscape team image */
.advocate-bridge {
  padding-block: clamp(76px, 9vw, 126px) clamp(66px, 7vw, 104px);
}
.advocate-bridge__inner {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1fr);
  gap: clamp(36px, 5.5vw, 82px);
  align-items: center;
}
.advocate-bridge__copy {
  max-width: 820px;
}
.advocate-bridge__h {
  display: none;
}
.advocate-bridge__statement {
  margin: clamp(16px, 2vw, 24px) 0 0;
  display: grid;
  gap: clamp(13px, 1.8vw, 22px);
  font-family: var(--ff-display);
  font-size: clamp(2.35rem, 4.15vw, 5.95rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
  color: var(--c-ink);
  max-width: 13.6ch;
  font-weight: 700;
}
.advocate-bridge__statement > span {
  display: block;
}
.advocate-bridge__statement-red {
  color: var(--c-coral-deep);
}
.advocate-bridge__explain {
  margin-top: clamp(22px, 3vw, 36px);
  max-width: 49ch;
  font-size: clamp(1.06rem, 1.16vw, 1.24rem);
  line-height: 1.54;
  font-weight: 620;
}
.advocate-bridge__image--photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: clamp(24px, 2.4vw, 38px);
  background: #efe3d3;
  box-shadow: 0 28px 74px rgba(48,38,30,0.13);
  overflow: hidden;
}
.advocate-bridge__image--photo::before,
.advocate-bridge__image--photo::after {
  display: none;
}
.advocate-bridge__photo {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}
.advocate-bridge__image--photo span {
  display: none;
}
.advocate-bridge .advocate-mark--cant::after {
  transform: rotate(-1.2deg) scaleX(1);
}
.advocate-bridge .advocate-mark--can {
  background: linear-gradient(to top, rgba(129, 166, 116, 0.34) 0 0.18em, transparent 0.18em 100%);
}
.advocate-bridge .advocate-mark--can::after {
  transform: rotate(-1deg) scaleX(1);
}
@media (max-width: 980px) {
  .advocate-bridge {
    padding-block: 70px 66px;
  }
  .advocate-bridge__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .advocate-bridge__statement {
    max-width: 12.4ch;
    font-size: clamp(2.45rem, 10.2vw, 4.1rem);
  }
  .advocate-bridge__image--photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .advocate-bridge__photo {
    object-position: 50% 50%;
  }
}
@media (max-width: 520px) {
  .advocate-bridge__statement {
    max-width: 11.6ch;
  }
  .advocate-proof-strip {
    margin-top: 42px;
  }
}
/* Who We Are working-moment refinement — quieter text scale and tighter advisory image crop */
.advocate-bridge {
  padding-block: clamp(64px, 7.5vw, 104px) clamp(58px, 6.5vw, 92px);
}
.advocate-bridge__inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
}
.advocate-bridge__statement {
  font-size: clamp(1.55rem, 2.58vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 16.2ch;
  gap: clamp(10px, 1.4vw, 17px);
}
.advocate-bridge__statement-red {
  font-size: 0.84em;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.advocate-bridge__explain {
  margin-top: clamp(18px, 2.4vw, 30px);
  max-width: 47ch;
  font-size: clamp(1rem, 1.04vw, 1.14rem);
  line-height: 1.56;
}
.advocate-bridge__image--photo {
  aspect-ratio: 3 / 2;
  border-radius: clamp(22px, 2.2vw, 34px);
  box-shadow: 0 24px 62px rgba(48,38,30,0.12);
}
.advocate-bridge__photo {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 35% 60%;
}
.advocate-bridge .advocate-mark--cant::after {
  top: 54%;
  height: 0.055em;
  background: rgba(232, 91, 74, 0.45);
  transform: rotate(-0.8deg) scaleX(1);
}
.advocate-bridge .advocate-mark--can {
  background: linear-gradient(to top, rgba(129, 166, 116, 0.20) 0 0.15em, transparent 0.15em 100%);
}
.advocate-bridge .advocate-mark--can::after {
  height: 0.065em;
  bottom: 0.01em;
  background: rgba(129, 166, 116, 0.38);
  transform: rotate(-0.6deg) scaleX(1);
}
.advocate-proof-strip {
  margin-top: clamp(38px, 5vw, 70px);
}
.advocate-proof-strip__item strong {
  font-size: clamp(3rem, 4.8vw, 6.6rem);
}
.advocate-proof-strip__item span {
  font-size: clamp(0.94rem, 1vw, 1.12rem);
}
@media (max-width: 980px) {
  .advocate-bridge__statement {
    font-size: clamp(2rem, 8vw, 3.25rem);
    max-width: 13.4ch;
  }
  .advocate-bridge__statement-red {
    font-size: 0.86em;
  }
  .advocate-bridge__image--photo,
  .advocate-bridge__photo {
    aspect-ratio: 3 / 2;
  }
  .advocate-bridge__photo {
    object-position: 35% 60%;
  }
}
/* Who We Are mobile layout fix: keep advisory image stacked below readable copy. */
@media (max-width: 980px) {
  .advocate-bridge__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(var(--container), 100%) !important;
  }
  .advocate-bridge__copy {
    width: 100%;
    max-width: 100%;
  }
  .advocate-bridge__statement {
    width: 100%;
    max-width: 14.5ch;
  }
  .advocate-bridge__explain {
    width: 100%;
    max-width: 34ch;
  }
  .advocate-bridge__image--photo {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
}

/* UI/UX polish pass — 21st.dev/Open Design inspired component clarity. */
.nav__links a,
.nav__phone,
.mobile-menu__nav a {
  text-decoration: none;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--c-coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast) var(--ease);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}
.nav__links a:focus-visible,
.nav__phone:focus-visible,
.btn:focus-visible,
.tile__primary:focus-visible,
.tile__list a:focus-visible {
  outline: 3px solid rgba(232, 91, 74, 0.34);
  outline-offset: 4px;
}
.nav__burger {
  background: rgba(15, 19, 22, 0.08);
  color: var(--c-ink);
}
.nav__burger::before { color: currentColor; }
.nav__burger:hover { color: var(--c-white); }
.hero__foot-meta {
  flex-basis: 100%;
  color: var(--c-graphite);
  font-weight: 650;
}
.tile__kicker {
  margin-top: -6px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--c-graphite);
  font-weight: 760;
}
.tile__primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--c-ink);
  font-weight: 760;
  font-size: 0.94rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 19, 22, 0.28);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.tile__primary:hover {
  color: var(--c-coral);
  border-bottom-color: var(--c-coral);
  transform: translateX(2px);
}
.tile__list { margin-top: auto; }
.services__uncertain {
  margin-top: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbf4ef 100%);
  border: 1px solid rgba(232, 91, 74, 0.20);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
@media (min-width: 820px) {
  .services__uncertain { grid-template-columns: 1fr auto; gap: 36px; }
}
.services__uncertain-label,
.bento__referrers-label {
  display: inline-block;
  color: var(--c-coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services__uncertain h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 1.1rem + 0.9vw, 2rem);
  line-height: 1.08;
  max-width: 24ch;
  color: var(--c-ink);
}
.services__uncertain p {
  margin-top: 10px;
  max-width: 58ch;
  color: var(--c-graphite);
  line-height: 1.55;
}
.services__uncertain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}
.bento__referrers-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}
.bento__referrers-list li {
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-pill);
  padding: 7px 11px;
  font-size: 0.82rem;
  line-height: 1.25;
}
@media (max-width: 760px) {
  .hero { padding-top: 54px; padding-bottom: 62px; }
  .hero__chip { margin-bottom: 24px; line-height: 1.35; padding: 9px 14px; }
  .hero__foot { margin-top: 34px; gap: 16px; }
  .hero__foot .btn--coral { width: 100%; justify-content: center; }
  .hero__foot-meta { font-size: 0.82rem; line-height: 1.45; }
  .advocate-bridge__statement { line-height: 1.04; }
  .advocate-proof-strip {
    border-top: 0;
    gap: 14px;
  }
  .advocate-proof-strip__item {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    border: 1px solid rgba(15,19,22,0.12) !important;
    border-radius: 18px;
    padding: 18px !important;
    background: rgba(255,255,255,0.50);
  }
  .advocate-proof-strip__item strong { font-size: clamp(2.65rem, 16vw, 4.2rem); letter-spacing: -0.055em; }
  .advocate-proof-strip__item span { max-width: 28ch; padding-bottom: 0; line-height: 1.35; }
  .tile { min-height: 0; padding: 30px 24px 24px; }
  .tile__h { line-height: 1.12; }
  .services__uncertain-actions .btn { width: 100%; justify-content: center; }
  .bento__referrers .btn { width: 100%; justify-content: center; }
}
/* UI/UX polish QA fixes: readable Who We Are display type + safe sticky-nav anchors. */
#services,
#advocate,
#dpn,
#proof,
#book {
  scroll-margin-top: 96px;
}
.advocate-bridge__statement {
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 15.2ch;
}
@media (max-width: 760px) {
  #services,
  #advocate,
  #dpn,
  #proof,
  #book {
    scroll-margin-top: 82px;
  }
  .advocate-bridge__statement {
    font-size: clamp(1.82rem, 7.1vw, 2.72rem);
    line-height: 1.14;
    letter-spacing: -0.018em;
    max-width: 15.5ch;
  }
  .advocate-bridge__statement-red {
    font-size: 0.88em;
    line-height: 1.16;
  }
}
/* Buyer-led testimonial update: feature the emotional proof, keep referrer proof secondary. */
.quotes__stack--featured {
  align-items: stretch;
}
@media (min-width: 1024px) {
  .quotes__stack--featured {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  }
  .quotes__stack--featured .quote:nth-child(2) {
    margin-top: clamp(46px, 5vw, 88px);
  }
}
.quote--featured {
  border-color: rgba(232, 91, 74, 0.22);
  background:
    radial-gradient(circle at 94% 8%, rgba(232, 91, 74, 0.10), transparent 26%),
    var(--c-white);
  box-shadow: 0 22px 52px -34px rgba(15,19,22,0.28);
}
.quote--featured .quote__text {
  font-size: clamp(1.36rem, 1.08rem + 1vw, 2rem);
  line-height: 1.34;
  max-width: 48ch;
}
.quote--featured .quote__avatar {
  background: var(--c-coral);
  color: var(--c-white);
}
.quote--secondary {
  background: rgba(255,255,255,0.72);
}
.quote--secondary .quote__text {
  font-size: clamp(1.05rem, 0.96rem + 0.35vw, 1.22rem);
  line-height: 1.45;
}
.quote--secondary .quote__mark {
  opacity: 0.55;
}
@media (max-width: 760px) {
  .quotes__head {
    margin-bottom: 34px;
  }
  .quote--featured .quote__text {
    font-size: clamp(1.22rem, 5.7vw, 1.52rem);
    line-height: 1.38;
  }
  .quote__mark {
    font-size: 3.4rem;
    right: 18px;
  }
}
/* QA refinement for buyer-led testimonial section: tighter hierarchy and sticky CTA clearance. */
@media (min-width: 1024px) {
  .quotes__stack--featured {
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
    align-items: start;
  }
  .quotes__stack--featured .quote:nth-child(2) {
    margin-top: 18px;
  }
}
.quote--featured .quote__text {
  font-size: clamp(1.24rem, 1.02rem + 0.66vw, 1.64rem);
  line-height: 1.43;
  letter-spacing: -0.012em;
}
.quote--secondary .quote__text {
  font-size: clamp(1.04rem, 0.98rem + 0.18vw, 1.14rem);
  line-height: 1.55;
  letter-spacing: -0.006em;
}
@media (max-width: 760px) {
  .quotes {
    padding-bottom: 132px;
  }
  .quote--featured .quote__text {
    font-size: clamp(1.08rem, 4.75vw, 1.28rem);
    line-height: 1.48;
    letter-spacing: -0.006em;
  }
  .quote--featured {
    padding-bottom: 30px;
  }
}
/* Mobile sticky CTA clearance after testimonial cards. */
@media (max-width: 760px) {
  .quotes {
    padding-bottom: 230px;
  }
}
/* Alix-only testimonial layout: feature card sits beside the section heading. */
.quotes__feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.quotes__feature-row .quotes__head {
  margin-bottom: 0;
  max-width: 37ch;
}
.quotes__feature-row .quote--featured {
  max-width: 760px;
  justify-self: stretch;
}
@media (min-width: 1024px) {
  .quotes__feature-row {
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  }
  .quotes__feature-row .quote--featured {
    justify-self: end;
  }
}
@media (max-width: 760px) {
  .quotes__feature-row {
    gap: 26px;
  }
}
/* Mobile sticky CTA clearance for sections following testimonials. */
@media (max-width: 760px) {
  .shield {
    padding-bottom: calc(var(--section-py) + 110px);
  }
}

/* Services density refinement: quieter service details + one compact next-step rail. */
@media (min-width: 1080px) {
  .tile {
    min-height: 318px;
  }
  .tile__list {
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    overflow: hidden;
    padding-top: 0;
    border-top-color: transparent;
    transition: max-height 360ms var(--ease), opacity 260ms var(--ease), transform 260ms var(--ease), padding-top 260ms var(--ease), border-color 260ms var(--ease);
  }
  .tile:hover .tile__list,
  .tile:focus-within .tile__list {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 14px;
    border-top-color: var(--c-line);
  }
}
.services__next-step {
  margin-top: clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 19, 22, 0.10);
  border-radius: clamp(22px, 2vw, 30px);
  padding: clamp(20px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 48px rgba(15, 19, 22, 0.045);
}
@media (min-width: 860px) {
  .services__next-step {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
  }
}
.services__next-copy h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.32rem, 1.05rem + 0.65vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: var(--tracking-snug);
  color: var(--c-ink);
  margin: 0;
}
.services__next-copy p {
  margin: 7px 0 0;
  max-width: 42ch;
  color: var(--c-graphite);
  line-height: 1.45;
}
.services__next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 860px) {
  .services__next-actions { justify-content: flex-end; }
}
.services__referral-link {
  color: var(--c-graphite);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 19, 22, 0.22);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.services__referral-link:hover,
.services__referral-link:focus-visible {
  color: var(--c-coral);
  border-bottom-color: var(--c-coral);
}
@media (max-width: 760px) {
  .services__next-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .services__referral-link {
    width: 100%;
    text-align: center;
    border-bottom: 0;
  }
}

/* ================================================================
   Thryvv commercial gap positioning page
   ================================================================ */
.thryvv-commercial-page {
  background: #F6F0E7;
  color: var(--c-graphite);
}
.thryvv-commercial-page .nav {
  background: rgba(246, 240, 231, 0.88);
  border-bottom-color: rgba(15, 19, 22, 0.08);
}
.thryvv-commercial-page .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.commercial-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(128px, 13vw, 190px) 0 clamp(76px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.commercial-hero::before {
  content: "";
  position: absolute;
  inset: 10% -18% auto auto;
  width: clamp(360px, 48vw, 720px);
  height: clamp(360px, 48vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,91,74,0.17), rgba(232,91,74,0) 66%);
  pointer-events: none;
}
.commercial-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: end;
  position: relative;
  z-index: 1;
}
.commercial-hero h1 {
  max-width: 920px;
  font-size: clamp(3.15rem, 1.7rem + 6vw, 7.25rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-top: 22px;
}
.commercial-hero__lead {
  max-width: 770px;
  margin-top: clamp(26px, 3vw, 38px);
  font-size: clamp(1.22rem, 1.05rem + 0.7vw, 1.66rem);
  line-height: 1.42;
  color: var(--c-ink-2);
}
.commercial-hero__sub {
  max-width: 680px;
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--c-mid);
}
.commercial-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.commercial-hero__panel {
  border: 1px solid rgba(15, 19, 22, 0.13);
  background: rgba(255,255,255,0.56);
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 34px 80px -58px rgba(15,19,22,0.48);
  backdrop-filter: blur(12px);
}
.commercial-hero__panel p,
.commercial-hero__panel strong {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15,19,22,0.1);
  font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.28rem);
  line-height: 1.25;
  color: var(--c-ink);
}
.commercial-hero__panel strong {
  border-bottom: 0;
  padding-bottom: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.45rem + 1.8vw, 3rem);
  letter-spacing: -0.035em;
  color: var(--c-coral-deep);
}
.adviser-lanes {
  background: var(--c-ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(88px, 10vw, 154px) 0;
}
.adviser-lanes .eyebrow {
  color: var(--c-coral);
  margin-bottom: 34px;
}
.lane-sequence {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 1.15rem + 4.25vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--c-white);
}
.lane-sequence p {
  padding: clamp(12px, 1.7vw, 22px) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lane-sequence p:first-child { border-top: 0; }
.lane-sequence__pause {
  margin-top: clamp(28px, 5vw, 64px);
  color: rgba(255,255,255,0.58);
}
.lane-sequence .lane-sequence__turn {
  color: #F8D6CE;
}
.lane-sequence .lane-sequence__answer {
  max-width: 1000px;
  color: var(--c-coral);
}
.gap-section,
.thryvv-does,
.matters-section {
  background: var(--c-paper);
}
.gap-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}
.gap-section h2,
.thryvv-does__head h2,
.matters-section__head h2,
.commercial-close h2 {
  font-size: clamp(2.25rem, 1.35rem + 3.45vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.gap-section__copy {
  display: grid;
  gap: 22px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  color: var(--c-graphite);
}
.gap-section__copy p {
  border-left: 2px solid rgba(232,91,74,0.35);
  padding-left: 24px;
}
.thryvv-does__head {
  max-width: 930px;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.thryvv-does__head p {
  max-width: 740px;
  margin-top: 20px;
  font-size: 1.16rem;
  color: var(--c-mid);
}
.thryvv-does__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--c-line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--c-white);
}
.do-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--c-line);
}
.do-card:last-child { border-right: 0; }
.do-card span {
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  color: var(--c-coral);
  text-transform: uppercase;
  margin-bottom: auto;
}
.do-card h3 {
  font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.3rem);
  margin: 46px 0 16px;
}
.do-card p { color: var(--c-mid); }
.thryvv-does__note {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  background: #EFE6D8;
  color: var(--c-ink);
}
.thryvv-does__note strong {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.matters-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.scenario-card {
  grid-column: span 2;
  min-height: 250px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 22px 58px -54px rgba(15,19,22,0.6);
}
.scenario-card--wide { grid-column: span 4; background: var(--c-ink); }
.scenario-card h3 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2.05rem);
}
.scenario-card p {
  margin-top: 20px;
  color: var(--c-mid);
}
.scenario-card--wide h3 { color: var(--c-white); }
.scenario-card--wide p { color: rgba(255,255,255,0.7); }
.commercial-close {
  background: #171B1F;
  color: rgba(255,255,255,0.76);
}
.commercial-close__card {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
  border-radius: 40px;
  padding: clamp(42px, 7vw, 88px) clamp(24px, 6vw, 76px);
  background:
    radial-gradient(circle at 50% 0%, rgba(232,91,74,0.22), rgba(232,91,74,0) 48%),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.12);
}
.commercial-close .eyebrow { color: var(--c-coral); }
.commercial-close h2 { color: var(--c-white); margin-inline: auto; max-width: 950px; }
.commercial-close p {
  max-width: 660px;
  margin: 24px auto 30px;
  font-size: 1.14rem;
}
@media (max-width: 1020px) {
  .commercial-hero__inner,
  .gap-section__grid,
  .matters-section__head,
  .thryvv-does__note { grid-template-columns: 1fr; }
  .commercial-hero__panel { max-width: 560px; }
  .thryvv-does__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .do-card:nth-child(2) { border-right: 0; }
  .do-card:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .scenario-card { grid-column: span 3; }
  .scenario-card--wide { grid-column: span 6; }
}
@media (max-width: 680px) {
  .commercial-hero { min-height: auto; padding-top: 112px; }
  .commercial-hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .commercial-hero__panel { border-radius: 26px; }
  .lane-sequence { font-size: clamp(2.05rem, 10vw, 3.7rem); }
  .gap-section__copy p { padding-left: 18px; }
  .thryvv-does__grid,
  .scenario-grid { display: block; }
  .do-card,
  .scenario-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }
  .do-card:last-child,
  .scenario-card:last-child { border-bottom: 0; }
  .scenario-card { margin-bottom: 14px; }
  .scenario-card--wide { background: var(--c-ink); }
}

/* ================================================================
   Thryvv Who we are revision for commercial gap page
   ================================================================ */
.thryvv-who-page-shell .who-hero .commercial-hero__lead {
  max-width: 820px;
}
.thryvv-who-page-shell .who-hero__panel p,
.thryvv-who-page-shell .who-hero__panel strong {
  border-bottom-color: rgba(15,19,22,0.12);
}
.why-exists,
.team-section,
.difference-section,
.work-section {
  background: var(--c-paper);
}
.why-exists .gap-section__copy p:nth-child(3) {
  color: var(--c-ink);
  font-weight: 600;
}
.team-section__head {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.team-section__head h2,
.difference-section__head h2,
.work-section__head h2 {
  font-size: clamp(2.25rem, 1.35rem + 3.45vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.team-section__head p {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  color: var(--c-graphite);
}
.team-profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  margin-bottom: 22px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 24px 70px -58px rgba(15,19,22,0.64);
}
.team-profile__photo {
  min-height: 410px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232,91,74,0.12), rgba(15,19,22,0.04)),
    #EFE6D8;
  color: rgba(15,19,22,0.42);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-align: center;
  text-transform: uppercase;
}
.team-profile__body {
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-profile__label,
.team-profile__role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--c-coral);
  font-weight: 600;
}
.team-profile__body h3 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 1.4rem + 2.1vw, 4rem);
}
.team-profile__body > p:not(.team-profile__label):not(.team-profile__role) {
  margin-top: 18px;
  max-width: 760px;
  color: var(--c-graphite);
  font-size: 1.08rem;
}
.team-profile__note {
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  color: var(--c-mid) !important;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.capability-card {
  min-height: 245px;
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: 26px;
  background: #F2E9DC;
  border: 1px solid rgba(15,19,22,0.07);
}
.capability-card h3 {
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.9rem);
}
.capability-card p {
  margin-top: 16px;
  color: var(--c-mid);
}
.difference-section {
  background: #F0E7DA;
}
.difference-section__head {
  max-width: 1050px;
  margin-bottom: clamp(34px, 5vw, 62px);
}
.difference-list {
  display: grid;
  gap: 10px;
}
.difference-list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,19,22,0.08);
}
.difference-list span {
  color: var(--c-coral);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
}
.difference-list p {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 1.1rem + 1.25vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}
.difference-list__answer {
  background: var(--c-ink) !important;
}
.difference-list__answer p {
  color: var(--c-white);
}
.work-section__head {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 62px);
}
.work-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--c-line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--c-white);
}
.work-step {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.work-step:last-child { border-right: 0; }
.work-step span {
  color: var(--c-coral);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-weight: 700;
  margin-bottom: auto;
}
.work-step h3 {
  margin: 44px 0 14px;
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2.05rem);
}
.work-step p { color: var(--c-mid); }
.thryvv-who-page-shell .commercial-close__card p {
  max-width: 720px;
}
@media (max-width: 1080px) {
  .capability-grid,
  .work-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-step:nth-child(2) { border-right: 0; }
  .work-step:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 820px) {
  .team-profile { grid-template-columns: 1fr; }
  .team-profile__photo { min-height: 260px; }
}
@media (max-width: 680px) {
  .capability-grid,
  .work-steps { display: block; }
  .capability-card { margin-bottom: 12px; min-height: auto; }
  .work-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--c-line); }
  .work-step:last-child { border-bottom: 0; }
  .difference-list div { grid-template-columns: 1fr; gap: 10px; }
  .difference-list p { font-size: clamp(1.45rem, 7vw, 2rem); }
}

/* Who we are readability polish */
.thryvv-who-page-shell .lane-sequence__pause { color: rgba(255,255,255,0.7); }
.thryvv-who-page-shell .capability-card p,
.thryvv-who-page-shell .work-step p,
.thryvv-who-page-shell .scenario-card p,
.thryvv-who-page-shell .team-profile__note { color: #4E5961 !important; }
.thryvv-who-page-shell .footer__tagline,
.thryvv-who-page-shell .footer__legal,
.thryvv-who-page-shell .footer__col a { color: rgba(255,255,255,0.74); }
.thryvv-who-page-shell .btn--coral { background: #D94D3E; }
.thryvv-who-page-shell .btn--coral:hover { background: #BE4033; }

/* ================================================================
   Thryvv Who we are concise rewrite
   ================================================================ */
.thryvv-who-rewrite-shell {
  background: #F6F0E7;
}
.who-simple-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(126px, 14vw, 190px) 0 clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 86% 26%, rgba(232,91,74,0.16), rgba(232,91,74,0) 40%),
    #F6F0E7;
}
.who-simple-hero__copy {
  max-width: 980px;
}
.who-simple-hero h1 {
  margin-top: 20px;
  font-size: clamp(4.2rem, 2rem + 9vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}
.who-simple-hero p {
  max-width: 790px;
  margin-top: clamp(28px, 3vw, 42px);
  font-size: clamp(1.25rem, 1.05rem + 0.85vw, 1.78rem);
  line-height: 1.38;
  color: var(--c-ink-2);
}
.who-simple-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}
.thryvv-who-rewrite-shell .who-gap-short {
  padding: clamp(72px, 8vw, 122px) 0;
}
.thryvv-who-rewrite-shell .who-gap-short .lane-sequence {
  font-size: clamp(2rem, 1.1rem + 3.8vw, 4.9rem);
}
.cameron-section,
.people-section {
  background: var(--c-paper);
}
.cameron-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  border-radius: 38px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 28px 76px -62px rgba(15,19,22,0.7);
}
.cameron-photo {
  min-height: 620px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232,91,74,0.13), rgba(15,19,22,0.04)),
    #EFE6D8;
  color: rgba(15,19,22,0.45);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-align: center;
  text-transform: uppercase;
}
.cameron-copy {
  padding: clamp(34px, 5.2vw, 72px) clamp(28px, 5vw, 70px) clamp(34px, 5vw, 60px) 0;
}
.cameron-copy h2,
.people-head h2,
.show-up-head h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 1.4rem + 4.8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.cameron-role {
  margin-top: 18px;
  color: var(--c-coral-deep);
  font-weight: 700;
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.22rem);
  line-height: 1.45;
}
.cameron-body {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 3vw, 42px);
  max-width: 760px;
  color: var(--c-graphite);
  font-size: clamp(1.04rem, 0.99rem + 0.25vw, 1.18rem);
}
.cameron-copy blockquote {
  margin: clamp(30px, 4vw, 52px) 0 0;
  padding: clamp(24px, 3vw, 34px);
  border-left: 3px solid var(--c-coral);
  border-radius: 0 22px 22px 0;
  background: #F6F0E7;
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 1.25rem + 1.5vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--c-ink);
}
.people-head {
  max-width: 1000px;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.people-head p {
  max-width: 860px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.3rem);
  color: var(--c-graphite);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.people-card {
  min-height: 255px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 22px 58px -54px rgba(15,19,22,0.6);
}
.people-card h3 {
  font-size: clamp(1.45rem, 1.12rem + 1vw, 2.1rem);
}
.people-card p {
  margin-top: 18px;
  color: #4E5961;
}
.show-up-section {
  background: #F0E7DA;
}
.show-up-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}
.show-up-lines {
  display: grid;
  gap: 10px;
}
.show-up-lines p {
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 34px);
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(15,19,22,0.08);
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 1.15rem + 1.35vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--c-ink);
}
.thryvv-who-rewrite-shell .commercial-close__card p {
  max-width: 800px;
}
.thryvv-who-rewrite-shell .lane-sequence__pause { color: rgba(255,255,255,0.7); }
.thryvv-who-rewrite-shell .footer__tagline,
.thryvv-who-rewrite-shell .footer__legal,
.thryvv-who-rewrite-shell .footer__col a { color: rgba(255,255,255,0.74); }
.thryvv-who-rewrite-shell .btn--coral { background: #D94D3E; }
.thryvv-who-rewrite-shell .btn--coral:hover { background: #BE4033; }
@media (max-width: 1040px) {
  .cameron-card,
  .show-up-grid { grid-template-columns: 1fr; }
  .cameron-photo { min-height: 340px; }
  .cameron-copy { padding: clamp(28px, 5vw, 52px); }
  .people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .who-simple-hero { min-height: auto; padding-top: 118px; }
  .who-simple-hero h1 { font-size: clamp(4rem, 22vw, 6.6rem); }
  .who-simple-hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .people-grid { display: block; }
  .people-card { min-height: auto; margin-bottom: 14px; }
  .cameron-copy blockquote { font-size: clamp(1.55rem, 7vw, 2.15rem); }
}

/* Who we are scale alignment with homepage */
.thryvv-who-rewrite-shell .who-simple-hero {
  min-height: 72vh;
  padding: clamp(116px, 11vw, 154px) 0 clamp(58px, 7vw, 92px);
}
.thryvv-who-rewrite-shell .who-simple-hero h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: -0.034em;
  max-width: 760px;
}
.thryvv-who-rewrite-shell .who-simple-hero p {
  max-width: 760px;
  font-size: clamp(1.14rem, 1.02rem + 0.5vw, 1.42rem);
  line-height: 1.45;
}
.thryvv-who-rewrite-shell .who-gap-short {
  padding: clamp(70px, 8vw, 112px) 0;
}
.thryvv-who-rewrite-shell .who-gap-short .lane-sequence {
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.thryvv-who-rewrite-shell .lane-sequence p {
  padding: clamp(10px, 1.2vw, 17px) 0;
}
.thryvv-who-rewrite-shell .lane-sequence__pause {
  margin-top: clamp(18px, 3vw, 42px);
}
.thryvv-who-rewrite-shell .cameron-card {
  border-radius: var(--r-xl);
}
.thryvv-who-rewrite-shell .cameron-photo {
  min-height: 560px;
}
.thryvv-who-rewrite-shell .cameron-copy h2,
.thryvv-who-rewrite-shell .people-head h2,
.thryvv-who-rewrite-shell .show-up-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.thryvv-who-rewrite-shell .cameron-copy blockquote {
  font-size: clamp(1.55rem, 1.2rem + 1.25vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.024em;
}
.thryvv-who-rewrite-shell .people-card h3 {
  font-size: var(--fs-h3);
  line-height: 1.06;
  letter-spacing: -0.014em;
}
.thryvv-who-rewrite-shell .people-card {
  min-height: 230px;
}
.thryvv-who-rewrite-shell .show-up-lines p {
  font-size: clamp(1.35rem, 1.05rem + 0.95vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  padding: clamp(16px, 2vw, 24px) clamp(18px, 2.6vw, 30px);
}
.thryvv-who-rewrite-shell .commercial-close__card h2 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
@media (max-width: 680px) {
  .thryvv-who-rewrite-shell .who-simple-hero {
    padding-top: 106px;
  }
  .thryvv-who-rewrite-shell .who-simple-hero h1 {
    font-size: var(--fs-h1);
    line-height: 0.98;
    letter-spacing: -0.034em;
  }
  .thryvv-who-rewrite-shell .who-simple-hero p {
    font-size: 1.12rem;
    line-height: 1.48;
  }
  .thryvv-who-rewrite-shell .who-gap-short .lane-sequence {
    font-size: var(--fs-h2);
    line-height: 1.06;
    letter-spacing: -0.026em;
  }
  .thryvv-who-rewrite-shell .cameron-copy h2,
  .thryvv-who-rewrite-shell .people-head h2,
  .thryvv-who-rewrite-shell .show-up-head h2 {
    font-size: var(--fs-h2);
    line-height: 1.04;
    letter-spacing: -0.028em;
  }
  .thryvv-who-rewrite-shell .cameron-photo {
    min-height: 280px;
  }
  .thryvv-who-rewrite-shell .cameron-copy blockquote {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
  }
  .thryvv-who-rewrite-shell .show-up-lines p {
    font-size: clamp(1.3rem, 5.6vw, 1.75rem);
    line-height: 1.14;
  }
}

/* Who we are final homepage-scale tightening */
.thryvv-who-rewrite-shell .who-simple-hero h1 {
  font-size: clamp(2.75rem, 1.6rem + 4.6vw, 5.25rem);
}
.thryvv-who-rewrite-shell .people-card h3 {
  font-size: clamp(1.45rem, 1.18rem + 0.75vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.014em;
}
.thryvv-who-rewrite-shell .show-up-lines p {
  font-size: clamp(1.45rem, 1.18rem + 0.75vw, 1.9rem);
  line-height: 1.12;
}
@media (max-width: 680px) {
  .thryvv-who-rewrite-shell .people-card h3 {
    font-size: 22px;
    line-height: 1.12;
  }
  .thryvv-who-rewrite-shell .show-up-lines p {
    font-size: 22px;
    line-height: 1.16;
  }
}
/* Who we are sharp message polish */
.thryvv-who-rewrite-shell .who-simple-hero h1 {
  max-width: 980px;
}
.thryvv-who-rewrite-shell .who-simple-hero__support {
  max-width: none;
  margin-top: 24px;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 1.12rem + 0.9vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.thryvv-who-rewrite-shell .who-gap-title {
  margin: 0 0 clamp(32px, 4.5vw, 60px);
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 0.92rem + 0.32vw, 1.2rem);
  line-height: 1.1;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
}
.thryvv-who-rewrite-shell .cameron-copy h2,
.thryvv-who-rewrite-shell .people-head h2,
.thryvv-who-rewrite-shell .show-up-head h2 {
  margin-top: 0;
}
.thryvv-who-rewrite-shell .show-up-lines .show-up-lines__close {
  margin-top: 12px;
  background: var(--c-ink);
  color: var(--c-white);
}
@media (max-width: 680px) {
  .thryvv-who-rewrite-shell .who-simple-hero__support {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

/* Who we are exact five-section replacement */
.thryvv-who-exact-shell .who-exact-hero {
  background: var(--c-white);
}
.thryvv-who-exact-shell .who-exact-hero .hero__h1 {
  max-width: 10.5ch;
}
.thryvv-who-exact-shell .who-exact-hero .hero__sub {
  max-width: 42rem;
}
.thryvv-who-exact-shell .who-hero-panel {
  min-height: clamp(360px, 38vw, 560px);
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    linear-gradient(145deg, rgba(246,240,231,0.96), rgba(255,255,255,0.78)),
    radial-gradient(circle at 75% 20%, rgba(232,91,74,0.18), rgba(232,91,74,0) 38%);
  box-shadow: 0 28px 72px rgba(15, 19, 22, 0.12);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
}
.thryvv-who-exact-shell .who-hero-panel__card {
  width: min(100%, 390px);
  display: grid;
  gap: 12px;
}
.thryvv-who-exact-shell .who-hero-panel__card span,
.thryvv-who-exact-shell .who-hero-panel__card strong {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,19,22,0.08);
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--c-graphite);
}
.thryvv-who-exact-shell .who-hero-panel__card strong {
  background: var(--c-ink);
  color: var(--c-white);
  font-weight: 600;
}
.thryvv-who-exact-shell .who-gap-exact {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.thryvv-who-exact-shell .who-gap-exact__head {
  margin-bottom: clamp(30px, 4vw, 56px);
}
.thryvv-who-exact-shell .who-gap-exact__copy {
  max-width: 900px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.thryvv-who-exact-shell .who-gap-exact__copy p {
  margin: 0;
  padding: clamp(14px, 1.8vw, 22px) 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  line-height: 1.12;
  letter-spacing: -0.014em;
  color: var(--c-ink);
}
.thryvv-who-exact-shell .who-gap-exact__copy p:nth-last-child(2) {
  color: var(--c-coral-deep);
}
.thryvv-who-exact-shell .who-gap-exact__copy p:last-child {
  color: var(--c-ink);
  font-weight: 600;
}
.thryvv-who-exact-shell .who-founder-exact {
  background: var(--c-white);
}
.thryvv-who-exact-shell .who-founder-exact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: stretch;
}
.thryvv-who-exact-shell .who-founder-exact__photo {
  min-height: 520px;
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, rgba(232,91,74,0.10), rgba(15,19,22,0.04)),
    #EFE6D8;
  display: grid;
  place-items: center;
  color: rgba(15,19,22,0.45);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-align: center;
  text-transform: uppercase;
}
.thryvv-who-exact-shell .who-founder-exact__copy {
  align-self: center;
  max-width: 760px;
}
.thryvv-who-exact-shell .who-founder-exact__role {
  margin-top: 18px;
  color: var(--c-coral-deep);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}
.thryvv-who-exact-shell .who-founder-exact__body {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: var(--c-graphite);
  font-size: var(--fs-body);
  line-height: 1.65;
}
.thryvv-who-exact-shell .who-founder-exact__copy blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--c-coral);
  border-radius: 0 18px 18px 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 1rem;
  line-height: 1.55;
}
.thryvv-who-exact-shell .who-people-exact .services__intro {
  display: grid;
  gap: 12px;
}
.thryvv-who-exact-shell .who-people-exact__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.thryvv-who-exact-shell .who-people-exact__grid .tile {
  min-height: 230px;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__h {
  font-size: clamp(1.375rem, 1.15rem + 0.5vw, 1.625rem);
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__p {
  font-size: 0.95rem;
}
.thryvv-who-exact-shell .final__h {
  max-width: 12ch;
}
@media (max-width: 980px) {
  .thryvv-who-exact-shell .who-founder-exact__grid,
  .thryvv-who-exact-shell .who-people-exact__grid {
    grid-template-columns: 1fr;
  }
  .thryvv-who-exact-shell .who-founder-exact__photo {
    min-height: 340px;
  }
}
@media (max-width: 760px) {
  .thryvv-who-exact-shell .who-hero-panel {
    min-height: 280px;
    aspect-ratio: auto;
  }
  .thryvv-who-exact-shell .who-gap-exact__copy p {
    font-size: 22px;
    line-height: 1.18;
  }
  .thryvv-who-exact-shell .who-founder-exact__photo {
    min-height: 280px;
  }
}

/* Who we are exact typography restraint */
.thryvv-who-exact-shell .who-exact-hero .hero__h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 1.65rem + 4vw, 4.75rem);
  line-height: 0.98;
}
@media (max-width: 760px) {
  .thryvv-who-exact-shell .who-exact-hero .hero__h1 {
    max-width: 350px;
    font-size: clamp(2.55rem, 10vw, 3.4rem);
    line-height: 0.98;
  }
}

/* Who we are design correction: simple hero, split commercial gap, restrained people/founder cards */
.thryvv-who-exact-shell .who-exact-hero .hero__inner {
  grid-template-columns: minmax(0, 820px);
  justify-content: start;
}
.thryvv-who-exact-shell .who-exact-hero .hero__copy {
  max-width: 820px;
}
.thryvv-who-exact-shell .who-exact-hero .hero__h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 1.65rem + 4vw, 4.75rem);
  line-height: 0.98;
}
.thryvv-who-exact-shell .who-gap-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}
.thryvv-who-exact-shell .who-gap-split__lanes {
  display: grid;
  gap: 12px;
}
.thryvv-who-exact-shell .who-gap-split__lanes p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-graphite);
  font-size: var(--fs-body);
  line-height: 1.45;
}
.thryvv-who-exact-shell .who-gap-split__owner {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--c-ink);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.thryvv-who-exact-shell .who-gap-split__owner p {
  margin: 0;
  max-width: 680px;
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
}
.thryvv-who-exact-shell .who-gap-split__owner .who-gap-split__answer {
  margin-top: 8px;
  color: var(--c-coral);
}
.thryvv-who-exact-shell .who-founder-exact__grid {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}
.thryvv-who-exact-shell .who-founder-exact__photo {
  min-height: auto;
  align-self: start;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--r-xl);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  box-shadow: none;
  display: grid;
  place-items: start;
  gap: 10px;
  color: var(--c-ink);
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}
.thryvv-who-exact-shell .who-founder-exact__photo span {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.thryvv-who-exact-shell .who-founder-exact__photo strong,
.thryvv-who-exact-shell .who-founder-exact__photo em {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--c-graphite);
  font-style: normal;
  font-weight: 600;
}
.thryvv-who-exact-shell .who-founder-exact__copy blockquote {
  font-size: 0.98rem;
  line-height: 1.55;
}
.thryvv-who-exact-shell .who-people-exact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile {
  min-height: auto;
  padding: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: none;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__rule {
  width: 28px;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__h {
  font-size: clamp(1.25rem, 1.08rem + 0.45vw, 1.45rem);
  line-height: 1.12;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .thryvv-who-exact-shell .who-gap-split,
  .thryvv-who-exact-shell .who-founder-exact__grid,
  .thryvv-who-exact-shell .who-people-exact__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .thryvv-who-exact-shell .who-exact-hero .hero__h1 {
    max-width: 350px;
    font-size: clamp(2.55rem, 10vw, 3.4rem);
  }
  .thryvv-who-exact-shell .who-gap-split__owner p {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem);
  }
  .thryvv-who-exact-shell .who-gap-split__lanes p {
    padding: 16px 18px;
  }
}
/* Feature image radius alignment — match the rounded hero image treatment on the index page. */
.hero__image,
.advocate-bridge__image,
.advocate-bridge__photo,
.evidence__image,
.evidence__image image-slot,
.story__image image-slot,
.story__image img,
.story__image video,
img.wp-post-image,
.featured-image img,
.post-image img,
.inside-article .featured-image img {
  border-radius: clamp(28px, 3vw, 44px);
  overflow: hidden;
}


/* ================================================================
   What We Do baseline consistency pass — fonts, colour, highlights,
   heading/body scale and feature media treatment across the site.
   ================================================================ */
:root {
  --c-coral: #FF5C46;
  --c-coral-deep: #E8472F;
  --ff-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --ff-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --fs-eyebrow: 0.74rem;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.2rem;
  --fs-h3: clamp(1.625rem, 1.3rem + 1.2vw, 2.25rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --fs-h1: clamp(2.75rem, 1.6rem + 5.5vw, 6rem);
  --tracking-tight: -0.028em;
  --tracking-snug: -0.014em;
}

body,
.thryvv-claude-home,
.thryvv-contact-page,
.site-content,
.inside-article,
.sidebar .widget {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-graphite);
}

h1, h2, h3, h4,
.hero__h1,
.entry-title,
.page-title,
.form-heading h2,
.expect-card h2,
.sidebar .widget-title,
.inside-article h1,
.inside-article h2,
.inside-article h3,
.inside-article h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.hero__h1,
.entry-header .entry-title,
.page-header h1,
.contact-hero .hero__h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: var(--tracking-tight);
}

.section h2,
.form-heading h2,
.expect-card h2,
.inside-article h2,
.sidebar .widget-title {
  font-size: var(--fs-h2);
  line-height: 1.04;
}

.section h3,
.inside-article h3,
.entry-summary h2,
.entry-summary h3 {
  font-size: var(--fs-h3);
}

.hero__sub,
.contact-hero .hero__sub,
.inside-article p,
.entry-summary,
.entry-content p {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--c-graphite);
}

.eyebrow,
.hero__chip,
.posted-on,
.byline,
.cat-links,
.tags-links,
.about-hero__eyebrow,
.sidebar .widget-title {
  font-family: var(--ff-body);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

em,
.hero__h1 em,
.section h2 em,
.section h3 em,
.entry-title em,
.inside-article h1 em,
.inside-article h2 em,
.inside-article h3 em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  color: var(--c-coral);
}

.hero__highlight,
mark,
.has-inline-color.has-vivid-red-color {
  background: transparent;
  color: var(--c-coral) !important;
  padding: 0;
  border-radius: 0;
  transform: none;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
}

a:hover,
.btn--link:hover,
.entry-title a:hover,
.sidebar a:hover { color: var(--c-coral); }

.btn--coral,
button[type="submit"],
input[type="submit"] {
  background: var(--c-coral);
  border-color: var(--c-coral);
}
.btn--coral:hover,
button[type="submit"]:hover,
input[type="submit"]:hover { background: var(--c-coral-deep); border-color: var(--c-coral-deep); }

.hero__image,
.advocate-bridge__image,
.advocate-bridge__photo,
.evidence__image,
.evidence__image image-slot,
.story__image image-slot,
.story__image img,
.story__image video,
img.wp-post-image,
.featured-image img,
.post-image img,
.inside-article .featured-image img {
  border-radius: clamp(28px, 3vw, 44px);
  overflow: hidden;
}

/* Consistency refinement: buttons, blog archive and sidebar polish against What We Do baseline. */
.btn,
.btn:visited,
.btn:hover,
.btn:focus,
a.btn,
a.btn:visited,
a.btn:hover,
a.btn:focus,
.nav__cta a,
.hero__foot a.btn--coral,
.contact-hero a.btn--coral {
  text-decoration: none !important;
}

.blog .entry-header .entry-title,
.archive .entry-header .entry-title,
.search .entry-header .entry-title {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  line-height: 1.04;
  max-width: 18ch;
  margin-bottom: 18px;
}
.blog .entry-title a,
.archive .entry-title a,
.search .entry-title a,
.sidebar a {
  color: var(--c-ink);
  text-decoration: none;
}
.blog .entry-title a:hover,
.archive .entry-title a:hover,
.search .entry-title a:hover,
.sidebar a:hover {
  color: var(--c-coral);
  text-decoration: none;
}
.blog .entry-summary,
.archive .entry-summary,
.search .entry-summary {
  font-size: var(--fs-body);
  color: var(--c-graphite);
  line-height: 1.6;
}
.sidebar .widget-title {
  font-family: var(--ff-body);
  font-size: var(--fs-eyebrow, 0.74rem);
  font-weight: 500;
  letter-spacing: var(--tracking-caps, 0.14em);
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: 18px;
}
.sidebar .widget {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg, 24px);
  background: var(--c-white);
}
.sidebar .search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.sidebar .search-field {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-white);
  color: var(--c-ink);
  padding: 13px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
}
.sidebar .search-submit,
.search-submit {
  border: 0;
  border-radius: var(--r-pill, 999px);
  background: var(--c-coral);
  color: var(--c-white);
  padding: 13px 18px;
  font-family: var(--ff-body);
  font-weight: 500;
}
.sidebar .search-submit:hover,
.search-submit:hover { background: var(--c-coral-deep); }
@media (min-width: 1024px) {
  .hero { padding-top: clamp(72px, 8vw, 122px); }
  .thryvv-contact-page .contact-hero { padding-top: clamp(86px, 10vw, 132px); }
}

/* Consistency refinement 2: remove default blue WordPress link/widget styling. */
.byline a,
.posted-on a,
.cat-links a,
.tags-links a,
.comments-link a,
.entry-meta a,
.entry-footer a,
.sidebar .widget a {
  color: var(--c-ink) !important;
  text-decoration: none !important;
}
.byline a:hover,
.posted-on a:hover,
.cat-links a:hover,
.tags-links a:hover,
.comments-link a:hover,
.entry-meta a:hover,
.entry-footer a:hover,
.sidebar .widget a:hover {
  color: var(--c-coral) !important;
}
.sidebar .widget .widget-title,
.sidebar .widget h2,
.sidebar .widget h3 {
  font-family: var(--ff-body) !important;
  font-size: var(--fs-eyebrow, 0.74rem) !important;
  font-weight: 500 !important;
  letter-spacing: var(--tracking-caps, 0.14em) !important;
  text-transform: uppercase !important;
  color: var(--c-coral) !important;
  line-height: 1.25 !important;
}

/* STRICT What We Do baseline — computed-size and highlight-colour enforcement. */
:root {
  --c-coral: #FF5C46;
  --c-coral-deep: #E8472F;
  --ff-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --ff-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --wwd-h1: clamp(2.5rem, 1.5rem + 3.6vw, 4.5rem);
  --wwd-h2: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  --wwd-h3: clamp(1.5rem, 1.15rem + 1.4vw, 2.25rem);
  --wwd-body-lg: 1.2rem;
  --wwd-body: 1.0625rem;
}

.thryvv-claude-home .hero__h1,
.thryvv-contact-page .hero__h1,
.thryvv-contact-page .contact-hero .hero__h1,
.blog .entry-header .entry-title,
.archive .entry-header .entry-title,
.search .entry-header .entry-title,
.single .entry-header .entry-title,
.page-header h1,
.entry-header h1.entry-title {
  font-family: var(--ff-display) !important;
  font-size: var(--wwd-h1) !important;
  line-height: 1 !important;
  letter-spacing: -0.032em !important;
  font-weight: 400 !important;
  color: var(--c-ink) !important;
}

.thryvv-claude-home .section h2,
.thryvv-claude-home .advocate-bridge__statement,
.thryvv-contact-page .form-heading h2,
.thryvv-contact-page .expect-card h2,
.entry-content h2,
.sidebar .widget-title,
.sidebar .widget h2,
.sidebar .widget h3 {
  font-family: var(--ff-display) !important;
  font-size: var(--wwd-h2) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.028em !important;
  font-weight: 400 !important;
  color: var(--c-ink) !important;
}

.thryvv-claude-home .section h3,
.entry-content h3,
.blog .entry-summary h2,
.archive .entry-summary h2 {
  font-family: var(--ff-display) !important;
  font-size: var(--wwd-h3) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  font-weight: 400 !important;
  color: var(--c-ink) !important;
}

.thryvv-claude-home .hero__sub,
.thryvv-contact-page .hero__sub,
.thryvv-claude-home .section p,
.thryvv-contact-page p,
.entry-content p,
.entry-summary,
.sidebar .widget,
.sidebar .widget p,
.sidebar .widget li {
  font-family: var(--ff-body) !important;
  font-size: var(--wwd-body-lg) !important;
  line-height: 1.55 !important;
  color: var(--c-graphite) !important;
}

.thryvv-claude-home .hero__sub--punch {
  font-weight: 400 !important;
}

.thryvv-claude-home h1 em,
.thryvv-claude-home h2 em,
.thryvv-claude-home h3 em,
.thryvv-contact-page h1 em,
.thryvv-contact-page h2 em,
.entry-content h1 em,
.entry-content h2 em,
.entry-content h3 em,
.hero__highlight,
mark,
.advocate-bridge__statement-red,
[class*="highlight"] {
  font-family: var(--ff-display) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--c-coral) !important;
  background: transparent !important;
}

.btn--coral,
.nav__cta .btn,
button[type="submit"],
input[type="submit"],
.search-submit {
  background: var(--c-coral) !important;
  border-color: var(--c-coral) !important;
  color: #fff !important;
  font-family: var(--ff-body) !important;
}
.btn--coral:hover,
.nav__cta .btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.search-submit:hover {
  background: var(--c-coral-deep) !important;
  border-color: var(--c-coral-deep) !important;
  color: #fff !important;
}

a:hover,
.nav__links a:hover,
.nav__phone:hover,
.sidebar a:hover,
.entry-title a:hover,
.entry-meta a:hover,
.entry-footer a:hover { color: var(--c-coral) !important; }

@media (max-width: 760px) {
  :root {
    --wwd-h1: clamp(2.5rem, 1.55rem + 7vw, 4rem);
    --wwd-h2: clamp(2rem, 1.35rem + 4.6vw, 3rem);
    --wwd-body-lg: 1.08rem;
  }
}

/* Strict baseline correction: remaining mismatched body/highlight elements. */
.advocate-bridge__statement .advocate-bridge__statement-red {
  font-size: var(--wwd-h2) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.028em !important;
}

/* Strict baseline correction: sidebar widget titles use the What We Do eyebrow scale, not H2 scale. */
.sidebar .widget-title,
.sidebar .widget h2,
.sidebar .widget h3 {
  font-family: var(--ff-body) !important;
  font-size: 0.74rem !important;
  line-height: 1.6 !important;
  letter-spacing: var(--tracking-caps, 0.14em) !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--c-coral) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

/* Fix Pack 1 — launch readiness spacing/context only. */
html { scroll-padding-top: 96px; }
#recover, #manage, #grow, #exit, #services, #dpn { scroll-margin-top: 104px; }
.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.thryvv-claude-home .section,
body.thryvv-claude-front-page .section { padding-block: clamp(64px, 6.4vw, 104px); }
body.thryvv-claude-front-page .services { padding-top: clamp(56px, 5.8vw, 92px); }
body.thryvv-claude-front-page .services__head { margin-bottom: clamp(24px, 3vw, 38px); align-items: start; }
body.thryvv-claude-front-page .services__h { margin-top: 16px; }
body.thryvv-claude-front-page .bento { margin-top: 0; }
body.thryvv-claude-front-page .how__head { margin-bottom: clamp(30px, 3.8vw, 46px); }
body.thryvv-claude-front-page .shield__p + .shield__p { margin-top: 16px; }
@media (max-width: 760px) {
  html { scroll-padding-top: 82px; }
  #recover, #manage, #grow, #exit, #services, #dpn { scroll-margin-top: 86px; }
  body.thryvv-claude-front-page .section { padding-block: 58px; }
  body.thryvv-claude-front-page .services__head { margin-bottom: 24px; gap: 14px; }
}


/* Animated Google reviews replacement for homepage proof section. */
.google-reviews {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,243,236,0.72));
}
.google-reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.google-reviews__head {
  max-width: 520px;
}
.google-reviews__intro {
  margin: 1rem 0 0;
  color: var(--c-mid);
  line-height: 1.7;
}
.google-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 92, 70, 0.55);
  padding-bottom: 0.18rem;
}
.google-reviews__link:hover,
.google-reviews__link:focus-visible {
  color: var(--c-coral);
}
.google-reviews__panel {
  position: relative;
  min-height: 0;
  padding: clamp(1rem, 1.9vw, 1.35rem);
  border: 1px solid rgba(15, 19, 22, 0.08);
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 48px -34px rgba(15,19,22,0.30);
  overflow: hidden;
}
.google-reviews__panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-coral), rgba(255, 92, 70, 0.18));
}
.google-reviews__stars {
  color: #f6b400;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}
.google-reviews__viewport {
  position: relative;
  transition: min-height 180ms ease;
}
.google-review {
  animation: googleReviewIn 420ms ease both;
}
.google-review[hidden] {
  display: none !important;
}
.google-review__text {
  margin: 0;
  color: var(--c-ink);
  font-family: var(--f-serif);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.42;
}
.google-review__footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.google-reviews__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(15,19,22,0.08);
}
.google-reviews__control {
  border: 1px solid rgba(15,19,22,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--c-mid);
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.68rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.google-reviews__control:hover,
.google-reviews__control:focus-visible,
.google-reviews__control.is-active {
  background: rgba(255, 92, 70, 0.1);
  border-color: rgba(255, 92, 70, 0.48);
  color: var(--c-ink);
  transform: translateY(-1px);
}
@keyframes googleReviewIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .google-reviews__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .google-reviews__panel {
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .google-reviews__panel {
    padding: 0.95rem;
    border-radius: 20px;
  }
  .google-review__text {
    font-size: 1rem;
    line-height: 1.42;
  }
  .google-reviews__controls {
    gap: 0.45rem;
  }
  .google-reviews__control {
    font-size: 0.76rem;
    padding: 0.4rem 0.58rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .google-review,
  .google-reviews__control {
    animation: none;
    transition: none;
  }
}

/* Who We Are proof scroller — adapted from supplied shadcn/framer prompt for WordPress/static template. */
.advocate-bridge--scroller {
  background:
    radial-gradient(circle at 86% 10%, rgba(232, 91, 74, 0.10), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f8efe3 54%, #efe3d3 100%);
}
.advocate-bridge__inner--scroller {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(38px, 6vw, 92px);
}
.advocate-proof-loop {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  justify-self: end;
}
.advocate-proof-loop__card {
  position: relative;
  min-height: clamp(420px, 44vw, 610px);
  border-radius: clamp(30px, 3vw, 48px);
  border: 1px solid rgba(15,19,22,0.12);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.58), rgba(255,255,255,0.08) 46%),
    radial-gradient(circle at 76% 20%, rgba(232,91,74,0.14), transparent 32%),
    repeating-linear-gradient(95deg, rgba(15,19,22,0.026) 0 1px, transparent 1px 19px),
    linear-gradient(135deg, #fbf7ef 0%, #eadfcc 52%, #d8c7af 100%);
  box-shadow: 0 34px 86px rgba(48,38,30,0.13), inset 0 0 0 18px rgba(255,255,255,0.12);
  overflow: hidden;
}
.advocate-proof-loop__card::before {
  content: "";
  position: absolute;
  inset: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: clamp(20px, 2.2vw, 34px);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.03) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(15,19,22,0.024) 1px, transparent 1px) 0 0 / 34px 34px;
}
.advocate-proof-loop__card::after {
  content: "";
  position: absolute;
  right: clamp(28px, 5vw, 68px);
  bottom: clamp(28px, 5vw, 68px);
  width: min(43%, 260px);
  height: min(26%, 168px);
  border-radius: 24px;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(15,19,22,0.08);
  box-shadow: -46px -34px 0 rgba(255,255,255,0.13), -86px -66px 0 rgba(255,255,255,0.075);
}
.advocate-proof-loop__viewport {
  position: absolute;
  z-index: 2;
  inset: clamp(48px, 7vw, 90px) clamp(28px, 4vw, 58px);
  border-radius: clamp(20px, 2vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(15,19,22,0.08);
  background: rgba(255,250,242,0.54);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 58px rgba(48,38,30,0.11);
}
.advocate-proof-loop__viewport::before,
.advocate-proof-loop__viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
}
.advocate-proof-loop__viewport::before {
  top: 0;
  background: linear-gradient(180deg, #fffaf2 0%, rgba(255,250,242,0.78) 44%, transparent 100%);
}
.advocate-proof-loop__viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, #f2e8d9 0%, rgba(242,232,217,0.78) 44%, transparent 100%);
}
.advocate-proof-loop__track {
  position: absolute;
  inset-inline: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  animation: thryvv-proof-scroll 24s linear infinite;
}
.advocate-proof-loop__viewport:hover .advocate-proof-loop__track {
  animation-play-state: paused;
}
.advocate-proof-loop__item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15,19,22,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.38);
}
.advocate-proof-loop__mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(15,19,22,0.08);
  color: var(--c-ink);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 820;
  box-shadow: 0 10px 24px rgba(48,38,30,0.08);
}
.advocate-proof-loop__item strong {
  display: block;
  color: var(--c-ink);
  font-size: clamp(1rem, 1.12vw, 1.22rem);
  line-height: 1.18;
  font-weight: 760;
}
.advocate-proof-loop__item span:not(.advocate-proof-loop__mark) {
  display: block;
  margin-top: 4px;
  color: rgba(15,19,22,0.63);
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  line-height: 1.3;
  font-weight: 560;
}
@keyframes thryvv-proof-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.advocate-bridge--scroller .advocate-proof-strip {
  display: none !important;
}
.advocate-bridge--scroller:not(.is-in) .advocate-proof-loop {
  opacity: 1;
  transform: none;
}
.advocate-bridge--scroller.is-in .advocate-proof-loop {
  animation: advocate-photo-in 820ms var(--ease) 120ms both;
}
@media (max-width: 980px) {
  .advocate-bridge__inner--scroller {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .advocate-proof-loop {
    max-width: 100%;
    justify-self: stretch;
  }
  .advocate-proof-loop__card {
    min-height: 430px;
    border-radius: 28px;
  }
  .advocate-proof-loop__viewport {
    inset: 46px 22px;
  }
}
@media (max-width: 560px) {
  .advocate-proof-loop__card {
    min-height: 410px;
  }
  .advocate-proof-loop__viewport {
    inset: 34px 14px;
  }
  .advocate-proof-loop__item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    min-height: 74px;
    padding: 12px;
  }
  .advocate-proof-loop__mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 0.66rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .advocate-proof-loop__track {
    position: static;
    animation: none;
  }
  .advocate-proof-loop__viewport {
    overflow: auto;
  }
}

/* Mobile/source-capture hardening for the Who We Are proof scroller. */
.advocate-bridge--scroller .advocate-bridge__copy,
.advocate-bridge--scroller .advocate-proof-loop,
.advocate-bridge--scroller .advocate-proof-loop__card,
.advocate-bridge--scroller .advocate-proof-loop__viewport,
.advocate-bridge--scroller .advocate-proof-loop__item {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.advocate-bridge--scroller.is-in .advocate-proof-loop {
  animation: none !important;
}
.advocate-bridge--scroller .advocate-proof-loop {
  display: block !important;
  min-height: clamp(410px, 44vw, 610px);
}
@media (max-width: 980px) {
  .advocate-bridge--scroller .advocate-bridge__copy,
  .advocate-bridge--scroller .advocate-proof-loop {
    grid-column: 1 / -1 !important;
  }
  .advocate-bridge--scroller .advocate-proof-loop {
    min-height: 430px;
    margin-top: 2px;
  }
}

/* Remove the decorative placeholder panel behind the Who We Are proof scroller. */
.advocate-bridge--scroller .advocate-proof-loop__card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.advocate-bridge--scroller .advocate-proof-loop__card::before,
.advocate-bridge--scroller .advocate-proof-loop__card::after {
  display: none !important;
  content: none !important;
}
.advocate-bridge--scroller .advocate-proof-loop__viewport {
  inset: clamp(34px, 5vw, 66px) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.advocate-bridge--scroller .advocate-proof-loop__viewport::before {
  background: linear-gradient(180deg, #fffaf2 0%, rgba(255,250,242,0.78) 45%, transparent 100%);
}
.advocate-bridge--scroller .advocate-proof-loop__viewport::after {
  background: linear-gradient(0deg, #f7eee2 0%, rgba(247,238,226,0.78) 45%, transparent 100%);
}
@media (max-width: 560px) {
  .advocate-bridge--scroller .advocate-proof-loop__viewport {
    inset: 26px 0;
  }
}

/* Prompt-matched Who We Are scroller: one lifted glass card with row dividers and depth shadow. */
.advocate-bridge--scroller .advocate-proof-loop {
  max-width: 600px;
  min-height: clamp(405px, 38vw, 520px);
}
.advocate-bridge--scroller .advocate-proof-loop__card {
  position: relative;
  min-height: clamp(405px, 38vw, 520px);
  border-radius: 14px !important;
  border: 1px solid rgba(15, 19, 22, 0.12) !important;
  background: rgba(255, 255, 255, 0.76) !important;
  box-shadow:
    0 34px 54px rgba(48, 38, 30, 0.14),
    0 13px 22px rgba(48, 38, 30, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.92) inset !important;
  overflow: hidden !important;
  backdrop-filter: blur(12px) saturate(1.06);
}
.advocate-bridge--scroller .advocate-proof-loop__card::before,
.advocate-bridge--scroller .advocate-proof-loop__card::after {
  display: block !important;
  content:  !important;
  position: absolute;
  left: 0;
  right: 0;
  height: 84px;
  z-index: 5;
  pointer-events: none;
}
.advocate-bridge--scroller .advocate-proof-loop__card::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 48%, rgba(255,255,255,0) 100%);
}
.advocate-bridge--scroller .advocate-proof-loop__card::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 48%, rgba(255,255,255,0) 100%);
}
.advocate-bridge--scroller .advocate-proof-loop__viewport {
  inset: 0 !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: hidden !important;
}
.advocate-bridge--scroller .advocate-proof-loop__viewport::before,
.advocate-bridge--scroller .advocate-proof-loop__viewport::after {
  display: none !important;
}
.advocate-bridge--scroller .advocate-proof-loop__track {
  gap: 0 !important;
  padding: 0 !important;
  animation-duration: 22s;
}
.advocate-bridge--scroller .advocate-proof-loop__item {
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 92px;
  gap: 16px;
  padding: 16px 22px 16px 20px;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(15, 19, 22, 0.09) !important;
  background: rgba(255, 255, 255, 0.38) !important;
  box-shadow: none !important;
}
.advocate-bridge--scroller .advocate-proof-loop__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(15, 19, 22, 0.08);
  box-shadow: 0 12px 20px rgba(48, 38, 30, 0.10);
  color: rgba(15,19,22,0.82);
}
.advocate-bridge--scroller .advocate-proof-loop__item strong {
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  color: #111820;
}
.advocate-bridge--scroller .advocate-proof-loop__item span:not(.advocate-proof-loop__mark) {
  margin-top: 3px;
  color: rgba(17,24,32,0.58);
  font-weight: 560;
}
@media (max-width: 980px) {
  .advocate-bridge--scroller .advocate-proof-loop,
  .advocate-bridge--scroller .advocate-proof-loop__card {
    min-height: 420px;
  }
}
@media (max-width: 560px) {
  .advocate-bridge--scroller .advocate-proof-loop__item {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 88px;
    padding: 14px 16px;
  }
  .advocate-bridge--scroller .advocate-proof-loop__mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

/* Shorten Who We Are proof scroller so only 3–4 proof rows show at once. */
.advocate-bridge--scroller .advocate-proof-loop {
  max-width: 600px;
  min-height: 344px !important;
}
.advocate-bridge--scroller .advocate-proof-loop__card {
  min-height: 344px !important;
  height: 344px !important;
}
.advocate-bridge--scroller .advocate-proof-loop__item {
  min-height: 86px !important;
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}
.advocate-bridge--scroller .advocate-proof-loop__card::before,
.advocate-bridge--scroller .advocate-proof-loop__card::after {
  height: 58px !important;
}
@media (max-width: 980px) {
  .advocate-bridge--scroller .advocate-proof-loop,
  .advocate-bridge--scroller .advocate-proof-loop__card {
    min-height: 336px !important;
    height: 336px !important;
  }
  .advocate-bridge--scroller .advocate-proof-loop__item {
    min-height: 84px !important;
  }
}
@media (max-width: 560px) {
  .advocate-bridge--scroller .advocate-proof-loop,
  .advocate-bridge--scroller .advocate-proof-loop__card {
    min-height: 324px !important;
    height: 324px !important;
  }
  .advocate-bridge--scroller .advocate-proof-loop__item {
    min-height: 81px !important;
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }
}

/* DPN section readability + site-consistent background refinement. */
.dpn {
  background: #0f1316 !important;
  color: #fff !important;
}
.dpn::before {
  width: 52% !important;
  height: 100% !important;
  right: 0 !important;
  top: 0 !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 91, 74, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(15,19,22,0) 0%, rgba(232,91,74,0.075) 52%, rgba(232,91,74,0.12) 100%) !important;
  opacity: 1 !important;
}
.dpn .eyebrow {
  color: rgba(255,255,255,0.82) !important;
}
.dpn__h {
  color: #fff !important;
}
.dpn__h em {
  color: var(--c-coral, #e85b4a) !important;
}
.dpn__p {
  color: rgba(255,255,255,0.78) !important;
  font-weight: 540 !important;
}
.dpn-fact {
  background: rgba(255,255,255,0.075) !important;
  border-color: rgba(255,255,255,0.16) !important;
  box-shadow: 0 20px 44px rgba(0,0,0,0.18) !important;
}
.dpn-fact__key {
  color: #fff !important;
}
.dpn-fact__val {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 560 !important;
}
@media (min-width: 900px) {
  .dpn__grid {
    gap: clamp(56px, 7vw, 96px) !important;
  }
}
@media (max-width: 899px) {
  .dpn::before {
    width: 100% !important;
    opacity: 0.65 !important;
  }
  .dpn__p {
    color: rgba(255,255,255,0.82) !important;
  }
}
/* Keep the first What Happens Next heading phrase together on desktop. */
@media (min-width: 900px) {
  body.thryvv-claude-front-page .how__head {
    max-width: min(100%, 58ch);
  }
  body.thryvv-claude-front-page .how__h .how__nowrap {
    white-space: nowrap;
  }
}
/* Condense the Who We Are bridge statement so it reads in fewer, more deliberate lines. */
@media (min-width: 981px) {
  body.thryvv-claude-front-page .advocate-bridge--scroller .advocate-bridge__inner--scroller {
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    gap: clamp(34px, 5vw, 78px);
  }
  body.thryvv-claude-front-page .advocate-bridge--scroller .advocate-bridge__statement {
    max-width: min(100%, 11em) !important;
  }
  body.thryvv-claude-front-page .advocate-bridge--scroller .advocate-bridge__statement-red {
    display: block;
    max-width: 11.6em;
  }
}
/* Restore Manage support contrast after global heading/body baseline overrides. */
body.thryvv-claude-front-page .shield .shield__h {
  color: var(--c-white) !important;
}
body.thryvv-claude-front-page .shield .shield__h em {
  color: var(--c-coral) !important;
}
body.thryvv-claude-front-page .shield .shield__p {
  color: rgba(255,255,255,0.76) !important;
}
body.thryvv-claude-front-page .shield .eyebrow {
  color: var(--c-coral) !important;
}
/* Restore final CTA contrast and use the actual Thryvv logo as a subtle watermark. */
body.thryvv-claude-front-page .final .final__h {
  color: var(--c-white) !important;
}
body.thryvv-claude-front-page .final .final__h em {
  color: var(--c-coral) !important;
}
body.thryvv-claude-front-page .final .final__p {
  color: rgba(255,255,255,0.86) !important;
}
body.thryvv-claude-front-page .final .final__phone {
  color: var(--c-white) !important;
  border-bottom-color: rgba(255,255,255,0.42) !important;
}
body.thryvv-claude-front-page .final .final__card::after {
  content: "" !important;
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 4.5vw, 68px);
  width: clamp(340px, 46vw, 760px);
  height: clamp(80px, 12vw, 160px);
  background-image: url('./thryvv-logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  filter: saturate(1.15) brightness(1.9);
  transform: none;
}
@media (max-width: 760px) {
  body.thryvv-claude-front-page .final .final__card::after {
    right: -18vw;
    bottom: 24px;
    width: 116vw;
    height: 110px;
    opacity: 0.065;
  }
}
/* Final CTA logo as a real mark above the heading, not a watermark. */
body.thryvv-claude-front-page .final .final__card::after {
  content: none !important;
  display: none !important;
}
body.thryvv-claude-front-page .final .final__logo {
  display: block;
  width: clamp(112px, 12vw, 156px);
  height: auto;
  margin: 0 0 clamp(6px, 0.9vw, 12px);
  filter: none;
  opacity: 1;
}
/* Keep final CTA logo directly above the heading in the left column. */
@media (min-width: 900px) {
  body.thryvv-claude-front-page .final .final__inner {
    column-gap: 64px;
    row-gap: clamp(6px, 0.9vw, 12px);
  }
  body.thryvv-claude-front-page .final .final__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }
  body.thryvv-claude-front-page .final .final__h {
    grid-column: 1;
    grid-row: 2;
  }
  body.thryvv-claude-front-page .final .final__col-r {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }
}

/* Final CTA logo/heading grouped tightly with original coral logo colour. */
body.thryvv-claude-front-page .final .final__col-l {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(8px, 1vw, 14px);
}
body.thryvv-claude-front-page .final .final__col-l .final__logo {
  margin: 0;
  filter: none !important;
  opacity: 1 !important;
}
@media (min-width: 900px) {
  body.thryvv-claude-front-page .final .final__col-l {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
  }
  body.thryvv-claude-front-page .final .final__col-r {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }
}
/* Tighten the transition from What Happens Next into Google reviews. */
body.thryvv-claude-front-page .how {
  padding-bottom: clamp(38px, 3.8vw, 52px) !important;
}
body.thryvv-claude-front-page .google-reviews {
  padding-top: clamp(38px, 3.8vw, 52px) !important;
}
@media (max-width: 760px) {
  body.thryvv-claude-front-page .how {
    padding-bottom: 42px !important;
  }
  body.thryvv-claude-front-page .google-reviews {
    padding-top: 42px !important;
  }
}
/* Correct final CTA logo alignment: keep it directly above the heading, not floated right. */
body.thryvv-claude-front-page .final .final__col-l .final__logo {
  align-self: flex-start !important;
}
/* Mira review items 2-5: human proof, connected lead capture, scannable reviews, CTA reassurance. */
body.thryvv-claude-front-page .human-proof {
  background: linear-gradient(180deg, rgba(248,243,236,0.72), rgba(255,255,255,0.96));
  padding-block: clamp(56px, 5.6vw, 88px) !important;
}
.human-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: center;
}
.human-proof__media {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(15,19,22,0.08);
  box-shadow: 0 26px 72px -44px rgba(15,19,22,0.38);
  background: var(--c-paper);
}
.human-proof__media img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: 48% center;
}
.human-proof__copy { max-width: 580px; }
.human-proof__h {
  margin-top: 16px;
  font-size: clamp(2rem, 1.4rem + 2.1vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
}
.human-proof__copy p {
  margin-top: 18px;
  color: var(--c-mid);
  line-height: 1.66;
}
.human-proof__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
}
.human-proof__list li {
  position: relative;
  padding-left: 26px;
  color: var(--c-graphite);
  line-height: 1.55;
}
.human-proof__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--c-coral);
  box-shadow: 0 0 0 5px rgba(255,92,70,0.11);
}
.google-review__text { max-width: 48ch; }
body.thryvv-claude-front-page .lead-capture {
  background: var(--c-white);
  padding-block: clamp(54px, 5.4vw, 84px) !important;
}
.lead-capture__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.lead-capture__copy {
  position: sticky;
  top: 110px;
  max-width: 480px;
}
.lead-capture__h {
  margin-top: 16px;
  font-size: clamp(2rem, 1.35rem + 2.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
}
.lead-capture__copy p {
  margin-top: 18px;
  color: var(--c-mid);
  line-height: 1.62;
}
.lead-capture__micro {
  display: inline-flex;
  margin-top: 20px !important;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,92,70,0.1);
  color: var(--c-ink) !important;
  font-family: var(--ff-body);
  font-size: 0.92rem !important;
  font-weight: 650;
  line-height: 1.2 !important;
}
.lead-capture__phone {
  display: inline-flex;
  margin-top: 18px;
  color: var(--c-ink);
  font-weight: 650;
  border-bottom: 1px solid rgba(15,19,22,0.24);
  padding-bottom: 3px;
}
.lead-capture__phone:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }
.lead-capture__form {
  background: rgba(248,243,236,0.72);
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: 30px;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  box-shadow: 0 24px 60px -42px rgba(15,19,22,0.32);
}
.lead-capture__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.lead-capture__fields label {
  display: grid;
  gap: 7px;
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 650;
}
.lead-capture__fields label span { color: var(--c-coral); }
.lead-capture__fields small { color: var(--c-mid); font-weight: 500; }
.lead-capture__fields input,
.lead-capture__fields select,
.lead-capture__fields textarea {
  width: 100%;
  border: 1px solid rgba(15,19,22,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--c-ink);
  font: inherit;
  font-weight: 500;
  padding: 12px 13px;
  outline: none;
}
.lead-capture__fields textarea { resize: vertical; min-height: 92px; }
.lead-capture__fields input:focus,
.lead-capture__fields select:focus,
.lead-capture__fields textarea:focus {
  border-color: rgba(255,92,70,0.78);
  box-shadow: 0 0 0 4px rgba(255,92,70,0.12);
}
.lead-capture__full { grid-column: 1 / -1; }
.lead-capture__form .btn { margin-top: 20px; width: 100%; justify-content: center; }
.lead-capture__notice,
.lead-capture__status {
  margin-top: 13px;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  color: var(--c-mid) !important;
}
.lead-capture__status--ok { color: #235f39 !important; font-weight: 650; }
.lead-capture__status--error { color: #9d2f22 !important; font-weight: 650; }
body.thryvv-claude-front-page .final .final__p {
  max-width: 42ch;
}
@media (max-width: 900px) {
  .human-proof__grid,
  .lead-capture__grid {
    grid-template-columns: 1fr;
  }
  .human-proof__media { order: 2; }
  .human-proof__copy { order: 1; }
  .lead-capture__copy { position: static; max-width: 640px; }
}
@media (max-width: 640px) {
  .human-proof__media { border-radius: 22px; }
  .human-proof__media img { aspect-ratio: 1 / 0.88; object-position: 48% center; }
  .lead-capture__fields { grid-template-columns: 1fr; }
  .lead-capture__form { border-radius: 22px; padding: 1rem; }
}
/* Lead capture polish: improve label contrast and breathing room. */
body.thryvv-claude-front-page .lead-capture__form {
  padding-top: clamp(1.55rem, 3.2vw, 2.35rem) !important;
}
body.thryvv-claude-front-page .lead-capture__fields label {
  color: var(--c-ink) !important;
  opacity: 1 !important;
  line-height: 1.25 !important;
}
body.thryvv-claude-front-page .lead-capture__fields label span {
  display: inline;
  margin-left: 2px;
  color: var(--c-coral) !important;
  font-weight: 800;
}
body.thryvv-claude-front-page .lead-capture__fields input,
body.thryvv-claude-front-page .lead-capture__fields select,
body.thryvv-claude-front-page .lead-capture__fields textarea {
  border-color: rgba(15,19,22,0.2) !important;
}

/* Lead capture label layout: keep required asterisks inline with labels. */
body.thryvv-claude-front-page .lead-capture__fields label {
  display: block !important;
}
body.thryvv-claude-front-page .lead-capture__fields input,
body.thryvv-claude-front-page .lead-capture__fields select,
body.thryvv-claude-front-page .lead-capture__fields textarea {
  display: block;
  margin-top: 7px;
}

/* Lead capture copy merged from final CTA treatment. */
body.thryvv-claude-front-page .lead-capture__brand {
  display: inline-block;
  color: var(--c-coral);
  font-family: var(--ff-body);
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.35rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
body.thryvv-claude-front-page .lead-capture__h em {
  display: block;
  color: var(--c-coral) !important;
  font-style: italic;
}

/* Who We Are video trust section — replaces repeated proof scroller with a calm placeholder + quiet proof row. */
body.thryvv-claude-front-page .advocate-bridge--trust {
  background:
    radial-gradient(circle at 86% 8%, rgba(232, 91, 74, 0.09), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f8efe3 54%, #efe3d3 100%);
  overflow: hidden;
}
body.thryvv-claude-front-page .advocate-bridge__inner--trust {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.86fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-bridge__copy,
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-video-placeholder,
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-trust-point {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
body.thryvv-claude-front-page .advocate-video-placeholder {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
body.thryvv-claude-front-page .advocate-video-placeholder__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: clamp(24px, 3vw, 34px);
  padding: 1px;
  background: linear-gradient(135deg, rgba(15,19,22,0.18), rgba(232,91,74,0.22), rgba(255,255,255,0.65));
  box-shadow: 0 30px 70px rgba(48, 38, 30, 0.15), 0 1px 0 rgba(255,255,255,0.88) inset;
  overflow: hidden;
}
body.thryvv-claude-front-page .advocate-video-placeholder__surface {
  position: absolute;
  inset: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 13px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.62), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(232,91,74,0.13), transparent 34%),
    linear-gradient(135deg, rgba(255,250,242,0.94), rgba(240,229,214,0.86));
  color: var(--c-ink);
}
body.thryvv-claude-front-page .advocate-video-placeholder__surface::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: calc(clamp(24px, 3vw, 34px) - 8px);
  pointer-events: none;
}
body.thryvv-claude-front-page .advocate-video-placeholder__kicker {
  position: relative;
  z-index: 1;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(15,19,22,0.54);
}
body.thryvv-claude-front-page .advocate-video-placeholder__play {
  position: relative;
  z-index: 1;
  width: clamp(56px, 6vw, 72px);
  height: clamp(56px, 6vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 40px rgba(48,38,30,0.14);
}
body.thryvv-claude-front-page .advocate-video-placeholder__play svg {
  width: 100%;
  height: 100%;
  display: block;
}
body.thryvv-claude-front-page .advocate-video-placeholder__play circle {
  fill: rgba(255,255,255,0.72);
  stroke: rgba(15,19,22,0.12);
  stroke-width: 1.2;
}
body.thryvv-claude-front-page .advocate-video-placeholder__play path {
  fill: #e85b4a;
}
body.thryvv-claude-front-page .advocate-video-placeholder strong {
  position: relative;
  z-index: 1;
  font-family: var(--ff-serif);
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--c-ink);
}
body.thryvv-claude-front-page .advocate-video-placeholder p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  color: rgba(15,19,22,0.66);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.48;
}
body.thryvv-claude-front-page .advocate-trust-points {
  width: min(1180px, calc(100% - 40px));
  margin: clamp(34px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
body.thryvv-claude-front-page .advocate-trust-point {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(15,19,22,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.42);
  box-shadow: 0 14px 34px rgba(48,38,30,0.055);
}
body.thryvv-claude-front-page .advocate-trust-point__mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(232,91,74,0.10);
  color: #b74335;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.02em;
}
body.thryvv-claude-front-page .advocate-trust-point h3 {
  margin: 0 0 7px;
  color: var(--c-ink);
  font-family: var(--ff-serif);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 500;
  line-height: 1.15;
}
body.thryvv-claude-front-page .advocate-trust-point p {
  margin: 0;
  color: rgba(15,19,22,0.62);
  font-size: 0.96rem;
  line-height: 1.44;
}
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-proof-loop,
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-proof-strip {
  display: none !important;
}
@media (max-width: 980px) {
  body.thryvv-claude-front-page .advocate-bridge__inner--trust {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  body.thryvv-claude-front-page .advocate-video-placeholder {
    max-width: 680px;
    justify-self: stretch;
  }
  body.thryvv-claude-front-page .advocate-trust-points {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}
@media (max-width: 560px) {
  body.thryvv-claude-front-page .advocate-bridge__inner--trust,
  body.thryvv-claude-front-page .advocate-trust-points {
    width: min(100% - 28px, 1180px);
  }
  body.thryvv-claude-front-page .advocate-video-placeholder__frame {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }
  body.thryvv-claude-front-page .advocate-video-placeholder__surface {
    padding: 26px 22px;
  }
  body.thryvv-claude-front-page .advocate-trust-point {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }
  body.thryvv-claude-front-page .advocate-trust-point__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 0.66rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.thryvv-claude-front-page .advocate-bridge--trust *,
  body.thryvv-claude-front-page .advocate-bridge--trust *::before,
  body.thryvv-claude-front-page .advocate-bridge--trust *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
}


/* Refinement: condense Who We Are copy and rotate one proof point beneath the video only. */
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-bridge__statement {
  max-width: min(100%, 12.8em) !important;
}
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-bridge__statement-red {
  display: inline;
  max-width: none;
}
body.thryvv-claude-front-page .advocate-bridge--trust .advocate-bridge__explain {
  display: none !important;
}
body.thryvv-claude-front-page .advocate-trust-points {
  display: none !important;
}
body.thryvv-claude-front-page .advocate-trust-slider {
  position: relative;
  min-height: 104px;
  margin-top: 16px;
  border: 1px solid rgba(15,19,22,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.42);
  box-shadow: 0 14px 34px rgba(48,38,30,0.055);
  overflow: hidden;
}
body.thryvv-claude-front-page .advocate-trust-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  opacity: 0;
  transform: translateY(10px);
  animation: thryvv-trust-slide 18s ease-in-out infinite;
}
body.thryvv-claude-front-page .advocate-trust-slide--two { animation-delay: 6s; }
body.thryvv-claude-front-page .advocate-trust-slide--three { animation-delay: 12s; }
body.thryvv-claude-front-page .advocate-trust-slide h3 {
  margin: 0 0 5px;
  color: var(--c-ink);
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 1.28vw, 1.24rem);
  font-weight: 500;
  line-height: 1.15;
}
body.thryvv-claude-front-page .advocate-trust-slide p {
  margin: 0;
  color: rgba(15,19,22,0.62);
  font-size: 0.94rem;
  line-height: 1.38;
}
@keyframes thryvv-trust-slide {
  0%, 6% { opacity: 0; transform: translateY(10px); }
  10%, 30% { opacity: 1; transform: translateY(0); }
  36%, 100% { opacity: 0; transform: translateY(-8px); }
}
@media (min-width: 981px) {
  body.thryvv-claude-front-page .advocate-bridge__inner--trust {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr) !important;
    gap: clamp(34px, 5vw, 72px) !important;
  }
}
@media (max-width: 560px) {
  body.thryvv-claude-front-page .advocate-trust-slider {
    min-height: 128px;
    margin-top: 14px;
  }
  body.thryvv-claude-front-page .advocate-trust-slide {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 15px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.thryvv-claude-front-page .advocate-trust-slider {
    min-height: auto;
  }
  body.thryvv-claude-front-page .advocate-trust-slide {
    position: relative;
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  body.thryvv-claude-front-page .advocate-trust-slide:not(:first-child) {
    display: none;
  }
}


/* Refinement: give the Who We Are headline more measure and the single proof slide enough breathing room. */
@media (min-width: 981px) {
  body.thryvv-claude-front-page .advocate-bridge__inner--trust {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr) !important;
    gap: clamp(34px, 4.6vw, 66px) !important;
  }
  body.thryvv-claude-front-page .advocate-bridge--trust .advocate-bridge__statement {
    max-width: min(100%, 15.8em) !important;
    font-size: clamp(2.15rem, 3.05vw, 3.25rem) !important;
  }
}
body.thryvv-claude-front-page .advocate-trust-slider {
  min-height: 128px !important;
}
body.thryvv-claude-front-page .advocate-trust-slide {
  align-items: center !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}
body.thryvv-claude-front-page .advocate-trust-slide p {
  max-width: 42ch;
}
@media (max-width: 560px) {
  body.thryvv-claude-front-page .advocate-trust-slider {
    min-height: 142px !important;
  }
}


/* Who We Are checklist/video prompt adaptation — static shadcn-style card for WordPress. */
body.thryvv-claude-front-page .advocate-bridge--checklist {
  background:
    radial-gradient(circle at 86% 8%, rgba(232, 91, 74, 0.10), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f8efe3 54%, #efe3d3 100%) !important;
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}
body.thryvv-claude-front-page .advocate-checklist-card {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4.2vw, 54px);
  border: 1px solid rgba(15,19,22,0.10);
  border-radius: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 30px 80px rgba(48,38,30,0.11), 0 1px 0 rgba(255,255,255,0.84) inset;
  overflow: hidden;
}
body.thryvv-claude-front-page .advocate-checklist-card__copy,
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder,
body.thryvv-claude-front-page .advocate-proof-checklist li {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-bridge__statement {
  max-width: min(100%, 15.2em) !important;
  font-size: clamp(2.05rem, 2.85vw, 3.08rem) !important;
  margin-bottom: 0;
}
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-bridge__statement-red {
  display: inline;
}
body.thryvv-claude-front-page .advocate-proof-checklist {
  list-style: none;
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
body.thryvv-claude-front-page .advocate-proof-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 14px 14px 14px 0;
}
body.thryvv-claude-front-page .advocate-proof-checklist li:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 39rem;
}
body.thryvv-claude-front-page .advocate-proof-checklist__icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(232,91,74,0.12);
  color: #d95040;
}
body.thryvv-claude-front-page .advocate-proof-checklist__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.thryvv-claude-front-page .advocate-proof-checklist strong {
  display: block;
  color: var(--c-ink);
  font-family: var(--ff-sans);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.22;
}
body.thryvv-claude-front-page .advocate-proof-checklist em {
  display: block;
  margin-top: 4px;
  color: rgba(15,19,22,0.62);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 520;
  line-height: 1.38;
}
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder {
  max-width: 500px;
  justify-self: end;
}
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder__frame {
  aspect-ratio: 16 / 10;
}
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-trust-slider,
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-trust-points,
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-proof-loop,
body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-proof-strip {
  display: none !important;
}
@media (max-width: 980px) {
  body.thryvv-claude-front-page .advocate-checklist-card {
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(24px, 6vw, 38px);
  }
  body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder {
    max-width: 680px;
    justify-self: stretch;
  }
}
@media (max-width: 640px) {
  body.thryvv-claude-front-page .advocate-bridge--checklist {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  body.thryvv-claude-front-page .advocate-checklist-card {
    width: min(100% - 28px, 1180px);
    border-radius: 24px;
  }
  body.thryvv-claude-front-page .advocate-proof-checklist {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  body.thryvv-claude-front-page .advocate-proof-checklist li:nth-child(3) {
    grid-column: auto;
  }
  body.thryvv-claude-front-page .advocate-proof-checklist li {
    padding: 10px 0;
  }
  body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder__frame {
    aspect-ratio: 4 / 3;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.thryvv-claude-front-page .advocate-bridge--checklist *,
  body.thryvv-claude-front-page .advocate-bridge--checklist *::before,
  body.thryvv-claude-front-page .advocate-bridge--checklist *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
}


/* Mobile breathing room for checklist prompt video placeholder text. */
@media (max-width: 640px) {
  body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder__frame {
    aspect-ratio: 1 / 1 !important;
  }
  body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder__surface {
    gap: 10px;
    padding: 28px 22px;
  }
  body.thryvv-claude-front-page .advocate-bridge--checklist .advocate-video-placeholder p {
    font-size: 0.98rem;
    line-height: 1.38;
  }
}


/* Who We Are inline video player prompt adaptation — heading beside clickable overlay thumbnail. */
body.thryvv-claude-front-page .advocate-bridge--video-player {
  background:
    radial-gradient(circle at 86% 8%, rgba(232, 91, 74, 0.10), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f8efe3 54%, #efe3d3 100%) !important;
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
  overflow: hidden;
}
body.thryvv-claude-front-page .advocate-video-player-card {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.84fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding: clamp(24px, 3.2vw, 40px);
  border: 1px solid rgba(15,19,22,0.10);
  border-radius: clamp(24px, 3vw, 34px);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: 0 30px 80px rgba(48,38,30,0.11), 0 1px 0 rgba(255,255,255,0.84) inset;
}
body.thryvv-claude-front-page .advocate-video-player-card__copy,
body.thryvv-claude-front-page .advocate-video-player {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-bridge__statement {
  max-width: min(100%, 15.2em) !important;
  font-size: clamp(1.78rem, 2.35vw, 2.55rem) !important;
  margin-bottom: 0;
}
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-bridge__statement-red {
  display: inline;
}
body.thryvv-claude-front-page .advocate-video-player {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
body.thryvv-claude-front-page .advocate-video-player__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: #fff;
  background: #211b18;
  box-shadow: 0 28px 62px rgba(48,38,30,0.18), 0 1px 0 rgba(255,255,255,0.60) inset;
}
body.thryvv-claude-front-page .advocate-video-player__thumb:focus-visible {
  outline: 3px solid rgba(232,91,74,0.55);
  outline-offset: 4px;
}
body.thryvv-claude-front-page .advocate-video-player__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.26), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(232,91,74,0.34), transparent 35%),
    linear-gradient(135deg, #58443a 0%, #2a211d 58%, #15181a 100%);
  transition: transform 300ms ease;
}
body.thryvv-claude-front-page .advocate-video-player__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,19,22,0.08) 0%, rgba(15,19,22,0.16) 36%, rgba(15,19,22,0.74) 100%);
}
body.thryvv-claude-front-page .advocate-video-player__thumb:hover .advocate-video-player__media,
body.thryvv-claude-front-page .advocate-video-player__thumb:focus-visible .advocate-video-player__media {
  transform: scale(1.04);
}
body.thryvv-claude-front-page .advocate-video-player__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: clamp(62px, 6vw, 78px);
  height: clamp(62px, 6vw, 78px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.19);
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
  transition: transform 300ms ease, background 300ms ease;
}
body.thryvv-claude-front-page .advocate-video-player__play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
  fill: #fff;
}
body.thryvv-claude-front-page .advocate-video-player__thumb:hover .advocate-video-player__play,
body.thryvv-claude-front-page .advocate-video-player__thumb:focus-visible .advocate-video-player__play {
  transform: scale(1.08);
  background: rgba(255,255,255,0.27);
}
body.thryvv-claude-front-page .advocate-video-player__text {
  position: absolute;
  left: clamp(20px, 3vw, 28px);
  right: clamp(20px, 3vw, 28px);
  bottom: clamp(18px, 2.8vw, 26px);
  z-index: 2;
}
body.thryvv-claude-front-page .advocate-video-player__text strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(1.12rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
}
body.thryvv-claude-front-page .advocate-video-player__text em {
  display: block;
  max-width: 36ch;
  margin-top: 7px;
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.42;
  color: rgba(255,255,255,0.80);
}
body.thryvv-claude-front-page .advocate-video-modal[hidden] {
  display: none !important;
}
body.thryvv-claude-front-page .advocate-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
body.thryvv-claude-front-page .advocate-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,19,22,0.82);
  backdrop-filter: blur(10px);
}
body.thryvv-claude-front-page .advocate-video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 22%, rgba(255,255,255,0.18), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(232,91,74,0.30), transparent 35%),
    linear-gradient(135deg, #5c463b 0%, #241d1a 58%, #101316 100%);
  box-shadow: 0 38px 92px rgba(0,0,0,0.38);
}
body.thryvv-claude-front-page .advocate-video-modal__close {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
}
body.thryvv-claude-front-page .advocate-video-modal__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}
body.thryvv-claude-front-page .advocate-video-modal__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 6vw, 72px);
  text-align: center;
  color: #fff;
}
body.thryvv-claude-front-page .advocate-video-modal__play {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
}
body.thryvv-claude-front-page .advocate-video-modal__play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
  fill: #fff;
}
body.thryvv-claude-front-page .advocate-video-modal__placeholder h3 {
  margin: 0;
  color: #fff;
  font-family: var(--ff-serif);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.03;
}
body.thryvv-claude-front-page .advocate-video-modal__placeholder p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.5;
}
body.thryvv-video-modal-open {
  overflow: hidden !important;
}
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-proof-checklist,
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-trust-slider,
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-trust-points,
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-proof-loop,
body.thryvv-claude-front-page .advocate-bridge--video-player .advocate-proof-strip {
  display: none !important;
}
@media (max-width: 980px) {
  body.thryvv-claude-front-page .advocate-video-player-card {
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(24px, 6vw, 38px);
  }
  body.thryvv-claude-front-page .advocate-video-player {
    max-width: 680px;
    justify-self: stretch;
  }
}
@media (max-width: 640px) {
  body.thryvv-claude-front-page .advocate-bridge--video-player {
    padding-top: 38px;
    padding-bottom: 42px;
  }
  body.thryvv-claude-front-page .advocate-video-player-card {
    width: min(100% - 28px, 1180px);
    border-radius: 24px;
  }
  body.thryvv-claude-front-page .advocate-video-player__thumb {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
  body.thryvv-claude-front-page .advocate-video-modal {
    padding: 16px;
  }
  body.thryvv-claude-front-page .advocate-video-modal__panel {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.thryvv-claude-front-page .advocate-bridge--video-player *,
  body.thryvv-claude-front-page .advocate-bridge--video-player *::before,
  body.thryvv-claude-front-page .advocate-bridge--video-player *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }
}


/* Modal contrast hardening for video overlay against global heading/text rules. */
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__placeholder h3,
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__placeholder p {
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__placeholder p {
  color: rgba(255,255,255,0.82) !important;
}
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__close,
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__close svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__play svg {
  fill: #ffffff !important;
}


/* Ensure the video overlay close glyph is visible across browser/SVG quirks. */
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__close::before {
  content: "×";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
}
html body.thryvv-claude-front-page .advocate-video-modal .advocate-video-modal__close svg {
  opacity: 0;
}

/* Restrained proof/evidence section moved below What Happens Next. */
body.thryvv-claude-front-page .proof-evidence {
  background: linear-gradient(180deg, rgba(255,250,242,0.92), rgba(248,243,236,0.74));
  padding-block: clamp(44px, 4.8vw, 72px) !important;
  border-top: 1px solid rgba(15,19,22,0.06);
  border-bottom: 1px solid rgba(15,19,22,0.06);
}
body.thryvv-claude-front-page .proof-evidence__head {
  max-width: 760px;
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: center;
}
body.thryvv-claude-front-page .proof-evidence__h {
  margin: 10px 0 0;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--c-ink);
}
body.thryvv-claude-front-page .proof-evidence__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}
body.thryvv-claude-front-page .proof-evidence__item {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.52);
  box-shadow: 0 18px 48px rgba(48,38,30,0.07), 0 1px 0 rgba(255,255,255,0.72) inset;
}
body.thryvv-claude-front-page .proof-evidence__item h3 {
  margin: 0 0 10px;
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 1.55vw, 1.58rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
body.thryvv-claude-front-page .proof-evidence__item p {
  margin: 0;
  color: var(--c-mid);
  font-size: clamp(0.95rem, 1vw, 1.02rem);
  line-height: 1.55;
}
@media (max-width: 820px) {
  body.thryvv-claude-front-page .proof-evidence {
    padding-block: 42px !important;
  }
  body.thryvv-claude-front-page .proof-evidence__head {
    text-align: left;
    margin-bottom: 18px;
  }
  body.thryvv-claude-front-page .proof-evidence__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  body.thryvv-claude-front-page .proof-evidence__item {
    padding: 18px 20px;
    border-radius: 18px;
  }
}

/* Features-style proof section adaptation (static WordPress version of supplied React prompt). */
body.thryvv-claude-front-page .proof-evidence--features {
  background:
    radial-gradient(circle at 86% 10%, rgba(232,91,74,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,250,242,0.94), rgba(248,243,236,0.78));
  padding-block: clamp(48px, 5vw, 78px) !important;
}
body.thryvv-claude-front-page .proof-evidence--features .proof-evidence__head {
  max-width: 760px;
  margin: 0 auto clamp(26px, 3.4vw, 42px);
  text-align: center;
}
body.thryvv-claude-front-page .proof-features__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
body.thryvv-claude-front-page .proof-features__list {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  min-width: 0;
}
body.thryvv-claude-front-page .proof-feature {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  color: var(--c-ink);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
body.thryvv-claude-front-page .proof-feature.is-active,
body.thryvv-claude-front-page .proof-feature:focus-visible {
  background: rgba(255,255,255,0.68);
  border-color: rgba(15,19,22,0.08);
  box-shadow: 0 20px 54px rgba(48,38,30,0.09), 0 1px 0 rgba(255,255,255,0.76) inset;
  transform: translateZ(0);
}
body.thryvv-claude-front-page .proof-feature:hover {
  background: rgba(255,255,255,0.48);
}
body.thryvv-claude-front-page .proof-feature:focus-visible {
  outline: 3px solid rgba(232,91,74,0.32);
  outline-offset: 3px;
}
body.thryvv-claude-front-page .proof-feature__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(232,91,74,0.10);
  color: var(--c-coral);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
body.thryvv-claude-front-page .proof-feature.is-active .proof-feature__icon {
  background: var(--c-coral);
  color: #fff;
}
body.thryvv-claude-front-page .proof-feature__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: block;
}
body.thryvv-claude-front-page .proof-feature__title {
  display: block;
  margin: 1px 0 7px;
  font-family: var(--ff-serif);
  font-size: clamp(1.16rem, 1.42vw, 1.48rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
body.thryvv-claude-front-page .proof-feature__text {
  display: block;
  max-width: 48ch;
  color: var(--c-mid);
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.52;
}
body.thryvv-claude-front-page .proof-feature__progress {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15,19,22,0.07);
}
body.thryvv-claude-front-page .proof-feature__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(232,91,74,0.62), rgba(141,69,55,0.92));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
body.thryvv-claude-front-page .proof-feature.is-active .proof-feature__progress span {
  transform: scaleX(var(--proof-progress-ratio, 0));
}
body.thryvv-claude-front-page .proof-features__media {
  min-width: 0;
  position: relative;
}
body.thryvv-claude-front-page .proof-feature__panel {
  margin: 0;
  border-radius: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(15,19,22,0.08);
  background: rgba(255,255,255,0.48);
  box-shadow: 0 28px 72px rgba(48,38,30,0.16), 0 1px 0 rgba(255,255,255,0.78) inset;
}
body.thryvv-claude-front-page .proof-feature__panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
body.thryvv-claude-front-page .proof-feature__panel.is-active {
  animation: proofFeatureFade 420ms ease both;
}
@keyframes proofFeatureFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 920px) {
  body.thryvv-claude-front-page .proof-features__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  body.thryvv-claude-front-page .proof-features__media {
    max-width: 680px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  body.thryvv-claude-front-page .proof-evidence--features {
    padding-block: 42px !important;
  }
  body.thryvv-claude-front-page .proof-evidence--features .proof-evidence__head {
    text-align: left;
    margin-bottom: 18px;
  }
  body.thryvv-claude-front-page .proof-features__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 2px 2px 12px;
    margin-inline: -2px;
    scrollbar-width: none;
  }
  body.thryvv-claude-front-page .proof-features__list::-webkit-scrollbar { display: none; }
  body.thryvv-claude-front-page .proof-feature {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: center;
    padding: 16px;
    border-radius: 18px;
  }
  body.thryvv-claude-front-page .proof-feature__icon {
    width: 40px;
    height: 40px;
    font-size: 0.76rem;
  }
  body.thryvv-claude-front-page .proof-feature__panel img {
    aspect-ratio: 4 / 3;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.thryvv-claude-front-page .proof-feature,
  body.thryvv-claude-front-page .proof-feature__panel.is-active {
    animation: none !important;
    transition: none !important;
  }
}

/* Homepage tightening: combined proof/evidence section, with human trust folded in. */
body.thryvv-claude-front-page .proof-evidence {
  background: linear-gradient(180deg, rgba(255,250,242,0.94), rgba(248,243,236,0.76)) !important;
  padding-block: clamp(44px, 4.8vw, 72px) !important;
  border-top: 1px solid rgba(15,19,22,0.06);
  border-bottom: 1px solid rgba(15,19,22,0.06);
}
body.thryvv-claude-front-page .proof-evidence__head {
  max-width: 760px;
  margin: 0 auto clamp(22px, 3vw, 34px) !important;
  text-align: center;
}
body.thryvv-claude-front-page .proof-evidence__intro {
  max-width: 62ch;
  margin: 14px auto 0;
  color: var(--c-mid);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.62;
}
body.thryvv-claude-front-page .proof-evidence__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.8vw, 22px) !important;
}
body.thryvv-claude-front-page .proof-evidence__item {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.54);
  box-shadow: 0 18px 48px rgba(48,38,30,0.07), 0 1px 0 rgba(255,255,255,0.72) inset;
}
body.thryvv-claude-front-page .proof-evidence__closing {
  width: fit-content;
  max-width: 100%;
  margin: clamp(18px, 2vw, 24px) auto 0;
  padding: 10px 16px;
  border: 1px solid rgba(232,91,74,0.18);
  border-radius: 999px;
  color: rgba(15,19,22,0.72);
  background: rgba(255,255,255,0.42);
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
}
body.thryvv-claude-front-page .tile__support {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 2px solid rgba(232,91,74,0.55);
  border-radius: 0 14px 14px 0;
  background: rgba(232,91,74,0.07);
  color: var(--c-mid);
  font-size: 0.94rem;
  line-height: 1.45;
}
body.thryvv-claude-front-page .tile__support strong {
  color: var(--c-ink);
  font-weight: 600;
}
@media (max-width: 820px) {
  body.thryvv-claude-front-page .proof-evidence__head { text-align: left; }
  body.thryvv-claude-front-page .proof-evidence__intro { margin-left: 0; margin-right: 0; }
  body.thryvv-claude-front-page .proof-evidence__grid { grid-template-columns: minmax(0, 1fr) !important; gap: 12px !important; }
  body.thryvv-claude-front-page .proof-evidence__item { padding: 18px 20px; border-radius: 18px; }
  body.thryvv-claude-front-page .proof-evidence__closing { width: auto; border-radius: 18px; text-align: left; }
}
/* Homepage proof feature layout: component-inspired, restrained, no SaaS metric cards. */
body.thryvv-claude-front-page .proof-evidence.proof-evidence--features {
  background:
    radial-gradient(circle at 82% 12%, rgba(232,91,74,0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,250,242,0.96), rgba(248,243,236,0.78)) !important;
  padding-block: clamp(48px, 5vw, 78px) !important;
}
body.thryvv-claude-front-page .proof-evidence--features .proof-evidence__h {
  max-width: 820px;
  margin-inline: auto;
}
body.thryvv-claude-front-page .proof-features__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 4.8vw, 64px);
  align-items: center;
}
body.thryvv-claude-front-page .proof-feature {
  appearance: none;
  border: 1px solid transparent;
}
body.thryvv-claude-front-page .proof-feature__panel[hidden] {
  display: none !important;
}
body.thryvv-claude-front-page .proof-feature__panel {
  margin: 0;
}
body.thryvv-claude-front-page .proof-feature__panel img {
  max-width: 100%;
}
@media (max-width: 920px) {
  body.thryvv-claude-front-page .proof-features__layout { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  body.thryvv-claude-front-page .proof-evidence.proof-evidence--features { padding-block: 42px !important; }
  body.thryvv-claude-front-page .proof-features__list {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  body.thryvv-claude-front-page .proof-feature { width: 100%; flex-basis: auto !important; }
}
@media (prefers-reduced-motion: reduce) {
  body.thryvv-claude-front-page .proof-feature__progress span { width: 0 !important; }
}
body.thryvv-claude-front-page .tile__support { display: none !important; }
/* Homepage SEO link hygiene: keep situation marquee links visually calm. */
body.thryvv-claude-front-page .situation-marquee__list a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
body.thryvv-claude-front-page .situation-marquee__list a:hover,
body.thryvv-claude-front-page .situation-marquee__list a:focus-visible {
  color: var(--c-coral);
}
body.thryvv-claude-front-page .footer__local {
  margin: 10px 0 0;
  max-width: 34ch;
  color: rgba(255,255,255,0.66);
  font-size: 0.94rem;
  line-height: 1.45;
}


/* Shared confidential enquiry form styling — matches approved rounded card reference. */
body.thryvv-claude-front-page .lead-capture__grid {
  display: block !important;
}
body.thryvv-claude-contact-page .contact-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr) !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: start !important;
}
body.thryvv-claude-front-page .lead-capture__copy {
  max-width: 760px !important;
  margin: 0 auto clamp(26px, 4vw, 42px) !important;
  text-align: center !important;
}
body.thryvv-claude-contact-page .expect-card {
  margin: 0 !important;
  max-width: none !important;
}
body.thryvv-claude-front-page .lead-capture__form {
  max-width: 1040px !important;
  margin-inline: auto !important;
}
body.thryvv-claude-contact-page .contact-form {
  max-width: none !important;
  margin-inline: 0 !important;
}
body.thryvv-claude-front-page .lead-capture__form,
body.thryvv-claude-contact-page .contact-form {
  background: #f7f4ee !important;
  border: 1px solid rgba(15,19,22,0.12) !important;
  border-radius: clamp(28px, 4vw, 46px) !important;
  padding: clamp(34px, 5.2vw, 58px) !important;
  box-shadow: 0 26px 70px -48px rgba(15,19,22,0.45) !important;
}
body.thryvv-claude-contact-page .form-heading {
  margin-bottom: clamp(22px, 3vw, 32px) !important;
}
body.thryvv-claude-contact-page .form-heading h2 {
  font-size: clamp(2rem, 2.2vw, 2.8rem) !important;
  line-height: 1.08 !important;
  margin: 10px 0 8px !important;
}
body.thryvv-claude-front-page .lead-capture__fields,
body.thryvv-claude-contact-page .form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: clamp(24px, 3vw, 34px) !important;
  row-gap: 24px !important;
}
body.thryvv-claude-front-page .lead-capture__fields label,
body.thryvv-claude-contact-page .contact-form label {
  display: block !important;
  color: #11171c !important;
  font-family: var(--ff-body, 'Inter Tight', Inter, system-ui, sans-serif) !important;
  font-size: clamp(1.04rem, 0.96rem + 0.3vw, 1.22rem) !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
body.thryvv-claude-front-page .lead-capture__fields label span,
body.thryvv-claude-contact-page .contact-form label span {
  color: #ff5c46 !important;
  font-weight: 900 !important;
  margin-left: 0.2rem !important;
}
body.thryvv-claude-front-page .lead-capture__fields small,
body.thryvv-claude-contact-page .contact-form small {
  color: #55606a !important;
  font-size: 0.82em !important;
  font-weight: 550 !important;
  letter-spacing: -0.015em !important;
}
body.thryvv-claude-front-page .lead-capture__fields input,
body.thryvv-claude-front-page .lead-capture__fields select,
body.thryvv-claude-front-page .lead-capture__fields textarea,
body.thryvv-claude-contact-page .contact-form input,
body.thryvv-claude-contact-page .contact-form select,
body.thryvv-claude-contact-page .contact-form textarea {
  display: block !important;
  width: 100% !important;
  margin-top: 12px !important;
  border: 1px solid rgba(15,19,22,0.16) !important;
  border-radius: 24px !important;
  background: #fff !important;
  color: #11171c !important;
  font-family: var(--ff-body, 'Inter Tight', Inter, system-ui, sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  padding: 18px 20px !important;
  min-height: 64px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72) !important;
  outline: none !important;
}
body.thryvv-claude-front-page .lead-capture__fields select,
body.thryvv-claude-contact-page .contact-form select {
  border-radius: 24px !important;
  min-height: 72px !important;
  font-size: clamp(1.04rem, 0.98rem + 0.26vw, 1.18rem) !important;
  background-color: #fff !important;
}
body.thryvv-claude-front-page .lead-capture__fields textarea,
body.thryvv-claude-contact-page .contact-form textarea {
  border-radius: 24px !important;
  min-height: 154px !important;
  resize: vertical !important;
  background: #fff !important;
}
body.thryvv-claude-front-page .lead-capture__fields input:focus,
body.thryvv-claude-front-page .lead-capture__fields select:focus,
body.thryvv-claude-front-page .lead-capture__fields textarea:focus,
body.thryvv-claude-contact-page .contact-form input:focus,
body.thryvv-claude-contact-page .contact-form select:focus,
body.thryvv-claude-contact-page .contact-form textarea:focus {
  border-color: rgba(255,92,70,0.78) !important;
  box-shadow: 0 0 0 4px rgba(255,92,70,0.12) !important;
}
body.thryvv-claude-front-page .lead-capture__full,
body.thryvv-claude-contact-page .form-grid__full {
  grid-column: 1 / -1 !important;
}
body.thryvv-claude-front-page .lead-capture__form .btn,
body.thryvv-claude-contact-page .contact-form .btn {
  width: 100% !important;
  min-height: 72px !important;
  margin-top: clamp(26px, 3vw, 34px) !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: clamp(1.04rem, 1vw + 0.8rem, 1.25rem) !important;
  box-shadow: 0 20px 34px -22px rgba(255,92,70,0.72) !important;
}
body.thryvv-claude-front-page .lead-capture__notice,
body.thryvv-claude-contact-page .form-notice {
  margin: 24px 0 0 !important;
  color: #303941 !important;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem) !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  letter-spacing: -0.04em !important;
}
body.thryvv-claude-front-page .lead-capture__status,
body.thryvv-claude-contact-page .form-status {
  margin: 14px 0 0 !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
}
@media (max-width: 920px) {
  body.thryvv-claude-contact-page .contact-grid {
    grid-template-columns: 1fr !important;
  }
  body.thryvv-claude-contact-page .expect-card {
    margin-top: clamp(22px, 5vw, 34px) !important;
  }
}
@media (max-width: 720px) {
  body.thryvv-claude-front-page .lead-capture__fields,
  body.thryvv-claude-contact-page .form-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  body.thryvv-claude-front-page .lead-capture__form,
  body.thryvv-claude-contact-page .contact-form {
    border-radius: 24px !important;
    padding: 22px !important;
  }
  body.thryvv-claude-front-page .lead-capture__fields input,
  body.thryvv-claude-front-page .lead-capture__fields select,
  body.thryvv-claude-front-page .lead-capture__fields textarea,
  body.thryvv-claude-contact-page .contact-form input,
  body.thryvv-claude-contact-page .contact-form select,
  body.thryvv-claude-contact-page .contact-form textarea {
    min-height: 58px !important;
    padding: 15px 16px !important;
  }
}


/* Keep form anchors clear of the sticky nav when CTA links jump to them. */
body.thryvv-claude-front-page #home-lead,
body.thryvv-claude-contact-page #contact-form {
  scroll-margin-top: 110px;
}


/* Contact page form uses the compact page scale when paired with the side card. */
body.thryvv-claude-contact-page .contact-form {
  padding: clamp(28px, 3.4vw, 42px) !important;
}
body.thryvv-claude-contact-page .form-heading h2,
body.thryvv-claude-contact-page .expect-card h2 {
  font-size: clamp(1.75rem, 1.45rem + 1vw, 2.15rem) !important;
  line-height: 1.12 !important;
}
body.thryvv-claude-contact-page .form-heading p,
body.thryvv-claude-contact-page .expect-card p,
body.thryvv-claude-contact-page .expect-card span,
body.thryvv-claude-contact-page .form-notice {
  font-size: clamp(0.98rem, 0.94rem + 0.16vw, 1.06rem) !important;
  line-height: 1.48 !important;
  letter-spacing: -0.015em !important;
}
body.thryvv-claude-contact-page .contact-form label {
  font-size: clamp(0.94rem, 0.9rem + 0.12vw, 1rem) !important;
  line-height: 1.22 !important;
  letter-spacing: -0.015em !important;
}
body.thryvv-claude-contact-page .contact-form input,
body.thryvv-claude-contact-page .contact-form select,
body.thryvv-claude-contact-page .contact-form textarea {
  font-size: 1rem !important;
  min-height: 58px !important;
  padding: 15px 18px !important;
}
body.thryvv-claude-contact-page .contact-form select {
  min-height: 62px !important;
  font-size: 1rem !important;
}
body.thryvv-claude-contact-page .contact-form textarea {
  min-height: 132px !important;
}
body.thryvv-claude-contact-page .contact-form .btn {
  min-height: 60px !important;
  font-size: 1rem !important;
  margin-top: 22px !important;
}
/* Final contact-page compact type override after restoring side-by-side layout. */
html body.thryvv-claude-contact-page .form-heading h2,
html body.thryvv-claude-contact-page .expect-card h2 {
  font-size: 32px !important;
  line-height: 1.12 !important;
}
html body.thryvv-claude-contact-page .form-heading p,
html body.thryvv-claude-contact-page .expect-card p,
html body.thryvv-claude-contact-page .expect-card span,
html body.thryvv-claude-contact-page p.form-notice {
  font-size: 16px !important;
  line-height: 1.48 !important;
  letter-spacing: -0.01em !important;
}
html body.thryvv-claude-contact-page .contact-form label {
  font-size: 15px !important;
  line-height: 1.22 !important;
}
html body.thryvv-claude-contact-page .contact-form .btn {
  font-size: 16px !important;
}
@media (max-width:760px) {
  html body.thryvv-claude-contact-page .form-heading h2,
  html body.thryvv-claude-contact-page .expect-card h2 { font-size: 28px !important; }
}

/* Contact hero team background - 20260526 */
.thryvv-contact-page .contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(14, 20, 26, 0.84) 0%, rgba(14, 20, 26, 0.70) 38%, rgba(14, 20, 26, 0.32) 68%, rgba(14, 20, 26, 0.12) 100%),
    url('images/contact-team-hero.jpg');
  background-size: cover;
  background-position: center center;
  border-bottom: 0;
}
.thryvv-contact-page .contact-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
}
.thryvv-contact-page .contact-hero .hero__chip {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}
.thryvv-contact-page .contact-hero .hero__h1,
.thryvv-contact-page .contact-hero .hero__sub {
  max-width: 720px;
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}
.thryvv-contact-page .contact-hero .hero__sub {
  color: rgba(255, 255, 255, 0.84) !important;
}
.thryvv-contact-page .contact-hero .btn--link {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.10);
}
.thryvv-contact-page .contact-hero .btn--link:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (max-width: 760px) {
  .thryvv-contact-page .contact-hero {
    min-height: 100svh;
    align-items: flex-end;
    padding-top: 124px;
    padding-bottom: 56px;
    background-image:
      linear-gradient(180deg, rgba(14, 20, 26, 0.18) 0%, rgba(14, 20, 26, 0.38) 36%, rgba(14, 20, 26, 0.86) 100%),
      url('images/contact-team-hero.jpg');
    background-position: 50% center;
  }
  .thryvv-contact-page .contact-hero .hero__h1,
  .thryvv-contact-page .contact-hero .hero__sub {
    max-width: 100%;
  }
  .thryvv-contact-page .contact-hero .hero__foot {
    align-items: stretch;
  }
}
/* Contact hero text contrast hardening - 20260526 */
html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero .hero__h1,
html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero .hero__sub {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34) !important;
}
html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero .hero__sub {
  color: rgba(255, 255, 255, 0.86) !important;
}
/* Contact hero image top alignment - 20260526 */
html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero {
  background-position: center top !important;
}
@media (max-width: 760px) {
  html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero {
    background-position: 50% top !important;
  }
}
/* Contact hero phone CTA contrast - 20260526 */
html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero .hero__foot .btn--link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.46) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: none !important;
}
html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero .hero__foot .btn--link:hover {
  background: rgba(255, 255, 255, 0.20) !important;
}
@media (max-width: 760px) {
  html body.thryvv-claude-contact-page #thryvv-claude-contact.thryvv-contact-page .contact-hero .hero__foot .btn--link {
    width: 100% !important;
  }
}
/* Homepage enquiry form compact scale — keep the approved cream-card style but stop it dominating the homepage. */
html body.thryvv-claude-front-page .lead-capture__copy {
  max-width: 680px !important;
  margin-bottom: clamp(20px, 3vw, 30px) !important;
}
html body.thryvv-claude-front-page .lead-capture__form {
  max-width: 880px !important;
  border-radius: 30px !important;
  padding: clamp(24px, 3.2vw, 36px) !important;
}
html body.thryvv-claude-front-page .lead-capture__fields {
  column-gap: clamp(18px, 2.4vw, 26px) !important;
  row-gap: 18px !important;
}
html body.thryvv-claude-front-page .lead-capture__fields label {
  font-size: clamp(0.98rem, 0.94rem + 0.14vw, 1.06rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.018em !important;
}
html body.thryvv-claude-front-page .lead-capture__fields input,
html body.thryvv-claude-front-page .lead-capture__fields select,
html body.thryvv-claude-front-page .lead-capture__fields textarea {
  margin-top: 9px !important;
  border-radius: 18px !important;
  min-height: 54px !important;
  padding: 14px 16px !important;
  font-size: 1rem !important;
}
html body.thryvv-claude-front-page .lead-capture__fields select {
  min-height: 58px !important;
  font-size: 1rem !important;
}
html body.thryvv-claude-front-page .lead-capture__fields textarea {
  min-height: 118px !important;
}
html body.thryvv-claude-front-page .lead-capture__form .btn {
  min-height: 58px !important;
  margin-top: 22px !important;
  font-size: 1rem !important;
}
html body.thryvv-claude-front-page .lead-capture__notice {
  margin-top: 16px !important;
  font-size: 1rem !important;
  line-height: 1.45 !important;
  letter-spacing: -0.01em !important;
}
@media (max-width: 720px) {
  html body.thryvv-claude-front-page .lead-capture__form {
    padding: 20px !important;
    border-radius: 22px !important;
  }
}

/* Homepage enquiry form tighter scale - 20260527 Chella screenshot pass. */
html body.thryvv-claude-front-page section.lead-capture {
  padding-block: clamp(42px, 4.2vw, 64px) !important;
}
html body.thryvv-claude-front-page .lead-capture__copy {
  max-width: 620px !important;
  margin-bottom: clamp(16px, 2.4vw, 24px) !important;
}
html body.thryvv-claude-front-page .lead-capture__form {
  max-width: 760px !important;
  padding: clamp(20px, 2.6vw, 30px) !important;
  border-radius: 26px !important;
  box-shadow: 0 20px 54px -44px rgba(15,19,22,0.42) !important;
}
html body.thryvv-claude-front-page .lead-capture__fields {
  column-gap: clamp(14px, 2vw, 20px) !important;
  row-gap: 14px !important;
}
html body.thryvv-claude-front-page .lead-capture__fields label {
  font-size: 15px !important;
  line-height: 1.18 !important;
  letter-spacing: -0.01em !important;
}
html body.thryvv-claude-front-page .lead-capture__fields input,
html body.thryvv-claude-front-page .lead-capture__fields select,
html body.thryvv-claude-front-page .lead-capture__fields textarea {
  margin-top: 7px !important;
  min-height: 48px !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  font-size: 15.5px !important;
  line-height: 1.3 !important;
}
html body.thryvv-claude-front-page .lead-capture__fields select {
  min-height: 50px !important;
  font-size: 15.5px !important;
}
html body.thryvv-claude-front-page .lead-capture__fields textarea {
  min-height: 92px !important;
}
html body.thryvv-claude-front-page .lead-capture__form .btn {
  min-height: 52px !important;
  margin-top: 18px !important;
  font-size: 15.5px !important;
}
html body.thryvv-claude-front-page .lead-capture__notice {
  margin-top: 12px !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}
@media (max-width: 720px) {
  html body.thryvv-claude-front-page section.lead-capture {
    padding-block: 44px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__copy {
    margin-bottom: 18px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__form {
    max-width: 100% !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }
}

/* Homepage enquiry form final compact pass - 20260527. */
@media (min-width: 900px) {
  html body.thryvv-claude-front-page section.lead-capture {
    padding-block: clamp(32px, 3.4vw, 48px) !important;
  }
  html body.thryvv-claude-front-page .lead-capture__brand {
    margin-bottom: 10px !important;
    font-size: 18px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__h {
    margin-top: 8px !important;
    font-size: 30px !important;
    line-height: 1.05 !important;
  }
  html body.thryvv-claude-front-page .lead-capture__copy p {
    margin-top: 14px !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
  }
  html body.thryvv-claude-front-page .lead-capture__phone {
    margin-top: 14px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__copy {
    max-width: 600px !important;
    margin-bottom: 16px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__form {
    max-width: 720px !important;
    padding: 24px 26px !important;
    border-radius: 24px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__fields {
    row-gap: 10px !important;
    column-gap: 16px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__fields label {
    font-size: 14px !important;
    line-height: 1.14 !important;
  }
  html body.thryvv-claude-front-page .lead-capture__fields input,
  html body.thryvv-claude-front-page .lead-capture__fields select,
  html body.thryvv-claude-front-page .lead-capture__fields textarea {
    margin-top: 6px !important;
    min-height: 42px !important;
    padding: 10px 13px !important;
    border-radius: 14px !important;
    font-size: 15px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__fields select {
    min-height: 44px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__fields textarea {
    min-height: 76px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__form .btn {
    min-height: 48px !important;
    margin-top: 14px !important;
    font-size: 15px !important;
  }
  html body.thryvv-claude-front-page .lead-capture__notice {
    margin-top: 10px !important;
    font-size: 14px !important;
  }
}

