/* WonderLead AI Native Practitioner — editorial product page */

:root {
  --pr-cream: #FAF7F1;
  --pr-cream-deep: #F3EEE4;
  --pr-ink: #182230;
  --pr-ink-soft: #55606E;
  --pr-muted: #8A8F98;
  --pr-gold: #A87A2D;
  --pr-gold-dark: #8E6520;
  --pr-gold-light: #D9B064;
  --pr-gold-pale: #F0D9A6;
  --pr-navy: #182230;
  --pr-navy-deep: #121A26;
  --pr-navy-mid: #1E2A3C;
  --pr-navy-darkest: #0C1420;
  --pr-white: #FFFFFF;
  --pr-serif: 'Cormorant Garamond', Georgia, serif;
  --pr-sans: 'Archivo', system-ui, sans-serif;
  --pr-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --pr-pad-x: clamp(20px, 5vw, 72px);
  --pr-pad-y: clamp(56px, 7vw, 92px);
  --pr-max: 1240px;
  --pr-max-wide: 1320px;
  --pr-radius: 2px;
  --pr-ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

.practitioner-editorial [hidden] {
  display: none !important;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body.practitioner-editorial {
  margin: 0;
  background: var(--pr-cream);
  font-family: var(--pr-sans);
  color: var(--pr-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.practitioner-editorial a { color: var(--pr-gold); }
body.practitioner-editorial a:hover { color: var(--pr-gold-dark); }
body.practitioner-editorial a:focus-visible,
body.practitioner-editorial summary:focus-visible,
body.practitioner-editorial button:focus-visible {
  outline: 2px solid var(--pr-gold);
  outline-offset: 3px;
}

summary::-webkit-details-marker { display: none; }

@keyframes wl-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes wl-pulse {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

.pr-gold-gradient {
  font-style: italic;
  background-image: linear-gradient(100deg, #8E6520 0%, #C99B4A 40%, #E3C078 55%, #A87A2D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pr-topbar {
  height: 3px;
  background: linear-gradient(90deg, #8E6520, #D9B064, #F0D9A6, #A87A2D, #8E6520);
}

/* ── Nav ─────────────────────────────────────────── */
.pr-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--pr-pad-x);
  background: rgba(250, 247, 241, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 34, 48, .08);
}

.pr-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pr-ink);
  min-width: 0;
}

.pr-nav-brand img {
  height: 28px;
  width: auto;
}

.pr-nav-brand-name {
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 22px;
}

.pr-nav-brand-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pr-muted);
  margin-left: 4px;
  border-left: 1px solid rgba(24, 34, 48, .2);
  padding-left: 12px;
  white-space: nowrap;
}

.pr-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.pr-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(24, 34, 48, .72);
  text-decoration: none;
  transition: color .3s;
}

.pr-nav-links a:hover { color: var(--pr-gold); }

.pr-nav-cta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-cream) !important;
  background: var(--pr-ink);
  padding: 12px 20px;
  border-radius: var(--pr-radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background .35s;
}

.pr-nav-cta:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-cream) !important;
}

.pr-nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(24, 34, 48, .2);
  border-radius: var(--pr-radius);
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
  color: var(--pr-ink);
}

@media (max-width: 900px) {
  .pr-nav { flex-wrap: wrap; }
  .pr-nav-toggle { display: block; margin-left: auto; }
  .pr-nav-links,
  .pr-nav > .pr-nav-cta { display: none; }
  .pr-nav.is-open .pr-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 3;
    background: var(--pr-cream);
    border-top: 1px solid rgba(24, 34, 48, .08);
    padding: 18px 0 8px;
    gap: 16px;
  }
  .pr-nav.is-open > .pr-nav-cta {
    display: inline-block;
    order: 4;
    margin: 8px 0 4px;
  }
  .pr-nav-brand-tag { display: none; }
}

/* ── Shared chapter chrome ───────────────────────── */
.pr-chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pr-chapter-label {
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--pr-gold);
}

.pr-chapter-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--pr-gold);
  flex-shrink: 0;
}

.pr-chapter-kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pr-muted);
}

.pr-h2 {
  margin: 0 0 12px;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -.015em;
  line-height: 1.1;
  text-wrap: balance;
}

.pr-lead {
  margin: 0 0 40px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
  max-width: 640px;
  text-wrap: pretty;
}

.pr-section {
  padding: var(--pr-pad-y) var(--pr-pad-x);
}

.pr-wrap {
  max-width: var(--pr-max);
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────── */
.pr-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--pr-radius);
  padding: 18px 32px;
  transition: background .35s, color .35s, transform .35s, border-color .35s;
  text-align: center;
  cursor: pointer;
  border: none;
}

