/* PesoLend marketing theme v1.1.0 — HOMEPAGE-V2
   Light shell #FAFBFC + white glass header + cinematic navy hero + teal accents */
:root {
  --pl-ink: #0B1220;
  --pl-primary: #2EC4B6;
  --pl-primary-hover: #26A99D;
  --pl-primary-soft: #E6FAF8;
  --pl-bg: #FAFBFC;
  --pl-bg-muted: #F7FAFC;
  --pl-bg-white: #FFFFFF;
  --pl-ink-secondary: #4A5568;
  --pl-muted: #718096;
  --pl-border: #E2E8F0;
  --pl-footer-muted: #94A3B8;
  --pl-on-dark: #94A3B8;
  --pl-radius-btn: 8px;
  --pl-radius-card: 16px;
  --pl-max: 1120px;
  --pl-max-wide: 1280px;
  --pl-header-h: 72px;
  --pl-gutter: 1.5rem;
  --pl-gutter-lg: 2rem;
  --pl-section-y: clamp(5rem, 10vw, 8rem);
  --pl-section-y-tight: clamp(3rem, 6vw, 5rem);
  --pl-section-y-dense: clamp(3rem, 6vw, 4.5rem);
  --pl-chip-bg: #E6FAF8;
  --pl-card-gap: 1rem;
  --pl-stack: 1.25rem;
  --pl-stack-lg: 2rem;
  --pl-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --pl-display: clamp(3rem, 6vw, 4.5rem);
  --pl-h2: clamp(1.75rem, 3vw, 2.5rem);
  --pl-h3: 1.25rem;
  --pl-body: 1.0625rem;
  --pl-body-lg: 1.25rem;
  --pl-meta: 0.8125rem;
  --pl-nav: 0.875rem;
  --pl-shadow-frame: 0 24px 80px rgba(11, 18, 32, 0.18);
  --pl-shadow-card: 0 12px 40px rgba(11, 18, 32, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pl-font);
  font-size: var(--pl-body);
  line-height: 1.65;
  color: var(--pl-ink-secondary);
  background: var(--pl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pl-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--pl-primary-hover); }
h1, h2, h3, h4, h5, h6 {
  color: var(--pl-ink);
  margin: 0 0 0.75em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--pl-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
h2 { font-size: var(--pl-h2); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; }
h3 { font-size: var(--pl-h3); font-weight: 600; line-height: 1.3; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; font-weight: 600; line-height: 1.35; }
p { margin: 0 0 1em; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.pl-container {
  width: 100%;
  max-width: var(--pl-max);
  margin: 0 auto;
  padding: 0 var(--pl-gutter);
}
.pl-container--wide {
  max-width: var(--pl-max-wide);
}

/* ========== Sticky white glass header ========== */
.pl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--pl-header-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--pl-border);
  transition: box-shadow 0.2s;
}
.pl-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(11, 18, 32, 0.06);
}
.pl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--pl-header-h);
  gap: 1rem;
  max-width: var(--pl-max-wide);
  margin: 0 auto;
  padding: 0 var(--pl-gutter);
}
.pl-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: var(--pl-ink);
  text-decoration: none;
}
.pl-brand:hover { color: var(--pl-ink); opacity: 0.9; }
.pl-brand__mark { width: 36px; height: 36px; object-fit: contain; }
.pl-brand__wordmark { height: 34px; width: auto; object-fit: contain; }
.pl-brand__text {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--pl-ink);
}

.pl-nav { display: none; flex: 1; justify-content: center; }
.pl-nav__list {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pl-nav__item { position: relative; }
.pl-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem 0.55rem;
  font-size: var(--pl-nav);
  font-weight: 500;
  color: var(--pl-ink);
  border-radius: 6px;
  white-space: nowrap;
  position: relative;
}
.pl-nav__link:hover { color: var(--pl-primary); }
.pl-nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--pl-primary);
  border-radius: 1px;
}
.pl-nav__caret { font-size: 0.7em; opacity: 0.65; }
.pl-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(11, 18, 32, 0.12);
  z-index: 50;
}
.pl-nav__item.has-children:hover > .pl-nav__dropdown,
.pl-nav__item.has-children:focus-within > .pl-nav__dropdown { display: block; }
.pl-nav__dropdown a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pl-ink-secondary);
  border-radius: 8px;
}
.pl-nav__dropdown a:hover { color: var(--pl-primary); background: var(--pl-bg-muted); }

