/* ============================================================
   PayBlah marketing site (Fable design — canonical names, no -v2 suffix)
   Pages: index, features, how, pricing, industries, affiliates, faq, news, security.
   Tokens from docs/BRAND.md.
   Light-scheme by design — matches the product (D-53).
   ============================================================ */

:root {
  --pb-navy: #06245A;
  --pb-navy-deep: #041B45;
  --pb-navy-up: #0B2F6E;         /* hover lift for navy fills */
  --pb-teal: #16B9A8;            /* decoration + large fills ONLY */
  --pb-teal-action: #129C8D;     /* links, focus, accents (UI 3:1) */
  --pb-teal-deep: #0E7C72;       /* teal that survives small text */
  --pb-grey: #B7BED6;
  --pb-amber: #F6B40E;           /* badge fills only — navy text on it */
  --pb-amber-text: #8A5F00;
  --pb-red: #B3261E;

  --pb-bg: #F4F6FB;
  --pb-card: #FFFFFF;
  --pb-line: #E3E8F2;
  --pb-line-strong: #C9D3E6;
  --pb-ink: var(--pb-navy);
  --pb-ink-soft: rgba(6, 36, 90, 0.66);
  --pb-ink-faint: rgba(6, 36, 90, 0.62); /* AA on white — do not lighten below 0.62 for real text */

  --pb-teal-tint: rgba(22, 185, 168, 0.10);
  --pb-navy-tint: rgba(6, 36, 90, 0.05);
  --pb-amber-tint: rgba(246, 180, 14, 0.14);

  --container-w: 1584px;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(6, 36, 90, 0.05), 0 4px 16px rgba(6, 36, 90, 0.06);
  --shadow-lg: 0 2px 6px rgba(6, 36, 90, 0.06), 0 24px 60px -12px rgba(6, 36, 90, 0.18);
  --section-pad: clamp(76px, 9vw, 136px);
  --tap: 44px;
  /* Shared media-card body inset (image full-bleed top; copy padded below) */
  --card-body-pad-y: 20px;
  --card-body-pad-x: 22px;
  --card-body-pad-bottom: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: #fff;
  color: var(--pb-ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; }

::selection { background: rgba(22, 185, 168, 0.28); }

:focus-visible {
  outline: 3px solid var(--pb-teal-action);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  width: 100%;
  box-sizing: border-box;
  /* never let a child force the page wider than the design column */
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--pb-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ---------- type helpers ---------- */

.kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--pb-teal-deep);
  margin-bottom: 14px;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.08;
}
.section-head p {
  margin-top: 14px;
  font-size: 1.07rem;
  color: var(--pb-ink-soft);
  max-width: 580px;
}
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered p { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease,
              transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-lg { min-height: 54px; padding: 0 30px; font-size: 1.02rem; border-radius: 13px; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 0.85rem; border-radius: 10px; }

.btn-primary { background: var(--pb-navy); color: #fff; }
.btn-primary:hover {
  background: var(--pb-navy-up);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(6, 36, 90, 0.4);
}

.btn-secondary {
  background: #fff;
  color: var(--pb-navy);
  border-color: var(--pb-line-strong);
}
.btn-secondary:hover { background: #f7f9fd; border-color: var(--pb-grey); }

.btn-ghost { background: transparent; color: var(--pb-navy); }
.btn-ghost:hover { background: var(--pb-navy-tint); }

/* Nav Sign in — quiet outline so it isn’t a bare text link next to the primary CTA */
.nav-cta .btn-ghost,
.nav-mobile-cta .btn-ghost {
  background: #fff;
  color: var(--pb-ink-soft);
  border-color: var(--pb-line-strong);
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
.nav-cta .btn-ghost:hover,
.nav-mobile-cta .btn-ghost:hover {
  color: var(--pb-navy);
  background: var(--pb-bg);
  border-color: var(--pb-grey);
}

.btn-white { background: #fff; color: var(--pb-navy); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.45); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.7); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--pb-line); box-shadow: 0 4px 24px -12px rgba(6, 36, 90, 0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 100px;
  position: relative;
  /* never let a long link row push the page wide */
  min-width: 0;
}

.nav-brand { display: inline-flex; align-items: center; flex: none; }
.nav-brand img { display: block; width: 260px; height: auto; max-width: min(42vw, 280px); }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  margin-left: 4px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: visible;
}
.nav-links > a,
.nav-more-btn {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 11px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--pb-ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-links > a:hover,
.nav-more-btn:hover { color: var(--pb-navy); background: var(--pb-navy-tint); }
.nav-links > a.is-active,
.nav-more-btn.is-active {
  color: var(--pb-navy);
  box-shadow: inset 0 -2px 0 var(--pb-teal);
  border-radius: 10px 10px 0 0;
}
.nav-more-btn::after {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  margin-left: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.1em) rotate(45deg);
  opacity: 0.7;
}
.nav-more.is-open .nav-more-btn::after {
  transform: translateY(0.12em) rotate(225deg);
}

/* More dropdown — keeps expansion pages off the primary bar */
.nav-more {
  position: relative;
  flex: none;
}
.nav-more-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-more-menu[hidden] { display: none !important; }
.nav-more-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pb-ink-soft);
  text-decoration: none;
  white-space: nowrap;
}
.nav-more-menu a:hover { color: var(--pb-navy); background: var(--pb-navy-tint); }
.nav-more-menu a.is-active {
  color: var(--pb-navy);
  background: var(--pb-navy-tint);
  box-shadow: inset 3px 0 0 var(--pb-teal);
}

.nav-mobile-cta { display: none; }

.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

/* Site-wide currency — desktop chips; ≤1180 pure dropdown (chips fully gone) */
.nav-currency {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: none;
  z-index: 40;
}
.nav-currency-chips {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--pb-bg);
  border: 1px solid var(--pb-line);
  border-radius: 10px;
}
.nav-currency-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--pb-ink-soft);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 8px;
  border-radius: 7px;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-currency-btn:hover {
  color: var(--pb-navy);
  background: var(--pb-navy-tint);
}
.nav-currency-btn.is-active {
  background: var(--pb-navy);
  color: #fff;
}
.nav-currency-btn:focus-visible {
  outline: 3px solid var(--pb-teal-action);
  outline-offset: 1px;
}

/* Dropdown trigger — hidden on desktop; quiet light-grey symbol chip on mobile */
.nav-currency-toggle {
  display: none;
  appearance: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 40px;
  min-width: 2.75rem;
  padding: 0 9px;
  border: 1px solid var(--pb-line);
  border-radius: 10px;
  background: var(--pb-bg);
  color: var(--pb-ink-soft);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
}
.nav-currency-toggle:hover {
  background: #eef1f8;
  color: var(--pb-navy);
  border-color: var(--pb-line-strong);
}
.nav-currency-toggle:focus-visible {
  outline: 3px solid var(--pb-teal-action);
  outline-offset: 2px;
}
.nav-currency-toggle .nav-currency-caret {
  width: 0.35em;
  height: 0.35em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.1em) rotate(45deg);
  opacity: 0.55;
  flex: none;
}
.nav-currency.is-open .nav-currency-caret {
  transform: translateY(0.12em) rotate(225deg);
}

/* Panel only when open — never leave a grey ghost chip strip */
.nav-currency-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 9.5rem;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  box-shadow: 0 12px 32px -10px rgba(6, 36, 90, 0.28);
  z-index: 140;
  flex-direction: column;
  gap: 2px;
}
.nav-currency.is-open .nav-currency-menu {
  display: flex !important;
}
.nav-currency-menu .nav-currency-btn {
  width: 100%;
  justify-content: flex-start;
  min-height: 44px;
  font-size: 0.9rem;
  padding: 10px 12px;
  color: var(--pb-navy);
  background: transparent;
  border-radius: 8px;
}
.nav-currency-menu .nav-currency-btn:hover {
  background: var(--pb-navy-tint);
  color: var(--pb-navy);
}
.nav-currency-menu .nav-currency-btn.is-active {
  background: var(--pb-navy);
  color: #fff;
}

/* Header Free trial — primary action; currency stays secondary */
.nav-cta .btn-primary.nav-trial {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--pb-navy);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(6, 36, 90, 0.35);
}
.nav-cta .btn-primary.nav-trial:hover {
  background: var(--pb-navy-up);
  box-shadow: 0 8px 20px -6px rgba(6, 36, 90, 0.45);
}
@media (max-width: 1180px) {
  .nav-cta .btn-primary.nav-trial {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
}

/* Drawer CTAs — obvious Login + Trial (no second currency control) */
.nav-mobile-cta {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--pb-line);
}
.nav-mobile-cta .nav-currency {
  display: none !important; /* currency lives in the top bar only */
}
.nav-mobile-cta .btn {
  width: 100%;
  min-height: 50px;
  font-size: 1rem;
  font-weight: 700;
}
.nav-mobile-cta .btn-primary {
  order: -1;
  box-shadow: 0 6px 18px -6px rgba(6, 36, 90, 0.4);
}

@media (max-width: 1180px) {
  /* Kill chips completely — only the solid dropdown trigger */
  .nav-currency-chips {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
  }
  .nav-cta .nav-currency-toggle {
    display: inline-flex !important;
  }
  .nav-cta .btn-primary { display: inline-flex !important; }
  .nav-cta .btn-ghost { display: none; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--tap);
  height: var(--tap);
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--pb-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 104px) 0 clamp(72px, 8vw, 120px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 30%, rgba(255, 255, 255, 0) 60%, #fff 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.42) 100%),
    url("../assets/v2/33-empty-office-morning.jpg") right 38% / cover no-repeat,
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(44px, 5vw, 84px);
  align-items: center;
  min-width: 0;
  width: 100%;
}
.hero-copy,
.hero-visual {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--pb-teal-deep);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pb-teal);
  box-shadow: 0 0 0 0 rgba(22, 185, 168, 0.4);
  animation: pb-dot 2.6s ease-out infinite;
}
@keyframes pb-dot {
  0% { box-shadow: 0 0 0 0 rgba(22, 185, 168, 0.4); }
  70% { box-shadow: 0 0 0 9px rgba(22, 185, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 185, 168, 0); }
}

.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
.h1-line2 { display: block; }

.underline-swoosh {
  padding-bottom: 0.13em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9C32 3 68 2.5 117 7.5' fill='none' stroke='%2316B9A8' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat 0 100% / 100% 0.16em;
}