.pr-btn-dark {
  color: var(--pr-cream) !important;
  background: var(--pr-ink);
}
.pr-btn-dark:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-cream) !important;
  transform: translateY(-2px);
}

.pr-btn-gold {
  color: var(--pr-ink) !important;
  background: var(--pr-gold-light);
}
.pr-btn-gold:hover {
  background: var(--pr-gold-pale) !important;
  color: var(--pr-ink) !important;
  transform: translateY(-2px);
}

.pr-btn-outline {
  color: var(--pr-ink) !important;
  background: transparent;
  border: 1.5px solid var(--pr-ink);
}
.pr-btn-outline:hover {
  background: var(--pr-ink) !important;
  color: var(--pr-cream) !important;
}

.pr-link-underline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-ink) !important;
  text-decoration: none;
  border-bottom: 1px solid var(--pr-gold);
  padding-bottom: 5px;
  transition: color .3s;
}
.pr-link-underline:hover { color: var(--pr-gold) !important; }

/* ── Hero ────────────────────────────────────────── */
.pr-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) var(--pr-pad-x) clamp(48px, 6vw, 80px);
  max-width: var(--pr-max-wide);
  margin: 0 auto;
  overflow: hidden;
}

.pr-hero-cohort {
  margin: 0 0 10px;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--pr-gold);
}

.pr-hero h1 {
  margin: 0 0 22px;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.pr-hero-sub {
  margin: 0 0 22px;
  max-width: 560px;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--pr-ink-soft);
  text-wrap: pretty;
}

.pr-hero-proof {
  margin: 0 0 28px;
  max-width: 560px;
  min-height: 2.7em;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.35;
  color: var(--pr-ink);
  text-wrap: pretty;
}

.pr-hero-ctas {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.pr-hero-trust {
  margin: 0 0 14px;
  max-width: 560px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--pr-ink-soft);
}

.pr-hero-trust strong { color: var(--pr-ink); font-weight: 600; }
.pr-hero-trust a {
  color: var(--pr-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 122, 45, .35);
}
.pr-hero-trust a:hover { color: var(--pr-gold-dark); }

.pr-hero-meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--pr-muted);
}

.pr-hero-meta strong { color: var(--pr-ink); }

/* Slideshow */
.pr-slides-wrap {
  justify-self: center;
  width: min(480px, 100%);
}

.pr-slides-stage {
  position: relative;
  height: min(500px, 70vw);
}

.pr-slides-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(168, 122, 45, .5);
  border-radius: 4px;
  pointer-events: none;
}

.pr-slide {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(24, 34, 48, .12);
  padding: 28px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;
  z-index: 1;
  background: var(--pr-white);
  border: 1px solid rgba(24, 34, 48, .12);
}

.pr-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}

.pr-slide-dark {
  background: var(--pr-navy);
  border-color: rgba(24, 34, 48, .2);
  color: var(--pr-cream);
}

.pr-slide-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--pr-ink);
  padding-bottom: 10px;
  margin-bottom: 18px;
  gap: 12px;
}

.pr-slide-dark .pr-slide-head {
  border-bottom-color: rgba(250, 247, 241, .14);
}

.pr-slide-mono {
  font-family: var(--pr-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pr-slide-meta {
  font-family: var(--pr-mono);
  font-size: 10px;
  color: var(--pr-muted);
}

.pr-slide-dark .pr-slide-meta { color: rgba(250, 247, 241, .5); }

.pr-slide-title {
  margin: 0 0 14px;
  font-family: var(--pr-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
}

.pr-slide-lines { display: flex; flex-direction: column; gap: 8px; }
.pr-slide-line {
  height: 8px;
  background: rgba(24, 34, 48, .09);
}
.pr-slide-line.is-gold { background: rgba(168, 122, 45, .3); }

.pr-slide-note {
  position: absolute;
  left: 30px;
  bottom: 18px;
  margin: 0;
  font-family: var(--pr-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-muted);
}

.pr-slide-stamp {
  position: absolute;
  right: 20px;
  bottom: 56px;
  transform: rotate(-2.5deg);
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 600;
  color: var(--pr-gold);
}

.pr-slides-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.pr-slides-caption {
  margin: 0;
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--pr-ink-soft);
}

.pr-slides-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pr-slides-dots button {
  width: 26px;
  height: 3px;
  border: none;
  padding: 0;
  background: rgba(24, 34, 48, .18);
  cursor: pointer;
  transition: background .4s;
}

.pr-slides-dots button.is-active { background: var(--pr-gold); }

/* Quote chips / research */
.pr-quote-block {
  border-left: 2px solid var(--pr-gold);
  padding: 2px 0 2px 16px;
  margin-bottom: 14px;
}
.pr-quote-block.is-muted { border-left-color: rgba(24, 34, 48, .15); }
.pr-quote-block p {
  margin: 0;
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
}
.pr-quote-block .who {
  margin: 6px 0 0;
  font-family: var(--pr-mono);
  font-size: 10px;
  font-style: normal;
  color: var(--pr-muted);
}

.pr-chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.pr-chip {
  font-family: var(--pr-mono);
  font-size: 10px;
  letter-spacing: .06em;
  border: 1px solid rgba(24, 34, 48, .18);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--pr-ink-soft);
}
.pr-chip.is-gold {
  border-color: var(--pr-gold);
  color: var(--pr-gold);
}

.pr-waitlist-num {
  margin: 0;
  font-family: var(--pr-serif);
  font-size: 76px;
  font-weight: 500;
  line-height: 1;
}
.pr-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  margin-top: 26px;
}
.pr-bars span {
  flex: 1;
  background: rgba(24, 34, 48, .12);
}
.pr-bars span:nth-child(5) { background: rgba(168, 122, 45, .4); height: 47% !important; }
.pr-bars span:nth-child(6) { background: rgba(168, 122, 45, .55); height: 58% !important; }
.pr-bars span:nth-child(7) { background: rgba(168, 122, 45, .75); height: 74% !important; }
.pr-bars span:nth-child(8) { background: var(--pr-gold); height: 100% !important; }