.pl-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Buttons */
.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 36px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--pl-radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.pl-btn--ghost {
  color: var(--pl-ink);
  background: transparent;
  border-color: var(--pl-border);
}
.pl-btn--ghost:hover {
  border-color: #CBD5E1;
  color: var(--pl-ink);
  background: var(--pl-bg-muted);
}
.pl-btn--primary {
  color: var(--pl-ink);
  background: var(--pl-primary);
}
.pl-btn--primary:hover {
  background: var(--pl-primary-hover);
  color: var(--pl-ink);
}
.pl-btn--lg {
  height: 44px;
  padding: 0 20px;
  font-size: 1rem;
  border-radius: 10px;
}
.pl-btn--block { width: 100%; height: auto; padding: 0.85rem 1rem; }
.pl-btn--on-dark {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}
.pl-btn--on-dark:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.pl-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--pl-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.pl-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--pl-ink);
  position: relative;
}
.pl-burger span::before,
.pl-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--pl-ink);
}
.pl-burger span::before { top: -6px; }
.pl-burger span::after { top: 6px; }

.pl-drawer {
  display: none;
  position: fixed;
  inset: var(--pl-header-h) 0 0 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 1.25rem;
  flex-direction: column;
  border-top: 1px solid var(--pl-border);
}
.pl-drawer.is-open { display: flex; }
.pl-drawer .pl-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.pl-drawer .pl-nav__link {
  padding: 0.85rem 0.5rem;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--pl-border);
}
.pl-drawer .pl-nav__link:hover::after { display: none; }
.pl-drawer .pl-nav__dropdown {
  position: static;
  display: block;
  box-shadow: none;
  border: none;
  padding: 0 0 0.5rem 1rem;
}
.pl-drawer .pl-nav__dropdown a { min-height: 36px; }
.pl-drawer__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 1100px) {
  .pl-nav { display: flex; }
  .pl-burger { display: none; }
  .pl-header__actions .pl-btn--ghost { display: inline-flex; }
}
@media (max-width: 1099px) {
  .pl-header__actions .pl-btn--ghost { display: none; }
  .pl-header__actions .pl-btn--primary { display: none; }
}

/* ========== Main ========== */
.pl-main { min-height: 50vh; }

/* ========== A. Cinematic hero ========== */
.pl-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--pl-ink);
}
.pl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.pl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pl-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(11, 18, 32, 0.88) 0%,
    rgba(11, 18, 32, 0.72) 42%,
    rgba(11, 18, 32, 0.45) 70%,
    rgba(11, 18, 32, 0.55) 100%
  );
}
.pl-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .pl-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}
.pl-hero__copy { max-width: 34rem; }
.pl-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--pl-meta);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #E2E8F0;
  margin-bottom: 1.15rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.pl-hero__pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pl-primary);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.25);
}
.pl-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: var(--pl-display);
}
.pl-hero__lead {
  font-size: var(--pl-body-lg);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #CBD5E1;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pl-hero__visual {
  position: relative;
  perspective: 1200px;
}
.pl-hero__float {
  transform: rotate(-1deg);
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}
@media (max-width: 959px) {
  .pl-hero__float { transform: none; }
}

/* Product browser frame (shared) */
.pl-frame {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0F172A;
  box-shadow: var(--pl-shadow-frame);
  overflow: hidden;
}
.pl-frame--light {
  border-color: var(--pl-border);
  background: #fff;
  box-shadow: var(--pl-shadow-frame);
}
.pl-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pl-frame--light .pl-frame__chrome {
  background: #F8FAFC;
  border-bottom-color: var(--pl-border);
}
.pl-frame__dots { display: flex; gap: 0.35rem; }
.pl-frame__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #334155;
}
.pl-frame__dots span:nth-child(1) { background: #F87171; }
.pl-frame__dots span:nth-child(2) { background: #FBBF24; }
.pl-frame__dots span:nth-child(3) { background: #34D399; }
.pl-frame__url {
  flex: 1;
  margin-left: 0.35rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: #64748B;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pl-frame--light .pl-frame__url {
  background: #fff;
  border-color: var(--pl-border);
  color: var(--pl-muted);
}
.pl-frame__screen {
  aspect-ratio: 16 / 10;
  background: #020617;
  overflow: hidden;
}
.pl-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ========== B. Trust strip ========== */
.pl-trust {
  padding: var(--pl-section-y-tight) 0;
  background: var(--pl-bg-white);
  border-bottom: 1px solid var(--pl-border);
}
.pl-trust__label {
  display: block;
  text-align: center;
  font-size: var(--pl-meta);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pl-muted);
  margin-bottom: 1rem;
}
.pl-trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.pl-trust__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pl-ink);
  background: var(--pl-bg-muted);
  border: 1px solid var(--pl-border);
  border-radius: 999px;
}

