/* ============================================================
   Bridge PO Financing — retail suppliers hub
   Page-specific styles. The Bridge global header/footer is
   styled in bridge-brand.css.

   Rules:
   - Sentence case headlines.
   - No em dashes anywhere.
   - No red.
   - One primary CTA label across the site: Request financing.
   - Mobile first.
   ============================================================ */

/* ---------- Brand tokens (page-specific, layered on top of bridge-brand.css) ---------- */
:root {
  --po-blue: #005ff1;
  --po-blue-hover: #0048c7;
  --po-navy-deep: #001b2e;
  --po-grad-hero: linear-gradient(180deg, #001b2e 0%, #002a5c 22%, #003580 44%, #0048b8 68%, #005ff1 88%, #3d8ff8 100%);
  --po-grad-hero-fade: linear-gradient(180deg, #3d8ff8 0%, #6aabfa 35%, #eaf3ff 72%, #ffffff 100%);
  --po-blue-soft: #eaf3ff;
  --po-green: #00fca4;
  --po-navy: #061f30;
  --po-navy-90: rgba(6, 31, 48, 0.9);
  --po-off-white: #f4f2ef;
  --po-light-gray: #eef1f5;
  --po-text: #0e2030;
  --po-muted: #4a5d6e;
  --po-border: rgba(14, 32, 48, 0.1);
  --po-radius-sm: 8px;
  --po-radius-md: 14px;
  --po-radius-lg: 20px;
  --po-radius-xl: 28px;
  --po-radius-pill: 999px;
  --po-shadow-sm: 0 1px 2px rgba(6, 31, 48, 0.06);
  --po-shadow-md: 0 8px 24px rgba(6, 31, 48, 0.08);
  --po-shadow-lg: 0 24px 48px rgba(6, 31, 48, 0.12);
  --po-section-pad-y: clamp(48px, 6vw, 96px);
  --po-container-max: 1240px;
  --po-container-pad: clamp(20px, 4vw, 68px);
}

/* ---------- Reset and base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Mabrypro, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--po-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--po-blue);
  text-decoration: none;
}

a:hover {
  color: var(--po-blue-hover);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.po-container {
  width: 100%;
  max-width: var(--po-container-max);
  margin: 0 auto;
  padding-left: var(--po-container-pad);
  padding-right: var(--po-container-pad);
}

.po-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-blue);
}

.po-eyebrow--on-dark {
  color: var(--po-green);
}

.po-h1,
.po-h2,
.po-h3 {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--po-navy);
}

.po-h1 {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  line-height: 1.05;
}

.po-h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.1;
}

.po-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.po-h1 .accent,
.po-h2 .accent {
  color: var(--po-blue);
}

.po-section-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.po-section-head p {
  color: var(--po-muted);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  margin-top: 16px;
}

/* ---------- Buttons ---------- */
.po-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: var(--po-radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.po-btn:hover {
  transform: translateY(-1px);
}

.po-btn--primary {
  background: var(--po-blue);
  color: #ffffff;
}

.po-btn--primary:hover {
  background: var(--po-blue-hover);
  color: #ffffff;
  box-shadow: var(--po-shadow-md);
}

.po-btn--primary-on-dark {
  background: var(--po-green);
  color: var(--po-navy);
}

.po-btn--primary-on-dark:hover {
  background: #34ffba;
  color: var(--po-navy);
  box-shadow: 0 8px 24px rgba(0, 252, 164, 0.35);
}

.po-btn--white {
  background: #ffffff;
  color: var(--po-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.po-btn--white:hover {
  background: #ffffff;
  color: var(--po-blue-hover);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.po-btn--secondary {
  background: transparent;
  color: var(--po-navy);
  border-color: rgba(14, 32, 48, 0.2);
}

.po-btn--secondary:hover {
  background: rgba(14, 32, 48, 0.04);
  color: var(--po-navy);
}

.po-btn--secondary-on-dark {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.po-btn--secondary-on-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.po-btn--lg {
  min-height: 56px;
  padding: 16px 28px;
  font-size: 16px;
}

.po-btn .arrow {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.po-btn:hover .arrow {
  transform: translateX(2px);
}

.po-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--po-muted);
}

.po-trust-line--on-dark {
  color: rgba(255, 255, 255, 0.75);
}

.po-trust-line .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--po-green);
  flex-shrink: 0;
}

/* ---------- Scroll progress ---------- */
.po-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--po-navy-deep) 0%, var(--po-blue) 100%);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1000;
  pointer-events: none;
}

/* ---------- Floating CTA ---------- */
.po-float-cta {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--po-blue);
  color: #ffffff;
  border-radius: var(--po-radius-pill);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 94, 240, 0.35);
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.15s ease;
}

.po-float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.po-float-cta:hover {
  background: var(--po-blue-hover);
  color: #ffffff;
}

.po-float-cta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* ============================================================
   HERO SHELL + PARTNER HEADER (Walmart × Bridge on gradient)
   ============================================================ */
.po-hero-shell {
  background: var(--po-grad-hero);
  position: relative;
}

.po-header-over-hero:not(.is-scrolled) .bridge-nav-shell {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.po-header-over-hero:not(.is-scrolled) .bridge-nav-link,
.po-header-over-hero:not(.is-scrolled) .bridge-dropdown-trigger,
.po-header-over-hero:not(.is-scrolled) .bridge-signin-link {
  color: #ffffff;
}

.po-header-over-hero:not(.is-scrolled) .bridge-dropdown-trigger svg,
.po-header-over-hero:not(.is-scrolled) .bridge-mobile-menu-button svg {
  color: #ffffff;
}

.po-header-over-hero:not(.is-scrolled) .bridge-signin-link:hover,
.po-header-over-hero:not(.is-scrolled) .bridge-nav-link:hover,
.po-header-over-hero:not(.is-scrolled) .bridge-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 0.88);
}

.po-header-over-hero .bridge-nav-shell {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.po-header-over-hero .bridge-nav-link,
.po-header-over-hero .bridge-dropdown-trigger,
.po-header-over-hero .bridge-signin-link {
  color: rgba(255, 255, 255, 0.92);
}

.po-header-over-hero .bridge-dropdown-trigger svg,
.po-header-over-hero .bridge-mobile-menu-button svg {
  color: rgba(255, 255, 255, 0.92);
}

.po-header-over-hero .bridge-signin-link:hover,
.po-header-over-hero .bridge-nav-link:hover,
.po-header-over-hero .bridge-dropdown-trigger:hover {
  color: #ffffff;
}

.po-header-over-hero .bridge-primary-button {
  background: #ffffff;
  color: var(--po-blue);
}

.po-header-over-hero .bridge-primary-button:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--po-blue-hover);
}

.po-header-partner .bridge-mobile-menu {
  background: var(--po-navy-deep);
}

.po-partner-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}

.po-partner-walmart {
  width: auto;
  height: 26px;
  display: block;
  filter: brightness(0) invert(1);
}

.po-partner-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.po-partner-bridge {
  width: auto;
  height: 22px;
  display: block;
}

.po-header-over-hero.is-scrolled .bridge-nav-shell {
  background: #ffffff;
  border-bottom: 1px solid var(--po-border);
  box-shadow: 0 1px 8px rgba(6, 31, 48, 0.06);
}

.po-header-over-hero.is-scrolled .bridge-nav-link,
.po-header-over-hero.is-scrolled .bridge-dropdown-trigger,
.po-header-over-hero.is-scrolled .bridge-signin-link {
  color: var(--po-navy);
}

.po-header-over-hero.is-scrolled .bridge-dropdown-trigger svg,
.po-header-over-hero.is-scrolled .bridge-mobile-menu-button svg {
  color: var(--po-navy);
}

.po-header-over-hero.is-scrolled .bridge-primary-button {
  background: var(--po-blue);
  color: #ffffff;
}

.po-header-over-hero.is-scrolled .bridge-primary-button:hover {
  background: var(--po-blue-hover);
  color: #ffffff;
}

.po-header-over-hero.is-scrolled .po-partner-walmart {
  filter: none;
}

.po-header-over-hero.is-scrolled .po-partner-bridge {
  filter: brightness(0) saturate(100%) invert(10%) sepia(43%) saturate(1602%) hue-rotate(172deg) brightness(94%) contrast(103%);
}

.po-header-over-hero.is-scrolled .po-partner-divider {
  background: rgba(14, 32, 48, 0.15);
}

.po-hero-logo-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.po-hero-logo-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
  width: max-content;
  animation: po-logo-scroll 36s linear infinite;
  padding: 0 24px;
}

.po-hero-logo-track img {
  flex-shrink: 0;
}

.po-logo-white {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.po-logo-white--native {
  filter: none;
  max-width: 180px;
}

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

@media (prefers-reduced-motion: reduce) {
  .po-hero-logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* ============================================================
   1. HERO — Variation A: gradient centered
   ============================================================ */
.po-hero {
  background: transparent;
  color: #ffffff;
  text-align: center;
  padding: clamp(28px, 4.5vw, 48px) var(--po-container-pad) clamp(24px, 3.5vw, 40px);
}

.po-hero-inner-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.po-hero-inner-wrap > * + * {
  margin-top: 0;
}

.po-hero-inner-wrap .po-hero-title {
  margin-top: 12px;
}

.po-hero-inner-wrap .po-hero-sub {
  margin-top: 14px;
}

.po-hero-inner-wrap .po-hero-walmart-trust {
  margin-top: 14px;
}

.po-hero-inner-wrap .po-hero-cta {
  margin-top: clamp(48px, 6vw, 72px);
}

.po-hero-inner-wrap .po-hero-logo-strip {
  margin-top: clamp(56px, 9vh, 80px);
  padding-top: 4px;
}

.po-hero .po-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.75);
}

.po-hero-title {
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #ffffff;
  font-weight: 500;
}

.po-hero-accent {
  font-style: normal;
  color: var(--po-green);
  text-decoration: none;
  font-weight: 600;
}

.po-hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.po-hero-walmart-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--po-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.po-hero-walmart-trust img {
  flex-shrink: 0;
}

.po-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: center;
}

.po-hero-secondary {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.po-hero-secondary:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.po-hero-proof {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.po-hero-proof-label {
  margin: 0 0 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.po-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

.po-hero-logos img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* ============================================================
   2. WALMART OFFER BANNER
   ============================================================ */
.po-walmart-offer {
  background: var(--po-grad-hero-fade);
  padding: 0 0 clamp(32px, 4vw, 48px);
  margin-top: -1px;
}

.po-walmart-offer .po-container {
  padding-top: clamp(28px, 4vw, 44px);
}

.po-walmart-offer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--po-radius-xl);
  background: linear-gradient(135deg, var(--po-navy-deep) 0%, #003580 50%, var(--po-blue) 100%);
  color: #ffffff;
  box-shadow:
    0 4px 0 rgba(253, 187, 48, 0.45),
    0 28px 64px rgba(0, 27, 46, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
}

.po-walmart-offer-glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(253, 187, 48, 0.35), transparent 68%);
  pointer-events: none;
}

.po-walmart-offer-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
}

.po-walmart-offer-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--po-radius-md);
}

.po-walmart-offer-logos img,
.po-walmart-logo-white {
  height: 26px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.po-walmart-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
}

.po-walmart-offer-title {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #ffffff;
}

.po-walmart-offer-sub {
  margin-top: 10px;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 52ch;
}

.po-walmart-offer-cta {
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.po-walmart-offer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Legacy ribbon (unused) */
.po-walmart-ribbon-wrap {
  padding: 0;
  background: #ffffff;
}

.po-walmart-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 14px 24px;
  margin-top: 20px;
  background: var(--po-blue-soft);
  border: 1px solid rgba(0, 95, 241, 0.15);
  border-radius: var(--po-radius-md);
}

.po-walmart-ribbon-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.po-walmart-ribbon-logos img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.po-walmart-ribbon-copy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--po-navy);
}

.po-walmart-ribbon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--po-navy);
  color: #ffffff;
  border-radius: var(--po-radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.po-walmart-ribbon-tag svg {
  width: 12px;
  height: 12px;
  color: var(--po-green);
}

.po-walmart-ribbon-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--po-blue);
}

.po-walmart-ribbon-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}

.po-walmart-ribbon-cta:hover svg {
  transform: translateX(2px);
}

/* ============================================================
   3. FUNDED PROOF MARQUEE
   ============================================================ */
.po-marquee {
  padding: clamp(32px, 4vw, 48px) 0 0;
  overflow: hidden;
}

.po-marquee-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-muted);
  margin-bottom: 12px;
  padding: 0 var(--po-container-pad);
}

.po-marquee-track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.po-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: po-marquee 48s linear infinite;
}

.po-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 15px;
  color: var(--po-navy);
}

.po-marquee-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.po-marquee-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.po-marquee-logo--product {
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--po-border);
  background: #ffffff;
}

.po-marquee-item .amt {
  font-size: 18px;
  font-weight: 500;
  color: var(--po-blue);
  letter-spacing: -0.01em;
}

.po-marquee-item .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(14, 32, 48, 0.2);
  margin: 0 4px;
}

.po-marquee-divider {
  width: 1px;
  background: var(--po-border);
  align-self: stretch;
  margin: 8px 0;
}

@keyframes po-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .po-marquee-track {
    animation: none;
  }
}

/* ============================================================
   4. STAT BAND
   ============================================================ */
.po-stat-band {
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--po-blue);
  color: #ffffff;
  border-radius: var(--po-radius-xl);
  margin-left: var(--po-container-pad);
  margin-right: var(--po-container-pad);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  background-image: radial-gradient(circle at 90% 10%, rgba(0, 252, 164, 0.18), transparent 50%);
}

.po-stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.po-stat-item .num {
  font-size: clamp(2.5rem, 4.6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.po-stat-item .num .unit {
  font-size: 0.6em;
  color: var(--po-green);
  margin-left: 2px;
}

.po-stat-item .label {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.po-stat-item .label b {
  color: #ffffff;
  font-weight: 500;
}

/* ============================================================
   3b. PROGRAM VIDEO
   ============================================================ */
.po-program-video {
  padding: clamp(40px, 5vw, 64px) 0;
  background: #ffffff;
}

.po-program-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.po-program-video-copy .po-h2 {
  margin-top: 12px;
}

.po-program-video-copy p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--po-muted);
  max-width: 42ch;
}

.po-program-video-actions {
  margin-top: 24px;
}

.po-video-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: var(--po-radius-xl);
  overflow: hidden;
  box-shadow: var(--po-shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.po-video-trigger:hover {
  transform: translateY(-2px);
  box-shadow: var(--po-shadow-lg);
}

.po-video-trigger:focus-visible {
  outline: 2px solid var(--po-blue);
  outline-offset: 3px;
}

.po-video-trigger-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--po-navy-deep);
}

.po-video-trigger-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.po-video-trigger-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.2);
}