.pr-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(250, 247, 241, .06);
  border-bottom: 1px solid rgba(250, 247, 241, .1);
}
.pr-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(250, 247, 241, .25);
}
.pr-slide-product {
  padding: 0;
}
.pr-slide-product img {
  display: block;
  width: 100%;
  height: calc(100% - 80px);
  object-fit: cover;
  object-position: top;
}
.pr-slide-product-foot {
  margin: 0;
  padding: 12px 16px;
  font-family: var(--pr-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .6);
  border-top: 1px solid rgba(250, 247, 241, .1);
}

.pr-design-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pr-design-card {
  background: rgba(250, 247, 241, .06);
  border: 1px solid rgba(250, 247, 241, .12);
  border-radius: 3px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.pr-design-card.is-chosen { border: 1.5px solid var(--pr-gold-light); }
.pr-chosen-tag {
  position: absolute;
  top: -11px;
  right: 8px;
  font-family: var(--pr-mono);
  font-size: 9px;
  letter-spacing: .1em;
  background: var(--pr-gold-light);
  color: var(--pr-ink);
  padding: 2px 7px;
  border-radius: 2px;
  font-weight: 600;
}

/* ── AI loop ─────────────────────────────────────── */
.pr-loop {
  background: var(--pr-navy-deep);
  color: var(--pr-cream);
  padding: clamp(52px, 6.5vw, 84px) var(--pr-pad-x);
  overflow: hidden;
  position: relative;
}

.pr-loop::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(217, 176, 100, .14) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.pr-loop-inner {
  position: relative;
  max-width: var(--pr-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(36px, 4.5vw, 72px);
  align-items: center;
}

.pr-loop .pr-chapter-rule { background: var(--pr-gold-light); }
.pr-loop .pr-chapter-kicker { color: var(--pr-gold-light); }

.pr-loop h2 {
  margin: 0 0 16px;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}

.pr-loop-lead {
  margin: 0 0 34px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(250, 247, 241, .68);
  max-width: 520px;
}

.pr-loop-stage {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-left: 2px solid rgba(250, 247, 241, .18);
  transition: border-color .5s, background .5s, opacity .5s;
  opacity: .55;
}

.pr-loop-stage.is-on {
  border-left-color: var(--pr-gold-light);
  background: rgba(217, 176, 100, .07);
  opacity: 1;
}

.pr-loop-stage-num {
  font-family: var(--pr-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: rgba(250, 247, 241, .45);
  padding-top: 5px;
}

.pr-loop-stage h3 {
  margin: 0 0 5px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 23px;
}

.pr-loop-stage p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(250, 247, 241, .6);
}

.pr-term {
  background: var(--pr-navy-darkest);
  border: 1px solid rgba(250, 247, 241, .14);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  overflow: hidden;
}

.pr-term-body {
  padding: 24px 22px;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--pr-mono);
  font-size: 13px;
  line-height: 1.65;
}

.pr-term-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
}

.pr-term-who {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .4);
  padding-top: 2px;
}

.pr-term-who.is-you { color: var(--pr-gold-light); }

.pr-term-foot {
  padding: 12px 22px;
  border-top: 1px solid rgba(250, 247, 241, .08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--pr-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .45);
}

.pr-term-caption {
  margin: 18px 4px 0;
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(250, 247, 241, .55);
}

/* ── Gap / before-after ──────────────────────────── */
.pr-gap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 26px;
}

.pr-gap-card {
  background: var(--pr-cream);
  border: 1px solid rgba(24, 34, 48, .1);
  padding: 30px 32px;
}