.hero-lead {
  margin-top: 24px;
  max-width: 520px;
  font-size: 1.16rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  list-style: none;
}
.hero-meta li {
  padding: 7px 14px;
  border: 1px solid var(--pb-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pb-ink-soft);
}
.hero-meta .hero-meta-note {
  border: 0;
  background: none;
  padding: 7px 2px;
  font-weight: 500;
  color: var(--pb-ink-faint);
}

/* ---------- the chase card ---------- */

.hero-visual { position: relative; }

.chase {
  position: relative;
  z-index: 1;
  background: var(--pb-card);
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chase-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--pb-line);
}
.dots { display: inline-flex; gap: 5px; }
.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dde3ef;
}
.chase-url {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pb-ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.chase-tag {
  margin-left: auto;
  flex: none;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pb-teal-deep);
  background: var(--pb-teal-tint);
  border-radius: 999px;
  padding: 4px 10px;
}

.chase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 10px;
}
.chase-who strong { display: block; font-size: 0.98rem; font-weight: 700; }
.chase-who span { display: block; margin-top: 2px; font-size: 0.8rem; color: var(--pb-ink-soft); }

.chase-status span {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.chase-status .s-chasing { background: var(--pb-amber-tint); color: var(--pb-amber-text); }
.chase-status .s-paid { background: var(--pb-teal-tint); color: var(--pb-teal-deep); }
.chase:not([data-state="chasing"]) .s-chasing { display: none; }
.chase[data-state="chasing"] .s-paid { display: none; }

.chase-steps { list-style: none; padding: 4px 18px 10px; }

.c-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  padding: 11px 0;
}
.c-step + .c-step { border-top: 1px solid #eef1f8; }

.c-day {
  align-self: start;
  justify-self: start;
  margin-top: 1px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--pb-navy);
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
}
.c-day-teal { background: var(--pb-teal-deep); }

.c-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
}
.c-meta svg { width: 15px; height: 15px; flex: none; color: var(--pb-ink-faint); }
.c-sent { margin-left: auto; font-size: 0.72rem; font-weight: 500; color: var(--pb-ink-faint); }

.tone-pill {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
}
.t-friendly { background: var(--pb-teal-tint); color: var(--pb-teal-deep); }
.t-standard { background: var(--pb-navy-tint); color: var(--pb-ink-soft); }

.c-body > p {
  margin-top: 5px;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}

.c-paid {
  background: var(--pb-teal-tint);
  border-radius: 12px;
  padding: 11px 12px;
  margin: 8px -12px;
  border-top: 0 !important;
}
.c-paid + .c-step { border-top: 0; }
.c-meta-paid { color: var(--pb-teal-deep); font-weight: 700; }
.c-meta-paid svg { color: var(--pb-teal-deep); }

.c-cancel .c-meta { color: var(--pb-ink-faint); font-weight: 500; }
.c-cancel s {
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(6, 36, 90, 0.35);
}
.c-never {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pb-ink-faint);
  background: #eef1f8;
  border-radius: 999px;
  padding: 3px 9px;
}
.c-cancel .c-body > p { margin-top: 0; }

.chase-foot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 18px 16px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}
.chase-foot svg { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--pb-teal-deep); }
.chase-replay {
  margin-left: auto;
  flex: none;
  border: 0;
  background: none;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pb-teal-deep);
  cursor: pointer;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
}
.chase-replay:hover { background: var(--pb-teal-tint); }

/* chase animation (JS adds .animate, then .on per step) */
.chase.animate .c-step,
.chase.animate .chase-foot > svg,
.chase.animate .chase-foot > span {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.chase.animate .c-step.on,
.chase.animate .chase-foot.on > svg,
.chase.animate .chase-foot.on > span {
  opacity: 1;
  transform: none;
}
.chase.animate .c-paid.on { animation: pb-paid-pulse 1s ease-out 1; }
@keyframes pb-paid-pulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 185, 168, 0.35); }
  100% { box-shadow: 0 0 0 16px rgba(22, 185, 168, 0); }
}

/* ---------- generic reveal ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- night (the stress story) ---------- */

.night {
  position: relative;
  padding: clamp(96px, 12vw, 180px) 0;
  background:
    linear-gradient(90deg, rgba(3, 15, 36, 0.9) 0%, rgba(3, 15, 36, 0.72) 42%, rgba(4, 27, 69, 0.28) 72%, rgba(4, 27, 69, 0.45) 100%),
    url("../assets/v2/02-laptop-night-bills.jpg") center 40% / cover no-repeat,
    var(--pb-navy-deep);
  color: #fff;
}
.night :focus-visible { outline-color: rgba(255, 255, 255, 0.75); }

.night-copy { max-width: 560px; }
.night .kicker { color: var(--pb-teal); }
.night h2 {
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.07;
}
.night p {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.night p strong { color: #fff; font-weight: 700; }

.night-pivot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(22, 185, 168, 0.16);
  border: 1px solid rgba(22, 185, 168, 0.45);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.night-pivot svg { width: 18px; height: 18px; color: var(--pb-teal); flex: none; }

/* ---------- calm (the objection) ---------- */

.calm { padding: var(--section-pad) 0; background: var(--pb-bg); }

.calm-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(44px, 5.5vw, 88px);
  align-items: start;
}

.calm-q { position: relative; }
.calm-quote {
  position: absolute;
  top: -0.52em;
  left: -0.06em;
  font-size: clamp(5rem, 8.5vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--pb-teal);
  opacity: 0.22;
  pointer-events: none;
}
.calm-q h2 {
  position: relative;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.calm-lead {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
  max-width: 460px;
}

.calm-answers { list-style: none; display: grid; gap: 16px; margin-top: 34px; }
.calm-answers li {
  position: relative;
  padding: 22px 24px 22px 76px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.calm-num {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--pb-teal-action);
  color: var(--pb-teal-deep);
  font-size: 0.95rem;
  font-weight: 700;
}
.calm-answers h3 { font-size: 1.05rem; font-weight: 700; }
.calm-answers p {
  margin-top: 6px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}
.calm-answers em { font-style: normal; font-weight: 700; color: var(--pb-ink); }

.calm-proof { position: sticky; top: 118px; }
.calm-note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--pb-teal);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}

/* ---------- frames (browser-chrome screenshots) ---------- */

.frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: #f7f9fc;
  border-bottom: 1px solid var(--pb-line);
  border-radius: var(--radius) var(--radius) 0 0;
}
.frame-url {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pb-ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.frame > img {
  display: block;
  width: 100%;
  border-radius: 0 0 var(--radius) var(--radius);
}

.frame-note {
  position: absolute;
  z-index: 2;
  max-width: 260px;
  background: var(--pb-navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 11px 14px 11px 30px;
  border-radius: 12px;
  box-shadow: 0 12px 32px -8px rgba(6, 36, 90, 0.5);
}
.frame-note::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pb-teal);
}
.frame-note-a { top: 14%; left: -22px; }
.frame-note-b { bottom: 12%; left: -22px; }
.frame-note-c { top: 34%; right: -18px; }
.frame-note-d { bottom: -18px; right: 26px; }

/* ---------- media cards (shared) ----------
   Image full-bleed on top; copy lives in a BLOCK body with real padding.
   Never put block children (strong/h3/p) inside an inline span — padding is ignored
   and text sits flush on the card edge (the .aud-cap bug).
*/

.audience { padding: var(--section-pad) 0; }

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.aud-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
  height: 100%;
  min-width: 0;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.aud-card:hover .aud-cap strong { color: var(--pb-teal-deep); }
.aud-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  flex: none;
}

/* Shared body for image+copy cards — MUST be display:block (or flex column) */
.aud-cap,
.ind-body,
a.ind-card .ind-body,
.wild-cap,
.tile figcaption,
.tile .tile-cap,
a.tile .tile-cap,
.resource-card .rc-body,
.story-card-body {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: var(--card-body-pad-y) var(--card-body-pad-x) var(--card-body-pad-bottom);
  flex: 1 1 auto;
  min-width: 0;
}

.aud-cap strong { display: block; font-size: 0.98rem; font-weight: 700; transition: color 0.15s ease; }
.aud-cap span { display: block; margin-top: 6px; font-size: 0.85rem; line-height: 1.5; color: var(--pb-ink-soft); }

.aud-grid-wide {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1280px) and (min-width: 1141px) {
  .aud-grid-wide { grid-template-columns: repeat(4, 1fr); }
}

.aud-note {
  margin-top: 26px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--pb-ink-faint);
}
.aud-note a {
  color: var(--pb-teal-deep);
  font-weight: 600;
  text-decoration: none;
}
.aud-note a:hover { text-decoration: underline; }

.faq-more {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq-more a {
  color: var(--pb-teal-deep);
  text-decoration: none;
}
.faq-more a:hover { text-decoration: underline; }

/* ---------- how ---------- */

.how { padding: var(--section-pad) 0; background: var(--pb-bg); }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 24px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: #f7f9fc;
}
.step-num {
  display: block;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(6, 36, 90, 0.14);
  margin-bottom: 12px;
}
.step h3 { font-size: 1.14rem; font-weight: 700; }
.step p { margin-top: 9px; font-size: 0.95rem; line-height: 1.6; color: var(--pb-ink-soft); }

/* ---------- product rows ---------- */

.product { padding: var(--section-pad) 0; }

.prod-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
}
.prod-row + .prod-row { margin-top: clamp(68px, 8vw, 120px); }
.prod-row.rev .prod-copy { order: 2; }
.prod-row.rev .prod-media { order: 1; }

.prod-copy h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.15;
}
.prod-copy > p {
  margin-top: 13px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}

.checklist { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--pb-ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: var(--pb-teal-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C72' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

.prod-media { position: relative; }

/* ---------- wild (product in the world) ---------- */

.wild { padding: var(--section-pad) 0; background: var(--pb-bg); }

.wild-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wild-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-width: 0;
}
.wild-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  flex: none;
}
.wild-cap {
  /* padding from shared media-card body rule */
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--pb-ink-soft);
}
.wild-cap strong { color: var(--pb-ink); font-weight: 700; }

/* ---------- morning (the payoff after the night band) ---------- */
/* Uses lifestyle .story-grid (photo + copy). Do not reuse that class for card grids. */