.po-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.po-video-play svg {
  width: 64px;
  height: 64px;
  color: #ffffff;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.po-video-trigger-label {
  display: block;
  padding: 16px 20px;
  background: var(--po-navy);
  color: #ffffff;
}

.po-video-trigger-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.po-video-trigger-meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.po-video-modal {
  border: 0;
  padding: 0;
  max-width: min(960px, calc(100vw - 32px));
  width: 100%;
  background: transparent;
  color: inherit;
}

.po-video-modal::backdrop {
  background: rgba(0, 20, 40, 0.82);
  backdrop-filter: blur(4px);
}

.po-video-modal-inner {
  background: var(--po-navy-deep);
  border-radius: var(--po-radius-lg);
  overflow: hidden;
  box-shadow: var(--po-shadow-lg);
}

.po-video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.po-video-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.po-video-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.po-video-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.po-video-modal-close svg {
  width: 18px;
  height: 18px;
}

.po-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

/* ============================================================
   5. DIRECT LENDER PROOF
   ============================================================ */
.po-problem {
  padding: var(--po-section-pad-y) 0;
}

.po-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.po-problem-copy .po-h2 {
  margin-top: 12px;
}

.po-problem-copy .body {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--po-muted);
}

.po-lender-owns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.po-lender-checks {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.po-lender-checks li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--po-navy);
}

.po-check-seal {
  flex-shrink: 0;
  display: block;
  width: 40px;
  height: 40px;
}

.po-lender-own {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: var(--po-off-white);
  border-radius: var(--po-radius-md);
  border: 1px solid var(--po-border);
}

.po-lender-own-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--po-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.po-lender-own-text b {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--po-navy);
}

.po-lender-own-text span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--po-muted);
}

/* Right side: direct lender timeline */
.po-lender-timeline {
  background: var(--po-navy);
  color: #ffffff;
  border-radius: var(--po-radius-xl);
  padding: clamp(28px, 4vw, 36px);
}

.po-lender-timeline-kicker {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.po-lender-timeline-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.po-lender-timeline-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  position: relative;
  padding-bottom: 24px;
}

.po-lender-timeline-step:last-child {
  padding-bottom: 0;
}

.po-lender-timeline-step:not(:last-child) .po-lender-timeline-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: -24px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 95, 241, 0.65), rgba(0, 252, 164, 0.45));
}

.po-lender-timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.po-lender-timeline-marker .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.po-lender-timeline-marker .dot--active {
  background: var(--po-blue);
  border-color: var(--po-green);
  box-shadow: 0 0 0 4px rgba(0, 252, 164, 0.18);
}

.po-lender-timeline-body {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--po-radius-md);
}

.po-lender-timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.po-lender-timeline-phase {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.po-lender-timeline-when {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-green);
}

.po-lender-timeline-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.po-lender-cycle {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.po-lender-cycle-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.po-lender-cycle-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.po-lender-cycle-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.po-lender-cycle-reset {
  color: var(--po-green);
  font-weight: 500;
}

/* Legacy benefit + pocket styles (unused on hub, kept for spokes) */
.po-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.po-benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--po-off-white);
  border-radius: var(--po-radius-md);
}

.po-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--po-blue);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.po-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.po-benefit-text b {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--po-navy);
}

.po-benefit-text span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--po-muted);
}

/* Right side: out-of-pocket compare */
.po-pocket-card {
  background: var(--po-navy);
  color: #ffffff;
  border-radius: var(--po-radius-lg);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 28px;
}

.po-pocket-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: var(--po-radius-md);
}

.po-pocket-row.bad {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.po-pocket-row.good {
  background: rgba(0, 252, 164, 0.1);
  border: 1px solid rgba(0, 252, 164, 0.3);
}

.po-pocket-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.po-pocket-row.good .po-pocket-tag {
  color: var(--po-green);
}

.po-pocket-num {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 8px;
}

.po-pocket-row.good .po-pocket-num {
  color: var(--po-green);
}

.po-pocket-label {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   6. HOW IT WORKS
   ============================================================ */
.po-how {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
}

.po-hiw-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto  clamp(36px, 5vw, 52px);
}

.po-hiw-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--po-navy);
}

.po-hiw-title .accent {
  color: var(--po-blue);
}

.po-hiw-sub {
  margin-top: 14px;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.55;
  color: var(--po-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.po-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.po-hiw-card {
  background: #ffffff;
  border-radius: var(--po-radius-xl);
  padding: 38px 30px 30px;
  border: 1px solid var(--po-border);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.po-hiw-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--po-shadow-md);
}

.po-hiw-eb {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--po-blue);
  font-weight: 500;
  margin-bottom: 14px;
  text-align: center;
}

.po-hiw-card h3 {
  text-align: center;
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--po-navy);
}

.po-hiw-desc {
  text-align: center;
  color: var(--po-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto 24px;
}

.po-hiw-mock {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Mock 1: facility approval */
.po-hiw-mock-form {
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--po-border);
  padding: 14px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
  font-size: 12px;
  text-align: left;
}

.po-hiw-mock-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.po-hiw-mock-form-head h5 {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--po-navy);
  letter-spacing: -0.005em;
}

.po-hiw-pill {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.po-hiw-pill--green {
  color: #00844a;
  background: #e0f8ea;
}

.po-hiw-mock-row {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.po-hiw-mock-field {
  flex: 1;
}

.po-hiw-mock-field--wide {
  flex: 1.3;
}

.po-hiw-mock-field label {
  display: block;
  font-size: 9px;
  color: var(--po-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 500;
}

.po-hiw-mock-field .val {
  background: var(--po-light-gray);
  border: 1px solid var(--po-border);
  border-radius: 4px;
  padding: 5px 7px;
  font-size: 11px;
  color: var(--po-navy);
}

.po-hiw-mock-lbl {
  font-size: 10px;
  color: var(--po-muted);
  text-align: center;
  margin: 6px 0 4px;
}

.po-hiw-mock-live {
  font-size: 14px;
  font-weight: 500;
  color: #00844a;
  padding: 6px 8px;
  background: var(--po-light-gray);
  border: 1px solid var(--po-border);
  border-radius: 4px;
  text-align: center;
}

/* Mock 2: draw */
.po-hiw-draw {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--po-border);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
  text-align: left;
}

.po-hiw-draw-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.po-hiw-draw-eb {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--po-muted);
  font-weight: 500;
  margin-bottom: 3px;
}

.po-hiw-draw-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--po-navy);
  letter-spacing: -0.005em;
}

.po-hiw-draw-status {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--po-blue);
  background: var(--po-blue-soft);
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.po-hiw-draw-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px 28px;
}

.po-hiw-flow-node {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  position: relative;
}

.po-hiw-flow-node--bridge {
  background: var(--po-blue);
}

.po-hiw-flow-node--mfg {
  background: #243340;
}

.po-hiw-flow-label {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--po-muted);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.po-hiw-flow-line {
  flex: 1;
  height: 2px;
  background: var(--po-blue-soft);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.po-hiw-flow-pulse {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--po-blue), transparent);
  animation: po-hiw-pulse-line 1.8s ease infinite;
}

@keyframes po-hiw-pulse-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(220%); }
}

.po-hiw-draw-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #e8f8ee;
  border: 1px solid #a5e5c0;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 500;
  color: #00844a;
}

.po-hiw-draw-confirm svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.po-hiw-watermark {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--po-muted);
  margin-top: 18px;
  justify-content: center;
}

.po-hiw-watermark .mark {
  width: 16px;
  color: var(--po-navy);
}

/* Mock 3: remit */
.po-hiw-funded {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.po-hiw-funded-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--po-navy-deep);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--po-radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.po-hiw-funded-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--po-green);
  animation: po-hiw-pulse-dot 2s ease infinite;
}

@keyframes po-hiw-pulse-dot {
  50% { opacity: 0.45; transform: scale(1.4); }
}

.po-hiw-funded-amt {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--po-blue);
}

.po-hiw-funded-note {
  font-size: 11px;
  color: var(--po-muted);
  text-align: center;
}

.po-hiw-funded-note b {
  color: #00844a;
  font-weight: 500;
}

.po-hiw-funded-bar {
  width: 80%;
  height: 8px;
  background: var(--po-light-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}

.po-hiw-funded-bar > div {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--po-blue), var(--po-green));
  border-radius: 4px;
}

.po-hiw-funded-foot {
  font-size: 10.5px;
  color: var(--po-muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-align: center;
}

.po-hiw-foot {
  text-align: center;
  margin-top: 32px;
}

.po-how-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--po-blue);
}

.po-how-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}

.po-how-link:hover svg {
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .po-hiw-flow-pulse,
  .po-hiw-funded-tag .dot {
    animation: none;
  }
}

@media (max-width: 980px) {
  .po-hiw-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .po-hiw-card {
    padding: 28px 20px 24px;
  }

  .po-hiw-desc {
    max-width: none;
  }
}

/* ============================================================
   7. COST CALCULATOR
   ============================================================ */
.po-calc {
  padding: var(--po-section-pad-y) 0;
}

.po-calc-embed {
  border-radius: var(--po-radius-xl);
  overflow: hidden;
  box-shadow: var(--po-shadow-lg);
  border: 1px solid var(--po-border);
  background: #ffffff;
}

.po-calc-embed iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 720px;
}

/* ============================================================
   8. FUNDING STORIES + LOGO WALL
   ============================================================ */
/* ============================================================
   8. TESTIMONIALS + CASE STUDIES
   ============================================================ */
.po-testimonials {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
  overflow: hidden;
}

.po-testimonials-head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.po-testimonials-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--po-navy);
}

.po-testimonials-sub {
  margin-top: 12px;
  font-size: 16px;
  color: var(--po-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.po-testimonial-scroller {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.po-testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}

.po-testimonial-track::-webkit-scrollbar {
  display: none;
}

.po-testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--po-border);
  background: #ffffff;
  color: var(--po-navy);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.po-testimonial-nav:hover {
  background: var(--po-blue-soft);
  border-color: rgba(0, 95, 241, 0.25);
}

.po-testimonial-nav svg {
  width: 18px;
  height: 18px;
}

.po-testimonial-card {
  position: relative;
  flex: 0 0 min(420px, 82vw);
  min-height: 520px;
  border-radius: var(--po-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  text-align: center;
  padding: 32px 28px 36px;
  color: #ffffff;
  text-decoration: none;
  scroll-snap-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.po-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--po-shadow-lg);
  color: #ffffff;
}

.po-testimonial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.po-testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 40, 0.35) 0%, rgba(0, 12, 28, 0.72) 45%, rgba(0, 8, 20, 0.88) 100%);
  z-index: 1;
}

.po-testimonial-badge,
.po-testimonial-quote,
.po-testimonial-outcome,
.po-testimonial-cite {
  position: relative;
  z-index: 2;
}

.po-testimonial-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--po-navy);
  border-radius: var(--po-radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 90%;
  justify-self: center;
  align-self: start;
}

.po-testimonial-quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 34ch;
  justify-self: center;
  align-self: center;
}

.po-testimonial-quote::before {
  content: "\201C";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.92;
}

.po-testimonial-outcome {
  margin: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 34ch;
  justify-self: center;
  align-self: center;
}

.po-testimonial-cite {
  margin-top: 0;
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  justify-self: center;
  align-self: end;
}

.po-stories {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
}

.po-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.po-story {
  background: #ffffff;
  border-radius: var(--po-radius-lg);
  padding: 28px;
  border: 1px solid var(--po-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--po-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.po-story--visual {
  padding: 0;
  gap: 0;
}

.po-story-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--po-light-gray);
}

.po-story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.po-story--visual:hover .po-story-photo {
  transform: scale(1.03);
}

.po-story-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 28px 28px;
  flex: 1;
}

.po-story:hover {
  transform: translateY(-3px);
  box-shadow: var(--po-shadow-md);
  border-color: rgba(0, 94, 240, 0.25);
  color: var(--po-navy);
}

.po-story-eb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--po-muted);
}

.po-story-amt {
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--po-blue);
  line-height: 1;
}

.po-story-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--po-navy);
}

.po-story-line {
  font-size: 14px;
  line-height: 1.5;
  color: var(--po-muted);
  flex: 1;
}

.po-story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--po-blue);
  margin-top: 4px;
}

.po-story-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s ease;
}

.po-story:hover .po-story-link svg {
  transform: translateX(2px);
}

.po-logo-wall {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--po-border);
}

.po-logo-wall-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-muted);
  margin-bottom: 24px;
}

.po-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 48px;
}

.po-logo-img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.po-logo-img:hover {
  opacity: 1;
  filter: none;
}

.po-logo-img--product {
  height: 40px;
  border-radius: 6px;
  filter: none;
  opacity: 1;
}

.po-logo-placeholder {
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--po-navy);
}

.po-stories-link-row {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   9. COMPARE, CONDENSED
   ============================================================ */
.po-compare {
  padding: var(--po-section-pad-y) 0;
}

.po-compare-card {
  background: var(--po-navy);
  color: #ffffff;
  border-radius: var(--po-radius-xl);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}

.po-compare-card h2 {
  color: #ffffff;
}

.po-compare-card h2 .accent {
  color: var(--po-green);
}

.po-compare-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.po-compare-links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.po-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--po-green);
}

.po-compare-link svg {
  width: 14px;
  height: 14px;
}

.po-compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.po-compare-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--po-radius-md);
}

.po-compare-row.good {
  background: rgba(0, 252, 164, 0.08);
  border-color: rgba(0, 252, 164, 0.3);
}

.po-compare-row .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.po-compare-row.good .label {
  color: var(--po-green);
}

.po-compare-row .name {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-top: 4px;
}

.po-compare-row .arrow-sep {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 14px;
}

.po-compare-row .vs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.po-compare-row.good .vs {
  color: #ffffff;
  font-weight: 500;
}

/* ============================================================
   10. QUALIFY SNAPSHOT
   ============================================================ */
.po-qualify {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
}

.po-qualify-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.po-qualify-head p {
  margin-top: 14px;
  color: var(--po-muted);
  font-size: 16px;
}

.po-qualify-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}

.po-qualify-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-pill);
  font-size: 14px;
  color: var(--po-navy);
}

.po-qualify-chip svg {
  width: 14px;
  height: 14px;
  color: var(--po-blue);
}

.po-qualify-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--po-muted);
}

.po-qualify-cta {
  text-align: center;
  margin-top: 28px;
}

/* ============================================================
   11. TOP FAQ
   ============================================================ */
.po-faq {
  padding: var(--po-section-pad-y) 0;
}

.po-faq .po-section-head {
  max-width: none;
}

.po-faq .po-section-head .po-h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.5rem);
}

@media (min-width: 768px) {
  .po-faq .po-section-head .po-h2 {
    white-space: nowrap;
  }
}