/* ========== Sections ========== */
.pl-section {
  padding: var(--pl-section-y) 0;
}
.pl-section--muted { background: var(--pl-bg-muted); }
.pl-section__head {
  max-width: 40rem;
  margin-bottom: var(--pl-stack-lg);
}
.pl-section__eyebrow {
  display: inline-block;
  font-size: var(--pl-meta);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pl-primary);
  margin-bottom: 0.75rem;
}
.pl-section__title { margin-bottom: 0.65rem; }
.pl-section__lead {
  font-size: var(--pl-body);
  color: var(--pl-ink-secondary);
  margin: 0;
  max-width: 36rem;
  line-height: 1.65;
}

/* ========== C. Bento ========== */
.pl-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pl-bento {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  .pl-bento__cell--a { grid-column: span 7; grid-row: span 2; min-height: 320px; }
  .pl-bento__cell--b,
  .pl-bento__cell--c { grid-column: span 5; min-height: 150px; }
  .pl-bento__cell--s { grid-column: span 3; min-height: 150px; }
}
.pl-bento__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.4rem;
  background: var(--pl-bg-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.pl-bento__cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--pl-shadow-card);
  border-color: #CBD5E1;
}
.pl-bento__cell--accent {
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(46, 196, 182, 0.12), transparent 55%),
    var(--pl-bg-white);
  border-color: rgba(46, 196, 182, 0.35);
}
.pl-bento__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--pl-primary-soft);
  color: var(--pl-primary);
  margin-bottom: 0.35rem;
  flex-shrink: 0;
}
.pl-bento__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pl-bento__cell--a .pl-bento__icon {
  width: 42px;
  height: 42px;
}
.pl-bento__cell--a .pl-bento__icon svg { width: 22px; height: 22px; }
.pl-bento__cell h3 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--pl-ink);
}
.pl-bento__cell--a h3 { font-size: 1.35rem; }
.pl-bento__cell p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--pl-ink-secondary);
}
.pl-bento__cell--a { justify-content: flex-start; }
.pl-bento__media {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pl-border);
  aspect-ratio: 16 / 9;
  background: var(--pl-bg-muted);
}
.pl-bento__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

@media (prefers-reduced-motion: reduce) {
  .pl-bento__cell:hover { transform: none; }
  .pl-hero__float { transform: none; }
}

/* ========== D. Product showcase ========== */
.pl-showcase {
  padding: var(--pl-section-y) 0;
  background: var(--pl-bg-white);
  border-top: 1px solid var(--pl-border);
}
.pl-showcase__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .pl-showcase__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }
}
.pl-showcase__copy .pl-section__head { margin-bottom: 1.25rem; }
.pl-showcase__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.pl-showcase__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.975rem;
  color: var(--pl-ink-secondary);
  line-height: 1.5;
}
.pl-showcase__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pl-primary);
}
.pl-showcase__caption {
  margin-top: 0.85rem;
  font-size: var(--pl-meta);
  font-weight: 500;
  color: var(--pl-muted);
  font-variant-numeric: tabular-nums;
}

/* ========== E. Outcomes ========== */
.pl-outcomes {
  padding: var(--pl-section-y-tight) 0;
  background: var(--pl-bg-muted);
  border-top: 1px solid var(--pl-border);
  border-bottom: 1px solid var(--pl-border);
}
.pl-outcomes__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pl-outcomes__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.pl-outcomes__card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}
.pl-outcomes__card strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pl-ink);
  margin-bottom: 0.35rem;
}
.pl-outcomes__card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--pl-ink-secondary);
}