.morning {
  padding: var(--section-pad) 0;
}

/* ---------- quote band (photo divider) ---------- */

.band-quote {
  padding: clamp(88px, 11vw, 150px) 0;
  background:
    linear-gradient(180deg, rgba(4, 27, 69, 0.62) 0%, rgba(4, 27, 69, 0.72) 100%),
    url("../assets/v2/t3-night-office-wide.jpg") center / cover no-repeat,
    var(--pb-navy-deep);
  color: #fff;
  text-align: center;
}
.band-quote p {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.band-quote small {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- industry tiles (the long tail) ---------- */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.tile,
a.tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.tile img,
a.tile img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  flex: none;
}
.tile figcaption,
.tile .tile-cap,
a.tile .tile-cap {
  /* padding from shared media-card body rule */
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pb-ink-soft);
}

/* ---------- tone ---------- */

.tone { padding: var(--section-pad) 0; }

.tone-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.tone-aside { position: sticky; top: 118px; }
.tone-aside img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.tone-aside figcaption {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--pb-ink-faint);
  text-align: center;
}

.tone-widget { max-width: 760px; margin-inline: auto; }

.tone-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #e9edf5;
  border-radius: 13px;
  padding: 4px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}
.tone-tabs [role="tab"] {
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pb-ink-soft);
  padding: 10px 20px;
  min-height: var(--tap);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.tone-tabs [role="tab"]:hover { color: var(--pb-navy); }
.tone-tabs [role="tab"][aria-selected="true"] {
  background: #fff;
  color: var(--pb-navy);
  box-shadow: var(--shadow-sm);
}

.tone-panel { margin-top: 22px; }

.mail {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 30px 30px;
}
.mail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--pb-ink-faint);
  margin-bottom: 14px;
}
.mail-from strong { font-weight: 600; color: var(--pb-ink-soft); }
.mail-when { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }

.approve-badge {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pb-navy);
  background: var(--pb-amber);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.mail-subject {
  font-size: 1.02rem;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--pb-line);
}
.mail > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}
.mail > p + p { margin-top: 12px; }

.tone-caption {
  margin-top: 18px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--pb-ink-faint);
}

/* ---------- pricing (cards + home teaser) ---------- */

.pricing { padding: var(--section-pad) 0; }
.pricing.tinted { background: var(--pb-bg); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
}
.price-card.featured {
  border: 2px solid var(--pb-teal-action);
  box-shadow: 0 4px 12px rgba(6, 36, 90, 0.06), 0 24px 48px -16px rgba(18, 156, 141, 0.28);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--pb-navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* Annual-only “2 months free” stickers — shown via [data-period="annual"] */
.price-card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 1.6em;
}
.price-card-title-row h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.price-annual-badge {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pb-amber);
  color: var(--pb-navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 0 rgba(6, 36, 90, 0.12);
  transform: rotate(-2deg);
}
/* Keep layout stable: reserve badge slot height always (badge itself hidden monthly) */
.price-card-title-row::after {
  content: "";
  flex: none;
  width: 0;
  height: 1.55em;
}
[data-pricing-root][data-period="annual"] .price-annual-badge {
  display: inline-flex;
}
/* Corner sticker on cards that are not the featured one */
.price-card:not(.featured) .price-annual-sticker {
  position: absolute;
  top: 14px;
  right: 14px;
}
.price-equiv {
  margin: 6px 0 0;
  min-height: 1.25em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pb-teal-deep);
  line-height: 1.3;
}
.price-equiv.is-placeholder {
  visibility: hidden;
  color: transparent;
}
[data-pricing-root][data-period="annual"] .price-annual-badge {
  animation: pb-sticker-in 0.28s ease-out;
}
@keyframes pb-sticker-in {
  from { opacity: 0; transform: rotate(-2deg) scale(0.86); }
  to { opacity: 1; transform: rotate(-2deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  [data-pricing-root][data-period="annual"] .price-annual-badge {
    animation: none;
  }
}

/* Currency + monthly/annual controls — fixed geometry so toggles never reflow */
.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 16px 18px;
  background: var(--pb-bg);
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}
.pricing-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 0 1 auto;
}
.pricing-control-currency {
  width: min(100%, 280px);
}
.pricing-control-period {
  width: min(100%, 320px);
}
.pricing-control-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-ink-faint);
}
.segmented {
  display: grid;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}
.segmented-2 { grid-template-columns: 1fr 1fr; }
.segmented-3 { grid-template-columns: 1fr 1fr 1fr; }
.segmented-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--pb-ink-soft);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 9px;
  cursor: pointer;
  min-height: 44px;
  line-height: 1.2;
  width: 100%;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  /* prevent active state from shifting layout */
  box-sizing: border-box;
  transition: background 0.15s ease, color 0.15s ease;
}
.segmented-btn:hover { color: var(--pb-navy); background: var(--pb-navy-tint); }
.segmented-btn.is-active {
  background: var(--pb-navy);
  color: #fff;
}
.segmented-btn:focus-visible {
  outline: 3px solid var(--pb-teal-action);
  outline-offset: 2px;
}
/* Always reserve one line so monthly ↔ annual never grows the bar */
.pricing-save {
  margin: 0;
  min-height: 1.35em;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pb-ink-faint);
}
.pricing-save.is-highlight {
  font-weight: 700;
  color: var(--pb-teal-deep);
}
.pricing-tax-line {
  margin: 0 0 28px;
  font-size: 0.9rem;
  color: var(--pb-ink-soft);
}
.pricing-currency-hint {
  margin: 0;
  align-self: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pb-ink-faint);
  max-width: 16rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .pricing-currency-hint { max-width: none; }
}
.plan-overage {
  margin: 0 0 14px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--pb-ink-faint);
  min-height: 2.6em;
}
.overage-banner {
  margin-top: 36px;
  padding: 22px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 185, 168, 0.1) 0%, rgba(6, 36, 90, 0.06) 100%);
  border: 1px solid rgba(18, 156, 141, 0.28);
}
.overage-banner h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pb-navy);
  letter-spacing: -0.02em;
}
.overage-banner p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}
.overage-banner p:last-child { margin-bottom: 0; }
.pricing-sync-note {
  margin: 14px 0 0 !important;
  font-size: 0.82rem !important;
  color: var(--pb-ink-faint) !important;
}

.price-card-head { flex-shrink: 0; }
.price-card h3 { font-size: 1.02rem; font-weight: 700; }
.price {
  margin-top: 10px;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  /* hold space for annual 3-digit amounts so cards don't jump on toggle */
  min-height: 1.15em;
  font-variant-numeric: tabular-nums;
}
.price [data-price-display] {
  display: inline-block;
  min-width: 4.2ch;
}
.price [data-price-period],
.price span[data-price-period] {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pb-ink-faint);
  letter-spacing: 0;
  margin-left: 2px;
  display: inline-block;
  min-width: 2.4em;
}
.price-blurb { margin-top: 8px; font-size: 0.89rem; line-height: 1.5; color: var(--pb-ink-soft); min-height: 2.7em; }
.price-lead {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pb-navy);
  letter-spacing: -0.01em;
}
.plan-row-value[data-balance-display] {
  white-space: normal;
  max-width: 12.5rem;
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .pricing-controls {
    flex-direction: column;
    align-items: stretch;
    position: sticky;
    top: 78px;
    z-index: 20;
    box-shadow: var(--shadow-sm);
    gap: 14px;
  }
  .pricing-control-currency,
  .pricing-control-period {
    width: 100%;
  }
  .segmented { width: 100%; }
  .segmented-btn {
    padding: 10px 6px;
    font-size: 0.82rem;
  }
  .plan-row-value[data-balance-display] {
    max-width: none;
    text-align: left;
  }
}

/* Aligned comparison rows across all four cards
   Value column keeps a real min-width; short values never break mid-word. */