.po-faq-list {
  max-width: 880px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.po-faq-item {
  background: var(--po-off-white);
  border-radius: var(--po-radius-md);
  overflow: hidden;
  transition: background-color 0.15s ease;
}

.po-faq-item[open] {
  background: #ffffff;
  border: 1px solid var(--po-border);
}

.po-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--po-navy);
  list-style: none;
  user-select: none;
}

.po-faq-item summary::-webkit-details-marker {
  display: none;
}

.po-faq-item summary svg {
  width: 18px;
  height: 18px;
  color: var(--po-blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.po-faq-item[open] summary svg {
  transform: rotate(45deg);
}

.po-faq-body {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--po-muted);
}

/* ============================================================
   12. FINAL CTA BAND
   ============================================================ */
.po-final-cta-wrap {
  padding: 0 var(--po-container-pad) clamp(40px, 5vw, 64px);
}

.po-final-cta {
  color: #ffffff;
  border-radius: var(--po-radius-xl);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  text-align: center;
  box-shadow:
    0 28px 64px rgba(0, 27, 46, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background-color: var(--po-navy-deep);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1), transparent 52%),
    linear-gradient(135deg, var(--po-navy-deep) 0%, #003580 52%, #0048b8 100%);
}

.po-final-cta .eb {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--po-green);
}

.po-final-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-top: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.po-final-cta p {
  margin: 16px auto 0;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.po-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.po-final-cta-meta {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .po-problem-grid {
    grid-template-columns: 1fr;
  }

  .po-program-video-grid {
    grid-template-columns: 1fr;
  }

  .po-story-grid {
    grid-template-columns: 1fr;
  }

  .po-compare-card {
    grid-template-columns: 1fr;
  }

  .po-stat-band-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .po-hero {
    padding: 48px 20px 40px;
  }

  .po-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .po-hero-cta .po-btn {
    width: 100%;
  }

  .po-hero-logos {
    gap: 20px 28px;
  }

  .po-hero-logos img {
    height: 22px;
  }

  .po-hero-walmart-trust {
    font-size: 13px;
    padding: 8px 12px;
    max-width: 100%;
  }

  .po-partner-lockup {
    gap: 10px;
  }

  .po-partner-walmart {
    height: 20px;
  }

  .po-partner-bridge {
    height: 18px;
  }

  .po-partner-divider {
    height: 22px;
  }

  .po-marquee-logo {
    width: 28px;
    height: 28px;
  }

  .po-marquee-item {
    padding: 12px 20px;
    font-size: 14px;
  }

  .po-logo-img {
    height: 28px;
    max-width: 100px;
  }

  .po-stat-band {
    margin-left: 16px;
    margin-right: 16px;
    border-radius: var(--po-radius-lg);
  }

  .po-stat-band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .po-walmart-offer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .po-walmart-offer-logos {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .po-walmart-offer-sub {
    max-width: none;
  }

  .po-walmart-offer-cta {
    width: 100%;
    justify-content: center;
  }

  .po-testimonial-scroller {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .po-testimonial-nav {
    display: none;
  }

  .po-testimonial-card {
    flex: 0 0 min(340px, 88vw);
    min-height: 480px;
  }

  .po-hero-logo-track .po-logo-white {
    height: 26px;
  }

  .po-walmart-ribbon {
    flex-direction: column;
    align-items: flex-start;
  }

  .po-compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .po-compare-row .arrow-sep {
    display: none;
  }

  .po-compare-row .vs {
    text-align: left;
  }

  .po-final-cta {
    border-radius: var(--po-radius-lg);
    padding: 40px 22px;
  }

  .po-final-cta-actions {
    flex-direction: column;
  }

  .po-final-cta-actions .po-btn {
    width: 100%;
  }

  .po-float-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }
}

/* ============================================================
   SPOKE: /how-it-works
   ============================================================ */
.po-header-solid .po-partner-walmart {
  filter: none;
}

.po-header-solid .po-partner-bridge {
  filter: brightness(0) saturate(100%) invert(10%) sepia(43%) saturate(1602%) hue-rotate(172deg) brightness(94%) contrast(103%);
}

.po-header-solid .po-partner-divider {
  background: rgba(14, 32, 48, 0.15);
}

.po-header-solid .bridge-nav-link[aria-current="page"] {
  color: var(--po-blue);
}

.po-page-hiw .po-hiw-card {
  min-height: 0;
}

.po-page-hiw .po-hiw-mock {
  margin-top: auto;
}

.po-hiw-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, var(--po-off-white) 0%, #ffffff 100%);
}

.po-hiw-hero-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 40px);
}

.po-hiw-hero-head .po-h1 {
  margin-top: 0;
}

.po-hiw-hero-title {
  font-weight: 600;
  letter-spacing: -0.03em;
}

.po-hiw-hero-title-line {
  display: block;
}

.po-hiw-hero-title-line + .po-hiw-hero-title-line {
  margin-top: 0.12em;
}

.po-hiw-hero-accent {
  color: var(--po-blue);
  font-weight: 700;
}

.po-hiw-hero-line {
  margin-top: clamp(16px, 2.5vw, 22px);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.6;
  color: var(--po-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.po-hiw-hero-sub {
  margin-top: 8px;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.55;
  color: var(--po-navy);
  font-weight: 500;
}

.po-hiw-hero-video {
  max-width: 960px;
  margin: 0 auto;
}

.po-video-trigger--hiw-hero {
  width: 100%;
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-xl);
  box-shadow: var(--po-shadow-md);
}

.po-video-trigger--hiw-hero:hover {
  box-shadow: var(--po-shadow-lg);
}

.po-hiw-hero-cta {
  text-align: center;
  margin-top: clamp(24px, 3vw, 32px);
}

.po-hiw-hero-cta .po-btn {
  margin-left: auto;
  margin-right: auto;
}

.po-how {
  padding-top: clamp(32px, 4vw, 48px);
}

.po-hiw-steps-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(32px, 4vw, 44px);
}

.po-hiw-steps-title {
  font-weight: 700;
  letter-spacing: -0.025em;
}

.po-hiw-steps-accent {
  color: var(--po-blue);
}

.po-hiw-steps-cta {
  text-align: center;
  margin-top: clamp(36px, 4vw, 48px);
}

.po-hiw-cycle {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
}

.po-hiw-cycle-head {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto clamp(36px, 5vw, 52px);
}

.po-hiw-cycle-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--po-blue);
}

.po-hiw-cycle-head .po-h2 {
  margin-top: 12px;
}

.po-hiw-cycle-title {
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.po-hiw-cycle-lead {
  margin: 16px auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(6, 31, 48, 0.62);
}

.po-hiw-cycle-chart {
  max-width: 1080px;
  margin: 0 auto;
}

.po-hiw-cycle-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 24px;
  align-items: center;
}

.po-hiw-cycle-row + .po-hiw-cycle-row {
  margin-top: 20px;
}

.po-hiw-cycle-row--milestones {
  margin-bottom: 6px;
}

.po-hiw-cycle-row--bracket {
  margin-top: 12px;
}

.po-hiw-cycle-gutter {
  min-width: 0;
}

.po-hiw-cycle-track-col {
  min-width: 0;
}

.po-hiw-cycle-lender-name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(6, 31, 48, 0.72);
}

.po-hiw-cycle-lender-name--primary {
  color: var(--po-navy);
  font-weight: 600;
  font-size: 17px;
}

.po-hiw-cycle-lender-desc {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(6, 31, 48, 0.62);
}

.po-hiw-cycle-milestones {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
  min-height: 62px;
}

.po-hiw-cycle-milestone {
  position: absolute;
  top: 0;
  left: var(--pos);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: max-content;
  max-width: min(120px, 20vw);
}

.po-hiw-cycle-milestone-t {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--po-navy);
}

.po-hiw-cycle-milestone-name {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(6, 31, 48, 0.72);
}

.po-hiw-cycle-milestone-tick {
  display: block;
  width: 1px;
  height: 10px;
  margin-top: 8px;
  background: rgba(6, 31, 48, 0.28);
}

.po-hiw-cycle-track {
  position: relative;
  height: 52px;
  border-radius: 9px;
  overflow: hidden;
}

.po-hiw-cycle-track-wait {
  position: absolute;
  inset: 0;
  background-color: #f4f2ef;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(6, 31, 48, 0.04) 0,
    rgba(6, 31, 48, 0.04) 6px,
    rgba(6, 31, 48, 0.09) 6px,
    rgba(6, 31, 48, 0.09) 12px
  );
}

.po-hiw-cycle-track-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--start);
  width: calc(var(--end) - var(--start));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.po-hiw-cycle-track-fill--bridge {
  background: #005ef0;
}

.po-hiw-cycle-track-fill--alt {
  background: rgba(6, 31, 48, 0.32);
}

.po-hiw-cycle-entry {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.po-hiw-cycle-entry--bridge {
  background: #00fca4;
  box-shadow: 0 0 0 3px #005ef0;
}

.po-hiw-cycle-entry--alt {
  background: rgba(6, 31, 48, 0.5);
  box-shadow: 0 0 0 2px #ffffff;
}

.po-hiw-cycle-fill-label {
  font-size: clamp(0.8125rem, 1.15vw, 0.9375rem);
  line-height: 1.35;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.po-hiw-cycle-track-bank {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--start);
  width: calc(var(--end) - var(--start));
  border: 1.5px dashed rgba(6, 31, 48, 0.28);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.45);
}

.po-hiw-cycle-bank-label {
  font-size: clamp(0.8125rem, 1.15vw, 0.9375rem);
  line-height: 1.35;
  font-weight: 500;
  color: rgba(6, 31, 48, 0.75);
  text-align: center;
}

.po-hiw-cycle-bracket {
  position: relative;
  height: 40px;
}

.po-hiw-cycle-bracket-shape {
  position: absolute;
  left: var(--start);
  width: calc(var(--end) - var(--start));
  top: 0;
  height: 10px;
  border-left: 2px solid var(--po-blue);
  border-right: 2px solid var(--po-blue);
  border-bottom: 2px solid var(--po-blue);
}

.po-hiw-cycle-bracket-label {
  position: absolute;
  left: var(--start);
  width: calc(var(--end) - var(--start));
  top: 14px;
  margin: 0;
  text-align: center;
  font-size: clamp(0.875rem, 1.15vw, 1rem);
  line-height: 1.35;
  color: var(--po-blue);
  font-weight: 600;
}

@media (max-width: 860px) {
  .po-hiw-cycle-title {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .po-hiw-cycle-fill-label,
  .po-hiw-cycle-bank-label {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .po-hiw-cycle-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .po-hiw-cycle-row--milestones .po-hiw-cycle-gutter,
  .po-hiw-cycle-row--bracket .po-hiw-cycle-gutter {
    display: none;
  }

  .po-hiw-cycle-milestone--collapse {
    display: none;
  }

  .po-hiw-cycle-fill-label,
  .po-hiw-cycle-bank-label {
    font-size: 0.8125rem;
  }
}

.po-hiw-start {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
}

.po-hiw-start-head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 36px);
}

.po-hiw-start-head .po-h2 {
  margin-top: 12px;
}

.po-hiw-start-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.po-hiw-start-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: var(--po-radius-md);
  border: 1px solid var(--po-border);
  font-size: 16px;
  font-weight: 500;
  color: var(--po-navy);
}

.po-hiw-start-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--po-blue);
}

.po-hiw-nocatch {
  padding: clamp(40px, 5vw, 56px) 0;
  background: var(--po-off-white);
}

.po-hiw-nocatch-list {
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px clamp(20px, 4vw, 40px);
}

.po-hiw-nocatch-cta {
  text-align: center;
  margin-top: 32px;
}

.po-wins-proof {
  padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
  background: var(--po-navy-deep);
  color: #ffffff;
  overflow: hidden;
}

.po-wins-proof-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: 0 var(--po-container-pad);
}