/* ========== F. Pricing teaser ========== */
.pl-pricing {
  padding: var(--pl-section-y) 0;
  background: var(--pl-bg-white);
}
.pl-pricing__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .pl-pricing__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.pl-price-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
}
.pl-price-card--featured {
  background: #fff;
  border-color: var(--pl-primary);
  box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.25), var(--pl-shadow-card);
}
.pl-price-card__badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pl-ink);
  background: var(--pl-primary-soft);
  border: 1px solid rgba(46, 196, 182, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
.pl-price-card h3 { margin: 0; font-size: 1.25rem; }
.pl-price-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--pl-ink-secondary);
}
.pl-price-card__amount {
  margin: 0 !important;
  flex: 0 !important;
  font-size: 2rem !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--pl-ink) !important;
}
.pl-price-card__amount span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pl-muted);
  letter-spacing: 0;
}
.pl-price-card__period {
  margin: 0 !important;
  flex: 0 !important;
  font-size: 0.8125rem !important;
  color: var(--pl-muted) !important;
}
.pl-price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pl-price-card ul li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--pl-ink-secondary);
}
.pl-price-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pl-primary);
}
.pl-pricing__footnote {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--pl-muted);
}
.pl-pricing__footnote a {
  font-weight: 600;
  margin-left: 0.35rem;
}
.pl-pricing__setup {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--pl-bg);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.pl-pricing__setup strong { color: var(--pl-ink); }
.pl-pricing__setup p { margin: 0; font-size: 0.9375rem; color: var(--pl-ink-secondary); }
.pl-pricing__addon {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(46, 196, 182, 0.35);
  border-radius: var(--pl-radius-card);
  box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.08), var(--pl-shadow-card);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.pl-pricing__addon-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: min(100%, 18rem);
  flex: 1;
}
.pl-pricing__addon-label {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pl-ink);
  background: var(--pl-primary-soft);
  border: 1px solid rgba(46, 196, 182, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
.pl-pricing__addon-copy strong {
  color: var(--pl-ink);
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.pl-pricing__addon-copy p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--pl-ink-secondary);
  max-width: 42rem;
}
.pl-pricing__addon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ========== G. FAQ ========== */
.pl-faq {
  padding: var(--pl-section-y-tight) 0 var(--pl-section-y);
  background: var(--pl-bg);
}
.pl-faq__list {
  max-width: 720px;
  border-top: 1px solid var(--pl-border);
}
.pl-faq__item {
  border-bottom: 1px solid var(--pl-border);
}
.pl-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pl-ink);
  letter-spacing: -0.01em;
}
.pl-faq__item summary::-webkit-details-marker { display: none; }
.pl-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--pl-muted);
  font-weight: 400;
  font-size: 1.25rem;
}
.pl-faq__item[open] summary::after { content: "–"; }
.pl-faq__item p {
  margin: 0 0 1.15rem;
  padding-right: 1.5rem;
  color: var(--pl-ink-secondary);
  font-size: 0.975rem;
}

/* ========== H. Closing navy band ========== */
.pl-cta-band {
  padding: var(--pl-section-y) 0;
  background: var(--pl-ink);
  text-align: center;
}
.pl-cta-band__inner { max-width: 36rem; margin: 0 auto; }
.pl-cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.pl-cta-band p {
  color: var(--pl-on-dark);
  margin-bottom: 1.5rem;
}
.pl-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.pl-cta-band__hint {
  font-size: var(--pl-meta);
  color: #64748B;
  margin: 0;
}

/* Sticky mobile CTA */
.pl-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--pl-border);
  box-shadow: 0 -8px 32px rgba(11, 18, 32, 0.08);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.pl-sticky-cta.is-visible { display: flex; }
.pl-sticky-cta__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pl-ink);
  line-height: 1.3;
}
@media (min-width: 1100px) {
  .pl-sticky-cta.is-visible { display: none; }
}