.plan-rows {
  list-style: none;
  margin: 16px 0 22px;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-row {
  display: grid;
  /* Label flexible · value has a floor so "Unlimited" / "150" never become 1-char columns */
  grid-template-columns: minmax(0, 1fr) minmax(5.75rem, max-content);
  gap: 8px 12px;
  align-items: baseline;
  min-height: 2.5rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--pb-line);
  font-size: 0.84rem;
  line-height: 1.35;
  box-sizing: border-box;
}
.plan-row:last-child { border-bottom: 0; }
.plan-row-label {
  color: var(--pb-ink-soft);
  font-weight: 500;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
.plan-row-value {
  font-weight: 700;
  color: var(--pb-navy);
  text-align: right;
  line-height: 1.3;
  min-width: 5.75rem;
  max-width: 11rem;
  /* Default: short values stay on one line — NO mid-word / mid-digit breaks */
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
/* Long copy (accounting sync, balance sentence) may wrap — between words only */
.plan-row-value.is-wrap,
.plan-row-value[data-balance-display],
.plan-row-value[data-wrap] {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 11rem;
}
/* N/A stays visible and greyed — a dash is a decision, not a missing row */
.plan-row.is-na .plan-row-label { color: rgba(6, 36, 90, 0.42); }
.plan-row.is-na .plan-row-value {
  color: rgba(6, 36, 90, 0.38);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  min-width: 1.5rem;
  white-space: nowrap;
}

.price-card .btn { width: 100%; margin-top: auto; }

/* Narrow cards: stack label over value, but short values still never break mid-word */
@media (max-width: 1400px) {
  .price-grid .plan-row {
    grid-template-columns: 1fr;
    gap: 3px;
    align-items: start;
    min-height: 0;
    padding: 10px 0;
  }
  .price-grid .plan-row-value {
    text-align: left;
    max-width: none;
    min-width: 0;
    /* inherit white-space: nowrap from base — do NOT force normal here */
  }
  .price-grid .plan-row-value.is-wrap,
  .price-grid .plan-row-value[data-balance-display],
  .price-grid .plan-row-value[data-wrap] {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 1180px) and (min-width: 641px) {
  .plan-row {
    grid-template-columns: 1fr;
    gap: 2px;
    align-items: start;
    min-height: 0;
    padding: 10px 0;
  }
  .plan-row-value {
    text-align: left;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .plan-row {
    grid-template-columns: 1fr;
    gap: 3px;
    align-items: start;
    min-height: 0;
    padding: 11px 0;
  }
  .plan-row-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .plan-row-value {
    text-align: left;
    min-width: 0;
    max-width: none;
  }
  .plan-row-value.is-wrap,
  .plan-row-value[data-balance-display],
  .plan-row-value[data-wrap] {
    white-space: normal;
  }
}

.price-note {
  margin: 40px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}
.price-note a { color: var(--pb-teal-deep); font-weight: 600; }

/* home teaser strip */
.mini-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mini-plan {
  display: block;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.mini-plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--pb-line-strong); }
.mini-plan.featured { border-color: var(--pb-teal-action); }
.mini-plan strong { display: block; font-size: 0.95rem; font-weight: 700; }
.mini-price { display: block; margin-top: 6px; font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
.mini-price span { font-size: 0.82rem; font-weight: 500; color: var(--pb-ink-faint); }
.mini-plan p { margin-top: 6px; font-size: 0.84rem; line-height: 1.5; color: var(--pb-ink-soft); }
.mini-cta { margin-top: 32px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- faq ---------- */

.faq { padding: var(--section-pad) 0; background: var(--pb-bg); }
.faq.plain { background: #fff; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.faq-intro h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.028em;
}
.faq-intro p { margin-top: 12px; font-size: 1rem; color: var(--pb-ink-soft); max-width: 320px; }

.faq-list details {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-list details + details { margin-top: 12px; }

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  min-height: var(--tap);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C72' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { background: #fafbfe; }

.faq-list details > p {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}

/* ---------- final CTA ---------- */

.final {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(180deg, rgba(4, 27, 69, 0.92) 0%, rgba(6, 36, 90, 0.9) 100%),
    url("../assets/v2/07-logo-pattern-icons.jpg") center / cover no-repeat,
    var(--pb-navy);
  color: #fff;
  text-align: center;
}
.final :focus-visible { outline-color: rgba(255, 255, 255, 0.75); }

.final-blah { display: grid; gap: 6px; justify-items: center; }
.final-blah .struck {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}
.final-blah .struck:nth-child(1) { transform: rotate(-1.2deg); }
.final-blah .struck:nth-child(2) { transform: rotate(0.8deg); }
.final-blah .struck:nth-child(3) { transform: rotate(-0.6deg); }
.final-blah s {
  text-decoration: line-through;
  text-decoration-color: var(--pb-teal);
  text-decoration-thickness: 3px;
}

.final h2 {
  margin-top: 30px;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.05;
}
.final-lead {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- page hero (info pages — premium, consistent, cool) ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
  /* Deep navy field + soft teal bloom + photo texture */
  background:
    radial-gradient(ellipse 70% 90% at 88% 20%, rgba(22, 185, 168, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 8% 90%, rgba(6, 36, 90, 0.9) 0%, transparent 50%),
    linear-gradient(115deg, rgba(3, 18, 48, 0.97) 0%, rgba(6, 36, 90, 0.92) 42%, rgba(6, 36, 90, 0.78) 72%, rgba(8, 48, 110, 0.72) 100%),
    url("../assets/v2/01-navy-teal-orbs.jpg") right center / cover no-repeat,
    #041b45;
  isolation: isolate;
}
/* Fine grid + bottom glow edge */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 85%);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 0%, rgba(22, 185, 168, 0.55) 30%, rgba(255, 255, 255, 0.25) 55%, transparent 100%);
  pointer-events: none;
}

/* Same geometry on every info page — roomy, not squat.
   MUST keep the same horizontal padding as .container so hero copy
   lines up with the nav logo and content below. */
.page-hero .page-hero-inner,
.page-hero > .container {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: var(--container-w);
  margin-inline: auto;
  width: 100%;
  min-height: 300px;
  /* vertical only overrides — keep shared horizontal gutter */
  padding-block: clamp(48px, 6vw, 72px) clamp(44px, 5vw, 64px);
  padding-inline: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.page-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(22, 185, 168, 0.12);
  border: 1px solid rgba(22, 185, 168, 0.35);
  color: #5eead4;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 8px 24px -12px rgba(22, 185, 168, 0.45);
}
.page-hero .kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pb-teal);
  box-shadow: 0 0 0 3px rgba(22, 185, 168, 0.25), 0 0 12px rgba(22, 185, 168, 0.8);
  flex-shrink: 0;
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: #fff;
  text-wrap: balance;
  flex-shrink: 0;
  /* Soft depth */
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.page-hero p,
.page-hero .page-hero-lead {
  margin: 16px 0 0;
  max-width: 560px;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.6;
  color: rgba(226, 236, 255, 0.88);
  font-weight: 400;
  flex-shrink: 0;
}
/* Only hide legacy meta — never breadcrumb / callout / second leads that belong */
.page-hero .legal-meta,
.page-hero .ind-breadcrumb {
  display: none;
}
/* Breadcrumb inside heroes must win over .page-hero p styles */
.page-hero .breadcrumb-bar {
  display: block;
  margin: 0 0 12px;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: none;
}
.page-hero .breadcrumb-bar a {
  color: #5eead4;
  font-weight: 600;
  text-decoration: none;
}
.page-hero .breadcrumb-bar a:hover { text-decoration: underline; }

.page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  min-height: 48px;
  align-items: center;
  flex-shrink: 0;
}
.page-hero .hero-actions .btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.page-hero .hero-actions .btn-white {
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.page-hero .hero-actions .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.page-hero .hero-actions .btn-outline-light {
  border-width: 1.5px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
}
.page-hero .hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.page-hero :focus-visible { outline-color: rgba(255, 255, 255, 0.75); }

/* Legal: keep height, hide CTAs without collapsing layout */
.page-hero.page-hero-legal .hero-actions {
  visibility: hidden;
  pointer-events: none;
}

/* Optional even taller variant */
.page-hero.page-hero-tall > .container,
.page-hero.page-hero-tall .page-hero-inner {
  min-height: 360px;
  padding-block: clamp(64px, 8vw, 96px);
  /* keep padding-inline from base rule */
}
.page-hero.page-hero-tall h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
}

/* Mid-page sell strip on industry/detail pages */
.sell-strip {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(22, 185, 168, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, #041b45 0%, #0a3570 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(22, 185, 168, 0.22);
  box-shadow: 0 16px 40px -20px rgba(6, 36, 90, 0.45);
}
.sell-strip p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  max-width: 420px;
}
.sell-strip p span {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.sell-strip .btn { flex-shrink: 0; }

.ind-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.ind-proof article {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ind-proof article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(6, 36, 90, 0.18);
}
.ind-proof h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--pb-navy);
}
.ind-proof p {
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}

@media (max-width: 900px) {
  .ind-proof { grid-template-columns: 1fr; }
  .ind-page-grid { gap: 32px; }
}
@media (max-width: 720px) {
  .page-hero .page-hero-inner,
  .page-hero > .container {
    min-height: 260px;
    padding-block: 40px 36px;
    padding-inline: clamp(20px, 4vw, 40px);
  }
  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }
  .page-hero p,
  .page-hero .page-hero-lead {
    font-size: 1rem;
    max-width: none;
  }
  .page-hero .hero-actions .btn {
    min-height: 46px;
  }
}

/* Industry detail page layout */
.ind-page { padding: clamp(40px, 5vw, 72px) 0; }
.ind-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.ind-page-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 12px 40px rgba(6, 36, 90, 0.12));
  border: 1px solid var(--pb-line);
  background: #e8edf5;
}
.ind-page-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ind-page-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 28px;
}
.ind-page-copy h2:first-child { margin-top: 0; }
.ind-page-copy p {
  margin-top: 10px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}
.ind-page-copy ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.ind-page-copy ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--pb-line);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}
.ind-page-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pb-teal);
  box-shadow: 0 0 0 4px var(--pb-teal-tint);
}
.ind-page-copy ul li:last-child { border-bottom: 0; }
.ind-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 640px) {
  .sell-strip {
    padding: 20px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .sell-strip p { max-width: none; }
  .sell-strip .btn { width: 100%; }
  .ind-page-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .ind-page-actions .btn { width: 100%; }
}
.ind-related {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--pb-bg);
}
.ind-related .tile-grid { margin-top: 28px; }
.ind-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.ind-breadcrumb a { color: var(--pb-teal); font-weight: 600; text-decoration: none; }
.ind-breadcrumb a:hover { text-decoration: underline; }
.ind-breadcrumb span[aria-hidden="true"] { opacity: 0.5; }

/* Content strip with lifestyle image (info pages) */
.content-band {
  padding: clamp(36px, 5vw, 64px) 0;
}
.content-band.tinted { background: var(--pb-bg); }
.content-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.content-band-grid.reverse > :first-child { order: 2; }
.content-band-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--pb-line);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.content-band-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.content-band-copy {
  min-width: 0;
}
.content-band-copy h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.content-band-copy p {
  margin-top: 12px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}
.content-band-copy .btn { margin-top: 18px; }

/* Resource / guide cards */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 36, 90, 0.1);
}
.resource-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e8edf5;
}
.resource-card .rc-body {
  /* padding from shared media-card body rule */
  flex: 1 1 auto;
}
.resource-card .rc-body .kicker { margin-bottom: 6px; }
.resource-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}
.resource-card p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}

/* Clickable media cards: keep flex column from shared rules (do not reset to display:block) */
.ind-card a.ind-card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
  min-width: 0;
}
a.tile:hover figcaption,
a.tile:hover .tile-cap,
a.ind-card:hover h3 { color: var(--pb-teal-deep); }

@media (max-width: 900px) {
  .ind-page-grid,
  .content-band-grid { grid-template-columns: 1fr; }
  .content-band-grid.reverse > :first-child { order: 0; }
  .ind-page-grid > *,
  .content-band-grid > * { min-width: 0; }
  .resource-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 960px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- feature groups (features page) ---------- */

.fwrap { padding: var(--section-pad) 0; }
.fwrap.tinted { background: var(--pb-bg); }

.fgroup + .fgroup { margin-top: clamp(72px, 8vw, 120px); }

.fgroup-head { max-width: 660px; margin-bottom: 36px; }
.fgroup-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.fgroup-head p { margin-top: 12px; font-size: 1.02rem; line-height: 1.6; color: var(--pb-ink-soft); }

.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fgrid.cols4 { grid-template-columns: repeat(4, 1fr); }

.fcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  padding: 20px 20px 18px;
  box-shadow: var(--shadow-sm);
}
.fcard h3 { font-size: 0.99rem; font-weight: 700; padding-right: 4px; }
.fcard p { margin-top: 7px; font-size: 0.87rem; line-height: 1.55; color: var(--pb-ink-soft); }
.fgate {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef1f8;
  color: var(--pb-ink-soft);
}
.fgate.always { background: var(--pb-teal-tint); color: var(--pb-teal-deep); }