.po-wins-proof-title {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.125rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.po-wins-proof-title-line {
  display: block;
}

.po-wins-proof-title-line--sub {
  margin-top: 0.22em;
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
}

.po-wins-proof-accent {
  color: var(--po-green);
  font-weight: 700;
}

.po-wins-proof-sub {
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.po-wins-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.po-wins-marquee-track {
  display: flex;
  width: max-content;
  animation: po-wins-marquee 52s linear infinite;
}

.po-wins-marquee-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
}

.po-wins-card {
  flex: 0 0 auto;
  display: block;
  height: clamp(260px, 32vw, 340px);
  width: auto;
  border-radius: var(--po-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

@keyframes po-wins-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .po-wins-marquee-track {
    animation: none;
  }

  .po-wins-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
    padding: 0 var(--po-container-pad);
  }

  .po-wins-marquee-track {
    padding-bottom: 8px;
  }
}

.po-hiw-walmart {
  padding: clamp(40px, 5vw, 56px) 0;
  background: var(--po-off-white);
}

.po-hiw-walmart .po-walmart-offer-card {
  transform: none;
  background: linear-gradient(135deg, #3d8ff8 0%, var(--po-blue) 42%, #0048b8 100%);
  box-shadow:
    0 4px 0 rgba(253, 187, 48, 0.45),
    0 20px 48px rgba(0, 95, 241, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.po-hiw-walmart .po-walmart-offer-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
}

.po-page-hiw .bridge-disclaimer {
  background: var(--po-off-white);
  padding: clamp(12px, 2vw, 20px) 0 clamp(20px, 3vw, 28px);
}

.po-page-hiw .bridge-disclaimer-text {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--po-container-pad);
  text-align: center;
  font-size: clamp(11px, 0.82vw, 12px);
  line-height: 1.65;
  color: rgba(6, 31, 48, 0.62);
}

.po-page-hiw .bridge-disclaimer-line {
  display: block;
}

@media (min-width: 1024px) {
  .po-page-hiw .bridge-disclaimer-line {
    white-space: nowrap;
  }
}

.po-page-hiw .bridge-footer {
  margin-top: 0;
  border-radius: 0;
}

.po-hiw-cost-door {
  padding: clamp(32px, 4vw, 48px) 0;
  background: #ffffff;
  border-top: 1px solid var(--po-border);
}

.po-hiw-cost-line {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--po-muted);
}

.po-hiw-cost-line a {
  font-weight: 500;
  white-space: nowrap;
}

.po-page-hiw .po-final-cta .po-h2 {
  color: #ffffff;
}

@media (max-width: 980px) {
  .po-hiw-nocatch-list {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================================
   WHY NOT CASH OR EQUITY (/equity-math) — warm editorial
   ============================================================ */
.po-page-equity {
  background: #ffffff;
  color: var(--po-text);
  --ex-cash-bg: #e8f2ff;
  --ex-cash-border: rgba(0, 94, 240, 0.2);
  --ex-equity-bg: #e4eaef;
  --ex-equity-border: rgba(6, 31, 48, 0.14);
  --ex-match-bg: #dffef3;
  --ex-match-border: rgba(0, 200, 140, 0.35);
}

.po-header-warm .bridge-nav-shell {
  background: var(--po-off-white);
  border-bottom: 1px solid var(--po-border);
}

.po-header-warm .bridge-nav-link,
.po-header-warm .bridge-dropdown-trigger,
.po-header-warm .bridge-signin-link {
  color: var(--po-navy);
}

.po-header-warm .bridge-dropdown-trigger svg,
.po-header-warm .bridge-mobile-menu-button svg {
  color: var(--po-navy);
}

.po-header-warm .po-partner-walmart {
  filter: none;
  opacity: 1;
}

.po-header-warm .po-partner-bridge {
  filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1200%) hue-rotate(169deg) brightness(95%);
  opacity: 1;
}

.po-header-warm .po-partner-divider {
  background: var(--po-border);
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-nav-shell,
.po-header-warm.po-header-over-hero .bridge-nav-shell {
  background: var(--po-off-white);
  border-bottom: 1px solid var(--po-border);
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-nav-link,
.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-dropdown-trigger,
.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-signin-link,
.po-header-warm.po-header-over-hero .bridge-nav-link,
.po-header-warm.po-header-over-hero .bridge-dropdown-trigger,
.po-header-warm.po-header-over-hero .bridge-signin-link {
  color: var(--po-navy);
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-dropdown-trigger svg,
.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-mobile-menu-button svg,
.po-header-warm.po-header-over-hero .bridge-dropdown-trigger svg,
.po-header-warm.po-header-over-hero .bridge-mobile-menu-button svg {
  color: var(--po-navy);
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-primary-button,
.po-header-warm.po-header-over-hero .bridge-primary-button {
  background: var(--po-blue);
  color: #ffffff;
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-primary-button:hover,
.po-header-warm.po-header-over-hero .bridge-primary-button:hover {
  background: var(--po-blue-hover);
  color: #ffffff;
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .po-partner-walmart,
.po-header-warm.po-header-over-hero .po-partner-walmart {
  filter: none;
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .po-partner-bridge,
.po-header-warm.po-header-over-hero .po-partner-bridge {
  filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1200%) hue-rotate(169deg) brightness(95%);
}

.po-header-warm.po-header-over-hero:not(.is-scrolled) .po-partner-divider,
.po-header-warm.po-header-over-hero .po-partner-divider {
  background: var(--po-border);
}

/* ---------- Equity page: scannable scenario blocks ---------- */
.po-ex-rail {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.po-equity-hero-shell {
  padding-bottom: clamp(56px, 9vw, 112px);
  overflow: hidden;
}

.po-equity-hero-shell--cream {
  position: relative;
  background: linear-gradient(180deg, var(--po-off-white) 0%, #ffffff 100%);
  padding-bottom: clamp(40px, 6vw, 72px);
}

.po-equity-hero-shell::before {
  content: "";
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  top: -12%;
  left: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 252, 164, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.po-equity-hero-shell--cream::before {
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 94, 240, 0.07) 0%, transparent 68%);
}

.po-equity-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
  pointer-events: none;
}

.po-equity-hero-shell--cream::after {
  display: none;
}

.po-ex-section {
  padding: clamp(96px, 12vw, 152px) 0;
}

.po-page-equity .po-equity-paths-section {
  padding-top: clamp(112px, 14vw, 168px);
}

.po-ex-section--white {
  background: #ffffff;
}

.po-ex-section--cream {
  background: var(--po-off-white);
}

.po-ex-section--cta {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background: var(--po-off-white);
}

.po-ex-section-head {
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}

.po-ex-section-head--center {
  max-width: 720px;
}

.po-ex-section-head--center .po-ex-section-lead {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.po-ex-section-head .po-h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--po-navy);
}

.po-ex-scenario-grid {
  display: grid;
  gap: 28px;
}

.po-ex-scenario-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.po-ex-scenario-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.po-ex-scenario-grid--spaced {
  gap: 36px;
}

.po-ex-scenario {
  position: relative;
  border-radius: var(--po-radius-xl);
  padding: clamp(28px, 3.5vw, 40px);
  background: #ffffff;
  border: 1px solid rgba(6, 31, 48, 0.08);
  box-shadow:
    0 20px 56px rgba(6, 31, 48, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.po-ex-scenario::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
}

.po-ex-scenario--cash::before {
  background: var(--po-blue);
}

.po-ex-scenario--equity::before {
  background: var(--po-navy);
}

.po-ex-scenario--match::before {
  background: var(--po-green);
}

.po-ex-scenario--large {
  padding: clamp(32px, 4vw, 48px);
}

.po-ex-scenario-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--po-off-white);
  color: var(--po-navy);
}

.po-ex-scenario--cash .po-ex-scenario-tag {
  color: var(--po-blue);
}

.po-ex-scenario--match .po-ex-scenario-tag {
  color: #007a52;
}

.po-ex-scenario-title {
  margin: 18px 0 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--po-navy);
}

.po-ex-scenario-hook {
  margin: 14px 0 0;
  font-size: clamp(1.125rem, 1.8vw, 1.3125rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--po-blue);
}

.po-ex-scenario--equity .po-ex-scenario-hook {
  color: var(--po-navy);
}

.po-ex-scenario--match .po-ex-scenario-hook {
  color: #007a52;
}

.po-ex-scenario-body {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--po-muted);
  max-width: 48ch;
}

.po-ex-scenario-subhead {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-navy);
}

.po-ex-scenario-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.po-ex-scenario-list li {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--po-navy);
  border-bottom: 1px solid rgba(6, 31, 48, 0.08);
}

.po-ex-scenario-list li:last-child {
  border-bottom: 0;
}

.po-ex-scenario-action {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.po-ex-scenario-action a,
a.po-ex-scenario-action {
  color: var(--po-blue);
  text-decoration: none;
}

.po-ex-scenario-action a:hover,
a.po-ex-scenario-action:hover {
  text-decoration: underline;
}

.po-ex-calc-results {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.po-ex-calc-result {
  border-radius: var(--po-radius-lg);
  padding: 24px;
  background: var(--po-off-white);
  border: 1px solid var(--po-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.po-ex-calc-result--equity {
  border-top: 4px solid var(--po-navy);
}

.po-ex-calc-result--cash {
  border-top: 4px solid var(--po-blue);
}

.po-ex-calc-result-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--po-navy);
}

.po-ex-calc-result-num {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--po-navy);
}

.po-ex-calc-result--equity .po-ex-calc-result-num {
  color: var(--po-blue);
}

.po-ex-calc-result-note {
  font-size: 13px;
  line-height: 1.45;
  color: var(--po-muted);
}

.po-ex-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.po-ex-close-unified {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.po-ex-close-unified-main {
  padding: clamp(32px, 4vw, 48px);
}

.po-equity-close-quote--unified {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px 24px;
  align-items: start;
  margin: 0;
  padding: clamp(28px, 3.5vw, 40px) clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(6, 31, 48, 0.08);
  background: linear-gradient(180deg, rgba(244, 242, 239, 0.35) 0%, rgba(244, 242, 239, 0.72) 100%);
  border-radius: 0 0 var(--po-radius-xl) var(--po-radius-xl);
  border: none;
  border-top: 1px solid rgba(6, 31, 48, 0.08);
  box-shadow: none;
  height: auto;
}

.po-equity-close-quote--unified .po-equity-close-headshot {
  margin: 0;
  grid-row: 1 / span 2;
}

.po-equity-close-quote-text {
  min-width: 0;
}

.po-ex-compare-grid {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.po-ex-compare {
  border-radius: var(--po-radius-lg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(6, 31, 48, 0.08);
}

.po-ex-compare-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--po-navy);
}

.po-ex-compare-val {
  font-size: 15px;
  line-height: 1.45;
  color: var(--po-muted);
}

.po-ex-compare--good {
  border-color: rgba(0, 94, 240, 0.22);
  background: rgba(255, 255, 255, 0.85);
}

.po-ex-compare--good .po-ex-compare-label {
  color: var(--po-blue);
}

.po-ex-compare--good .po-ex-compare-val {
  color: var(--po-navy);
  font-weight: 500;
}

.po-equity-hero {
  position: relative;
  z-index: 1;
  padding: clamp(32px, 5vw, 56px) 0 0;
  background: transparent;
}

.po-equity-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.po-equity-hero-grid--inspired {
  max-width: none;
  margin: 0;
}

.po-equity-hero-copy {
  min-width: 0;
}

.po-equity-hero-title {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: none;
}

.po-equity-hero-line-a,
.po-equity-hero-line-b {
  display: block;
}

.po-equity-hero-line-a {
  color: #ffffff;
}

.po-equity-hero-line-b {
  color: var(--po-green);
}

.po-equity-hero-title--cream {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.1;
  max-width: 11.5em;
}

.po-equity-hero-title--cream .po-equity-hero-line-a,
.po-equity-hero-title--cream .po-equity-hero-line-b {
  display: block;
  white-space: nowrap;
}

.po-equity-hero-title--cream .po-equity-hero-line-a {
  color: var(--po-navy);
}

.po-equity-hero-title--cream .po-equity-hero-line-b {
  color: var(--po-blue);
}

.po-equity-hero-line {
  margin-top: 22px;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
}

.po-equity-hero-line--cream {
  color: var(--po-muted);
  max-width: 42ch;
}

.po-equity-hero-copy .po-eyebrow {
  display: block;
  margin-bottom: 12px;
}

.po-equity-hero-btn {
  margin-top: 32px;
}

.po-equity-hero-donut {
  margin: 0;
  min-width: 0;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
}

.po-equity-hero-donut--cream {
  filter: drop-shadow(0 20px 40px rgba(6, 31, 48, 0.08));
}

.po-equity-hero-donut-setup {
  display: block;
  margin-bottom: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--po-navy);
}

.po-equity-hero-donut-svg {
  display: block;
  width: 100%;
  max-width: min(440px, 100%);
  margin: 0 auto;
  height: auto;
}

.po-equity-hero-donut-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.po-equity-hero-donut-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.po-equity-hero-donut-swatch {
  flex-shrink: 0;
  width: 18px;
  height: 6px;
  border-radius: 999px;
}

.po-equity-hero-donut-swatch--founder {
  background: rgba(255, 255, 255, 0.92);
}

.po-equity-hero-donut-swatch--sold {
  background: var(--po-green);
}

.po-equity-hero-ring--founder {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linecap: butt;
}

.po-equity-hero-wedge {
  stroke: var(--po-green);
  stroke-linecap: round;
}

.po-equity-hero-wedge-slot {
  transform-origin: 0 0;
}

.po-equity-hero-wedge-break {
  transform-origin: 0 0;
  animation: po-equity-hero-wedge-break 5.5s ease-in-out infinite;
}

.po-equity-hero-wedge-break--cream {
  animation: po-equity-hero-wedge-break-cream 8s ease-in-out infinite;
}

.po-equity-hero-ring--cream {
  stroke: #00c88e;
  animation: po-equity-hero-ring-shrink 8s ease-in-out infinite;
}

.po-equity-hero-ring--restore {
  stroke: var(--po-blue);
  stroke-linecap: round;
  opacity: 0;
  animation: po-equity-hero-ring-restore 8s ease-in-out infinite;
}

.po-equity-hero-wedge--cream {
  stroke: var(--po-navy);
}

.po-equity-hero-donut-pct {
  font-family: inherit;
  font-size: 28px;
  font-weight: 600;
  fill: var(--po-navy);
}

.po-equity-hero-pct-100,
.po-equity-hero-pct-91 {
  animation: po-equity-hero-pct-toggle 8s ease-in-out infinite;
}

.po-equity-hero-pct-91 {
  opacity: 0;
  animation-name: po-equity-hero-pct-toggle-91;
}

.po-equity-hero-donut-label--cream {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  fill: var(--po-muted);
}

.po-equity-hero-exit-tag {
  opacity: 0;
  animation: po-equity-hero-exit-tag 8s ease-in-out infinite;
}

.po-equity-hero-exit-tag-text {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  fill: #ffffff;
}

.po-equity-hero-donut-legend--cream {
  color: var(--po-muted);
}

.po-equity-hero-donut-swatch--kept {
  background: #00c88e;
}

.po-equity-hero-donut-swatch--sold-cream {
  background: var(--po-navy);
}

@keyframes po-equity-hero-wedge-break {
  0%,
  20% {
    opacity: 1;
    transform: translate(0, 0);
  }

  38% {
    opacity: 1;
    transform: translate(4px, 0);
  }

  52%,
  72% {
    opacity: 0;
    transform: translate(26px, 0);
  }

  88%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes po-equity-hero-wedge-break-cream {
  0%,
  18% {
    opacity: 0;
    transform: translate(0, 0);
  }

  22%,
  28% {
    opacity: 1;
    transform: translate(0, 0);
  }

  42% {
    opacity: 1;
    transform: translate(18px, -10px);
  }

  52%,
  58% {
    opacity: 0;
    transform: translate(42px, -18px);
  }

  72%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes po-equity-hero-ring-shrink {
  0%,
  18% {
    stroke-dasharray: 100 0;
  }

  28%,
  58% {
    stroke-dasharray: 89 11;
  }

  72%,
  100% {
    stroke-dasharray: 100 0;
  }
}

@keyframes po-equity-hero-ring-restore {
  0%,
  58% {
    opacity: 0;
    stroke-dasharray: 0 100;
  }

  64% {
    opacity: 1;
    stroke-dasharray: 0 100;
  }

  72%,
  88% {
    opacity: 1;
    stroke-dasharray: 11 89;
  }

  96%,
  100% {
    opacity: 0;
    stroke-dasharray: 11 89;
  }
}

@keyframes po-equity-hero-pct-toggle {
  0%,
  18% { opacity: 1; }
  28%,
  58% { opacity: 0; }
  72%,
  100% { opacity: 1; }
}

@keyframes po-equity-hero-pct-toggle-91 {
  0%,
  18% { opacity: 0; }
  28%,
  58% { opacity: 1; }
  72%,
  100% { opacity: 0; }
}

@keyframes po-equity-hero-exit-tag {
  0%,
  38% {
    opacity: 0;
    transform: translate(72px, -48px);
  }

  44%,
  54% {
    opacity: 1;
    transform: translate(88px, -58px);
  }

  60%,
  100% {
    opacity: 0;
    transform: translate(100px, -64px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .po-equity-hero-wedge-break,
  .po-equity-hero-wedge-break--cream {
    animation: none;
    opacity: 1;
    transform: translate(0, 0);
  }

  .po-equity-hero-ring--cream {
    animation: none;
    stroke-dasharray: 89 11;
  }

  .po-equity-hero-ring--restore,
  .po-equity-hero-exit-tag {
    animation: none;
    opacity: 0;
  }
}

.po-equity-hero-donut-label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.88);
}

.po-equity-hero-trust {
  margin-top: 14px;
}

.po-equity-hero-visual {
  min-width: 0;
}

.po-equity-hero-figure {
  margin: 0;
}

.po-equity-cap-chart {
  padding: clamp(20px, 3vw, 28px);
  background: #ffffff;
  border-radius: var(--po-radius-xl);
  border: 1px solid var(--po-border);
  box-shadow: 0 20px 48px rgba(6, 31, 48, 0.06);
}

.po-equity-cap-svg {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: auto;
}

.po-equity-cap-slice {
  stroke-linecap: butt;
}

.po-equity-cap-slice--founders {
  stroke: var(--po-navy);
}

.po-equity-cap-slice--series-a {
  stroke: var(--po-blue);
}

.po-equity-cap-slice--series-b {
  stroke: #003580;
}

.po-equity-cap-slice--investors {
  stroke: rgba(6, 31, 48, 0.28);
}

.po-equity-cap-slice--wedge {
  stroke: var(--po-green);
}

.po-equity-cap-wedge-anim {
  transform-box: fill-box;
  transform-origin: center;
  animation: po-equity-cap-wedge-out 4.5s ease-in-out infinite;
}

.po-equity-cap-center {
  fill: var(--po-off-white);
  stroke: var(--po-border);
  stroke-width: 1;
}

.po-equity-cap-legend {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.po-equity-cap-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--po-navy);
}

.po-equity-cap-legend-swatch {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.po-equity-cap-legend-swatch--founders {
  background: var(--po-navy);
}

.po-equity-cap-legend-swatch--series-a {
  background: var(--po-blue);
}

.po-equity-cap-legend-swatch--series-b {
  background: #003580;
}

.po-equity-cap-legend-swatch--investors {
  background: rgba(6, 31, 48, 0.28);
}

@keyframes po-equity-cap-wedge-out {
  0%,
  28% {
    opacity: 1;
    transform: scale(1);
  }

  52% {
    opacity: 0.55;
    transform: scale(0.94) translate(2px, -2px);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(0.78) translate(6px, -6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .po-equity-cap-wedge-anim {
    animation: none;
  }

  .po-equity-cap-slice--wedge {
    opacity: 0.45;
  }
}

.po-equity-hero-caption {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--po-muted);
  text-align: center;
}

.po-equity-paths-section {
  /* spacing from .po-ex-section */
}

.po-equity-calc {
  /* spacing from .po-ex-section */
}

.po-equity-close {
  /* spacing from .po-ex-section */
}

.po-equity-paths-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.po-equity-paths-intro .po-h2 {
  margin-top: 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.po-equity-paths-lead {
  margin: 20px 0 0;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.65;
  color: var(--po-muted);
  max-width: 36ch;
}

.po-equity-paths-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.po-equity-paths-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  position: relative;
  padding: clamp(24px, 3vw, 32px) 0;
}

.po-equity-paths-step:first-child {
  padding-top: 0;
}

.po-equity-paths-step:not(:last-child) {
  border-bottom: 1px solid var(--po-border);
}

.po-equity-paths-step:not(:last-child) .po-equity-paths-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: var(--po-border);
}

.po-equity-paths-step--catch {
  padding-top: clamp(24px, 3vw, 32px);
  margin-top: 0;
  border-top: none;
}

.po-equity-paths-step--catch:not(:last-child) .po-equity-paths-marker::after {
  display: none;
}

.po-equity-paths-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.po-equity-paths-marker .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--po-off-white);
  border: 2px solid var(--po-blue);
  position: relative;
  z-index: 1;
}

.po-equity-paths-marker .dot--accent {
  background: var(--po-green);
  border-color: var(--po-navy);
}

.po-equity-paths-body {
  padding-bottom: 0;
}

.po-equity-paths-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 8px;
}

.po-equity-paths-phase {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-blue);
}

.po-equity-paths-feel {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--po-muted);
}