/* Inner pages */
.pl-content { padding: 2.5rem 0 4rem; }
.pl-content .entry-header { margin-bottom: 1.5rem; }
.pl-content .entry-title { margin-bottom: 0.5rem; }
.pl-featured {
  margin: 0 0 2rem;
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  border: 1px solid var(--pl-border);
}
.pl-featured img { width: 100%; height: auto; }
.pl-entry-content > *:first-child { margin-top: 0; }
.pl-entry-content ul, .pl-entry-content ol { padding-left: 1.25rem; }
.pl-entry-content img { border-radius: 8px; }
.pl-meta { font-size: 0.875rem; font-weight: 500; color: var(--pl-muted); margin-bottom: 1rem; }

.pl-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.pl-card {
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  padding: 1.25rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pl-card:hover {
  border-color: var(--pl-primary);
  box-shadow: var(--pl-shadow-card);
}
.pl-card h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.pl-card p { font-size: 0.9375rem; margin: 0; }
.pl-card a { color: inherit; }
.pl-card a:hover { color: var(--pl-primary); }

/* Blog card grid — marketing density pass */
.pl-posts {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pl-posts { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .pl-posts { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.pl-post-card {
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 150ms ease, box-shadow 150ms ease;
  padding: 0;
  gap: 0;
}
.pl-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pl-shadow-card);
}
.pl-post-card__thumb {
  display: block;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--pl-border);
  aspect-ratio: 16 / 9;
  background: var(--pl-bg-muted);
  flex-shrink: 0;
}
.pl-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pl-post-card__body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pl-post-card__chip {
  align-self: flex-start;
  font: 500 0.75rem/1.2 var(--pl-font);
  letter-spacing: 0.02em;
  display: inline-flex;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--pl-chip-bg, #E6FAF8);
  color: var(--pl-ink);
}
.pl-post-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .pl-post-card__title { font-size: 1.25rem; }
}
.pl-post-card__title a { color: inherit; }
.pl-post-card__title a:hover { color: var(--pl-primary); }
.pl-post-card__excerpt {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--pl-ink-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pl-post-card__meta {
  margin: auto 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pl-muted);
}
@media (prefers-reduced-motion: reduce) {
  .pl-post-card { transition: none; }
  .pl-post-card:hover { transform: none; }
}

.pl-pagination { margin-top: 2rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pl-pagination a, .pl-pagination span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--pl-border);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pl-ink);
}
.pl-pagination .current {
  background: var(--pl-ink);
  color: #fff;
  border-color: var(--pl-ink);
}

.pl-search-form { display: flex; gap: 0.5rem; max-width: 28rem; margin-bottom: 2rem; }
.pl-search-form input[type="search"] {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-btn);
  font-family: inherit;
  font-size: 1rem;
}
.pl-404 { text-align: center; padding: 4rem 0; }
.pl-404 h1 { margin-bottom: 0.75rem; }

/* ========== Footer ========== */
.pl-footer {
  background: var(--pl-ink);
  color: var(--pl-footer-muted);
  padding: 4rem 0 0;
  margin-top: 0;
}
.pl-footer a { color: #E2E8F0; }
.pl-footer a:hover { color: var(--pl-primary); }
.pl-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .pl-footer__grid { grid-template-columns: 1.4fr repeat(4, 1fr); gap: 1.5rem; }
}
.pl-footer__brand-line {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-top: 0.75rem;
  max-width: 16rem;
}
.pl-footer__col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pl-footer__col ul { list-style: none; margin: 0; padding: 0; }
.pl-footer__col li { margin-bottom: 0.55rem; }
.pl-footer__col a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pl-footer-muted);
}
.pl-footer__col a:hover { color: var(--pl-primary); }
.pl-footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.pl-footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.pl-footer__legal a { color: var(--pl-footer-muted); }
.pl-footer__mark { width: 28px; height: 28px; }

body.home .pl-main,
body.front-page .pl-main {
  padding-bottom: 0;
}
@media (max-width: 1099px) {
  body.home .pl-footer,
  body.front-page .pl-footer {
    padding-bottom: 4.5rem;
  }
}

.alignwide { max-width: 100%; }
.wp-block-button__link {
  background: var(--pl-primary) !important;
  color: var(--pl-ink) !important;
  border-radius: var(--pl-radius-btn) !important;
  font-family: var(--pl-font) !important;
  font-weight: 600 !important;
}