.pr-gap-card.is-after {
  position: relative;
  background: var(--pr-white);
  border-color: var(--pr-gold);
  box-shadow: 0 16px 40px rgba(168, 122, 45, .12);
}

.pr-gap-label {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pr-muted);
}

.pr-gap-card.is-after .pr-gap-label { color: var(--pr-gold); }

.pr-gap-card .lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.pr-gap-card .lines p { margin: 0; }
.pr-gap-card.is-before .lines p {
  color: var(--pr-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(138, 143, 152, .55);
}

.pr-accepted {
  position: absolute;
  top: -15px;
  right: 22px;
  transform: rotate(2deg);
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 21px;
  font-weight: 600;
  color: var(--pr-gold);
  background: var(--pr-white);
  padding: 0 8px;
}

/* ── Artifacts (dark) ────────────────────────────── */
.pr-artifacts {
  background: var(--pr-navy);
  color: var(--pr-cream);
}

.pr-artifacts .pr-chapter-label,
.pr-artifacts .pr-chapter-rule { color: var(--pr-gold-light); background: var(--pr-gold-light); }
.pr-artifacts .pr-chapter-label { background: none; }
.pr-artifacts .pr-chapter-kicker { color: rgba(250, 247, 241, .5); }
.pr-artifacts .pr-lead { color: rgba(250, 247, 241, .7); }

.pr-artifact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(250, 247, 241, .12);
  border: 1px solid rgba(250, 247, 241, .12);
}

.pr-artifact {
  background: var(--pr-navy);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .35s;
}

.pr-artifact:hover { background: var(--pr-navy-mid); }

.pr-artifact.is-featured {
  background: var(--pr-navy-mid);
  border-top: 2px solid var(--pr-gold-light);
}

.pr-artifact h3 {
  margin: 0;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 25px;
}

.pr-artifact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 241, .68);
  flex: 1;
}

.pr-artifact .held {
  margin: 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pr-gold-light);
}

.pr-pullquote {
  margin: 52px auto 0;
  max-width: 780px;
  text-align: center;
  padding: 0;
}

.pr-pullquote p {
  margin: 0;
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.55;
  color: var(--pr-cream);
  text-wrap: pretty;
}

.pr-pullquote .spin {
  display: inline-block;
  margin-top: 22px;
  color: var(--pr-gold-light);
  font-size: 12px;
  animation: wl-spin 46s linear infinite;
}

/* ── Journey ─────────────────────────────────────── */
.pr-prologue {
  background: var(--pr-navy);
  color: var(--pr-cream);
  padding: 30px 32px;
  margin-bottom: 24px;
  border-top: 2px solid var(--pr-gold-light);
}

.pr-prologue-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pr-prologue-head .tag {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pr-gold-light);
}

.pr-prologue-head h3 {
  margin: 0;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 26px;
}

.pr-prologue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px 28px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 241, .72);
}

.pr-prologue-grid p { margin: 0; }
.pr-prologue-grid strong { color: var(--pr-cream); }

.pr-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pr-phase {
  background: var(--pr-white);
  border: 1px solid rgba(24, 34, 48, .1);
  padding: 30px;
  border-top: 2px solid var(--pr-gold);
}

.pr-phase .tag {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pr-muted);
}

.pr-phase h3 {
  margin: 0 0 14px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 27px;
}

.pr-phase > p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

.pr-deliv-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 34, 48, .08);
}

.pr-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--pr-mono);
  font-size: 10.5px;
  line-height: 1.3;
  letter-spacing: .02em;
  color: var(--pr-ink-soft);
  background: var(--pr-cream);
  border: 1.5px solid var(--role-color, rgba(24, 34, 48, .18));
  border-radius: 999px;
  padding: 5px 10px;
}