.po-equity-paths-name {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--po-navy);
}

.po-equity-paths-pain {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--po-muted);
}

.po-equity-paths-step--catch .po-equity-paths-catch {
  margin: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--po-navy);
}

.po-equity-costs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.po-equity-cost-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.po-equity-cost-card .po-h2 {
  margin-top: 14px;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.po-equity-cost-body {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--po-muted);
}

.po-equity-cost-note {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--po-blue);
}

.po-equity-cost-note a {
  color: var(--po-blue);
  font-weight: 600;
  text-decoration: none;
}

.po-equity-cost-note a:hover {
  text-decoration: underline;
}

.po-equity-cost-kicker {
  margin: 28px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--po-navy);
}

.po-equity-growth-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.po-equity-worry-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--po-navy);
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--po-border);
  border-radius: 0;
}

.po-equity-worry-list li:last-child {
  border-bottom: 0;
}

.po-equity-worry-list svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  color: var(--po-muted);
  opacity: 0.6;
}

.po-equity-calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.po-equity-calc-copy .po-h2 {
  margin-top: 14px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.12;
}

.po-equity-calc-lead {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--po-muted);
  max-width: 40ch;
}

.po-equity-calc-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.po-equity-calc-steps li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--po-navy);
  font-weight: 400;
}

.po-equity-calc-steps span {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--po-blue);
  font-size: 15px;
  font-weight: 600;
}

.po-equity-calc-panel--featured {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--po-radius-xl);
  padding: clamp(36px, 5vw, 48px);
  border: 1px solid rgba(6, 31, 48, 0.08);
  box-shadow: 0 28px 72px rgba(6, 31, 48, 0.08);
}

.po-equity-calc-panel {
  background: var(--po-off-white);
  color: var(--po-navy);
  border-radius: var(--po-radius-xl);
  padding: clamp(32px, 4vw, 40px);
  border: 1px solid var(--po-border);
  box-shadow: 0 12px 40px rgba(6, 31, 48, 0.06);
}

.po-equity-calc-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--po-navy);
  margin-bottom: 16px;
}

.po-equity-calc-input-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.po-equity-calc-range {
  width: 100%;
  accent-color: var(--po-blue);
  cursor: pointer;
  height: 6px;
}

.po-equity-calc-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--po-navy);
}

.po-equity-calc-results {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--po-border);
  display: grid;
  gap: 20px;
}

.po-equity-calc-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.po-equity-calc-result--lead {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--po-border);
}

.po-equity-calc-result-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--po-muted);
}

.po-equity-calc-result--lead .po-equity-calc-result-num {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--po-blue);
}

.po-equity-calc-result-note {
  font-size: 13px;
  line-height: 1.45;
  color: var(--po-muted);
  max-width: 36ch;
}

.po-equity-calc-result--sub .po-equity-calc-result-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--po-navy);
}

.po-equity-calc-disclaimer {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--po-muted);
}

.po-equity-calc-btn {
  width: 100%;
  margin-top: 28px;
  justify-content: center;
  box-sizing: border-box;
}

.po-equity-calc-trust {
  margin-top: 14px;
  justify-content: center;
  color: var(--po-muted);
}

.po-equity-close-card {
  background: #ffffff;
  color: var(--po-navy);
  border-radius: var(--po-radius-xl);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
  border: 1px solid var(--po-border);
  box-shadow: 0 16px 48px rgba(6, 31, 48, 0.06);
}

.po-equity-close-copy .po-eyebrow,
.po-equity-close-copy .po-eyebrow--on-dark {
  color: var(--po-blue);
}

.po-equity-close-copy .po-h2 {
  color: var(--po-navy);
  margin-top: 14px;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
}

.po-equity-close-body {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--po-muted);
  max-width: 44ch;
}

.po-equity-close-compare {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.po-equity-close-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: baseline;
  padding: 0;
  border-radius: 0;
  font-size: 15px;
  line-height: 1.5;
  background: transparent;
  border: none;
}

.po-equity-close-row--bad .po-equity-close-row-label {
  color: var(--po-navy);
  font-weight: 500;
}

.po-equity-close-row--bad .po-equity-close-row-val {
  color: var(--po-muted);
}

.po-equity-close-row--good .po-equity-close-row-label {
  color: var(--po-blue);
  font-weight: 600;
}

.po-equity-close-row--good .po-equity-close-row-val {
  color: var(--po-navy);
}

.po-equity-close-row-label {
  font-weight: 500;
}

.po-equity-close-link {
  display: inline-flex;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--po-blue);
  text-decoration: none;
}

.po-equity-close-link:hover {
  text-decoration: underline;
}

.po-equity-close-quote {
  margin: 0;
  padding: clamp(28px, 3vw, 36px);
  background: #ffffff;
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-xl);
  position: relative;
  box-shadow: 0 12px 40px rgba(6, 31, 48, 0.06);
  height: 100%;
}

.po-equity-close-headshot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(6, 31, 48, 0.1);
}

.po-equity-close-quote-mark {
  display: block;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.75;
  color: var(--po-green);
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 8px;
}

.po-equity-close-quote p {
  margin: 0;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  color: var(--po-navy);
}

.po-equity-close-quote footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.po-equity-close-quote cite {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: var(--po-navy);
}

.po-equity-close-quote footer span {
  font-size: 14px;
  color: var(--po-muted);
}

.po-final-cta-wrap--equity {
  padding: 0 var(--po-container-pad) clamp(56px, 7vw, 96px);
  background: var(--po-off-white);
}

.po-final-cta--invitation {
  color: var(--po-navy);
  background: #ffffff;
  border: 1px solid var(--po-border);
  box-shadow: 0 12px 40px rgba(6, 31, 48, 0.05);
  background-image: none;
  background-color: #ffffff;
  text-align: left;
  padding: clamp(40px, 5vw, 56px);
}

.po-final-cta--invitation .po-h2 {
  color: var(--po-navy);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 16ch;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.po-final-cta--invitation p {
  color: var(--po-muted);
  margin: 16px 0 0;
  max-width: 42ch;
  text-align: left;
}

.po-final-cta--invitation .po-final-cta-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .po-equity-hero-grid,
  .po-equity-hero-grid--inspired,
  .po-ex-scenario-grid--three,
  .po-ex-scenario-grid--two,
  .po-ex-calc-results,
  .po-ex-close-grid {
    grid-template-columns: 1fr;
  }

  .po-equity-hero-copy {
    order: -1;
  }

  .po-equity-close-quote--unified {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 8px 16px;
    padding-inline: clamp(24px, 5vw, 32px);
  }

  .po-equity-close-quote--unified .po-equity-close-headshot {
    width: 56px;
    height: 56px;
  }

  .po-equity-hero-donut-legend {
    gap: 8px 20px;
  }

  .po-equity-hero-donut-svg {
    max-width: 300px;
  }

  .po-ex-section {
    padding: clamp(72px, 12vw, 112px) 0;
  }

  .po-page-equity .po-equity-paths-section {
    padding-top: clamp(88px, 14vw, 128px);
  }
}

@media (max-width: 640px) {
  .po-equity-hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .po-equity-hero-title--cream {
    font-size: clamp(1.75rem, 7.8vw, 2.35rem);
    max-width: none;
  }

  .po-equity-hero-title--cream .po-equity-hero-line-a,
  .po-equity-hero-title--cream .po-equity-hero-line-b {
    white-space: normal;
  }
}

/* ---------- Equity page: editorial sections, visuals, calculator v2 ---------- */
.po-ex-section-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 680px;
}

.po-ex-section-lead {
  margin: 18px 0 0;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.65;
  color: var(--po-muted);
}

.po-ex-body {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--po-muted);
}

.po-ex-body--example {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--po-radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--po-border);
  color: var(--po-navy);
}

.po-ex-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.po-ex-split--equity {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.po-ex-split--equity .po-ex-cost-duo {
  margin-top: 0;
}

.po-ex-cost-duo {
  margin: 0;
}

.po-ex-cost-duo-svg {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 16px 48px rgba(6, 31, 48, 0.08);
}

.po-ex-cost-duo-svg .po-cd-label {
  font-family: inherit;
  font-weight: 600;
}

.po-ex-cost-duo-svg .po-cd-label--finance {
  font-size: 15px;
  fill: #005ff1;
}

.po-ex-cost-duo-svg .po-cd-label--equity {
  font-size: 13px;
  fill: #ffffff;
}

.po-ex-cost-duo-svg .po-cd-vs {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  fill: rgba(6, 31, 48, 0.35);
}

.po-ex-split--cap {
  align-items: start;
}

.po-ex-split-copy .po-h2 {
  margin: 0;
}

.po-ex-split-copy .po-ex-body {
  margin-top: 16px;
}

.po-ex-split--choice {
  align-items: start;
}

.po-ex-split--choice .po-ex-section-head {
  margin-bottom: 0;
}

/* Section 2: minimal cost magnitude visual */
.po-ex-cost-visual {
  margin: 0;
}

.po-ex-cost-visual-svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--po-radius-xl);
  box-shadow: 0 20px 56px rgba(6, 31, 48, 0.08);
}

.po-ex-cost-visual-svg .po-cv-label {
  font-family: inherit;
  font-weight: 600;
}

.po-ex-cost-visual-svg .po-cv-label--head {
  font-size: 14px;
  fill: var(--po-navy);
}

.po-ex-cost-visual-svg .po-cv-label--finance {
  font-size: 16px;
  fill: var(--po-blue);
}

.po-ex-cost-visual-svg .po-cv-label--equity {
  font-size: 24px;
  fill: #ffffff;
  letter-spacing: -0.02em;
}

.po-ex-cost-visual-svg .po-cv-stem {
  stroke: rgba(6, 31, 48, 0.14);
  stroke-width: 1.5;
}

.po-ex-cost-visual-svg .po-cv-bar--finance {
  fill: var(--po-blue);
}

.po-ex-cost-visual-svg .po-cv-bar--equity {
  fill: var(--po-navy);
}

.po-ex-cost-visual-svg .po-cv-bar-glow {
  fill: none;
  stroke: rgba(6, 31, 48, 0.12);
  stroke-width: 1;
}

.po-ex-cost-visual-svg .po-cv-check-bg {
  fill: #00c88e;
}

.po-ex-cost-visual-svg .po-cv-check {
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.po-ex-cost-visual-svg .po-cv-amt {
  font-family: inherit;
  font-weight: 600;
}

.po-ex-cost-visual-svg .po-cv-amt--finance {
  font-size: 22px;
  fill: var(--po-blue);
}

.po-ex-cost-visual-svg .po-cv-amt--equity {
  font-size: 34px;
  fill: #ffffff;
  letter-spacing: -0.02em;
}

.po-ex-cost-visual-caption {
  margin: 12px 0 0;
  font-size: 12px;
  font-style: italic;
  color: var(--po-muted);
  text-align: center;
}

/* Visual B: cost compare */
.po-ex-cost-compare {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border-radius: var(--po-radius-xl);
  border: 1px solid rgba(6, 31, 48, 0.08);
  box-shadow: 0 20px 56px rgba(6, 31, 48, 0.07);
}

.po-ex-cost-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: var(--po-radius-lg);
}

