/* 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 + teal + apricot
   ─────────────────────────────────────────────────────────────────────────── */

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

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  /* Warm backgrounds */
  --pr-warm:       #FFFAF3;
  --pr-warm-100:   #FFF4E6;
  --pr-sky:        #EAF4FF;
  --pr-sky-200:    #D5E9FB;
  --pr-border:     #E2E8F0;
  --pr-white:      #FFFFFF;

  /* Deep navy */
  --pr-navy-950:   #0A1622;
  --pr-navy-900:   #102033;
  --pr-navy-800:   #162B42;
  --pr-navy-700:   #1E3A56;
  --pr-navy-600:   #26496A;

  /* Slate text */
  --pr-slate:      #334155;
  --pr-slate-400:  #4B5E75;
  --pr-slate-300:  #7B8FA6;

  /* Blue — primary action */
  --pr-blue-700:   #1D4ED8;
  --pr-blue-600:   #2563EB;
  --pr-blue-500:   #3B82F6;
  --pr-blue-100:   #DBEAFE;
  --pr-blue-50:    #EFF6FF;

  /* Teal — secondary accent */
  --pr-teal-700:   #1A8A7C;
  --pr-teal-600:   #1E9A8B;
  --pr-teal-500:   #2BB3A3;
  --pr-teal-400:   #43C8B8;
  --pr-teal-100:   #D5F5F0;

  /* Apricot — warm human accent */
  --pr-apricot:    #F6B17A;
  --pr-apricot-lt: #FEF0E3;
  --pr-apricot-dk: #C07845;

  /* 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(16,32,51,.09);
  --pr-shadow-soft: 0 10px 30px rgba(16,32,51,.06);
  --pr-shadow-navy: 0 48px 96px rgba(10,22,34,.30), 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; }
.pr-wide-container { width: min(100% - 40px, var(--pr-wide)); margin-inline: auto; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.pr-site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,250,243,.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(16,32,51,.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(59,130,246,.26);
}
.pr-btn-primary:hover { background: var(--pr-blue-600); box-shadow: 0 12px 28px rgba(59,130,246,.34); }

.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(43,179,163,.24);
}
.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(43,179,163,.12), 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(59,130,246,.28); }
.pr-rel-dot-teal    { background: var(--pr-teal-400);   box-shadow: 0 0 0 2px rgba(43,179,163,.28); }
.pr-rel-dot-apricot { background: var(--pr-apricot);    box-shadow: 0 0 0 2px rgba(246,177,122,.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(43,179,163,.10); border: 1px solid rgba(43,179,163,.18);
  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 (6-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(43,179,163,.12); }
.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(43,179,163,.12), 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(43,179,163,.25); 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(59,130,246,.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(43,179,163,.14), 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(246,177,122,.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(43,179,163,.3); background: rgba(43,179,163,.07); }

/* ─── 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: 10px; margin-top: 20px; }
.pr-demo-item {
  display: flex; gap: 14px; padding: 16px 18px;
  background: var(--pr-white); border: 1px solid var(--pr-border);
  border-radius: 14px; align-items: flex-start; transition: border-color .12s;
}
.pr-demo-item:hover { border-color: var(--pr-teal-400); }
.pr-demo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pr-teal-500); flex-shrink: 0; margin-top: 5px; }
.pr-demo-text { font-size: 14.5px; font-weight: 600; color: var(--pr-slate); }
.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; }

/* ─── 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.6fr 1fr 1fr 1fr; gap: 48px; 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: 260px; }
.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; }
}
@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; }
}