.pr-pill[data-role="pm"] { --role-color: #0d5f6f; }
.pr-pill[data-role="engineer"] { --role-color: #166534; }
.pr-pill[data-role="designer"] { --role-color: #6b21a8; }
.pr-pill[data-role="ux"] { --role-color: #1d4ed8; }
.pr-pill[data-role="strategist"] { --role-color: #a87a2d; }
.pr-pill[data-role="tpm"] { --role-color: #c2410c; }
.pr-pill[data-role="lead"],
.pr-pill[data-role="tech-lead"],
.pr-pill[data-role="team-lead"] { --role-color: #1e3a5f; }

.pr-adapt {
  margin-top: 24px;
  background: var(--pr-white);
  border: 1px solid rgba(168, 122, 45, .35);
  padding: 26px 30px;
}

.pr-adapt .tag {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pr-gold);
}

.pr-adapt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px 32px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--pr-ink-soft);
}

.pr-adapt-grid p { margin: 0; }
.pr-adapt-grid strong { color: var(--pr-ink); }

.pr-roles {
  margin-top: 60px;
}

.pr-roles h3 {
  margin: 0 0 8px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
}

.pr-roles .pr-lead { margin-bottom: 14px; }

.pr-roles-note {
  margin: 0 0 10px;
  max-width: 820px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

.pr-roles-hint {
  margin: 0 0 4px;
  font-size: 12.5px;
  color: var(--pr-muted);
}

.pr-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.pr-role {
  --role-color: var(--pr-gold);
  position: relative;
  background: var(--pr-white);
  border: 1px solid rgba(24, 34, 48, .1);
  border-top: 3px solid var(--role-color);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: border-color .25s var(--pr-ease), box-shadow .25s var(--pr-ease), background .25s var(--pr-ease);
}

.pr-role[data-role="pm"] { --role-color: #0d5f6f; }
.pr-role[data-role="engineer"] { --role-color: #166534; }
.pr-role[data-role="designer"] { --role-color: #6b21a8; }
.pr-role[data-role="ux"] { --role-color: #1d4ed8; }
.pr-role[data-role="strategist"] { --role-color: #a87a2d; }
.pr-role[data-role="tpm"] { --role-color: #c2410c; }
.pr-role[data-role="lead"],
.pr-role[data-role="tech-lead"],
.pr-role[data-role="team-lead"] { --role-color: #1e3a5f; }

.pr-role:hover,
.pr-role:focus-within,
.pr-role.is-open {
  border-color: var(--role-color);
  box-shadow: 0 10px 28px rgba(24, 34, 48, .08);
}

.pr-role:has(input:checked) {
  background: var(--pr-cream);
  border-color: var(--role-color);
}

.pr-role input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pr-role-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pr-role-check {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  border: 1.5px solid var(--role-color);
  border-radius: 3px;
  background: var(--pr-white);
  position: relative;
}

.pr-role:has(input:checked) .pr-role-check {
  background: var(--role-color);
  border-color: var(--role-color);
}

.pr-role:has(input:checked) .pr-role-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pr-role-name {
  display: block;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--pr-ink);
}

.pr-role-tag {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--role-color);
  font-weight: 600;
}

.pr-role-curriculum {
  font-family: var(--pr-mono);
  font-size: 11px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

.pr-role-desc {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--pr-ink-soft);
  transition: max-height .35s var(--pr-ease), opacity .28s var(--pr-ease), margin .28s var(--pr-ease);
}

.pr-role:hover .pr-role-desc,
.pr-role:focus-within .pr-role-desc,
.pr-role.is-open .pr-role-desc,
.pr-role:has(input:checked) .pr-role-desc {
  max-height: 240px;
  opacity: 1;
  margin-top: 4px;
}

.pr-role-selection {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--pr-ink-soft);
}

.pr-role-selection span { font-weight: 600; color: var(--pr-ink); }

.pr-rhythm {
  margin: 34px 0 0;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--pr-muted);
}

.pr-rhythm em {
  font-family: var(--pr-serif);
  font-size: 15.5px;
  color: var(--pr-ink-soft);
}

/* ── Registry ────────────────────────────────────── */
.pr-registry-table {
  background: var(--pr-cream);
  border: 1px solid rgba(24, 34, 48, .12);
  overflow-x: auto;
}

.pr-registry-table .inner { min-width: 840px; }

.pr-registry-row {
  display: grid;
  grid-template-columns: 90px 1.2fr 1fr 1.5fr 1.2fr 110px;
  gap: 16px;
  align-items: center;
  padding: 19px 26px;
  border-bottom: 1px solid rgba(24, 34, 48, .08);
  font-size: 14px;
  background: var(--pr-white);
}

.pr-registry-row.is-head {
  padding: 15px 26px;
  border-bottom: 2px solid var(--pr-ink);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pr-muted);
  background: transparent;
}

.pr-registry-row.is-open {
  background: rgba(168, 122, 45, .06);
  border-bottom: none;
}

.pr-entry-id {
  font-family: var(--pr-mono);
  font-size: 12px;
  color: var(--pr-muted);
}

.pr-shipped {
  justify-self: start;
  font-family: var(--pr-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--pr-gold);
  border: 1.5px solid var(--pr-gold);
  padding: 4px 8px;
  transform: rotate(-2deg);
}

.pr-registry-apply {
  justify-self: start;
  font-family: var(--pr-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  color: var(--pr-cream) !important;
  background: var(--pr-ink);
  padding: 5px 10px;
  transition: background .35s;
}

.pr-registry-apply:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-cream) !important;
}

.pr-registry-note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--pr-muted);
}

.pr-registry-name {
  font-weight: 600;
  color: var(--pr-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}

.pr-registry-name:hover {
  color: var(--pr-gold-dark);
  border-bottom-color: var(--pr-gold);
}

.pr-registry-project {
  color: var(--pr-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}

.pr-registry-project:hover {
  color: var(--pr-gold-dark);
  border-bottom-color: var(--pr-gold);
}

.pr-artifact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.pr-artifact-links a {
  color: var(--pr-gold-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 122, 45, .35);
}

.pr-artifact-links a:hover {
  color: var(--pr-ink);
  border-bottom-color: var(--pr-ink);
}

.pr-registry-note a {
  color: var(--pr-gold-dark);
}

/* ── Mentors ─────────────────────────────────────── */
.pr-mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.pr-mentor {
  background: var(--pr-white);
  border: 1px solid rgba(24, 34, 48, .1);
  border-top: 2px solid var(--pr-gold);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pr-mentor-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 122, 45, .35);
  background: var(--pr-cream-deep);
}

.pr-mentor-avatar.is-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pr-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--pr-gold);
}

.pr-mentor h3 {
  margin: 0 0 4px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 26px;
}

.pr-mentor .role {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pr-gold);
}

.pr-mentor-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pr-mentor-link:hover { color: var(--pr-gold-dark); }

.pr-mentor p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

/* ── Testimonials ────────────────────────────────── */
.pr-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}

.pr-testimonial {
  margin: 0;
  background: var(--pr-white);
  border: 1px solid rgba(24, 34, 48, .1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pr-testimonial .mark {
  color: var(--pr-gold);
  font-family: var(--pr-serif);
  font-size: 40px;
  line-height: .6;
  height: 18px;
}

.pr-testimonial blockquote {
  margin: 0;
  flex: 1;
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--pr-ink);
}

.pr-testimonial figcaption {
  border-top: 1px solid rgba(24, 34, 48, .08);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pr-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 1.5px solid rgba(168, 122, 45, .35);
  background: var(--pr-cream-deep);
}

.pr-testimonial .name {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.pr-testimonial .role {
  margin: 2px 0 8px;
  font-size: 12.5px;
  color: var(--pr-muted);
}

.pr-testimonial figcaption a {
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
}

/* ── Pricing ─────────────────────────────────────── */
.pr-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  align-items: stretch;
}

.pr-price-card {
  background: var(--pr-cream);
  border: 1px solid rgba(24, 34, 48, .12);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pr-price-card.is-featured {
  position: relative;
  background: var(--pr-navy);
  color: var(--pr-cream);
  border-color: var(--pr-navy);
  box-shadow: 0 22px 50px rgba(24, 34, 48, .22);
}

.pr-price-card h3 {
  margin: 0 0 4px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 28px;
}

.pr-price-card .sub {
  margin: 0;
  font-size: 13px;
  color: var(--pr-muted);
}

.pr-price-card.is-featured .sub { color: rgba(250, 247, 241, .6); }

.pr-price-amount {
  margin: 0;
  font-family: var(--pr-serif);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.pr-price-card.is-featured .pr-price-amount { color: var(--pr-gold-light); }

.pr-price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pr-ink-soft);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pr-price-card.is-featured .pr-price-features { color: rgba(250, 247, 241, .78); }

.pr-price-note {
  margin-top: 26px;
  background: var(--pr-cream);
  border: 1px solid rgba(168, 122, 45, .35);
  padding: 24px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  align-items: center;
  justify-content: space-between;
}

.pr-price-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pr-ink-soft);
  max-width: 560px;
}

.pr-price-note .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 12.5px;
  color: var(--pr-muted);
}

