/* Pro MLO Marketing — Complete Design System
   Brand: Human-first mortgage technology for loan officers
   Domain: promlo.io | Font: Inter | Prefix: pr-
   Palette: warm white + deep navy + purple + orange
   ─────────────────────────────────────────────────────────────────────────── */

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --pr-warm:       #F5F6F9;
  --pr-warm-100:   #EDEEF3;
  --pr-sky:        #E6E9F2;
  --pr-sky-200:    #D4D8E8;
  --pr-border:     #DDE0EA;
  --pr-white:      #FFFFFF;

  /* Deep navy */
  --pr-navy-950:   #0F1220;
  --pr-navy-900:   #1B2236;
  --pr-navy-800:   #232E4A;
  --pr-navy-700:   #2C3A5E;
  --pr-navy-600:   #364572;

  /* Slate text */
  --pr-slate:      #374162;
  --pr-slate-400:  #4E5878;
  --pr-slate-300:  #8490B0;

  /* Purple — primary action */
  --pr-blue-700:   #4338CA;
  --pr-blue-600:   #5B52E8;
  --pr-blue-500:   #6C63FF;
  --pr-blue-100:   #DDD9FF;
  --pr-blue-50:    #EEECFF;

  /* Light purple — secondary accent */
  --pr-teal-700:   #5844CC;
  --pr-teal-600:   #6B56D8;
  --pr-teal-500:   #8B74F0;
  --pr-teal-400:   #A18CFF;
  --pr-teal-100:   #EAE5FF;

  /* Orange — warm human accent */
  --pr-apricot:    #FFB347;
  --pr-apricot-lt: #FFF3DC;
  --pr-apricot-dk: #CC8A20;

  /* State */
  --pr-ok:   #10B981;
  --pr-warn: #F59E0B;
  --pr-risk: #EF4444;

  /* Type */
  --pr-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --pr-max:  1200px;
  --pr-wide: 1320px;

  /* Shape */
  --pr-r-card: 20px;
  --pr-r-btn:  14px;
  --pr-shadow-card: 0 20px 50px rgba(27,34,54,.09);
  --pr-shadow-soft: 0 10px 30px rgba(27,34,54,.06);
  --pr-shadow-navy: 0 48px 96px rgba(15,18,32,.32), 0 0 0 1px rgba(255,255,255,.06) inset;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
html {
  font-family: var(--pr-font);
  color: var(--pr-slate);
  background: var(--pr-warm);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body { font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.pr-container      { width: min(100% - 40px, var(--pr-max)); margin-inline: auto; padding-inline: 20px; }
.pr-wide-container { width: min(100% - 40px, var(--pr-wide)); margin-inline: auto; padding-inline: 20px; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.pr-site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,246,249,.97);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--pr-border);
  height: 76px;
}
.pr-nav-inner { display: flex; align-items: center; gap: 4px; height: 76px; }
.pr-wordmark {
  font-size: 20px; font-weight: 800; letter-spacing: -0.04em;
  color: var(--pr-navy-900); white-space: nowrap;
  margin-right: 28px; flex-shrink: 0;
}
.pr-nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.pr-nav-item  { position: relative; }
.pr-nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--pr-slate-400);
  background: none; border: none; outline: none; white-space: nowrap; cursor: pointer;
  transition: color .12s, background .12s;
}
.pr-nav-link:hover, .pr-nav-link:focus-visible {
  color: var(--pr-navy-900); background: var(--pr-sky);
}
.pr-nav-chevron {
  width: 14px; height: 14px; opacity: .45; transition: transform .15s; flex-shrink: 0;
}
.pr-nav-item:hover .pr-nav-chevron,
.pr-nav-item:focus-within .pr-nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.pr-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 234px;
  background: var(--pr-white); border: 1px solid var(--pr-border);
  border-radius: 16px; padding: 8px;
  box-shadow: 0 24px 48px rgba(27,34,54,.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .14s, visibility .14s, transform .14s; z-index: 200;
}
.pr-nav-item:hover .pr-dropdown,
.pr-nav-item:focus-within .pr-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.pr-dropdown a {
  display: block; padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--pr-slate-400); border-radius: 10px; transition: background .1s, color .1s;
}
.pr-dropdown a:hover { background: var(--pr-sky); color: var(--pr-navy-900); }

/* Nav end */
.pr-nav-cta     { margin-left: auto; flex-shrink: 0; }
.pr-mobile-toggle {
  display: none; background: none; border: 1px solid var(--pr-border);
  border-radius: 10px; padding: 8px 11px; color: var(--pr-slate-400); margin-left: auto;
}
.pr-mobile-cta { display: none; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.pr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 24px; border-radius: var(--pr-r-btn);
  font-size: 15px; font-weight: 700; text-decoration: none;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: background .14s, border-color .14s, box-shadow .14s;
}
.pr-btn-sm { min-height: 38px; padding: 0 18px; font-size: 14px; }
.pr-btn-lg { min-height: 56px; padding: 0 36px; font-size: 17px; }

.pr-btn-primary {
  background: var(--pr-blue-500); color: var(--pr-white);
  box-shadow: 0 8px 20px rgba(108,99,255,.28);
}
.pr-btn-primary:hover { background: var(--pr-blue-600); box-shadow: 0 12px 28px rgba(108,99,255,.36); }

.pr-btn-secondary {
  background: var(--pr-white); color: var(--pr-navy-900); border-color: var(--pr-border);
}
.pr-btn-secondary:hover { border-color: var(--pr-slate-300); background: var(--pr-sky); }