.po-ex-cost-col--small {
  background: rgba(0, 94, 240, 0.06);
  border: 1px solid rgba(0, 94, 240, 0.14);
}

.po-ex-cost-col--large {
  background: rgba(6, 31, 48, 0.04);
  border: 1px solid rgba(6, 31, 48, 0.1);
}

.po-ex-cost-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-muted);
}

.po-ex-cost-num {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--po-navy);
}

.po-ex-cost-col--small .po-ex-cost-num {
  color: var(--po-blue);
}

.po-ex-cost-note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--po-muted);
}

.po-ex-cost-tag {
  align-self: flex-start;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(6, 31, 48, 0.06);
  color: var(--po-muted);
}

.po-ex-cost-tag--good {
  background: rgba(0, 200, 140, 0.12);
  color: #007a52;
}

.po-ex-cost-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--po-muted);
}

/* Visual A: two-track timeline */
.po-ex-section-comparison {
  max-width: var(--po-container-max);
}

.po-ex-section-comparison .po-ex-section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.po-ex-timeline-wrap--featured {
  margin: 0 auto;
}

.po-ex-timeline-wrap--featured .po-ex-timeline-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.po-ex-timeline-wrap--featured .po-ex-timeline-svg,
.po-ex-timeline-wrap--featured .po-ex-timeline-img {
  min-width: 0;
  width: 100%;
  height: auto;
  border-radius: var(--po-radius-xl);
  box-shadow: 0 20px 56px rgba(6, 31, 48, 0.08);
}

.po-ex-timeline-wrap--featured .po-ex-timeline-img {
  display: block;
}

.po-ex-timeline-wrap--featured .po-tl-milestone {
  font-size: 15px;
}

.po-ex-timeline-wrap--featured .po-tl-track-label {
  font-size: 20px;
}

.po-ex-timeline-wrap--featured .po-tl-track-sub {
  font-size: 17px;
}

.po-ex-timeline-wrap--featured .po-tl-step-label {
  font-size: 17px;
}

.po-ex-timeline-wrap--featured .po-tl-step-note {
  font-size: 16px;
}

.po-ex-timeline-wrap--featured .po-tl-pill-text {
  font-size: 14px;
}

.po-ex-timeline-wrap--featured .po-tl-wedge-label {
  font-size: 16px;
}

.po-ex-timeline-wrap--featured .po-tl-card-title {
  font-size: 20px;
}

.po-ex-timeline-wrap--featured .po-tl-card-body {
  font-size: 16px;
}

.po-ex-timeline-wrap--featured .po-tl-card-foot {
  font-size: 15px;
}

.po-ex-timeline-wrap--featured .po-tl-ring-pct {
  font-size: 16px;
}

@media (max-width: 768px) {
  .po-ex-timeline-wrap--featured .po-ex-timeline-svg,
  .po-ex-timeline-wrap--featured .po-ex-timeline-img {
    min-width: 720px;
  }
}

.po-ex-timeline-wrap {
  margin: 0;
}

.po-ex-timeline-caption {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.po-ex-timeline-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--po-navy);
}

.po-ex-timeline-sub {
  margin: 10px 0 0;
  font-size: 16px;
  color: var(--po-muted);
}

.po-ex-timeline-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.po-ex-timeline-svg {
  display: block;
  width: 100%;
  min-width: 880px;
  height: auto;
}

.po-ex-timeline-svg .po-tl-milestone {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: rgba(6, 31, 48, 0.42);
}

.po-ex-timeline-svg .po-tl-guide {
  stroke: rgba(6, 31, 48, 0.1);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.po-ex-timeline-svg .po-tl-guide--exit {
  stroke-dasharray: none;
  stroke: rgba(6, 31, 48, 0.14);
}

.po-ex-timeline-svg .po-tl-track-label {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-track-sub {
  font-family: inherit;
  font-size: 12px;
  fill: var(--po-muted);
}

.po-ex-timeline-svg .po-tl-track-sub--green {
  fill: #007a52;
}

.po-ex-timeline-svg .po-tl-dot {
  fill: rgba(6, 31, 48, 0.2);
}

.po-ex-timeline-svg .po-tl-dot--bridge {
  fill: var(--po-blue);
}

.po-ex-timeline-svg .po-tl-dot--done {
  fill: #00c88e;
  stroke: #00c88e;
  stroke-width: 2;
}

.po-ex-timeline-svg .po-tl-dot--equity {
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-dot--hollow {
  fill: #ffffff;
  stroke: rgba(6, 31, 48, 0.28);
  stroke-width: 2;
}

.po-ex-timeline-svg .po-tl-check {
  stroke: #ffffff;
}

.po-ex-timeline-svg .po-tl-line {
  stroke-width: 4;
  stroke-linecap: round;
}

.po-ex-timeline-svg .po-tl-line--bridge {
  stroke: var(--po-blue);
}

.po-ex-timeline-svg .po-tl-line--faded {
  stroke: rgba(6, 31, 48, 0.12);
  stroke-width: 2;
}

.po-ex-timeline-svg .po-tl-step-label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-step-label--green {
  fill: #007a52;
  font-weight: 600;
}

.po-ex-timeline-svg .po-tl-step-note {
  font-family: inherit;
  font-size: 11px;
  font-style: italic;
  fill: var(--po-muted);
}

.po-ex-timeline-svg .po-tl-pill {
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-pill-text {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  fill: #ffffff;
}

.po-ex-timeline-svg .po-tl-wedge {
  fill: rgba(6, 31, 48, 0.06);
  stroke: rgba(6, 31, 48, 0.08);
  stroke-width: 1;
}

.po-ex-timeline-svg .po-tl-wedge-line {
  stroke: rgba(6, 31, 48, 0.22);
  stroke-width: 1.5;
}

.po-ex-timeline-svg .po-tl-wedge-label {
  font-family: inherit;
  font-size: 11px;
  fill: var(--po-muted);
}

.po-ex-timeline-svg .po-tl-wedge-label--bold {
  font-weight: 600;
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-card {
  fill: #ffffff;
  stroke: rgba(6, 31, 48, 0.08);
  stroke-width: 1;
  filter: drop-shadow(0 8px 24px rgba(6, 31, 48, 0.06));
}

.po-ex-timeline-svg .po-tl-ring-bg {
  fill: none;
  stroke: rgba(6, 31, 48, 0.08);
  stroke-width: 5;
}

.po-ex-timeline-svg .po-tl-ring {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
}

.po-ex-timeline-svg .po-tl-ring--full {
  stroke: #00c88e;
}

.po-ex-timeline-svg .po-tl-ring--partial {
  stroke: #00c88e;
}

.po-ex-timeline-svg .po-tl-ring--lost {
  stroke: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-ring-pct {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-card-title {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-card-body {
  font-family: inherit;
  font-size: 11px;
  fill: var(--po-muted);
}

.po-ex-timeline-svg .po-tl-card-foot {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  fill: var(--po-navy);
}

.po-ex-timeline-svg .po-tl-card-foot--green {
  fill: #007a52;
}

.po-ex-timeline-disclaimer {
  margin: 16px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--po-muted);
  text-align: center;
}

/* Equity lists + inline calculator */
.po-ex-equity-block .po-h2 {
  margin: 0;
}

.po-ex-equity-block .po-ex-body {
  margin: 16px 0 0;
  max-width: 62ch;
}

.po-ex-equity-calc-wrap {
  margin-top: clamp(48px, 6vw, 72px);
}

.po-ex-equity-calc-title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  text-align: center;
}

.po-ex-equity-lists {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.po-ex-equity-list {
  padding: 20px;
  border-radius: var(--po-radius-lg);
  border: 1px solid var(--po-border);
  background: var(--po-off-white);
}

.po-ex-equity-list--for {
  border-top: 3px solid #00c88e;
}

.po-ex-equity-list--not {
  border-top: 3px solid var(--po-navy);
}

.po-ex-equity-list-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--po-navy);
}

.po-ex-equity-list ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.po-ex-equity-list li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--po-navy);
  padding-left: 16px;
  position: relative;
}

.po-ex-equity-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--po-blue);
}

.po-equity-cap-svg--light {
  max-width: 280px;
}

.po-equity-cap-slice--wedge-light {
  stroke: #00c88e;
}

.po-equity-cap-legend-swatch--wedge-light {
  background: #00c88e;
}

.po-equity-cap-center-label {
  font-family: inherit;
}

.po-equity-cap-center-num {
  font-size: 22px;
  font-weight: 600;
  fill: var(--po-navy);
}

.po-equity-cap-center-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: var(--po-muted);
}

.po-equity-cap-caption {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--po-muted);
  text-align: center;
}

/* Calculator v2 */
.po-equity-calc-fields {
  display: grid;
  gap: 24px;
}

.po-equity-calc-value--sm {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.po-equity-close-cta {
  margin-top: 28px;
}

.po-testimonial-card--review {
  flex: 0 0 min(340px, 78vw);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 32px;
  color: var(--po-navy);
  background: #ffffff;
  border: 1px solid var(--po-border);
  box-shadow: 0 12px 40px rgba(6, 31, 48, 0.06);
  margin: 0;
}

.po-testimonial-card--review:hover {
  color: var(--po-navy);
  transform: translateY(-4px);
  box-shadow: var(--po-shadow-lg);
}

.po-testimonial-card--review .po-testimonial-quote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--po-navy);
}

.po-testimonial-card--review .po-testimonial-quote::before {
  display: none;
}

.po-testimonial-card--review .po-testimonial-cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  color: var(--po-muted);
}

.po-testimonial-card--review .po-testimonial-cite strong {
  font-weight: 600;
  color: var(--po-navy);
}

.po-testimonials--equity {
  background: var(--po-cream, #f4f2ef);
}

.po-testimonials--equity .po-testimonials-title {
  font-family: inherit;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Proof quote */
.po-equity-proof-quote {
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 8px 28px;
  align-items: start;
  padding: clamp(32px, 4vw, 44px);
  background: #ffffff;
  border-radius: var(--po-radius-xl);
  border: 1px solid var(--po-border);
  box-shadow: 0 16px 48px rgba(6, 31, 48, 0.06);
}

.po-equity-proof-quote .po-equity-close-headshot {
  grid-row: 1 / span 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.po-equity-proof-text p {
  margin: 0;
  font-size: clamp(1.125rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--po-navy);
}

.po-equity-proof-text footer {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.po-equity-proof-text cite {
  font-style: normal;
  font-weight: 600;
  color: var(--po-navy);
}

.po-equity-proof-text footer span {
  font-size: 14px;
  color: var(--po-muted);
}

@media (max-width: 980px) {
  .po-ex-split,
  .po-ex-split--choice,
  .po-ex-equity-lists {
    grid-template-columns: 1fr;
  }

  .po-ex-cost-compare {
    grid-template-columns: 1fr;
  }

  .po-ex-cost-divider {
    padding: 4px 0;
  }

  .po-equity-proof-quote {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 8px 20px;
  }

  .po-equity-proof-quote .po-equity-close-headshot {
    width: 64px;
    height: 64px;
  }
}

/* ============================================================
   FUNDING STORIES / CASE STUDIES
   ============================================================ */
.po-page-cs {
  background: #ffffff;
}

.po-cs-hero {
  padding: clamp(36px, 5vw, 56px) 0 clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, var(--po-off-white) 0%, #ffffff 100%);
}

.po-cs-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.po-cs-hero-copy .po-eyebrow {
  display: block;
}

.po-cs-hero-title {
  margin-top: 12px;
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--po-navy);
}

.po-cs-hero-quote {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 12px);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
  font-style: normal;
  color: var(--po-navy);
}

.po-cs-quote-mark {
  display: block;
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 0.72;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
  user-select: none;
}

.po-cs-quote-mark--blue {
  color: var(--po-blue);
}

.po-cs-quote-mark--green {
  color: var(--po-green);
}

.po-cs-quote-text {
  display: block;
}

.po-cs-hero-btn {
  margin-top: 24px;
}

.po-cs-hero-trust {
  margin-top: 14px;
}

.po-cs-hero-lead {
  margin-top: 16px;
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
  line-height: 1.6;
  color: var(--po-muted);
  max-width: 52ch;
}

.po-cs-hero-media {
  border-radius: var(--po-radius-xl);
  overflow: hidden;
  background: var(--po-navy-deep);
  box-shadow: var(--po-shadow-lg);
  min-height: 280px;
}

.po-cs-hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.po-cs-hero-photo--landscape {
  aspect-ratio: 16 / 10;
  min-height: 240px;
  object-position: center center;
}

.po-cs-hero-photo--fit {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
}

.po-cs-stats {
  padding: 0 0 clamp(32px, 4vw, 48px);
  margin-top: -8px;
}

.po-cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: clamp(20px, 3vw, 28px);
  background: #ffffff;
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-xl);
  box-shadow: var(--po-shadow-sm);
}

.po-cs-stat {
  padding: 8px 12px;
  text-align: center;
}

.po-cs-stat:not(:last-child) {
  border-right: 1px solid var(--po-border);
}

.po-cs-stat dt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--po-muted);
}

.po-cs-stat dd {
  margin: 8px 0 0;
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--po-navy);
}

.po-cs-stat dd.po-cs-stat-val--accent {
  color: var(--po-blue);
}

.po-cs-featured {
  position: relative;
  overflow: hidden;
  padding: var(--po-section-pad-y) 0;
  background: var(--po-navy);
  color: #ffffff;
}

.po-cs-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/icons/bridge-mark.svg");
  background-repeat: no-repeat;
  background-size: clamp(220px, 32vw, 460px);
  background-position: calc(100% + 24px) 52%;
  opacity: 0.07;
  pointer-events: none;
}

.po-cs-featured .po-container {
  position: relative;
  z-index: 1;
}

.po-cs-featured-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.po-cs-featured-inner--split {
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  align-items: stretch;
}

.po-cs-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.po-cs-featured-inner--copy-only {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.po-cs-featured-quote {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 16px);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  line-height: 1.45;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.po-cs-featured-quote .po-cs-quote-mark {
  font-size: clamp(3.25rem, 7vw, 5.5rem);
}

.po-cs-featured-attribution {
  display: block;
  margin-top: 20px;
  font-size: 15px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

.po-cs-featured-attribution strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.po-cs-featured-media {
  border-radius: var(--po-radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  min-height: 240px;
  max-width: 360px;
}

.po-cs-featured-inner--split .po-cs-featured-media {
  max-width: none;
  width: 100%;
}

.po-cs-featured-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center top;
}

.po-cs-featured-photo--landscape {
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-position: center center;
}

.po-cs-body {
  padding: var(--po-section-pad-y) 0;
}

.po-cs-body-inner {
  width: 100%;
  max-width: none;
}

.po-cs-body-kicker {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--po-blue);
  margin-bottom: 12px;
}

.po-cs-body-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--po-navy);
}