.pr-price-stamp {
  position: absolute;
  top: -15px;
  right: 22px;
  transform: rotate(2deg);
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  color: var(--pr-gold);
  background: var(--pr-white);
  padding: 0 10px;
  border: 1px solid rgba(168, 122, 45, .3);
}

.pr-instalments {
  margin: 0;
  font-size: 12.5px;
  color: var(--pr-muted);
  text-align: center;
}

.pr-price-card.is-featured .pr-instalments { color: rgba(250, 247, 241, .5); }

/* ── Fit ─────────────────────────────────────────── */
.pr-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 28px;
  margin-top: 8px;
}

.pr-fit {
  border-top: 2px solid var(--pr-gold);
  padding-top: 24px;
}

.pr-fit.is-not { border-top-color: rgba(24, 34, 48, .2); }

.pr-fit h3 {
  margin: 0 0 16px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 29px;
}

.pr-fit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pr-ink-soft);
}

.pr-fit-list p { margin: 0; }

/* ── FAQ ─────────────────────────────────────────── */
.pr-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.pr-faq-mascot {
  position: sticky;
  top: 96px;
  display: flex;
  justify-content: center;
  padding-top: 48px;
  pointer-events: none;
}

.pr-faq-mascot img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .pr-faq-layout {
    grid-template-columns: 1fr;
  }

  .pr-faq-mascot {
    position: static;
    justify-content: flex-end;
    padding-top: 8px;
  }

  .pr-faq-mascot img {
    max-width: 140px;
  }
}