.pr-btn-teal {
  background: var(--pr-teal-500); color: var(--pr-white);
  box-shadow: 0 8px 20px rgba(139,116,240,.26);
}
.pr-btn-teal:hover { background: var(--pr-teal-600); }

.pr-btn-ghost {
  background: none; color: var(--pr-slate-400); border-color: transparent;
}
.pr-btn-ghost:hover { background: var(--pr-sky); color: var(--pr-navy-900); }

.pr-btn-white { background: var(--pr-white); color: var(--pr-navy-900); }
.pr-btn-white:hover { background: var(--pr-sky); }

.pr-btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25);
}
.pr-btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.pr-hero { padding: 84px 0 100px; background: var(--pr-warm); }
.pr-hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 72px; align-items: center; }

/* Eyebrow badge */
.pr-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pr-blue-50); color: var(--pr-blue-600);
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
  border: 1px solid var(--pr-blue-100);
}
.pr-eyebrow-teal   { background: var(--pr-teal-100); color: var(--pr-teal-600); border-color: var(--pr-teal-100); }
.pr-eyebrow-apricot { background: var(--pr-apricot-lt); color: var(--pr-apricot-dk); border-color: var(--pr-apricot-lt); }
.pr-eyebrow-white  { background: rgba(255,255,255,.10); color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.12); }

/* Headings */
.pr-h1 {
  font-size: clamp(42px, 5.6vw, 68px); line-height: .97;
  letter-spacing: -0.055em; font-weight: 800; margin-bottom: 22px; color: var(--pr-navy-900);
}
.pr-h1 em     { font-style: normal; color: var(--pr-blue-500); }
.pr-h1 strong { font-style: normal; color: var(--pr-teal-500); }
.pr-h2 {
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.1;
  letter-spacing: -0.045em; font-weight: 800; margin-bottom: 14px; color: var(--pr-navy-900);
}
.pr-lede { font-size: 18px; line-height: 1.65; color: var(--pr-slate-400); max-width: 520px; margin-bottom: 32px; }
.pr-btn-row   { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.pr-trust-strip { display: flex; align-items: center; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.pr-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--pr-slate-300); }
.pr-trust-item svg { width: 15px; height: 15px; color: var(--pr-teal-500); flex-shrink: 0; }

/* ─── Dashboard mock — Today's Relationships ─────────────────────────────── */
.pr-dash-mock {
  background: var(--pr-navy-900); border-radius: 28px; padding: 28px 24px;
  box-shadow: var(--pr-shadow-navy); position: relative; overflow: hidden;
}
.pr-dash-mock::before {
  content: ''; position: absolute; top: -100px; right: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(108,99,255,.14), transparent 70%); pointer-events: none;
}
.pr-dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pr-dash-wordmark { font-size: 14px; font-weight: 800; letter-spacing: -.04em; color: var(--pr-white); }
.pr-dash-date { font-size: 11px; color: rgba(255,255,255,.32); font-weight: 500; }
.pr-dash-label {
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 12px;
}
/* Relationship items */
.pr-rel-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.pr-rel-item {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px;
}
.pr-rel-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.pr-rel-dot-blue    { background: var(--pr-blue-500);   box-shadow: 0 0 0 2px rgba(108,99,255,.28); }
.pr-rel-dot-teal    { background: var(--pr-teal-400);   box-shadow: 0 0 0 2px rgba(161,140,255,.28); }
.pr-rel-dot-apricot { background: var(--pr-apricot);    box-shadow: 0 0 0 2px rgba(255,179,71,.28); }
.pr-rel-dot-dim     { background: rgba(255,255,255,.22); }
.pr-rel-body  { flex: 1; min-width: 0; }
.pr-rel-name   { font-size: 12.5px; font-weight: 700; color: var(--pr-white); margin-bottom: 2px; line-height: 1.3; }
.pr-rel-signal { font-size: 11.5px; color: rgba(255,255,255,.48); line-height: 1.4; }
.pr-rel-action { font-size: 11px; font-weight: 600; color: var(--pr-teal-400); margin-top: 4px; }

/* Pro Voice panel */
.pr-dash-voice {
  background: rgba(108,99,255,.10); border: 1px solid rgba(108,99,255,.20);
  border-radius: 10px; padding: 10px 12px; margin-top: 6px;
}
.pr-dash-voice-label {
  font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pr-teal-400); margin-bottom: 6px;
}
.pr-dash-voice-prompts { display: flex; flex-direction: column; gap: 4px; }
.pr-dash-voice-prompt {
  font-size: 11.5px; color: rgba(255,255,255,.52); line-height: 1.4;
  padding: 5px 8px; background: rgba(255,255,255,.04); border-radius: 6px;
}
.pr-cursor {
  display: inline-block; width: 2px; height: 13px;
  background: var(--pr-teal-400); vertical-align: text-top;
  margin-left: 2px; animation: pr-blink 1.2s step-end infinite;
}
@keyframes pr-blink { 50% { opacity: 0; } }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.pr-section       { padding: 88px 0; background: var(--pr-warm); }
.pr-section-sm    { padding: 56px 0; }
.pr-section-white { background: var(--pr-white); }
.pr-section-sky   { background: var(--pr-sky); }
.pr-section-muted { background: linear-gradient(180deg, var(--pr-sky) 0%, var(--pr-warm) 100%); }
.pr-section-navy  { background: var(--pr-navy-900); color: var(--pr-white); }
.pr-section-gradient {
  background: linear-gradient(135deg, var(--pr-navy-950) 0%, var(--pr-navy-700) 100%);
  color: var(--pr-white);
}