.po-cs-body-section {
  margin-top: clamp(32px, 4vw, 48px);
}

.po-cs-body-section h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--po-blue);
  margin: 0 0 12px;
}

.po-cs-body-section p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--po-muted);
}

.po-cs-body-section p + p {
  margin-top: 16px;
}

.po-cs-process {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.po-cs-process li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--po-off-white);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-md);
  font-size: 15px;
  line-height: 1.5;
  color: var(--po-navy);
}

.po-cs-process li svg {
  width: 22px;
  height: 22px;
  color: var(--po-blue);
  margin-top: 2px;
}

.po-cs-results {
  padding: var(--po-section-pad-y) 0;
  background: var(--po-off-white);
}

.po-cs-results-head {
  margin-bottom: 28px;
}

.po-cs-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.po-cs-result-card {
  background: #ffffff;
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  padding: 24px;
  box-shadow: var(--po-shadow-sm);
}

.po-cs-result-card h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--po-navy);
  margin: 0;
}

.po-cs-result-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--po-muted);
}

.po-cs-next {
  padding: var(--po-section-pad-y) 0;
}

.po-cs-next-head {
  margin-bottom: 28px;
}

.po-cs-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.po-cs-next-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  background: var(--po-off-white);
  border: 1px solid var(--po-border);
  border-radius: var(--po-radius-lg);
  text-decoration: none;
  color: var(--po-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.po-cs-next-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--po-shadow-md);
  border-color: rgba(0, 95, 241, 0.25);
  color: var(--po-navy);
}

.po-cs-next-amt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-blue);
}

.po-cs-next-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.po-cs-next-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--po-blue);
}

.po-cs-close-wrap {
  padding: 0 var(--po-container-pad) clamp(40px, 5vw, 64px);
}

.po-cs-close {
  color: #ffffff;
  border-radius: var(--po-radius-xl);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
  background-color: var(--po-navy-deep);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1), transparent 52%),
    linear-gradient(135deg, var(--po-navy-deep) 0%, #003580 52%, #0048b8 100%);
  box-shadow: var(--po-shadow-lg);
}

.po-cs-close h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin: 12px auto 0;
}

.po-cs-close p {
  margin: 16px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.po-cs-close-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.po-cs-index-hero {
  padding: clamp(36px, 5vw, 56px) 0 clamp(24px, 3vw, 32px);
  background: linear-gradient(180deg, var(--po-off-white) 0%, #ffffff 100%);
}

.po-cs-index-hero .po-h1 {
  margin-top: 12px;
  max-width: 18ch;
}

.po-cs-index-lead {
  margin-top: 16px;
  max-width: 52ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--po-muted);
}

.po-cs-index-grid {
  padding: clamp(24px, 3vw, 40px) 0 var(--po-section-pad-y);
}

@media (max-width: 980px) {
  .po-cs-hero-grid,
  .po-cs-results-grid,
  .po-cs-next-grid {
    grid-template-columns: 1fr;
  }

  .po-cs-featured-inner:not(.po-cs-featured-inner--split) {
    grid-template-columns: 1fr;
  }

  .po-cs-featured-inner--split {
    grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 32px);
  }

  .po-cs-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .po-cs-stat:nth-child(2) {
    border-right: 0;
  }

  .po-cs-stat:nth-child(1),
  .po-cs-stat:nth-child(3) {
    border-bottom: 1px solid var(--po-border);
    padding-bottom: 16px;
  }

  .po-cs-hero-media {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .po-cs-stat {
    border-right: 0 !important;
    border-bottom: 1px solid var(--po-border);
    padding-bottom: 16px;
  }

  .po-cs-stat:last-child {
    border-bottom: 0;
    padding-bottom: 8px;
  }

  .po-cs-stats-grid {
    grid-template-columns: 1fr;
  }

  .po-cs-featured-inner--split {
    grid-template-columns: minmax(112px, 34%) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  .po-cs-featured-inner--split .po-cs-featured-media {
    max-width: none;
    margin: 0;
    min-height: 0;
  }

  .po-cs-featured-inner--split .po-cs-featured-photo {
    min-height: 0;
    max-height: none;
    aspect-ratio: 3 / 4;
  }

  .po-cs-featured-inner--split .po-cs-featured-quote {
    font-size: 1.0625rem;
  }
}

/* ============================================================
   Spring-inspired equity page (Bridge colors)
   ============================================================ */
.po-page-spring {
  --spring-bg: #ffffff;
  --spring-cream: #f4f2ef;
  --spring-border: rgba(6, 31, 48, 0.08);
  --spring-shadow: 0 1px 2px rgba(6, 31, 48, 0.04), 0 12px 40px rgba(6, 31, 48, 0.06);
  background: var(--spring-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

.po-page-spring .po-equity-hero-shell--cream {
  background: linear-gradient(180deg, #ffffff 0%, var(--spring-cream) 100%);
}

.po-page-spring .po-equity-hero-shell--cream:not(.po-equity-hero-shell--bento)::before,
.po-page-spring .po-equity-hero-shell--cream:not(.po-equity-hero-shell--bento)::after {
  display: none;
}

.po-page-spring .po-float-cta {
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 95, 241, 0.28);
}

.po-spring-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--po-muted);
}

.po-spring-h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6.5vw, 4.25rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--po-navy);
}

.po-spring-h1-accent {
  color: var(--po-blue);
}

.po-spring-h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--po-navy);
}

.po-spring-h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--po-navy);
}

.po-spring-lead,
.po-spring-section-lead {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--po-muted);
}

.po-page-spring .po-equity-hero-shell--bento {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.po-page-spring .po-equity-hero-shell--bento::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  transform: none;
  background:
    radial-gradient(
      ellipse 115% 72% at 50% 112%,
      #5fa8ff 0%,
      #9ec5ff 18%,
      #c8ddff 36%,
      rgba(255, 255, 255, 0) 64%
    ),
    radial-gradient(
      ellipse 70% 50% at 12% 108%,
      rgba(0, 95, 241, 0.2) 0%,
      transparent 55%
    ),
    #ffffff;
  pointer-events: none;
  z-index: 0;
}

.po-page-spring .po-equity-hero-shell--bento::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 32%, rgba(0, 0, 0, 0.45) 58%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 32%, rgba(0, 0, 0, 0.45) 58%, #000 100%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: multiply;
}

.po-page-spring .po-equity-hero-shell--bento.po-equity-hero-shell--cream {
  background: #ffffff;
}

.po-page-spring .po-equity-hero-shell--bento .bridge-header {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.po-page-spring .po-equity-hero-shell--bento .bridge-nav-shell,
.po-page-spring .po-equity-hero-shell--bento.po-header-warm.po-header-over-hero .bridge-nav-shell,
.po-page-spring .po-equity-hero-shell--bento.po-header-warm.po-header-over-hero:not(.is-scrolled) .bridge-nav-shell {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 95, 241, 0.08);
}

.po-spring-hero--split.po-equity-hero {
  padding: clamp(16px, 2.5vw, 32px) 0;
  background: transparent;
}

.po-spring-hero--split .po-spring-kicker {
  margin-bottom: 10px;
}

.po-spring-hero--split {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.po-spring-hero--split .po-spring-hero-visual {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  position: relative;
}

.po-spring-hero--split .po-spring-hero-visual::before {
  content: none;
}

.po-spring-hero--split .po-spring-hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: min(calc(100svh - 120px), 520px);
  height: auto;
  object-fit: contain;
  object-position: right center;
  border-radius: 20px;
}

.po-page-equity .po-spring-hero--split .po-spring-hero-image {
  filter: drop-shadow(0 16px 40px rgba(6, 31, 48, 0.14));
}

.po-spring-hero--split .po-spring-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  width: 100%;
}

.po-spring-hero--split .po-spring-hero-copy {
  max-width: 34rem;
  margin: 0;
  text-align: left;
}

.po-spring-hero--split .po-spring-h1--hero {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.06;
}

.po-spring-hero--split .po-spring-lead--hero {
  margin: clamp(12px, 1.8vw, 18px) 0 0;
  max-width: 36ch;
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  line-height: 1.5;
}

.po-spring-hero--split .po-spring-hero-cta {
  margin-top: clamp(18px, 2.2vw, 24px);
}

.po-spring-partner-strip {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-top: 1px solid rgba(6, 31, 48, 0.06);
  padding: clamp(18px, 2.5vw, 24px) 0;
  box-shadow: 0 -12px 40px rgba(0, 95, 241, 0.04);
}

.po-spring-partner-strip-inner {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.po-spring-partner-strip-label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--po-muted);
}

.po-spring-partner-strip-scroll {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.po-spring-partner-strip-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: max-content;
  padding: 4px 12px;
  animation: po-spring-partner-scroll 42s linear infinite;
}

.po-spring-partner-logo {
  flex-shrink: 0;
  height: 26px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
}

.po-spring-partner-logo--wide {
  max-width: 148px;
}

@keyframes po-spring-partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .po-spring-partner-strip-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 24px 40px;
  }

  .po-spring-partner-strip-scroll {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Legacy bento background hero (unused) */
.po-spring-hero--bento {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: clamp(20px, 3vw, 40px) 0;
  text-align: center;
  overflow: hidden;
  background-color: #f4f2ef;
}

.po-spring-hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  background-image: url("/assets/po-financing-bento.png?v=20250618");
  background-repeat: no-repeat;
  background-size: 165% auto;
  z-index: 0;
  pointer-events: none;
}

.po-spring-hero-bg--left {
  left: 0;
  width: 34%;
  background-position: 4% 52%;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}

.po-spring-hero-bg--right {
  right: 0;
  width: 34%;
  background-position: 96% 48%;
  -webkit-mask-image: linear-gradient(270deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0%, #000 55%, transparent 100%);
}

.po-spring-hero--bento::before {
  content: none;
}

.po-spring-hero--bento::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 42% 72% at 50% 48%,
      rgba(244, 242, 239, 0.99) 0%,
      rgba(244, 242, 239, 0.96) 42%,
      rgba(244, 242, 239, 0.72) 58%,
      transparent 72%
    ),
    linear-gradient(
      180deg,
      rgba(244, 242, 239, 0.35) 0%,
      transparent 18%,
      transparent 82%,
      rgba(244, 242, 239, 0.35) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.po-spring-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.po-spring-hero-copy {
  max-width: min(620px, 88vw);
  margin: 0 auto;
  text-align: center;
}

.po-spring-h1--hero {
  font-size: clamp(2.125rem, 4.8vw, 3.5rem);
  line-height: 1.04;
}

.po-spring-lead--hero {
  margin: clamp(14px, 2vw, 20px) auto 0;
  max-width: 42ch;
  font-size: clamp(0.9375rem, 1.35vw, 1.125rem);
  line-height: 1.5;
}

.po-spring-hero--bento .po-spring-hero-cta {
  margin-top: clamp(20px, 2.5vw, 28px);
}

.po-spring-prompts--below-fold {
  margin: 0 auto clamp(32px, 4vw, 48px);
}

.po-spring-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  text-align: center;
}

.po-spring-hero-center {
  max-width: 760px;
  margin: 0 auto;
}

.po-spring-hero-cta {
  margin-top: 28px;
}

.po-spring-hero-visual {
  max-width: 1100px;
  margin: clamp(40px, 6vw, 64px) auto 0;
}

.po-spring-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--spring-shadow);
}

.po-spring-product-card {
  max-width: 720px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  border-radius: 24px;
  box-shadow: var(--spring-shadow);
  overflow: hidden;
}

.po-spring-product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--spring-border);
  background: rgba(244, 242, 239, 0.5);
}

.po-spring-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--po-navy);
}

.po-spring-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c88e;
  box-shadow: 0 0 0 3px rgba(0, 200, 140, 0.2);
}

.po-spring-donut {
  margin: 0;
  padding: 24px 32px 8px;
  max-width: 380px;
  margin-inline: auto;
}

.po-spring-donut .po-equity-hero-donut-svg {
  max-width: 320px;
  margin: 0 auto;
}

.po-spring-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--spring-border);
  border-top: 1px solid var(--spring-border);
}

.po-spring-stat {
  padding: 18px 16px;
  background: #ffffff;
  text-align: left;
}

.po-spring-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--po-muted);
  text-transform: uppercase;
}

.po-spring-stat-value {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--po-navy);
}

.po-spring-stat-value--warn {
  color: #c45c00;
}

.po-spring-stat-value--good {
  color: #007a52;
}

.po-spring-stat-note {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--po-muted);
}

.po-spring-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: clamp(32px, 5vw, 48px) auto 0;
}

.po-spring-prompt {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--spring-border);
  background: #ffffff;
  font-size: 14px;
  color: var(--po-navy);
  box-shadow: 0 1px 2px rgba(6, 31, 48, 0.04);
}

.po-spring-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.po-spring-section--cream {
  background: var(--spring-cream);
}

.po-spring-section--white {
  background: #ffffff;
}

/* Equity comparison — split copy + phone frame */
.po-ex-compare-section {
  overflow: hidden;
}

.po-ex-compare-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.po-ex-compare-copy {
  max-width: 34rem;
}

.po-ex-compare-copy .po-spring-kicker {
  margin-bottom: 12px;
}

.po-ex-compare-title {
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
}

.po-ex-compare-lead {
  margin: 18px 0 0;
  max-width: 42ch;
  text-align: left;
}

.po-ex-phone {
  margin: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.po-ex-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: min(100%, 320px);
  height: min(92%, 680px);
  background: radial-gradient(
    ellipse at center,
    rgba(0, 95, 241, 0.1) 0%,
    rgba(234, 243, 255, 0.5) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.po-ex-phone-shell {
  --phone-width: 290px;
  position: relative;
  z-index: 1;
  width: min(100%, var(--phone-width));
  aspect-ratio: 393 / 760;
  padding: 10px;
  border-radius: calc(var(--phone-width) * 0.14);
  background: linear-gradient(160deg, #2a2a2e 0%, #1c1c1e 48%, #0f0f10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(6, 31, 48, 0.12),
    0 28px 72px rgba(6, 31, 48, 0.18),
    0 10px 28px rgba(6, 31, 48, 0.08);
}

.po-ex-phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 46px 14px 16px;
  border-radius: calc(var(--phone-width) * 0.115);
  background: #f4f2ef;
  border: 1px solid rgba(6, 31, 48, 0.06);
  overflow: hidden;
}

.po-ex-phone-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  pointer-events: none;
}

.po-ex-phone-time {
  position: absolute;
  left: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--po-navy);
  letter-spacing: -0.01em;
}

.po-ex-phone-dynamic-island {
  width: 32%;
  max-width: 108px;
  height: 28px;
  border-radius: 999px;
  background: #0f0f10;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.po-ex-phone-signal {
  position: absolute;
  right: 22px;
  display: flex;
  align-items: center;
  color: var(--po-navy);
}