.pr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
}

.pr-faq details {
  background: var(--pr-cream);
  border: 1px solid rgba(24, 34, 48, .1);
}

.pr-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 26px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 20px;
}

.pr-faq summary .mark {
  color: var(--pr-gold);
  font-size: 14px;
  flex-shrink: 0;
}

.pr-faq details p {
  margin: 0;
  padding: 0 26px 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

.pr-faq details p:last-child {
  padding-bottom: 22px;
}

/* ── Final CTA ───────────────────────────────────── */
.pr-final {
  padding: clamp(72px, 9vw, 120px) var(--pr-pad-x);
  background: var(--pr-navy);
  color: var(--pr-cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pr-final .spin {
  position: absolute;
  top: 60px;
  right: 80px;
  color: var(--pr-gold-light);
  font-size: 16px;
  animation: wl-spin 46s linear infinite;
}

.pr-final-inner { max-width: 840px; margin: 0 auto; }

.pr-final .eyebrow {
  margin: 0 0 20px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pr-gold-light);
}

.pr-final h2 {
  margin: 0 0 20px;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 62px);
  letter-spacing: -.015em;
  text-wrap: balance;
}

.pr-final .lead {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 247, 241, .72);
}

.pr-final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.pr-btn-ghost {
  background: transparent !important;
  color: var(--pr-cream) !important;
  border: 1.5px solid rgba(250, 247, 241, .45);
}

.pr-btn-ghost:hover {
  background: rgba(250, 247, 241, .08) !important;
  color: var(--pr-cream) !important;
  border-color: var(--pr-gold-light);
}

.pr-final-contact {
  margin: 14px 0 0;
  font-size: 13.5px;
  color: rgba(250, 247, 241, .55);
}

.pr-final-contact a {
  color: var(--pr-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pr-final-contact a:hover { color: var(--pr-gold-pale); }

.pr-countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.pr-countdown div {
  border: 1px solid rgba(217, 176, 100, .4);
  padding: 16px 24px;
  min-width: 92px;
}

.pr-countdown .num {
  font-family: var(--pr-serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.pr-countdown .unit {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .55);
  margin-top: 6px;
}

.pr-final .fine {
  margin: 28px 0 0;
  font-size: 13px;
  color: rgba(250, 247, 241, .5);
}

/* ── Footer ──────────────────────────────────────── */
.pr-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pr-pad-x);
  background: var(--pr-navy-deep);
  color: var(--pr-muted);
  font-size: 12.5px;
  border-top: 1px solid rgba(250, 247, 241, .08);
}

.pr-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pr-cream);
  text-decoration: none;
}

.pr-footer-brand span:last-child {
  font-family: var(--pr-serif);
  font-size: 18px;
}

.pr-footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.pr-footer-links a {
  color: rgba(250, 247, 241, .65);
  text-decoration: none;
  transition: color .3s;
}

.pr-footer-links a:hover { color: var(--pr-gold-light); }

/* ── Sticky CTA ──────────────────────────────────── */
.pr-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pr-pad-x);
  background: rgba(24, 34, 48, .96);
  color: var(--pr-cream);
  border-top: 1px solid rgba(217, 176, 100, .35);
  transform: translateY(110%);
  transition: transform .4s var(--pr-ease);
}

.pr-sticky.is-visible { transform: translateY(0); }

.pr-sticky-text {
  font-size: 13.5px;
  color: rgba(250, 247, 241, .78);
}

.pr-sticky-text span { color: var(--pr-gold-light); font-weight: 600; }

.pr-sticky .pr-btn {
  padding: 12px 22px;
  font-size: 11.5px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .pr-sticky-text { font-size: 12px; }
  .pr-sticky { padding: 12px 16px; }
}

/* Featurebase above sticky */
.featurebase-messenger-frame-wrapper {
  --fb-element-bottom: 78px !important;
}

/* ── Reveals ─────────────────────────────────────── */
.js-reveals [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--pr-ease), transform .9s var(--pr-ease);
}

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

.bg-white { background: var(--pr-white); }
.bg-cream { background: var(--pr-cream); }
.border-top-soft { border-top: 1px solid rgba(24, 34, 48, .1); }

.pr-legal {
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--pr-muted);
  max-width: 760px;
}

/* Pain gap (3 cards) */
.pr-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 22px;
}

.pr-pain-card {
  background: var(--pr-cream);
  border: 1px solid rgba(24, 34, 48, .1);
  border-top: 2px solid var(--pr-gold);
  padding: 28px 26px;
}