.pr-section-eyebrow { display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.pr-section-title {
  font-size: clamp(26px, 3.8vw, 42px); line-height: 1.1;
  letter-spacing: -.045em; font-weight: 800; text-align: center;
  margin-bottom: 14px; color: var(--pr-navy-900);
}
.pr-section-copy {
  font-size: 17px; line-height: 1.65; color: var(--pr-slate-400);
  max-width: 680px; margin: 0 auto 52px; text-align: center;
}
.pr-section-eyebrow--left { justify-content: flex-start; }
.pr-section-title--left   { text-align: left; }
.pr-section-copy--left    { text-align: left; margin-left: 0; }
.pr-section-navy .pr-section-title,
.pr-section-gradient .pr-section-title { color: var(--pr-white); }
.pr-section-navy .pr-section-copy,
.pr-section-gradient .pr-section-copy  { color: rgba(255,255,255,.62); }

/* ─── Pillar cards (6-up) ────────────────────────────────────────────────── */
.pr-pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pr-pillar-card {
  padding: 28px 24px; border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card); background: var(--pr-white);
  box-shadow: var(--pr-shadow-soft);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pr-pillar-card:hover {
  border-color: var(--pr-blue-100); box-shadow: var(--pr-shadow-card); transform: translateY(-2px);
}
.pr-pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--pr-blue-50); color: var(--pr-blue-500);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pr-pillar-icon svg     { width: 24px; height: 24px; }
.pr-pillar-icon-teal    { background: var(--pr-teal-100); color: var(--pr-teal-600); }
.pr-pillar-icon-apricot { background: var(--pr-apricot-lt); color: var(--pr-apricot-dk); }
.pr-pillar-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; color: var(--pr-navy-900); }
.pr-pillar-copy  { font-size: 14px; line-height: 1.6; color: var(--pr-slate-400); }

/* ─── Module grid (7-up) ─────────────────────────────────────────────────── */
.pr-module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pr-module-card {
  padding: 24px 22px; border: 1px solid var(--pr-border);
  border-radius: 18px; background: var(--pr-white);
  transition: border-color .15s, box-shadow .15s; text-decoration: none; display: block;
}
.pr-module-card:hover { border-color: var(--pr-teal-400); box-shadow: 0 8px 24px rgba(161,140,255,.14); }
.pr-module-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--pr-teal-100); color: var(--pr-teal-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.pr-module-icon svg { width: 20px; height: 20px; }
.pr-module-tag {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; background: var(--pr-sky); color: var(--pr-blue-600);
  padding: 3px 9px; border-radius: 100px; margin-bottom: 8px;
}
.pr-module-name    { font-size: 16px; font-weight: 700; color: var(--pr-navy-900); margin-bottom: 5px; }
.pr-module-tagline { font-size: 13.5px; font-weight: 600; color: var(--pr-teal-600); margin-bottom: 6px; }
.pr-module-desc    { font-size: 13px; color: var(--pr-slate-400); line-height: 1.55; }

/* ─── Feature list (2-col) ───────────────────────────────────────────────── */
.pr-feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.pr-feature-item {
  display: flex; gap: 12px; padding: 16px 18px;
  border: 1px solid var(--pr-border); border-radius: 13px; background: var(--pr-white);
  align-items: flex-start; transition: border-color .12s;
}
.pr-feature-item:hover { border-color: var(--pr-teal-400); }
.pr-feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--pr-teal-100); color: var(--pr-teal-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.pr-feature-check svg { width: 11px; height: 11px; }
.pr-feature-text { font-size: 14px; font-weight: 600; color: var(--pr-navy-900); line-height: 1.5; }

/* ─── Module detail sections (Product page) ──────────────────────────────── */
.pr-module-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
  padding: 72px 0; border-top: 1px solid var(--pr-border);
}
.pr-module-detail:first-child { border-top: none; padding-top: 0; }
.pr-module-detail-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; background: var(--pr-teal-100); color: var(--pr-teal-600);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.pr-module-detail-headline {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.04em;
  line-height: 1.1; color: var(--pr-navy-900); margin-bottom: 12px;
}
.pr-module-detail-copy {
  font-size: 16px; color: var(--pr-slate-400); line-height: 1.7; margin-bottom: 28px;
}
.pr-module-features { display: flex; flex-direction: column; gap: 10px; }
.pr-module-feature-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--pr-slate);
}
.pr-module-feature-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pr-teal-500); flex-shrink: 0;
}

/* Module visual panel (right col) */
.pr-module-visual {
  background: var(--pr-navy-900); border-radius: 20px; padding: 28px 24px;
  box-shadow: var(--pr-shadow-navy); position: relative; overflow: hidden; min-height: 260px;
}
.pr-module-visual::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(108,99,255,.14), transparent 70%); pointer-events: none;
}
.pr-module-visual-label {
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 14px; position: relative;
}
.pr-module-visual-items { display: flex; flex-direction: column; gap: 8px; position: relative; }
.pr-module-visual-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 10px 13px;
  font-size: 12.5px; color: rgba(255,255,255,.62); line-height: 1.4;
  display: flex; align-items: center; gap: 8px;
}
.pr-module-visual-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pr-teal-400); flex-shrink: 0; }
.pr-module-visual-item.accent { border-color: rgba(108,99,255,.28); color: rgba(255,255,255,.82); }

/* ─── Solution cards ─────────────────────────────────────────────────────── */
.pr-solution-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.pr-solution-card {
  padding: 28px 26px; border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card); background: var(--pr-white);
  box-shadow: var(--pr-shadow-soft);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.pr-solution-card:hover { border-color: var(--pr-teal-400); box-shadow: var(--pr-shadow-card); transform: translateY(-2px); }