.fsplit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  margin-bottom: 40px;
}
.fsplit.rev .fsplit-copy { order: 2; }
.fsplit.rev .fsplit-media { order: 1; }
.fsplit-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.fsplit-copy > p { margin-top: 12px; font-size: 1.02rem; line-height: 1.65; color: var(--pb-ink-soft); }

/* dark safety band */
.safety {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(52rem 30rem at 10% 0%, rgba(22, 185, 168, 0.14), transparent 55%),
    linear-gradient(180deg, var(--pb-navy) 0%, var(--pb-navy-deep) 100%);
  color: #fff;
}
.safety :focus-visible { outline-color: rgba(255, 255, 255, 0.75); }
.safety .section-head h2 { color: #fff; }
.safety .section-head p { color: rgba(255, 255, 255, 0.75); }
.safety .kicker { color: var(--pb-teal); }

.safety .fcard {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.safety .fcard h3 { color: #fff; }
.safety .fcard p { color: rgba(255, 255, 255, 0.72); }
.safety .fgate { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }
.safety .fgate.always { background: rgba(22, 185, 168, 0.18); color: var(--pb-teal); }

/* lifestyle story band — two columns: photo + copy (home, features, affiliates) */
.story-band { padding: var(--section-pad) 0; }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  width: 100%;
}
.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-width: 0;
}
.story-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-copy {
  min-width: 0;
}
.story-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.08;
}
.story-copy > p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--pb-ink-soft);
}
.story-copy .checklist {
  margin-top: 22px;
  gap: 12px;
}
.story-copy .checklist li {
  padding-left: 32px;
  font-size: 0.96rem;
  line-height: 1.45;
}

/* ---------- comparison table (pricing page) ---------- */

.cmp { padding: var(--section-pad) 0; background: var(--pb-bg); }
/* Compare section uses the same .container max-width as every other band */
.cmp .container {
  /* do NOT set max-width: 100% — that blew the compare section full-bleed */
  min-width: 0;
}
.cmp-scroll {
  display: block;
  overflow-x: auto;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  /* isolate wide table so it scrolls inside the container — never full-page */
  overscroll-behavior-x: contain;
}

table.cmp-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cmp-table th, .cmp-table td {
  padding: 13px 18px;
  text-align: center;
  border-bottom: 1px solid #eef1f8;
}
.cmp-table th:first-child, .cmp-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--pb-ink);
  min-width: 240px;
}
.cmp-table thead th {
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid var(--pb-line);
  padding-top: 18px;
  padding-bottom: 14px;
}
.cmp-table thead .cmp-price { display: block; font-size: 0.78rem; font-weight: 500; color: var(--pb-ink-faint); margin-top: 2px; }
.cmp-table .featured-col { background: rgba(22, 185, 168, 0.06); }
.cmp-table td { color: var(--pb-ink-soft); }
.cmp-table .sect th,
.cmp-table .sect td {
  background: #f7f9fc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pb-ink-faint);
  text-align: left;
}
.cmp-yes {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  background: var(--pb-teal-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C72' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.cmp-no { color: rgba(6, 36, 90, 0.5); font-weight: 600; }
.cmp-foot { margin-top: 18px; font-size: 0.84rem; color: var(--pb-ink-faint); }

/* explainer cards (pricing page) */
.explain { padding: var(--section-pad) 0; }
.explain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.explain-card {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.explain-card h3 { font-size: 1.12rem; font-weight: 700; }
.explain-card p { margin-top: 10px; font-size: 0.95rem; line-height: 1.65; color: var(--pb-ink-soft); }
.explain-card p + p { margin-top: 10px; }

/* enterprise banner */
.ent-banner {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(90deg, var(--pb-navy) 0%, var(--pb-navy-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
}
.ent-banner h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }
.ent-banner p { margin-top: 6px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.78); max-width: 560px; }
.ent-banner :focus-visible { outline-color: rgba(255, 255, 255, 0.75); }

/* ---------- journey (how-it-works page) ---------- */

.journey { padding: var(--section-pad) 0; }

.jstage + .jstage { margin-top: clamp(72px, 8vw, 128px); }

.jnum {
  display: block;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(6, 36, 90, 0.1);
  margin-bottom: 14px;
}

.jhand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--pb-teal-tint);
  color: var(--pb-teal-deep);
}
.jhand.you { background: var(--pb-amber-tint); color: var(--pb-amber-text); }

.nice { padding: 0 0 var(--section-pad); text-align: center; }
.nice .frame { max-width: 920px; margin-inline: auto; }
.nice-line {
  margin-top: 26px;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* ---------- FAQ page ---------- */

.faqp { padding: var(--section-pad) 0; }

.faqp-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.faq-toc {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 4px;
}
.faq-toc a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--pb-ink-soft);
  text-decoration: none;
}
.faq-toc a:hover { color: var(--pb-navy); background: var(--pb-navy-tint); }

.faq-groups { max-width: 860px; }
.faq-group + .faq-group { margin-top: clamp(48px, 5vw, 72px); }
.faq-group h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

/* ---------- security page ---------- */

.pillars { padding: var(--section-pad) 0; }
.pillars .fcard { padding: 26px 26px 24px; }
.pillars .fcard h3 { font-size: 1.08rem; }
.pillars .fcard p { font-size: 0.93rem; margin-top: 9px; }

.disclosure {
  margin-top: clamp(48px, 6vw, 72px);
  background: #fff;
  border: 1px solid var(--pb-line);
  border-left: 4px solid var(--pb-teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 30px;
  max-width: 860px;
}
.disclosure h2 { font-size: 1.2rem; font-weight: 800; }
.disclosure p { margin-top: 8px; font-size: 0.95rem; line-height: 1.65; color: var(--pb-ink-soft); }
.disclosure a { color: var(--pb-teal-deep); font-weight: 600; }

/* ---------- industries ---------- */

.inds { padding: var(--section-pad) 0; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.ind-card,
a.ind-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.ind-card:hover,
a.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ind-card img,
a.ind-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  flex: none;
}
/* .ind-body padding from shared media-card body rule */
.ind-body h3,
a.ind-card .ind-body h3 {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0;
  margin: 0;
}
.ind-body p,
a.ind-card .ind-body p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--pb-ink-soft);
}

.ind-more {
  margin-top: 36px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--pb-ink-soft);
  max-width: 640px;
  margin-inline: auto;
}

/* ---------- news ---------- */

.news { padding: var(--section-pad) 0; }
.news-list { max-width: 880px; display: grid; gap: 18px; }

.post {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 30px;
}
.post-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pb-teal-deep);
  padding-top: 3px;
}
.post h2 { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.015em; }
.post p { margin-top: 8px; font-size: 0.95rem; line-height: 1.65; color: var(--pb-ink-soft); }
.post-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--pb-navy-tint);
  color: var(--pb-ink-soft);
}

.news-note {
  margin-top: 36px;
  max-width: 880px;
  padding-left: 18px;
  border-left: 3px solid var(--pb-teal);
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}

/* ---------- footer ---------- */

.footer { padding: 68px 0 40px; border-top: 1px solid var(--pb-line); background: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img { display: block; width: 200px; height: auto; }
.footer-brand p { margin-top: 16px; font-size: 0.89rem; line-height: 1.6; color: var(--pb-ink-soft); max-width: 280px; }
.footer-brand .footer-tag { margin-top: 10px; font-size: 0.8rem; font-weight: 600; color: var(--pb-teal-deep); }

.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pb-ink-faint);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--pb-ink-soft);
  text-decoration: none;
}
.footer-col a:hover { color: var(--pb-navy); text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.82rem;
  color: var(--pb-ink-faint);
}
.footer-inline { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-inline a { display: inline-block; padding: 8px 2px; color: var(--pb-ink-faint); text-decoration: none; }
.footer-inline a:hover { color: var(--pb-navy); text-decoration: underline; }

.footer-disclaimer { margin-top: 14px; font-size: 0.76rem; color: var(--pb-ink-faint); }

/* Company identity (Stripe / Irish company law transparency) */
.company-id {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--pb-line);
  max-width: 320px;
}
.company-id-label {
  margin: 0 0 8px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pb-ink-faint) !important;
}
.company-id p {
  margin-top: 4px !important;
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  color: var(--pb-ink-soft) !important;
  max-width: none !important;
}
.company-id-note {
  margin-top: 8px !important;
  font-size: 0.72rem !important;
  color: var(--pb-ink-faint) !important;
}
.company-id .to-confirm {
  display: inline;
  background: rgba(246, 180, 14, 0.18);
  border: 1px solid rgba(246, 180, 14, 0.4);
  border-radius: 4px;
  padding: 0 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pb-navy);
}

/* Open decisions tables on legal pages */
.open-decisions {
  margin: 16px 0 24px;
  overflow-x: auto;
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  background: #fff;
}
.open-decisions table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 0;
}
.open-decisions th,
.open-decisions td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--pb-line);
  vertical-align: top;
}
.open-decisions th {
  background: var(--pb-bg);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pb-ink-faint);
}
.open-decisions tr:last-child td { border-bottom: 0; }
.open-decisions td:first-child {
  font-weight: 700;
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  white-space: nowrap;
  color: var(--pb-navy);
}

.price-legal-note {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 14px;
  background: var(--pb-bg);
  border: 1px solid var(--pb-line);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}
.price-legal-note h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pb-navy);
}
.price-legal-note ul {
  margin: 10px 0 0;
  padding-left: 1.15em;
}
.price-legal-note li { margin-top: 6px; }
.price-legal-note a { color: var(--pb-teal-deep); font-weight: 600; }

/* ---------- cookie banner ---------- */

.cookie-banner[hidden] { display: none; }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
}
.cookie-copy strong { font-size: 0.92rem; }
.cookie-copy p { margin-top: 3px; font-size: 0.8rem; line-height: 1.5; color: var(--pb-ink-soft); }
.cookie-copy a { color: var(--pb-teal-deep); }
.cookie-actions { display: flex; gap: 8px; flex: none; }