/* Pricing page compact dark hero */
.pl-hero--pricing {
  min-height: auto;
  padding: clamp(4rem, 8vw, 5.5rem) 0 clamp(3.25rem, 6vw, 4.25rem);
}
.pl-pricing--page {
  padding-top: var(--pl-section-y-tight);
}
.pl-pricing-page .pl-price-card .pl-btn {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

/* ========== Marketing density pass (v1.1.6) ========== */
.pl-content--dense { padding: var(--pl-section-y-dense) 0; }
.pl-content--has-hero {
  padding-top: 0;
}
.pl-container--flush {
  max-width: none;
  padding: 0;
}
.pl-container--flush > .pl-entry-content > .pl-hero,
.pl-container--flush > .pl-entry-content > .pl-section,
.pl-entry-content > .pl-hero {
  /* allow full-bleed heroes from page HTML */
}
.pl-entry-content > .pl-hero { margin-top: 0; }
.pl-content--has-hero .pl-entry-content > .pl-section,
.pl-content--has-hero .pl-entry-content > section.pl-section {
  padding-left: var(--pl-gutter);
  padding-right: var(--pl-gutter);
}
.pl-content--has-hero .pl-entry-content > .pl-section > .pl-wrap,
.pl-content--has-hero .pl-entry-content .pl-wrap {
  max-width: var(--pl-max);
  margin-left: auto;
  margin-right: auto;
}

.pl-hero--archive {
  min-height: auto;
  padding: clamp(3.25rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.25rem);
  position: relative;
  overflow: hidden;
  background: var(--pl-ink);
  color: #fff;
}
.pl-hero--archive .pl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pl-hero--archive .pl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.pl-hero--archive .pl-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.82) 100%);
}
.pl-hero--archive .pl-container { position: relative; z-index: 2; }
.pl-hero--archive .pl-hero__copy { max-width: 40rem; }
.pl-hero--archive h1 { color: #fff; margin-bottom: 0.65rem; font-size: clamp(2rem, 4.5vw, 3rem); }
.pl-hero--archive .pl-hero__lead { color: var(--pl-on-dark); margin: 0; max-width: 36rem; }
.pl-hero--archive .pl-hero__pill {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pl-ink);
  background: var(--pl-primary);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.pl-hero--archive .pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Solutions hub cards */
.pl-solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pl-solutions-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .pl-solutions-grid { grid-template-columns: repeat(3, 1fr); }
}
.pl-solution-card {
  background: #fff;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.pl-solution-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pl-shadow-card);
}
.pl-solution-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pl-solution-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.pl-solution-card__title a { color: inherit; }
.pl-solution-card__title a:hover { color: var(--pl-primary); }
.pl-solution-card__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--pl-ink-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .pl-solution-card { transition: none; }
  .pl-solution-card:hover { transform: none; }
}

/* Legacy content CTAs → button chrome */
.pl-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.pl-ctas .primary,
.pl-ctas a.primary,
a.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--pl-radius-btn);
  background: var(--pl-primary);
  color: var(--pl-ink) !important;
  border: 1px solid transparent;
  text-decoration: none;
}
.pl-ctas .ghost,
.pl-ctas a.ghost,
a.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--pl-radius-btn);
  background: transparent;
  color: var(--pl-ink) !important;
  border: 1px solid var(--pl-border);
  text-decoration: none;
}
.pl-hero .pl-ctas a.ghost,
.pl-hero a.ghost {
  color: #fff !important;
  border-color: rgba(255,255,255,0.24);
}
@media (max-width: 639px) {
  .pl-ctas { flex-direction: column; }
  .pl-ctas .pl-btn,
  .pl-ctas a.primary,
  .pl-ctas a.ghost { width: 100%; }
  .pl-pricing-page .pl-price-card .pl-btn--block { width: 100%; }
}

/* Sticky CTA page padding */
@media (max-width: 1099px) {
  body.pl-has-sticky-cta .pl-footer {
    padding-bottom: 4.5rem;
  }
}

.pl-blog-index .pl-content--dense { padding-top: var(--pl-section-y-dense); }
.pl-solutions-hub .pl-content--dense { padding-top: var(--pl-section-y-dense); padding-bottom: var(--pl-section-y-dense); }