.pr-solution-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--pr-teal-100); color: var(--pr-teal-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.pr-solution-icon svg   { width: 22px; height: 22px; }
.pr-solution-icon-blue  { background: var(--pr-blue-50); color: var(--pr-blue-500); }
.pr-solution-title { font-size: 17px; font-weight: 700; color: var(--pr-navy-900); margin-bottom: 8px; }
.pr-solution-copy  { font-size: 14px; color: var(--pr-slate-400); line-height: 1.65; }

/* ─── Resource cards ─────────────────────────────────────────────────────── */
.pr-resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pr-resource-card {
  padding: 26px 24px; border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card); background: var(--pr-white);
  box-shadow: var(--pr-shadow-soft);
  transition: border-color .15s, box-shadow .15s, transform .15s;
  display: flex; flex-direction: column;
}
.pr-resource-card:hover {
  border-color: var(--pr-blue-100); box-shadow: 0 16px 40px rgba(108,99,255,.10); transform: translateY(-2px);
}
.pr-resource-cat {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 14px; align-self: flex-start;
}
.pr-cat-blue    { background: var(--pr-blue-50);    color: var(--pr-blue-600); }
.pr-cat-teal    { background: var(--pr-teal-100);   color: var(--pr-teal-700); }
.pr-cat-apricot { background: var(--pr-apricot-lt); color: var(--pr-apricot-dk); }
.pr-cat-sky     { background: var(--pr-sky);        color: var(--pr-navy-700); }
.pr-resource-title {
  font-size: 16px; font-weight: 700; color: var(--pr-navy-900); line-height: 1.35; margin-bottom: 8px;
}
.pr-resource-copy { font-size: 13.5px; color: var(--pr-slate-400); line-height: 1.6; flex: 1; }
.pr-resource-link { font-size: 13px; font-weight: 700; color: var(--pr-blue-500); margin-top: 14px; }

/* ─── Lead magnet cards ──────────────────────────────────────────────────── */
.pr-magnet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pr-magnet-card {
  padding: 22px 20px; border: 1.5px dashed var(--pr-border);
  border-radius: 16px; background: var(--pr-white); transition: border-color .15s, border-style .15s;
}
.pr-magnet-card:hover { border-color: var(--pr-teal-400); border-style: solid; }
.pr-magnet-title { font-size: 14px; font-weight: 700; color: var(--pr-navy-900); margin-bottom: 5px; }
.pr-magnet-copy  { font-size: 13px; color: var(--pr-slate-400); line-height: 1.55; }
.pr-magnet-cta   { font-size: 12.5px; font-weight: 700; color: var(--pr-blue-500); margin-top: 10px; }

/* ─── CTA band ───────────────────────────────────────────────────────────── */
.pr-cta-band {
  border-radius: 28px; padding: 56px 64px;
  background: linear-gradient(135deg, var(--pr-navy-950) 0%, var(--pr-navy-700) 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  position: relative; overflow: hidden;
}
.pr-cta-band::before {
  content: ''; position: absolute; top: -80px; right: 80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(108,99,255,.16), transparent 70%); pointer-events: none;
}
.pr-cta-band-content { position: relative; }
.pr-cta-band-headline {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  letter-spacing: -.04em; color: var(--pr-white); margin-bottom: 10px; line-height: 1.1;
}
.pr-cta-band-copy { font-size: 16px; color: rgba(255,255,255,.62); max-width: 480px; line-height: 1.65; }
.pr-cta-band-actions {
  display: flex; gap: 14px; align-items: center; flex-shrink: 0; flex-wrap: wrap; position: relative;
}

/* ─── Belief / narrative ─────────────────────────────────────────────────── */
.pr-belief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pr-belief-body { font-size: 17.5px; line-height: 1.85; color: var(--pr-slate-400); }
.pr-belief-body p { margin-bottom: 18px; }
.pr-belief-body p:last-child { margin-bottom: 0; }
.pr-belief-quote {
  font-size: 19px; font-weight: 700; letter-spacing: -.025em; color: var(--pr-navy-900);
  line-height: 1.45; border-left: 4px solid var(--pr-teal-500); padding-left: 20px; margin: 24px 0;
}

/* ─── Problem band (navy) ────────────────────────────────────────────────── */
.pr-problem-band { background: var(--pr-navy-900); padding: 88px 0; }
.pr-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pr-problem-headline {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 800;
  letter-spacing: -.045em; color: var(--pr-white); line-height: 1.15;
}
.pr-problem-body { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.62); margin-top: 20px; }
.pr-problem-body p { margin-bottom: 14px; }
.pr-problem-body p:last-child { margin-bottom: 0; }

/* ─── AI human-first section ─────────────────────────────────────────────── */
.pr-ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pr-ai-visual {
  background: var(--pr-navy-900); border-radius: 24px; padding: 32px;
  box-shadow: var(--pr-shadow-navy); position: relative; overflow: hidden;
}
.pr-ai-visual::before {
  content: ''; position: absolute; bottom: -80px; left: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,179,71,.10), transparent 70%); pointer-events: none;
}
.pr-ai-label {
  font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--pr-teal-400); margin-bottom: 14px; position: relative;
}
.pr-ai-prompts { display: flex; flex-direction: column; gap: 10px; position: relative; }
.pr-ai-prompt {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 12px 14px;
  font-size: 13.5px; color: rgba(255,255,255,.72); line-height: 1.45;
}
.pr-ai-prompt.active { border-color: rgba(108,99,255,.32); background: rgba(108,99,255,.08); }