/* ---------- responsive ---------- */

@media (max-width: 1140px) {
  .fgrid.cols4 { grid-template-columns: repeat(2, 1fr); }
  .aud-grid,
  .aud-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  /* Keep pricing order: Starter → Growth → Pro → Business (never jump Growth first) */
  .price-card.featured { order: 0; }
  .mini-plans { grid-template-columns: repeat(2, 1fr); }
  .mini-plan.featured { order: 0; }
}

@media (max-width: 1024px) {
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .wild-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
}

@media (max-width: 1180px) {
  /* Primary + More still need the burger below ~laptop width */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--pb-line);
    box-shadow: 0 24px 40px -20px rgba(6, 36, 90, 0.25);
    padding: 10px 20px 18px;
    max-height: min(78vh, 640px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 110;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links > a,
  .nav-more-btn {
    min-height: 48px;
    font-size: 1rem;
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }
  .nav-links > a.is-active,
  .nav-more-btn.is-active {
    box-shadow: inset 3px 0 0 var(--pb-teal);
    border-radius: 0 10px 10px 0;
  }
  .nav-more { width: 100%; }
  .nav-more-btn { border-radius: 10px; }
  .nav-more-btn::after { margin-left: auto; }
  /* On mobile, More is an inline expand — not a floating panel off-screen */
  .nav-more-menu {
    position: static;
    min-width: 0;
    margin: 0 0 4px 8px;
    padding: 4px 0 4px 8px;
    border: 0;
    border-left: 2px solid var(--pb-line);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-more-menu a { min-height: 44px; font-size: 0.95rem; }
  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--pb-line);
  }
  .nav-mobile-cta .btn { width: 100%; flex: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* Wide-but-not-huge desktops: slightly tighter so 6 + More fits with CTAs */
@media (min-width: 1181px) and (max-width: 1360px) {
  .nav-brand img { width: 220px; max-width: min(36vw, 240px); }
  .nav-links > a,
  .nav-more-btn {
    padding: 0 8px;
    font-size: 0.84rem;
  }
  .nav-cta .btn-primary { padding: 0 14px; }
}

@media (max-width: 960px) {
  .nav-inner { min-height: 88px; }
  .nav-brand img { width: 220px; max-width: min(48vw, 240px); }
  html { scroll-padding-top: 100px; }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 55%, #fff 100%),
      url("../assets/v2/33-empty-office-morning.jpg") right 30% / cover no-repeat,
      #fff;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 580px; }
  .hero-lead { max-width: 580px; }

  .night-copy { max-width: 620px; }
  .night {
    /* full-width copy on small screens needs an even scrim, not the left-biased one */
    background:
      linear-gradient(180deg, rgba(3, 15, 36, 0.84) 0%, rgba(3, 15, 36, 0.76) 100%),
      url("../assets/v2/02-laptop-night-bills.jpg") center 40% / cover no-repeat,
      var(--pb-navy-deep);
  }

  .calm-grid { grid-template-columns: 1fr; }
  .calm-proof { position: static; max-width: 640px; }

  .steps { grid-template-columns: 1fr; max-width: 620px; }

  .prod-row,
  .prod-row.rev { grid-template-columns: 1fr; }
  .prod-row.rev .prod-copy { order: 0; }
  .prod-row.rev .prod-media { order: 0; }

  .fsplit, .fsplit.rev { grid-template-columns: 1fr; }
  .fsplit.rev .fsplit-copy { order: 0; }
  .fsplit.rev .fsplit-media { order: 0; }

  .story-grid { grid-template-columns: 1fr; }

  .explain-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro p { max-width: 580px; }

  .tone-grid { grid-template-columns: 1fr; }
  .tone-aside { position: static; max-width: 480px; margin-inline: auto; }

  .faqp-grid { grid-template-columns: 1fr; }
  .faq-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-toc a { border: 1px solid var(--pb-line); border-radius: 999px; padding: 9px 15px; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }

  /* annotations become captions on small screens */
  .frame-note,
  .frame-note-a, .frame-note-b, .frame-note-c, .frame-note-d {
    position: static;
    display: block;
    max-width: none;
    margin: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: none;
    background: var(--pb-navy);
  }
  .frame > img { border-radius: 0; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; } /* phones scroll far enough already */

  /* Plans: 2×2 on phones */
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .price-card {
    padding: 16px 14px 14px;
  }
  .price-card .price { font-size: 1.55rem; }
  .price-blurb { font-size: 0.78rem; min-height: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .price-lead { font-size: 0.72rem; margin-top: 10px; padding-top: 10px; }
  .plan-overage { font-size: 0.72rem; min-height: 0; }
  .price-card .btn { min-height: 42px; font-size: 0.82rem; padding: 0 10px; }
  .price-badge { font-size: 0.62rem; left: 12px; }

  /* Collapse plan features: only core 3 visible until expanded */
  .plan-row:not(.plan-row-core) { display: none; }
  .price-card.is-expanded .plan-row:not(.plan-row-core) {
    display: grid;
  }
  .plan-rows-toggle {
    display: flex;
    width: 100%;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--pb-teal-deep);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 0 4px;
    cursor: pointer;
    text-align: left;
    gap: 4px;
    align-items: center;
  }
  .plan-rows-toggle::after {
    content: "";
    width: 0.35em;
    height: 0.35em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
  }
  .price-card.is-expanded .plan-rows-toggle::after {
    transform: rotate(225deg) translateY(2px);
  }

  .mini-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* Who it's for: 2-col horizontal scroll (~6 visible), swipe for more */
  .aud-grid,
  .aud-grid-wide {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: calc(50% - 6px);
    grid-template-rows: repeat(3, auto);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    margin-inline: -4px;
    padding-inline: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .aud-grid > *,
  .aud-grid-wide > * {
    scroll-snap-align: start;
    min-width: 0;
  }
  .aud-cap strong { font-size: 0.9rem; }
  .aud-cap span { font-size: 0.82rem; margin-top: 5px; }

  .story-copy { padding-block: 4px; }
  .calm-answers li { padding-right: 4px; }
  .night-copy { max-width: none; padding-inline: 2px; }
  .prod-copy { min-width: 0; }
  .fgrid, .fgrid.cols4 { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .final-actions .btn { width: 100%; }
  .page-hero .hero-actions .btn { width: auto; flex: 1 1 auto; min-width: 0; }
  .nav-cta .btn-primary {
    display: inline-flex !important;
    padding: 0 12px;
    min-height: 40px;
    font-size: 0.8rem;
  }
  .nav-brand img { width: 200px; max-width: min(52vw, 220px); }
}

/* Plan expand toggle hidden on desktop (enabled in ≤640 block above) */
@media (min-width: 641px) {
  .plan-rows-toggle { display: none !important; }
}

/* Floating contact / chat FAB */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: var(--pb-teal-action);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 10px 28px -8px rgba(18, 156, 141, 0.55), 0 4px 12px rgba(6, 36, 90, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.float-contact:hover {
  background: var(--pb-teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(18, 156, 141, 0.6);
  color: #fff;
}
.float-contact-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: none;
}
.float-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.float-contact-label { white-space: nowrap; }
@media (max-width: 640px) {
  .float-contact {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 14px 0 12px;
    font-size: 0.86rem;
  }
  .float-contact-label { /* keep short label on phone */
  }
}
/* Trial short label in compact headers */
.nav-trial-short { display: none; }
@media (max-width: 1180px) {
  .nav-cta .nav-trial-full { display: none; }
  .nav-cta .nav-trial-short { display: inline; }
}
@media (min-width: 1181px) {
  .nav-trial-short { display: none; }
}

/* Home teaser cards — match pricing card chrome */
.home-plans.price-grid {
  margin-top: 8px;
}
.home-plans .price-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.home-plans .price-card:hover {
  border-color: var(--pb-teal-action);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.home-plans .plan-overage { display: none; }
.home-plans .price-equiv { display: none; }
.home-plans .price-annual-badge { display: none !important; }

@media (max-width: 430px) {
  /* Keep compact Trial + currency dropdown in the bar */
  .nav-cta .btn-primary.nav-trial,
  .nav-cta .btn-primary {
    display: inline-flex !important;
    padding: 0 10px;
    min-height: 38px;
    font-size: 0.78rem;
  }
  .nav-brand img { width: 180px; max-width: min(46vw, 200px); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .cookie-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-actions { justify-content: flex-end; }
  .c-sent { display: none; }
  .mail { padding: 20px 18px 24px; }
  .post { grid-template-columns: 1fr; gap: 8px; padding: 22px 20px; }

  /* tiles stay a mosaic on phones — stacked full-width cards read as filler */
  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Keep shared card-body tokens — never collapse to flush edges on phones */
  :root {
    --card-body-pad-y: 16px;
    --card-body-pad-x: 16px;
    --card-body-pad-bottom: 18px;
  }
  .tile figcaption,
  .tile .tile-cap,
  a.tile .tile-cap {
    font-size: 0.8rem;
  }
  .tone-tabs { width: 100%; }
  .tone-tabs [role="tab"] { flex: 1; padding: 10px 6px; }
  .ent-banner { padding: 24px 22px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .eyebrow-dot { animation: none; }
}

/* ---------- Legal / secondary pages ---------- */
.legal-wrap {
  padding: var(--section-pad) 0;
  background: #fff;
}
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
/* Allow grid children to shrink so wide tables scroll inside .cmp-scroll
   instead of expanding document scrollWidth (mobile legal pages). */
.legal-layout > * {
  min-width: 0;
  max-width: 100%;
}
.legal-toc {
  position: sticky;
  top: 100px;
  padding: 20px 18px;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  background: var(--pb-bg);
}
.legal-toc h2 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-ink-faint);
  margin: 0 0 12px;
}
.legal-toc a {
  display: block;
  padding: 8px 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--pb-ink-soft);
  border-bottom: 1px solid transparent;
}
.legal-toc a:hover { color: var(--pb-teal-deep); }
.legal-meta {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--pb-ink-faint);
  font-weight: 500;
}
.prose {
  max-width: 760px;
  width: 100%;
  min-width: 0;
}
.prose h2 {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 36px 0 12px;
  scroll-margin-top: 100px;
  color: var(--pb-navy);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 22px 0 8px;
  letter-spacing: -0.015em;
  color: var(--pb-navy);
}
.prose p, .prose li {
  color: var(--pb-ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0 0 12px;
}
.prose ul, .prose ol {
  margin: 0 0 16px 1.25em;
  padding: 0;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a {
  color: var(--pb-teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose a:hover { color: var(--pb-navy); }
/* Callouts work inside .prose and on pages that use them standalone (e.g. stories) */
.callout,
.prose .callout {
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--pb-teal-tint);
  border: 1px solid rgba(18, 156, 141, 0.22);
  color: var(--pb-navy);
  font-size: 0.92rem;
  line-height: 1.55;
  box-sizing: border-box;
}
.callout.warn,
.prose .callout.warn {
  background: rgba(246, 180, 14, 0.14);
  border-color: rgba(246, 180, 14, 0.4);
}
.prose .to-confirm {
  display: inline;
  background: rgba(246, 180, 14, 0.22);
  border: 1px solid rgba(246, 180, 14, 0.45);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--pb-navy);
  white-space: normal;
  overflow-wrap: anywhere;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}
/* Tables nested in .cmp-scroll: keep intrinsic width so the scrollport works */
.cmp-scroll > table,
.prose .cmp-scroll table {
  margin: 0;
  width: max-content;
  min-width: 100%;
}
.prose th, .prose td {
  border: 1px solid var(--pb-line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
}
.prose th {
  background: var(--pb-bg);
  font-weight: 700;
  color: var(--pb-navy);
}
.legal-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.88rem;
  color: var(--pb-ink-faint);
  line-height: 1.55;
}

/* Contact / support forms */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  min-width: 0;
  width: 100%;
}
.contact-grid > * { min-width: 0; }
.panel {
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.panel h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--pb-navy);
}
.panel > p {
  color: var(--pb-ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pb-navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--pb-line);
  border-radius: 12px;
  font: inherit;
  color: var(--pb-navy);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pb-teal-action);
  box-shadow: 0 0 0 3px rgba(18, 156, 141, 0.18);
}
.form-row .hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--pb-ink-faint);
}
.form-error {
  color: var(--pb-red);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.form-success {
  padding: 18px 18px;
  border-radius: 14px;
  background: var(--pb-teal-tint);
  border: 1px solid rgba(18, 156, 141, 0.25);
  color: var(--pb-navy);
  font-size: 0.95rem;
  line-height: 1.55;
}
.form-success a {
  color: var(--pb-teal-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Honeypot: clip in-place (avoid left:-9999 which can expand scrollWidth if overflow-x clip is removed) */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: 0 !important;
  top: 0 !important;
  pointer-events: none !important;
}
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.kb-card {
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 24px 22px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: visible;
  transition: box-shadow 0.2s, transform 0.2s;
}
.kb-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.kb-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--pb-navy);
}
.kb-card > p,
.kb-card .kb-card-blurb {
  color: var(--pb-ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 12px;
}
.kb-card .more {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--pb-teal-deep);
  margin: 12px 0 0;
  padding-top: 4px;
}
.pref-box {
  margin-top: 24px;
  padding: 22px 22px;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  background: var(--pb-bg);
}
.pref-box h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pb-navy);
}
.pref-state {
  font-size: 0.92rem;
  color: var(--pb-ink-soft);
  margin: 0 0 14px;
}
.pref-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 960px) {
  .legal-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .legal-toc { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .kb-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .kb-grid { grid-template-columns: 1fr; }
  .pref-actions .btn { width: 100%; }
}

/* ---------- Blog article + news list polish ---------- */
.post h2 a {
  color: inherit;
  text-decoration: none;
}
.post h2 a:hover { color: var(--pb-teal-deep); }
.post-more {
  margin: 10px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}
.post-more a {
  color: var(--pb-teal-deep);
  text-decoration: none;
}
.post-more a:hover { text-decoration: underline; text-underline-offset: 2px; }

.article-prose {
  max-width: none;
  margin: 0;
  padding-bottom: 8px;
}
.article-prose .legal-disclaimer { margin-top: 32px; }

/* ---------- Blog articles (full site width) ---------- */

.blog-article {
  padding: clamp(36px, 5vw, 64px) 0 clamp(48px, 6vw, 80px);
  background: #fff;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pb-ink-soft);
}
.blog-meta time {
  color: var(--pb-navy);
  font-weight: 700;
}
.blog-meta .blog-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pb-line-strong);
  flex-shrink: 0;
}
.blog-meta .blog-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pb-teal-tint);
  color: var(--pb-teal-deep);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-hero-img {
  margin: 0 0 clamp(28px, 4vw, 40px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--pb-line);
  box-shadow: var(--shadow-sm);
  background: #e8edf5;
}
.blog-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.blog-hero-img figcaption {
  padding: 12px 18px 14px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--pb-ink-soft);
  background: var(--pb-bg);
  border-top: 1px solid var(--pb-line);
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.blog-body {
  max-width: none;
  min-width: 0;
}
.blog-body > p:first-of-type {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--pb-ink);
}
.blog-figure {
  margin: 28px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--pb-line);
  background: #e8edf5;
}
.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.blog-figure figcaption {
  padding: 10px 16px 12px;
  font-size: 0.82rem;
  color: var(--pb-ink-soft);
  background: #fff;
  border-top: 1px solid var(--pb-line);
}
.blog-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-aside-card {
  background: var(--pb-bg);
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  padding: 18px 18px 16px;
}
.blog-aside-card h3 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pb-ink-faint);
}
.blog-aside-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--pb-ink-soft);
}
.blog-aside-card .btn {
  margin-top: 14px;
  width: 100%;
}
.blog-aside-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-aside-card li {
  margin: 0;
  border-top: 1px solid var(--pb-line);
}
.blog-aside-card li:first-child { border-top: 0; }
.blog-aside-card a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pb-navy);
  text-decoration: none;
  line-height: 1.35;
}
.blog-aside-card a:hover { color: var(--pb-teal-deep); }
.blog-aside-card a span {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pb-ink-faint);
}
.blog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.95rem;
  font-weight: 600;
}
.blog-nav a {
  color: var(--pb-teal-deep);
  text-decoration: none;
}
.blog-nav a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* News index cards with dates */
.resource-card .rc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pb-ink-faint);
}
.resource-card .rc-meta time { color: var(--pb-navy); }

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-aside { position: static; }
  .blog-hero-img img { aspect-ratio: 16 / 9; }
}