.pr-pain-card h3 {
  margin: 0 0 12px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 24px;
}

.pr-pain-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

/* AI-native practices */
.pr-practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}

.pr-practice {
  background: var(--pr-white);
  border: 1px solid rgba(24, 34, 48, .1);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-practice .num {
  font-family: var(--pr-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--pr-gold);
}

.pr-practice h3 {
  margin: 0;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 23px;
}

.pr-practice p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pr-ink-soft);
}

/* Closing urgency panel (replaces countdown) */
.pr-urgency {
  margin: 0 auto 36px;
  max-width: 640px;
  text-align: left;
  background: rgba(250, 247, 241, .06);
  border: 1px solid rgba(217, 176, 100, .4);
  padding: 22px 26px;
}

.pr-urgency p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(250, 247, 241, .78);
}

.pr-urgency strong { color: var(--pr-cream); }

/* Mentor free CTA */
.pr-mentor-cta {
  margin-top: 28px;
  background: var(--pr-white);
  border: 1.5px solid rgba(168, 122, 45, .4);
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
}

.pr-mentor-cta h3 {
  margin: 0 0 6px;
  font-family: var(--pr-serif);
  font-weight: 600;
  font-size: 24px;
}

.pr-mentor-cta p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pr-ink-soft);
  max-width: 560px;
}

.pr-mentor-cta .badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--pr-gold);
  color: var(--pr-white);
  padding: 3px 8px;
  border-radius: 2px;
  vertical-align: middle;
}

/* main.js injects .scroll-to-top; this page does not load components.css */
.scroll-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  box-sizing: border-box;
  width: 2.75rem;
  height: 2.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid var(--pr-gold);
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.96);
  color: var(--pr-gold-dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--pr-gold);
  color: #fff;
}

.scroll-to-top svg {
  width: 1.15rem;
  height: 1.15rem;
  max-width: 1.15rem;
  max-height: 1.15rem;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

/* ── Exit intent ─────────────────────────────────── */
body.pr-exit-open {
  overflow: hidden;
}
body.pr-exit-open .pr-sticky,
body.pr-exit-open .scroll-to-top {
  visibility: hidden !important;
  pointer-events: none;
}

.pr-exit {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1400;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pr-exit.is-open,
.pr-exit.is-open[hidden] {
  display: flex !important;
}

.pr-exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 32, .62);
}

.pr-exit-box {
  position: relative;
  width: min(480px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: var(--pr-cream);
  border: 1px solid rgba(24, 34, 48, .1);
  box-shadow: 0 28px 80px rgba(12, 20, 32, .28);
  padding: 36px 32px 28px;
}

.pr-exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--pr-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.pr-exit-close:hover { color: var(--pr-ink); }

.pr-exit-kicker {
  margin: 0 0 8px;
  font-family: var(--pr-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pr-gold);
}

.pr-exit-box h2 {
  margin: 0 0 10px;
  font-family: var(--pr-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.15;
  color: var(--pr-ink);
}

.pr-exit-lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pr-ink-soft);
}

.pr-exit-chip-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--pr-muted);
}

.pr-exit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.pr-exit-chip {
  border: 1px solid rgba(24, 34, 48, .16);
  background: var(--pr-white);
  color: var(--pr-ink);
  font-family: var(--pr-sans);
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 2px;
  cursor: pointer;
}
.pr-exit-chip:hover { border-color: var(--pr-gold); }
.pr-exit-chip.is-on {
  border-color: var(--pr-ink);
  background: var(--pr-ink);
  color: var(--pr-cream);
}

.pr-exit-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.pr-exit-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-ink);
}
.pr-exit-field input,
.pr-exit-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(24, 34, 48, .16);
  border-radius: var(--pr-radius);
  font-size: 15px;
  font-family: var(--pr-sans);
  color: var(--pr-ink);
  background: var(--pr-white);
  resize: vertical;
}
.pr-exit-field input:focus,
.pr-exit-field textarea:focus {
  outline: none;
  border-color: var(--pr-ink);
  box-shadow: 0 0 0 3px rgba(168, 122, 45, .15);
}

.pr-exit-error {
  margin: 0 0 12px;
  font-size: 13px;
  color: #B42318;
}

.pr-exit-submit,
.pr-exit-luma {
  display: block;
  width: 100%;
  margin-top: 4px;
  box-sizing: border-box;
}

.pr-exit-luma { margin-top: 10px; }

.pr-exit-stay {
  display: block;
  width: 100%;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--pr-muted);
  font-family: var(--pr-sans);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pr-exit-stay:hover { color: var(--pr-ink); }

@media (max-width: 540px) {
  .pr-exit { padding: 12px; align-items: flex-end; }
  .pr-exit-box { padding: 28px 20px 22px; width: 100%; }
}