/* ─── Demo page ──────────────────────────────────────────────────────────── */
.pr-demo-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.pr-demo-list { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.pr-demo-item {
  display: flex; gap: 12px; padding: 8px 0;
  align-items: flex-start;
}
.pr-demo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pr-teal-500); flex-shrink: 0; margin-top: 6px; }
.pr-demo-text { font-size: 14.5px; font-weight: 500; color: var(--pr-slate); line-height: 1.5; }
.pr-demo-sidebar {
  background: var(--pr-white); border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card); padding: 36px 32px;
  box-shadow: var(--pr-shadow-card); position: sticky; top: 100px;
}
.pr-demo-sidebar-title {
  font-size: 21px; font-weight: 800; letter-spacing: -.03em; color: var(--pr-navy-900); margin-bottom: 8px;
}
.pr-demo-sidebar-sub { font-size: 14.5px; color: var(--pr-slate-400); margin-bottom: 28px; line-height: 1.6; }
.pr-demo-note { font-size: 13px; color: var(--pr-slate-300); margin-top: 14px; text-align: center; }

/* ─── About ──────────────────────────────────────────────────────────────── */
.pr-about-body {
  font-size: 20px; line-height: 1.85; color: var(--pr-slate-400); max-width: 760px; margin: 0 auto;
}
.pr-about-body p { margin-bottom: 24px; }
.pr-about-body strong { color: var(--pr-navy-900); font-weight: 700; }
.pr-about-body em     { font-style: italic; color: var(--pr-teal-600); }

/* ─── Tags / badges ──────────────────────────────────────────────────────── */
.pr-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--pr-teal-100); color: var(--pr-teal-700);
  font-size: 11.5px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; border-radius: 100px;
}
.pr-tag-blue    { background: var(--pr-blue-50);    color: var(--pr-blue-600); }
.pr-tag-apricot { background: var(--pr-apricot-lt); color: var(--pr-apricot-dk); }