/* ---------- Consistent mobile system (all pages) ---------- */
@media (max-width: 960px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
  .legal-toc h2 { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .kb-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .panel { padding: 22px 18px; }
  .prose table { font-size: 0.86rem; }
  .prose th, .prose td { padding: 8px 10px; }
}

@media (max-width: 640px) {
  .legal-toc { grid-template-columns: 1fr; }
  .kb-grid { grid-template-columns: 1fr; }
  .prose h2 { font-size: 1.12rem; margin-top: 28px; }
  .prose p, .prose li { font-size: 0.95rem; }
  .prose .to-confirm {
    display: inline;
    white-space: normal;
    word-break: break-word;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px; /* prevent iOS zoom */
    min-height: 48px;
  }
  .panel .btn,
  .pref-actions .btn,
  #contactForm .btn { width: 100%; }
  .article-prose { max-width: none; }
  .post { padding: 18px 16px; gap: 10px; }
  .post h2 { font-size: 1.08rem; }
  .cmp-scroll {
    margin-inline: 0;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .footer-grid { gap: 28px 20px; }
  .cookie-inner { padding: 16px; }
  .cookie-copy p { font-size: 0.86rem; }
}

@media (max-width: 430px) {
  .legal-meta { font-size: 0.82rem; }
  .kicker { font-size: 0.72rem; }
  .section-head h2,
  .final h2 { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }
}

/* ---------- Marketing expansion: integrations, product, templates, status ---------- */

.integ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.integ-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  padding: 22px 20px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 100%;
}
.integ-card.is-live {
  border-color: rgba(18, 156, 141, 0.45);
  box-shadow: 0 4px 16px rgba(18, 156, 141, 0.12);
}
.integ-card.is-soon {
  opacity: 0.92;
}
.integ-card.is-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}
.integ-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 36, 90, 0.1);
}
.integ-card.is-soon:hover {
  transform: none;
}
.integ-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--pb-amber);
  color: var(--pb-navy);
}
.integ-status.is-live {
  background: var(--pb-teal-tint);
  color: var(--pb-teal-deep);
  border: 1px solid rgba(18, 156, 141, 0.35);
}
.integ-card.is-soon .integ-more {
  color: var(--pb-ink-faint);
  font-weight: 600;
}
.integ-card .integ-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  color: var(--pb-navy);
  background: var(--pb-bg);
  border: 1px solid var(--pb-line);
  margin-bottom: 14px;
}
.integ-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0;
}
.integ-card p {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--pb-ink-soft);
  flex: 1;
}
.integ-card .integ-more {
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--pb-teal-deep);
}

.check-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--pb-line);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--pb-teal-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E7C72' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 9px no-repeat;
}
.check-list li.is-na {
  color: rgba(6, 36, 90, 0.45);
}
.check-list li.is-na::before {
  background: #eef1f8;
  content: "—";
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(6, 36, 90, 0.4);
}

.tmpl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.tmpl-card {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tmpl-card-head {
  padding: 14px 18px;
  background: var(--pb-bg);
  border-bottom: 1px solid var(--pb-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.tmpl-card-head strong { font-size: 0.95rem; }
.tmpl-tone {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--pb-teal-tint);
  color: var(--pb-teal-deep);
}
.tmpl-body {
  padding: 18px 18px 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
}
.tmpl-body .tmpl-subject {
  font-weight: 700;
  color: var(--pb-navy);
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.tmpl-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.8rem;
  color: var(--pb-ink-faint);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.status-card {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.status-card .status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--pb-teal-deep);
}
.status-card .status-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pb-teal);
  box-shadow: 0 0 0 3px var(--pb-teal-tint);
}
.status-card h3 {
  margin: 12px 0 6px;
  font-size: 1rem;
}
.status-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--pb-ink-soft);
}