.po-ex-phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-height: 0;
}

.po-ex-phone-home-indicator {
  flex-shrink: 0;
  width: 36%;
  max-width: 134px;
  height: 5px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: rgba(6, 31, 48, 0.18);
}

.po-ex-phone-notch {
  display: none;
}

.po-ex-phone-app-head {
  margin-bottom: 14px;
  text-align: center;
}

.po-ex-phone-app-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--po-muted);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--spring-border);
}

.po-ex-compare-block + .po-ex-compare-block {
  margin-top: 14px;
}

.po-ex-po-card {
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  box-shadow: 0 1px 2px rgba(6, 31, 48, 0.04);
}

.po-ex-po-card-label {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--po-muted);
}

.po-ex-po-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--po-navy);
}

.po-ex-po-card-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--spring-border);
}

.po-ex-po-card-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--po-muted);
}

.po-ex-po-card-stat-value {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--po-navy);
}

.po-ex-fund-option {
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  box-shadow: 0 1px 2px rgba(6, 31, 48, 0.04);
}

.po-ex-fund-option + .po-ex-fund-option {
  margin-top: 8px;
}

.po-ex-fund-option--bridge {
  border-color: rgba(0, 200, 140, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, rgba(0, 200, 140, 0.04) 100%);
  box-shadow: 0 0 0 1px rgba(0, 200, 140, 0.06);
}

.po-ex-fund-option--equity {
  border-color: rgba(196, 84, 76, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, rgba(196, 84, 76, 0.03) 100%);
  box-shadow: 0 0 0 1px rgba(196, 84, 76, 0.05);
}

.po-ex-fund-equity-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.po-ex-fund-equity-row .po-ex-fund-metric-label {
  flex-shrink: 0;
  padding-top: 6px;
}

.po-ex-fund-metrics-row--equity {
  align-items: flex-end;
}

.po-ex-fund-metric--chart {
  align-items: flex-end;
  text-align: right;
}

.po-ex-fund-metric--chart .po-ex-cap-visual {
  align-items: flex-end;
}

.po-ex-fund-metric-value--bad {
  color: #c4544c;
}

.po-ex-cap-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 0;
}

.po-ex-cap-pie {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(
    #005ff1 0deg 72deg,
    #6ba8f7 72deg 144deg,
    #061f30 144deg 324deg,
    #c4544c 324deg 360deg
  );
  box-shadow: 0 2px 8px rgba(6, 31, 48, 0.12);
}

.po-ex-cap-pie::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #ffffff;
}

.po-ex-cap-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 8px;
  max-width: 148px;
}

.po-ex-cap-legend li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--po-muted);
  white-space: nowrap;
}

.po-ex-cap-swatch {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.po-ex-cap-swatch--seed {
  background: #005ff1;
}

.po-ex-cap-swatch--series {
  background: #6ba8f7;
}

.po-ex-cap-swatch--founder {
  background: #061f30;
}

.po-ex-fund-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.po-ex-fund-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.po-ex-fund-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.po-ex-fund-metric-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--po-muted);
}

.po-ex-fund-metric-value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--po-navy);
}

.po-ex-fund-metric-value--good {
  color: #007a52;
}

.po-ex-compare-block-title {
  margin: 0 0 10px;
  padding-left: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--po-navy);
}

.po-ex-compare-card {
  padding: 12px 12px 10px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  box-shadow: 0 1px 2px rgba(6, 31, 48, 0.04);
}

.po-ex-compare-card + .po-ex-compare-card {
  margin-top: 8px;
}

.po-ex-compare-card--bridge {
  border-color: rgba(0, 95, 241, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, rgba(234, 243, 255, 0.45) 100%);
}

.po-ex-compare-card--equity {
  border-color: rgba(6, 31, 48, 0.12);
  background: #ffffff;
}

.po-ex-compare-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.po-ex-compare-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.po-ex-compare-tag--bridge {
  color: var(--po-blue);
  background: rgba(0, 95, 241, 0.1);
}

.po-ex-compare-tag--equity {
  color: var(--po-navy);
  background: rgba(6, 31, 48, 0.08);
}

.po-ex-compare-pill {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--po-navy);
  background: rgba(6, 31, 48, 0.06);
}

.po-ex-compare-pill--good {
  color: #007a52;
  background: rgba(0, 200, 140, 0.14);
}

.po-ex-compare-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.po-ex-compare-ring--full {
  color: #007a52;
  background: rgba(0, 200, 140, 0.14);
  border: 2px solid #00c88e;
}

.po-ex-compare-ring--lost {
  color: var(--po-navy);
  background: #ffffff;
  border: 2px solid rgba(6, 31, 48, 0.2);
  box-shadow: inset 0 0 0 3px rgba(6, 31, 48, 0.08);
}

.po-ex-compare-card-value {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--po-navy);
}

.po-ex-compare-card-note {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--po-muted);
}

.po-ex-compare-card-foot {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--spring-border);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--po-muted);
}

.po-ex-compare-card-foot--good {
  color: #007a52;
  border-top-color: rgba(0, 200, 140, 0.2);
}

.po-spring-section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.po-spring-section-head--tight {
  margin-bottom: 0;
}

.po-spring-panel {
  background: #ffffff;
  border: 1px solid var(--spring-border);
  border-radius: 24px;
  box-shadow: var(--spring-shadow);
  padding: clamp(16px, 2.5vw, 24px);
  overflow: hidden;
}

.po-spring-panel .po-ex-timeline-wrap--featured {
  margin: 0;
}

.po-spring-panel .po-ex-timeline-img {
  box-shadow: none;
  border-radius: 16px;
}

.po-spring-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.po-spring-feature-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--spring-border);
  background: #ffffff;
  box-shadow: var(--spring-shadow);
}

.po-spring-section--white .po-spring-feature-card {
  background: var(--spring-cream);
}

.po-spring-feature-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.po-spring-feature-card--good .po-spring-feature-tag {
  background: rgba(0, 200, 140, 0.12);
  color: #007a52;
}

.po-spring-feature-card--bad .po-spring-feature-tag {
  background: rgba(6, 31, 48, 0.08);
  color: var(--po-navy);
}

.po-spring-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.po-spring-feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--po-navy);
}

.po-spring-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--po-blue);
}

/* What you get — split layout with character cards */
.po-ex-what-you-get {
  position: relative;
  overflow: hidden;
}

.po-ex-what-you-get::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--po-blue) 0%, #00c88e 100%);
}

.po-ex-what-you-get-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.po-ex-what-you-get-copy {
  max-width: 34rem;
}

.po-ex-what-you-get-copy .po-spring-kicker {
  margin-bottom: 12px;
}

.po-ex-what-you-get-copy .po-spring-h2 {
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
}

.po-ex-what-you-get-lead {
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.6;
  color: var(--po-muted);
  max-width: 42ch;
}

.po-ex-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.po-ex-feature-card {
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  box-shadow: 0 2px 4px rgba(6, 31, 48, 0.03), 0 16px 40px rgba(6, 31, 48, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.po-ex-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(6, 31, 48, 0.04), 0 20px 48px rgba(6, 31, 48, 0.08);
}

.po-ex-feature-card--for {
  border-top: 3px solid #00c88e;
}

.po-ex-feature-card--not {
  border-top: 3px solid rgba(196, 84, 76, 0.45);
}

.po-ex-feature-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.po-ex-feature-card-icon--good {
  color: #007a52;
  background: rgba(0, 200, 140, 0.12);
}

.po-ex-feature-card-icon--bad {
  color: var(--po-navy);
  background: rgba(6, 31, 48, 0.06);
}

.po-ex-feature-card-title {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--po-navy);
}

.po-ex-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.po-ex-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--po-navy);
}

.po-ex-feature-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
}

.po-ex-feature-list--check .po-ex-feature-marker {
  color: #007a52;
  background: rgba(0, 200, 140, 0.14);
}

.po-ex-feature-list--x .po-ex-feature-marker {
  color: #9a4f48;
  background: rgba(196, 84, 76, 0.1);
}

.po-spring-demo-title {
  margin: 0;
}

.po-ex-calc-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(6, 31, 48, 0.1);
  overflow: hidden;
}

.po-ex-calc-inputs {
  padding: clamp(28px, 4vw, 40px);
  background: var(--spring-cream);
  border-right: 1px solid var(--spring-border);
}

.po-ex-calc-inputs .po-equity-calc-label {
  color: var(--po-navy);
}

.po-ex-calc-inputs .po-equity-calc-value {
  color: var(--po-navy);
  background: transparent;
  border: none;
}

.po-ex-calc-inputs .po-equity-calc-range {
  accent-color: var(--po-blue);
}

.po-ex-calc-output {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.po-ex-calc-output .po-spring-stat-value {
  font-size: clamp(0.75rem, 4.2cqi, 1.25rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.po-ex-calc-output .po-spring-stat--highlight .po-spring-stat-value {
  color: var(--po-blue);
  font-size: clamp(0.8125rem, 4.8cqi, 1.375rem);
}

.po-equity-close--cta {
  padding: clamp(80px, 10vw, 120px) 0;
}

.po-equity-close-head .po-spring-section-lead {
  margin-bottom: 0;
}

.po-equity-close-cta-wrap {
  margin-top: clamp(36px, 5vw, 52px);
}

.po-spring-final-inner .po-btn {
  margin-top: clamp(32px, 4vw, 44px);
}

.po-spring-demo {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.po-spring-section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.po-spring-demo-head {
  margin-bottom: 28px;
}

.po-spring-demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  border-radius: 24px;
  box-shadow: var(--spring-shadow);
  overflow: hidden;
}

.po-spring-demo-inputs {
  padding: clamp(28px, 4vw, 36px);
  border-right: 1px solid var(--spring-border);
  background: var(--spring-cream);
}

.po-spring-demo-output {
  padding: clamp(28px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.po-spring-demo-answer {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--po-navy);
}

.po-spring-demo-copy {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--po-muted);
}

.po-spring-stat-row--calc {
  border: 1px solid var(--spring-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--spring-border);
  container-type: inline-size;
}

.po-spring-stat-row--calc .po-spring-stat {
  min-width: 0;
  padding: 12px 8px;
}

.po-spring-stat--highlight {
  background: rgba(0, 95, 241, 0.04);
}

.po-spring-demo-cta {
  margin-top: 28px;
}

.po-page-spring .po-equity-calc-disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--po-muted);
}

.po-spring-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin-inline: auto;
}

.po-spring-step {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--spring-border);
  border-radius: 20px;
  box-shadow: var(--spring-shadow);
}

.po-spring-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--po-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.po-spring-step-title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--po-navy);
}

.po-spring-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--po-muted);
}

.po-spring-step-meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #007a52;
}

.po-spring-stats-section {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.po-spring-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 48px);
  border-radius: 24px;
  background: linear-gradient(135deg, #005ff1 0%, #0048c4 42%, #061f30 100%);
  box-shadow: 0 20px 56px rgba(0, 95, 241, 0.22);
  color: #ffffff;
  text-align: center;
}

.po-spring-stats-banner .po-spring-stats-item {
  min-width: 0;
}

.po-spring-stats-metric {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: 0 0 10px;
  line-height: 1;
}

.po-spring-stats-banner .po-spring-stats-num {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.po-spring-stats-suffix {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #b8d9ff;
}

.po-spring-stats-banner .po-spring-stats-label {
  margin: 0;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.po-spring-stats-banner .po-spring-stats-label strong {
  color: #ffffff;
  font-weight: 600;
}

.po-spring-stats {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--po-navy);
  color: #ffffff;
}

.po-spring-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.po-spring-stats-num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.po-spring-stats-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.po-page-spring .po-testimonial-card--review {
  border-radius: 20px;
  border-color: var(--spring-border);
  box-shadow: var(--spring-shadow);
}

.po-page-spring .po-testimonials--equity {
  background: #ffffff;
}

.po-testimonials--equity .po-spring-h2--nowrap {
  white-space: nowrap;
  font-size: clamp(1.625rem, 2.6vw, 2.75rem);
}

.po-spring-final {
  padding: clamp(72px, 9vw, 112px) 0;
  background: #eaf3ff;
}

.po-spring-final-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 5vw, 56px);
  background: var(--po-blue);
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 95, 241, 0.28);
}

.po-spring-final-title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.po-spring-final-lead {
  margin: 16px auto 28px;
  max-width: 42ch;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .po-ex-compare-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .po-ex-compare-copy {
    max-width: none;
    text-align: center;
  }

  .po-ex-compare-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .po-spring-partner-strip-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .po-spring-partner-strip-label {
    max-width: 28ch;
    margin-inline: auto;
  }

  .po-ex-what-you-get-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .po-ex-what-you-get-copy {
    max-width: none;
    text-align: center;
  }

  .po-ex-what-you-get-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .po-ex-feature-cards {
    grid-template-columns: 1fr;
  }

  .po-ex-calc-panel {
    grid-template-columns: 1fr;
  }

  .po-ex-calc-inputs {
    border-right: none;
    border-bottom: 1px solid var(--spring-border);
  }

  .po-spring-stats-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: clamp(28px, 4vw, 36px) clamp(20px, 3vw, 28px);
  }

  .po-spring-hero--split .po-spring-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .po-spring-hero--split .po-spring-hero-copy {
    max-width: none;
    text-align: center;
  }

  .po-spring-hero--split .po-spring-lead--hero {
    margin-left: auto;
    margin-right: auto;
  }

  .po-spring-hero--split .po-spring-hero-visual {
    justify-content: center;
  }

  .po-spring-hero--split .po-spring-hero-image {
    max-height: 360px;
    object-position: center;
  }

  .po-spring-feature-grid,
  .po-spring-demo-panel,
  .po-spring-steps,
  .po-spring-stats-grid {
    grid-template-columns: 1fr;
  }

  .po-spring-demo-inputs {
    border-right: none;
    border-bottom: 1px solid var(--spring-border);
  }

  .po-spring-stat-row {
    grid-template-columns: 1fr;
  }

  .po-testimonials--equity .po-spring-h2--nowrap {
    white-space: normal;
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 640px) {
  .po-spring-stats-banner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .po-page-spring .po-equity-hero-shell--bento {
    min-height: 100svh;
  }

  .po-spring-hero--split {
    padding: 12px 0 20px;
  }

  .po-spring-h1--hero {
    font-size: clamp(1.875rem, 8.5vw, 2.375rem);
  }

  .po-spring-h1--hero br {
    display: none;
  }

  .po-spring-lead--hero {
    font-size: 0.9375rem;
    max-width: none;
  }

  .po-spring-hero--split .po-spring-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .po-spring-h1 br,
  .po-spring-h2 br {
    display: none;
  }

  .po-spring-prompts {
    flex-direction: column;
    align-items: stretch;
  }
}