/* ─── Two-col ────────────────────────────────────────────────────────────── */
.pr-two-col        { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pr-two-col-center { align-items: center; }

/* ─── Contact page ───────────────────────────────────────────────────────── */
.pr-contact-section { padding: 72px 0 96px; }
.pr-contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.pr-contact-sidebar {
  background: var(--pr-white); border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card); padding: 36px 32px;
  box-shadow: var(--pr-shadow-soft); position: sticky; top: 100px;
}
.pr-contact-sidebar-item { margin-bottom: 28px; }
.pr-contact-sidebar-item:last-child { margin-bottom: 0; }
.pr-contact-sidebar-label {
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--pr-slate-300); margin-bottom: 6px;
}
.pr-contact-sidebar-val {
  font-size: 15px; font-weight: 600; color: var(--pr-navy-900);
}
.pr-contact-sidebar-val a { color: var(--pr-blue-500); }
.pr-contact-sidebar-val a:hover { text-decoration: underline; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.pr-form { display: flex; flex-direction: column; gap: 18px; }
.pr-field { display: flex; flex-direction: column; gap: 6px; }
.pr-label {
  font-size: 13.5px; font-weight: 600; color: var(--pr-navy-900);
}
.pr-label span { color: var(--pr-risk); margin-left: 2px; }
.pr-input, .pr-select, .pr-textarea {
  padding: 12px 16px; border: 1.5px solid var(--pr-border); border-radius: 12px;
  font-size: 15px; font-family: var(--pr-font); color: var(--pr-navy-900);
  background: var(--pr-white); transition: border-color .12s, box-shadow .12s;
  outline: none; width: 100%;
}
.pr-input:focus, .pr-select:focus, .pr-textarea:focus {
  border-color: var(--pr-blue-500); box-shadow: 0 0 0 3px rgba(108,99,255,.12);
}
.pr-input::placeholder, .pr-textarea::placeholder { color: var(--pr-slate-300); }
.pr-field-error { font-size: 12.5px; color: #DC2626; font-weight: 500; }
.pr-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238490B0' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.pr-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.pr-form-success {
  padding: 18px 20px; background: #F0FFF4; border: 1.5px solid #86EFAC;
  border-radius: 12px; font-size: 15px; font-weight: 600; color: #166534;
}
.pr-form-error {
  padding: 16px 20px; background: #FEF2F2; border: 1.5px solid #FECACA;
  border-radius: 12px; font-size: 14.5px; color: #991B1B;
}

/* ─── Prose (Privacy, legal) ─────────────────────────────────────────────── */
.pr-prose {
  max-width: 740px; margin: 64px auto 96px; padding: 0;
  font-size: 16px; line-height: 1.75; color: var(--pr-slate-400);
}
.pr-prose h1 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -.045em;
  color: var(--pr-navy-900); margin-bottom: 10px; line-height: 1.1;
}
.pr-prose h2 {
  font-size: 20px; font-weight: 700; color: var(--pr-navy-900);
  margin-top: 40px; margin-bottom: 10px; letter-spacing: -.03em;
}
.pr-prose p { margin-bottom: 16px; }
.pr-prose p:last-child { margin-bottom: 0; }
.pr-prose a { color: var(--pr-blue-500); text-decoration: underline; }
.pr-prose a:hover { color: var(--pr-blue-600); }
.pr-meta {
  font-size: 13px; color: var(--pr-slate-300); font-weight: 500; margin-bottom: 40px;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.pr-footer { border-top: 1px solid var(--pr-border); padding: 68px 0 36px; background: var(--pr-white); }
.pr-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.pr-footer-wordmark { font-size: 20px; font-weight: 800; letter-spacing: -.04em; color: var(--pr-navy-900); }
.pr-footer-tagline { font-size: 14px; color: var(--pr-slate-400); line-height: 1.7; margin-top: 12px; max-width: 240px; }
.pr-footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--pr-slate-300); margin-bottom: 16px;
}
.pr-footer-links { display: flex; flex-direction: column; gap: 10px; }
.pr-footer-links a { font-size: 14px; color: var(--pr-slate-400); transition: color .1s; }
.pr-footer-links a:hover { color: var(--pr-navy-900); }
.pr-footer-bottom {
  border-top: 1px solid var(--pr-border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.pr-footer-legal { font-size: 13px; color: var(--pr-slate-300); }
.pr-footer-legal a { color: var(--pr-slate-300); transition: color .1s; }
.pr-footer-legal a:hover { color: var(--pr-navy-900); }
.pr-footer-legal span { margin: 0 6px; opacity: .4; }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.pr-text-center { text-align: center; }
.pr-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pr-module-grid  { grid-template-columns: repeat(2,1fr); }
  .pr-pillar-grid  { grid-template-columns: repeat(2,1fr); }
  .pr-footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pr-cta-band     { flex-direction: column; align-items: flex-start; padding: 44px 44px; gap: 28px; }
  .pr-demo-grid    { grid-template-columns: 1fr; }
  .pr-demo-sidebar { position: static; }
  .pr-contact-grid { grid-template-columns: 1fr; }
  .pr-contact-sidebar { position: static; }
}
@media (max-width: 880px) {
  .pr-hero-grid       { grid-template-columns: 1fr; gap: 56px; }
  .pr-belief-grid     { grid-template-columns: 1fr; gap: 48px; }
  .pr-problem-grid    { grid-template-columns: 1fr; gap: 40px; }
  .pr-ai-grid         { grid-template-columns: 1fr; gap: 48px; }
  .pr-module-detail   { grid-template-columns: 1fr; gap: 40px; }
  .pr-two-col         { grid-template-columns: 1fr; gap: 48px; }
  .pr-resource-grid   { grid-template-columns: repeat(2,1fr); }
  .pr-magnet-grid     { grid-template-columns: repeat(2,1fr); }
  .pr-feature-list    { grid-template-columns: 1fr; }
  .pr-solution-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pr-nav-links, .pr-nav-cta { display: none; }
  .pr-mobile-toggle { display: flex; align-items: center; }
  .pr-section      { padding: 64px 0; }
  .pr-hero         { padding: 56px 0 72px; }
  .pr-problem-band { padding: 64px 0; }
  .pr-cta-band     { padding: 36px 28px; }
  .pr-module-detail { padding: 52px 0; }
  .pr-nav-open {
    display: flex !important; flex-direction: column;
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--pr-warm); border-top: 1px solid var(--pr-border);
    padding: 24px 20px; gap: 4px; overflow-y: auto; z-index: 99;
  }
  .pr-nav-open .pr-nav-item { width: 100%; }
  .pr-nav-open .pr-nav-link { font-size: 17px; padding: 14px 16px; width: 100%; justify-content: space-between; }
  .pr-nav-open .pr-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 4px;
  }
  .pr-mobile-cta { display: block; margin-top: 16px; width: 100%; text-align: center; }
}
@media (max-width: 560px) {
  .pr-module-grid   { grid-template-columns: 1fr; }
  .pr-pillar-grid   { grid-template-columns: 1fr; }
  .pr-resource-grid { grid-template-columns: 1fr; }
  .pr-magnet-grid   { grid-template-columns: 1fr; }
  .pr-footer-grid   { grid-template-columns: 1fr; }
  .pr-h1 { font-size: 38px; }
  .pr-cta-band { padding: 32px 24px; }
}

/* ─── Test page ──────────────────────────────────────────────────────────── */

/* Form wrapper */
.pr-test-form-wrap {
  max-width: 780px;
  margin: 0 auto;
}

/* Error banner */
.pr-test-error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 32px;
}

/* Dimension section */
.pr-dim-section {
  margin-bottom: 56px;
}

.pr-dim-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pr-border);
}

.pr-dim-number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pr-slate-300);
  display: block;
  margin-bottom: 6px;
}

.pr-dim-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--pr-navy-900);
}

/* Question block */
.pr-question-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--pr-border);
}

.pr-question-block.pr-question-error .pr-scale-row {
  outline: 2px solid #EF4444;
  outline-offset: 6px;
  border-radius: 8px;
}

.pr-question-text {
  font-size: 15px;
  color: var(--pr-slate);
  margin-bottom: 16px;
  line-height: 1.55;
}

.pr-question-num {
  font-weight: 600;
  color: var(--pr-blue-500);
  margin-right: 4px;
}

/* Scale row */
.pr-scale-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pr-scale-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex: 1;
  min-width: 56px;
}

.pr-scale-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pr-scale-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pr-border);
  background: var(--pr-white);
  font-size: 15px;
  font-weight: 600;
  color: var(--pr-slate-400);
  transition: border-color .15s, background .15s, color .15s;
}

.pr-scale-opt:hover .pr-scale-circle {
  border-color: var(--pr-blue-500);
  color: var(--pr-blue-500);
}

.pr-scale-opt input[type="radio"]:checked + .pr-scale-circle {
  border-color: var(--pr-blue-500);
  background: var(--pr-blue-500);
  color: #fff;
}