/* Customer Stories page card grid — NOT the lifestyle .story-grid (photo + copy) */
.stories-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.story-card {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.story-card-body {
  /* padding from shared media-card body rule */
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.story-card .story-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pb-teal-deep);
}
.story-card h3 {
  margin: 8px 0 0;
  font-size: 1.12rem;
  line-height: 1.3;
}
.story-card p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--pb-ink-soft);
  flex: 1;
}
.story-card .story-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--pb-ink-faint);
  font-style: italic;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}
.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pb-line);
  vertical-align: top;
  line-height: 1.45;
}
.compare-table th {
  background: var(--pb-bg);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pb-ink-faint);
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:first-child { font-weight: 600; color: var(--pb-navy); width: 28%; }

.demo-steps {
  counter-reset: demo;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.demo-steps li {
  counter-increment: demo;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 14px;
}
.demo-steps li::before {
  content: counter(demo, decimal-leading-zero);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--pb-teal-deep);
  background: var(--pb-teal-tint);
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-steps h3 { margin: 0 0 6px; font-size: 1.05rem; }
.demo-steps p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--pb-ink-soft); }

.breadcrumb-bar {
  font-size: 0.82rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
}
.breadcrumb-bar a { color: var(--pb-teal); font-weight: 600; text-decoration: none; }
.breadcrumb-bar a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .demo-steps li { grid-template-columns: 40px 1fr; gap: 12px; padding: 14px; }
  .demo-steps li::before { width: 40px; height: 40px; font-size: 0.85rem; }
}

/* ========== Knowledge base (product docs) ========== */
.page-hero-compact { padding-block: 48px 40px; }
.page-hero-compact .page-hero-lead { max-width: 48rem; }
.page-hero-compact h1 { max-width: 52rem; }
.kb-progress {
  margin: 14px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

/* Full site container width — no 820px clamp */
.kb-article-wrap {
  padding: 28px 0 var(--section-pad);
  background: var(--pb-bg);
}
.kb-article-wrap > .container {
  max-width: var(--container-w);
}

.kb-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--pb-ink-soft);
  margin: 0 0 16px;
}
.kb-crumbs a {
  color: var(--pb-teal-deep);
  text-decoration: none;
  font-weight: 600;
}
.kb-crumbs a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Prev / next */
.kb-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 22px;
}
.kb-pager-bottom { margin: 28px 0 0; }
/* No blank white cell when one end of the series is missing */
.kb-pager:has(.kb-pager-prev.is-empty) {
  grid-template-columns: 1fr;
}
.kb-pager:has(.kb-pager-next.is-empty) {
  grid-template-columns: 1fr;
}
.kb-pager:has(.kb-pager-prev.is-empty) .kb-pager-next {
  text-align: left;
  align-items: flex-start;
}
.kb-pager-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  color: var(--pb-navy);
  min-height: 72px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.kb-pager-link:hover {
  border-color: var(--pb-teal-action);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.kb-pager-link.is-empty {
  display: none;
}
.kb-pager-next { text-align: right; align-items: flex-end; }
.kb-pager-dir {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pb-teal-deep);
}
.kb-pager-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--pb-navy);
}

/* Two-column layout: sidebar + wide main (site-width) */
.kb-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: start;
}
.kb-aside {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 4px 2px 8px 0;
}
.kb-side-nav {
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 16px 14px 18px;
}
.kb-side-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pb-ink-soft);
}
.kb-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kb-side-list li { margin: 0 0 2px; }
.kb-side-list a {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--pb-navy);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}
.kb-side-list a:hover { background: var(--pb-navy-tint); }
.kb-side-list li.is-current a {
  background: var(--pb-teal-tint);
  color: var(--pb-teal-deep);
}
.kb-side-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--pb-ink-soft);
  padding-top: 2px;
}
.kb-side-list li.is-current .kb-side-num { color: var(--pb-teal-deep); }
.kb-side-hub {
  display: inline-block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--pb-line);
  width: 100%;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--pb-teal-deep);
  text-decoration: none;
}
.kb-side-hub:hover { text-decoration: underline; text-underline-offset: 2px; }

.kb-main { min-width: 0; }

.kb-article {
  background: var(--pb-card);
  border: 1px solid var(--pb-line);
  border-radius: var(--radius);
  padding: 28px 36px 40px;
  max-width: none !important;
  margin: 0 !important;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(6, 36, 90, 0.04));
}
.kb-article h2 {
  scroll-margin-top: 88px;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}
.kb-article h3 { font-size: 1.08rem; }
.kb-article .kb-body > p,
.kb-article .kb-body > ul,
.kb-article .kb-body > ol {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 52rem;
}
.kb-article ol.kb-steps { padding-left: 1.25rem; max-width: 52rem; }
.kb-article ol.kb-steps li { margin-bottom: 12px; }
.kb-article .kb-plan {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--pb-navy-tint);
  border: 1px solid var(--pb-line);
  font-size: 0.95rem;
  color: var(--pb-ink);
  max-width: 52rem;
}

/* Large product screenshots — full main column */
.kb-shot {
  margin: 0 0 32px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--pb-line);
  background: #fff;
  box-shadow: var(--shadow-lg, 0 18px 40px -16px rgba(6, 36, 90, 0.22));
}
.kb-shot-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f4f6fb;
  border-bottom: 1px solid var(--pb-line);
}
.kb-shot-chrome > span:nth-child(-n+3) {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--pb-line-strong);
  flex-shrink: 0;
}
.kb-shot-chrome > span:nth-child(1) { background: #ff5f57; }
.kb-shot-chrome > span:nth-child(2) { background: #febc2e; }
.kb-shot-chrome > span:nth-child(3) { background: #28c840; }
.kb-shot-url {
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pb-ink-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.kb-shot-media {
  background: #e8edf6;
  line-height: 0;
}
.kb-shot-media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}
.kb-shot-cap {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.84rem;
  color: var(--pb-ink-soft);
  background: var(--pb-bg);
  border-top: 1px solid var(--pb-line);
}

.kb-related {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--pb-line);
}
.kb-related h2 {
  font-size: 1.1rem;
  margin: 0 0 14px;
}
.kb-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.kb-related-card {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--pb-line);
  border-radius: 10px;
  background: var(--pb-bg);
  text-decoration: none;
  color: var(--pb-navy);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: border-color 0.15s, background 0.15s;
}
.kb-related-card:hover {
  border-color: var(--pb-teal-action);
  background: #fff;
  color: var(--pb-teal-deep);
}

.kb-meta-foot {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--pb-line);
  font-size: 0.88rem;
  color: var(--pb-ink-soft);
  max-width: 52rem;
}
.kb-foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.kb-back { margin: 22px 0 0; font-weight: 600; }
.kb-back a { color: var(--pb-teal-deep); text-decoration: none; }
.kb-back a:hover { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 1024px) {
  .kb-layout {
    grid-template-columns: 1fr;
  }
  .kb-aside {
    position: static;
    max-height: none;
    order: 2;
  }
  .kb-main { order: 1; }
  .kb-side-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .kb-side-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px 8px;
  }
}
@media (max-width: 640px) {
  .kb-article { padding: 20px 16px 28px; }
  .kb-pager { grid-template-columns: 1fr; }
  .kb-pager-next { text-align: left; align-items: flex-start; }
  .kb-pager-link.is-empty { display: none; }
  .kb-shot-media img { min-height: 180px; }
  .kb-side-list { grid-template-columns: 1fr; }
  .kb-foot-actions .btn { width: 100%; justify-content: center; }
}
.kb-search-wrap { max-width: 640px; margin: 0 auto 8px; position: relative; }
.kb-search-input {
  width: 100%; min-height: 52px; padding: 12px 16px 12px 44px;
  border: 1px solid var(--pb-line-strong); border-radius: 12px;
  font: inherit; font-size: 1rem; color: var(--pb-navy);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230E7C72' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3-3'/%3E%3C/svg%3E") 14px center no-repeat;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(6,36,90,0.04));
}
.kb-search-input:focus {
  outline: 3px solid var(--pb-teal-action);
  outline-offset: 1px;
  border-color: var(--pb-teal-action);
}
.kb-search-results {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--pb-line); border-radius: 12px;
  box-shadow: var(--shadow); z-index: 20; max-height: 360px; overflow: auto;
  display: none;
}
.kb-search-results.is-open { display: block; }
.kb-search-results a {
  display: block; padding: 12px 14px; text-decoration: none; color: var(--pb-navy);
  border-bottom: 1px solid var(--pb-line);
}
.kb-search-results a:last-child { border-bottom: 0; }
.kb-search-results a:hover, .kb-search-results a:focus { background: var(--pb-navy-tint); }
.kb-search-results strong { display: block; font-size: 0.95rem; }
.kb-search-results span { display: block; font-size: 0.82rem; color: var(--pb-ink-soft); margin-top: 2px; }
.kb-search-empty { padding: 14px; font-size: 0.9rem; color: var(--pb-ink-soft); }
.kb-cat-count {
  display: inline-block; margin-left: 6px; font-size: 0.78rem; font-weight: 700;
  color: var(--pb-teal-deep); background: var(--pb-teal-tint);
  padding: 2px 8px; border-radius: 999px; vertical-align: middle;
}
/* Never height:100% on the title block — that swallowed the article list and clipped .more */
.kb-card .kb-card-head {
  display: block;
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}
.kb-card .kb-card-head:hover h3 { color: var(--pb-teal-deep); }
.kb-card .more { margin-top: auto; padding-top: 12px; }
.kb-card .more a {
  color: var(--pb-teal-deep);
  font-weight: 700;
  text-decoration: none;
}
.kb-card .more a:hover { text-decoration: underline; text-underline-offset: 2px; }
.kb-article-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  flex: 1 1 auto;
}
.kb-article-list li { margin: 0 0 8px; }
.kb-article-list li:last-child { margin-bottom: 0; }
.kb-article-list a {
  color: var(--pb-teal-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
  display: inline;
}
.kb-article-list a:hover { text-decoration: underline; text-underline-offset: 2px; }
.kb-hub-popular { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.kb-hub-popular a {
  color: var(--pb-navy); font-weight: 600; text-decoration: none;
  padding: 10px 12px; border: 1px solid var(--pb-line); border-radius: 10px; background: #fff;
}
.kb-hub-popular a:hover { border-color: var(--pb-teal-action); color: var(--pb-teal-deep); }
@media (max-width: 640px) {
  .kb-hub-popular { grid-template-columns: 1fr; }
}