.pr-scale-opt input[type="radio"]:focus-visible + .pr-scale-circle {
  outline: 3px solid var(--pr-blue-100);
  outline-offset: 2px;
}

.pr-scale-label {
  font-size: 11px;
  color: var(--pr-slate-300);
  text-align: center;
  line-height: 1.3;
  max-width: 64px;
}

/* Submit row */
.pr-test-submit-row {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pr-test-submit-note {
  font-size: 13px;
  color: var(--pr-slate-300);
}

/* ── Result state ─────────────────────────────────────────────────────────── */

.pr-result-score-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 6px solid var(--band-color, var(--pr-blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.pr-result-pct {
  font-size: 32px;
  font-weight: 800;
  color: var(--pr-navy-900);
  line-height: 1;
}

.pr-result-pct-unit {
  font-size: 16px;
  font-weight: 600;
}

/* Result layout: two-column on desktop */
.pr-result-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Dimension bars */
.pr-result-breakdown { }

.pr-dim-bar-row {
  margin-bottom: 20px;
}

.pr-dim-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.pr-dim-bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--pr-slate);
}

.pr-dim-bar-score {
  font-size: 13px;
  color: var(--pr-slate-300);
}

.pr-dim-bar-track {
  height: 10px;
  background: var(--pr-sky);
  border-radius: 999px;
  overflow: hidden;
}

.pr-dim-bar-fill {
  height: 100%;
  background: var(--pr-blue-500);
  border-radius: 999px;
  transition: width .4s ease;
}

/* Recommendation card */
.pr-result-rec-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card);
  padding: 32px;
  box-shadow: var(--pr-shadow-card);
  position: sticky;
  top: 96px;
}

.pr-result-rec-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--pr-navy-900);
  margin-bottom: 12px;
}

.pr-result-rec-copy {
  font-size: 14px;
  color: var(--pr-slate-400);
  line-height: 1.65;
}

/* Module chips */
.pr-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pr-module-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pr-blue-50);
  color: var(--pr-blue-700);
  font-size: 13px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 860px) {
  .pr-result-layout { grid-template-columns: 1fr; }
  .pr-result-rec-card { position: static; }
}

@media (max-width: 560px) {
  .pr-scale-row { gap: 4px; }
  .pr-scale-circle { width: 38px; height: 38px; font-size: 14px; }
  .pr-scale-label { display: none; }
}

/* ── Test Wizard ─────────────────────────────────────────────────────────── */
.pr-wizard-shell {
  background: var(--pr-warm);
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 24px 0;
}

.pr-wizard-card {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  overflow: hidden;
}

.pr-wizard-header {
  padding: 24px 36px 20px;
  border-bottom: 1px solid var(--pr-border);
}

.pr-wizard-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pr-wizard-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pr-blue-500);
}

.pr-wizard-count {
  font-size: 12px;
  color: var(--pr-slate-300);
  font-weight: 500;
}

.pr-wizard-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.pr-wizard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pr-border);
  transition: background .25s, transform .25s;
}

.pr-dot-active {
  background: var(--pr-blue-500);
  transform: scale(1.5);
}

.pr-dot-done {
  background: #2DD4BF;
}

.pr-wizard-dim-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--pr-navy-900);
  line-height: 1.3;
}

.pr-wizard-body {
  padding: 16px 36px 8px;
}

.pr-wiz-scale-hint {
  font-size: 12px;
  color: var(--pr-slate-300);
  margin: 0 0 12px;
}

.pr-wiz-q {
  padding: 14px 0;
  border-bottom: 1px solid var(--pr-border);
}

.pr-wiz-q:last-of-type {
  border-bottom: none;
}

.pr-wiz-q-text {
  font-size: 14px;
  color: var(--pr-slate);
  margin-bottom: 12px;
  line-height: 1.5;
}

.pr-wizard-body .pr-scale-label { display: none; }

.pr-wizard-footer {
  padding: 18px 36px;
  border-top: 1px solid var(--pr-border);
  background: var(--pr-warm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pr-wizard-footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pr-wizard-inline-error {
  font-size: 13px;
  color: #B91C1C;
  display: none;
}

.pr-wiz-err-show { display: block; }

@media (max-width: 600px) {
  .pr-wizard-header  { padding: 18px 20px 16px; }
  .pr-wizard-body    { padding: 12px 20px 4px; }
  .pr-wizard-footer  { padding: 14px 20px; flex-wrap: wrap; gap: 10px; }
  .pr-wizard-dim-title { font-size: 17px; }
  .pr-wiz-q-text     { font-size: 13px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   Phase 3 — Pricing & Signup
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Plan grid ───────────────────────────────────────────────────────────── */
.pr-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.pr-plan-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card);
  padding: 32px 28px;
  box-shadow: var(--pr-shadow-soft);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .18s;
}

.pr-plan-card:hover { box-shadow: var(--pr-shadow-card); }

.pr-plan-card-featured {
  border-color: var(--pr-blue-500);
  box-shadow: 0 0 0 2px var(--pr-blue-500), var(--pr-shadow-card);
}

.pr-plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--pr-blue-50);
  color: var(--pr-blue-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.pr-plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--pr-navy-900);
  margin-bottom: 8px;
}

.pr-plan-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--pr-slate);
  margin-bottom: 2px;
}

.pr-plan-price-sub {
  font-size: 13px;
  color: var(--pr-slate-300);
  margin-bottom: 16px;
}

.pr-plan-best-for {
  font-size: 14px;
  color: var(--pr-slate-400);
  line-height: 1.65;
  margin-bottom: 0;
}

.pr-plan-divider {
  height: 1px;
  background: var(--pr-border);
  margin: 20px 0;
}

.pr-plan-includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pr-slate-300);
  margin-bottom: 12px;
}

.pr-plan-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 0;
}

.pr-plan-includes li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--pr-slate);
  font-weight: 500;
}

.pr-plan-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--pr-ok);
}

.pr-plan-cta {
  margin-top: 28px;
}

.pr-pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--pr-slate-300);
  margin-top: 8px;
}

/* ── Comparison table ────────────────────────────────────────────────────── */
.pr-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--pr-r-card);
  border: 1px solid var(--pr-border);
  background: var(--pr-white);
  box-shadow: var(--pr-shadow-soft);
}

.pr-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pr-compare-th {
  padding: 16px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-slate);
  background: var(--pr-warm);
  border-bottom: 1px solid var(--pr-border);
  white-space: nowrap;
}

.pr-compare-th.pr-compare-feature-col {
  text-align: left;
  min-width: 180px;
  color: var(--pr-slate-300);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pr-compare-th-featured {
  background: var(--pr-blue-50);
  color: var(--pr-blue-700);
}

.pr-compare-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--pr-blue-500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  vertical-align: middle;
}

.pr-compare-row:nth-child(even) td { background: var(--pr-warm); }
.pr-compare-row:nth-child(even) td.pr-compare-td-featured { background: var(--pr-blue-50); }

.pr-compare-td {
  padding: 13px 20px;
  text-align: center;
  border-bottom: 1px solid var(--pr-border);
  color: var(--pr-slate-400);
}

.pr-compare-td:last-child { border-right: none; }

.pr-compare-td.pr-compare-feature-name {
  text-align: left;
  font-weight: 600;
  color: var(--pr-slate);
}

.pr-compare-td-featured { background: var(--pr-blue-50) !important; }

.pr-compare-check {
  width: 18px;
  height: 18px;
  color: var(--pr-blue-500);
  display: inline-block;
  vertical-align: middle;
}

.pr-compare-dash {
  color: var(--pr-border);
  font-size: 18px;
  line-height: 1;
}

.pr-compare-row-extra .pr-compare-feature-name {
  color: var(--pr-slate-300);
  font-weight: 500;
  font-style: italic;
}

/* ── Which plan section ──────────────────────────────────────────────────── */
.pr-which-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card);
  padding: 40px 48px;
  box-shadow: var(--pr-shadow-soft);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.pr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 840px;
  margin: 0 auto;
}

.pr-faq-item {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: 14px;
  overflow: hidden;
}

.pr-faq-q {
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--pr-navy-900);
  cursor: default;
}

.pr-faq-a {
  padding: 0 28px 20px;
  font-size: 15px;
  color: var(--pr-slate-400);
  line-height: 1.7;
}

/* ── Signup page ─────────────────────────────────────────────────────────── */
.pr-signup-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.pr-signup-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card);
  padding: 40px;
  box-shadow: var(--pr-shadow-card);
}

.pr-signup-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pr-navy-900);
  margin-bottom: 8px;
}

.pr-signup-card-sub {
  font-size: 14px;
  color: var(--pr-slate-400);
  margin-bottom: 28px;
  line-height: 1.65;
}

.pr-signup-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pr-signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pr-signup-field { display: flex; flex-direction: column; gap: 6px; }

.pr-signup-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-slate);
}

.pr-signup-optional {
  font-weight: 400;
  color: var(--pr-slate-300);
}

.pr-signup-input {
  padding: 12px 16px;
  border: 1.5px solid var(--pr-border);
  border-radius: 10px;
  font-family: var(--pr-font);
  font-size: 15px;
  color: var(--pr-slate);
  background: var(--pr-white);
  outline: none;
  transition: border-color .15s;
}

.pr-signup-input:focus { border-color: var(--pr-blue-500); }

.pr-signup-textarea { resize: vertical; min-height: 80px; }

.pr-signup-note {
  font-size: 12px;
  color: var(--pr-slate-300);
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}

/* Signup plan card */
.pr-signup-plan-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-r-card);
  padding: 28px 24px;
  box-shadow: var(--pr-shadow-soft);
  position: sticky;
  top: 96px;
}

.pr-signup-plan-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--pr-slate-300);
  margin-bottom: 8px;
}

.pr-signup-plan-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--pr-navy-900);
  margin-bottom: 4px;
}

.pr-signup-plan-sub {
  font-size: 13px;
  color: var(--pr-slate-300);
  margin-bottom: 0;
}

.pr-signup-plan-divider {
  height: 1px;
  background: var(--pr-border);
  margin: 18px 0;
}

.pr-signup-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pr-signup-includes li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--pr-slate);
  font-weight: 500;
}

.pr-signup-includes li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--pr-ok);
}

.pr-signup-change {
  font-size: 13px;
  color: var(--pr-blue-500);
  font-weight: 600;
}

.pr-signup-change:hover { text-decoration: underline; }

.pr-signup-team-note {
  margin-top: 16px;
  background: var(--pr-blue-50);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--pr-blue-700);
  line-height: 1.55;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pr-plan-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .pr-which-plan { flex-direction: column; align-items: flex-start; }
  .pr-signup-wrap { grid-template-columns: 1fr; }
  .pr-signup-plan-card { position: static; }
}

@media (max-width: 640px) {
  .pr-plan-grid { grid-template-columns: 1fr; }
  .pr-signup-row { grid-template-columns: 1fr; }
  .pr-signup-card { padding: 28px 20px; }
  .pr-which-plan { padding: 28px 24px; }
}
