
/* ==========================================================
   Radiology Efficiency Command Center — PHB / NSA Style
   Navy #0d2b4e | Teal #1d9e75 | Gold #ba7517
   Local assets only. Scoped for WordPress.
========================================================== */
#phb-recc-root,
#phb-recc-root * { box-sizing: border-box; }

#phb-recc-root {
  --navy:#0d2b4e;
  --navy2:#14406d;
  --teal:#1d9e75;
  --tealSoft:#e1f3eb;
  --gold:#ba7517;
  --gold2:#d4892a;
  --goldSoft:#fdf6e8;
  --ink:#1a2332;
  --body:#3a4858;
  --muted:#6a7888;
  --line:#e3e8ee;
  --line2:#d5e0ec;
  --paper:#f7f9fc;
  --white:#ffffff;
  --red:#b03a3a;
  --redSoft:#fbeeee;
  --green:#1d9e75;
  --shadow:0 8px 24px rgba(13,43,78,0.08);
  --shadowSm:0 2px 8px rgba(13,43,78,0.06);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  background: transparent;
}
#phb-recc-root .recc-h1,
#phb-recc-root .recc-h2,
#phb-recc-root .recc-h3,
#phb-recc-root .recc-h4,
#phb-recc-root .recc-serif {
  font-family: "Playfair Display", Georgia, serif;
}
#phb-recc-root button,
#phb-recc-root input,
#phb-recc-root select {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#phb-recc-root .recc-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #ffffff;
  padding: 56px 48px 48px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}
#phb-recc-root .recc-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(186,117,23,0.20) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
  pointer-events: none;
}
#phb-recc-root .recc-hero-eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
}
#phb-recc-root .recc-hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #ffffff;
  max-width: 940px;
}
#phb-recc-root .recc-hero-sub {
  font-size: 20px;
  color: #d5e0ec;
  max-width: 900px;
  margin: 0 0 32px;
  font-weight: 300;
}
#phb-recc-root .recc-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  position: relative;
  z-index: 2;
}
#phb-recc-root .recc-hero-stat .stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
#phb-recc-root .recc-hero-stat .stat-label {
  font-size: 13px;
  color: #d5e0ec;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
#phb-recc-root .recc-error {
  display: none;
  margin: 12px 0;
  padding: 14px 18px;
  border: 1px solid #f1c5c5;
  background: #fff5f5;
  color: #8a2525;
  border-radius: 10px;
  font-weight: 700;
}
#phb-recc-root .recc-tabs {
  background: #ffffff;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(13,43,78,0.05);
}
#phb-recc-root .recc-tab {
  border: 1px solid var(--line2);
  background: #ffffff;
  color: var(--navy);
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all .15s ease;
}
#phb-recc-root .recc-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}
#phb-recc-root .recc-tab.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}
#phb-recc-root .recc-panel { display: none; }
#phb-recc-root .recc-panel.active { display: block; animation: reccFade .18s ease; }
@keyframes reccFade {
  from { opacity: .65; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
#phb-recc-root .recc-section {
  padding: 56px 48px;
  background: #ffffff;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
#phb-recc-root .recc-section.alt { background: var(--paper); }
#phb-recc-root .recc-section.navy {
  background: var(--navy);
  color: #ffffff;
}
#phb-recc-root .recc-section.navy .recc-h2,
#phb-recc-root .recc-section.navy .recc-h3 { color: #ffffff; }
#phb-recc-root .recc-section.navy .recc-lead { color: #d5e0ec; }
#phb-recc-root .recc-eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
  padding: 4px 0;
  border-bottom: 2px solid var(--teal);
}
#phb-recc-root .navy .recc-eyebrow { color: var(--gold); border-bottom-color: var(--gold); }
#phb-recc-root .recc-h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
}
#phb-recc-root .recc-h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.25;
}
#phb-recc-root .recc-h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.3;
}
#phb-recc-root .recc-lead {
  font-size: 18px;
  color: var(--body);
  max-width: 850px;
  margin: 0 0 36px;
  line-height: 1.6;
}
#phb-recc-root p {
  color: var(--body);
}
#phb-recc-root .recc-grid {
  display: grid;
  gap: 20px;
}
#phb-recc-root .recc-grid.two { grid-template-columns: 1fr 1fr; }
#phb-recc-root .recc-grid.three { grid-template-columns: repeat(3, 1fr); }
#phb-recc-root .recc-grid.four { grid-template-columns: repeat(4, 1fr); }
#phb-recc-root .recc-axis-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 34px 28px;
  border-top: 6px solid var(--teal);
  box-shadow: var(--shadowSm);
  position: relative;
}
#phb-recc-root .recc-axis-card.gold { border-top-color: var(--gold); }
#phb-recc-root .recc-axis-card.navyTop { border-top-color: var(--navy); }
#phb-recc-root .recc-axis-card .axis-num {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--tealSoft);
  line-height: 1;
}
#phb-recc-root .recc-axis-card.gold .axis-num { color: var(--goldSoft); }
#phb-recc-root .recc-axis-card.navyTop .axis-num { color: #e7edf5; }
#phb-recc-root .recc-axis-card .axis-icon {
  width: 56px;
  height: 56px;
  background: var(--tealSoft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
#phb-recc-root .recc-axis-card.gold .axis-icon { background: var(--goldSoft); }
#phb-recc-root .recc-axis-card.navyTop .axis-icon { background: #e7edf5; }
#phb-recc-root .recc-axis-card .axis-icon svg { width: 30px; height: 30px; stroke: var(--teal); }
#phb-recc-root .recc-axis-card.gold .axis-icon svg { stroke: var(--gold); }
#phb-recc-root .recc-axis-card.navyTop .axis-icon svg { stroke: var(--navy); }
#phb-recc-root .recc-axis-card p {
  color: var(--body);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}
#phb-recc-root .recc-axis-card .who {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #d1d8e0;
  font-size: 13px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
#phb-recc-root .recc-axis-card.gold .who { color: var(--gold); }
#phb-recc-root .recc-stat-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
#phb-recc-root .recc-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
#phb-recc-root .recc-stat-card .small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 6px;
}
#phb-recc-root .recc-stat-card .value {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 8px;
}
#phb-recc-root .recc-stat-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
#phb-recc-root .recc-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#phb-recc-root .scenario-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
#phb-recc-root .scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
#phb-recc-root .scenario-card .scen-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(29,158,117,0.4);
}
#phb-recc-root .scenario-card.gold .scen-num { background: var(--gold); box-shadow: 0 2px 6px rgba(186,117,23,0.35); }
#phb-recc-root .scenario-card .scen-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--tealSoft) 0%, #c9e8d9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 20px;
}
#phb-recc-root .scenario-card.gold .scen-icon-wrap {
  background: linear-gradient(135deg, var(--goldSoft) 0%, #f5e2bb 100%);
}
#phb-recc-root .scenario-card .scen-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: var(--teal);
}
#phb-recc-root .scenario-card.gold .scen-icon-wrap svg { stroke: var(--gold); }
#phb-recc-root .scenario-card p {
  color: #4a5868;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
#phb-recc-root .recc-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
#phb-recc-root .pill-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid var(--line2);
  transition: all .2s ease;
}
#phb-recc-root .pill-card:hover {
  border-color: var(--teal);
  background: #f4faf7;
}
#phb-recc-root .pill-card .pill-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--teal);
}
#phb-recc-root .pill-card .pill-icon svg { width: 100%; height: 100%; stroke: currentColor; }
#phb-recc-root .pill-card .pill-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
  margin: 0;
  line-height: 1.3;
}
#phb-recc-root .pill-card .pill-tag {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
#phb-recc-root .recc-mega-stat {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
#phb-recc-root .recc-mega-stat .mega-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}
#phb-recc-root .recc-mega-stat .mega-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.85);
  font-weight: 700;
  margin-bottom: 8px;
}
#phb-recc-root .recc-mega-stat .mega-headline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #ffffff;
}
#phb-recc-root .recc-mega-stat .mega-body {
  font-size: 15px;
  color: rgba(255,255,255,.92);
  margin: 0;
  max-width: 700px;
}
#phb-recc-root .recc-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
#phb-recc-root .process-step {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 20px;
  border-top: 4px solid var(--navy);
  position: relative;
}
#phb-recc-root .process-step .step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
#phb-recc-root .process-step h5 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.25;
}
#phb-recc-root .process-step p {
  color: #4a5868;
  font-size: 13px;
  margin: 0;
  line-height: 1.55;
}
#phb-recc-root .recc-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#phb-recc-root .compare-col {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(13,43,78,0.06);
}
#phb-recc-root .compare-header {
  padding: 18px 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
#phb-recc-root .compare-col.does .compare-header { background: var(--teal); }
#phb-recc-root .compare-col.does-not .compare-header { background: var(--gold); }
#phb-recc-root .compare-header svg { width: 22px; height: 22px; stroke: currentColor; }
#phb-recc-root .compare-header h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}
#phb-recc-root .compare-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
#phb-recc-root .compare-list li {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid #f0f3f7;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
#phb-recc-root .compare-list li:last-child { border-bottom: none; }
#phb-recc-root .compare-list li::before {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}
#phb-recc-root .compare-col.does .compare-list li::before {
  content: "✓";
  background: var(--teal);
}
#phb-recc-root .compare-col.does-not .compare-list li::before {
  content: "!";
  background: var(--gold);
}
#phb-recc-root .recc-checklist {
  display: grid;
  gap: 12px;
}
#phb-recc-root .check-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  border-left: 4px solid var(--teal);
  box-shadow: 0 1px 3px rgba(13,43,78,0.05);
}
#phb-recc-root .check-item .check-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}
#phb-recc-root .check-item h5 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 4px;
  font-weight: 700;
}
#phb-recc-root .check-item p {
  font-size: 14px;
  color: #4a5868;
  margin: 0;
  line-height: 1.5;
}
#phb-recc-root .recc-callout {
  background: var(--goldSoft);
  border-left: 6px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: flex-start;
}
#phb-recc-root .recc-callout.teal {
  background: var(--tealSoft);
  border-left-color: var(--teal);
}
#phb-recc-root .recc-callout .callout-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#phb-recc-root .recc-callout.teal .callout-icon { background: var(--teal); }
#phb-recc-root .recc-callout .callout-icon svg { width: 22px; height: 22px; stroke: currentColor; }
#phb-recc-root .recc-callout h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 700;
}
#phb-recc-root .recc-callout p {
  font-size: 15px;
  color: var(--body);
  margin: 0;
  line-height: 1.6;
}
#phb-recc-root .chart-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadowSm);
}
#phb-recc-root .chart-wrap {
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 12px;
  overflow: hidden;
}
#phb-recc-root .chart-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}
#phb-recc-root .score-ring {
  width: 190px;
  height: 190px;
  border-radius: 999px;
  margin: 6px auto 16px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--teal) calc(var(--score)*1%), #e5edf2 0);
  position: relative;
}
#phb-recc-root .score-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: #ffffff;
}
#phb-recc-root .score-ring div {
  position: relative;
  z-index: 2;
  text-align: center;
}
#phb-recc-root .score-ring strong {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: 46px;
  line-height: 1;
}
#phb-recc-root .score-ring span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: 11px;
  font-weight: 800;
}
#phb-recc-root .driver {
  display: grid;
  grid-template-columns: 130px 1fr 80px;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}
#phb-recc-root .driver b {
  font-size: 13px;
  color: var(--navy);
}
#phb-recc-root .driver span {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  font-weight: 700;
}
#phb-recc-root .bar {
  height: 12px;
  border-radius: 999px;
  background: #e6edf2;
  overflow: hidden;
}
#phb-recc-root .fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), #4cc29c);
}
#phb-recc-root .input-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
  align-items: center;
  margin: 14px 0;
}
#phb-recc-root .input-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
#phb-recc-root .input-row input,
#phb-recc-root .input-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line2);
  border-radius: 6px;
  background: #ffffff;
  font-weight: 700;
  color: var(--navy);
}
#phb-recc-root .input-row input[type="range"] {
  grid-column: 1 / -1;
  padding: 0;
  accent-color: var(--teal);
}
#phb-recc-root .range-val {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  text-align: right;
}
#phb-recc-root .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
#phb-recc-root .recc-btn {
  background: var(--navy);
  color: #ffffff;
  border: 1px solid var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all .15s ease;
}
#phb-recc-root .recc-btn:hover {
  background: var(--navy2);
}
#phb-recc-root .recc-btn.secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--line2);
}
#phb-recc-root .recc-btn.secondary:hover {
  border-color: var(--navy);
  background: #f7f9fc;
}
#phb-recc-root .recc-btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}
#phb-recc-root .recc-btn.warn {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
  padding: 7px 10px;
  font-size: 11px;
}
#phb-recc-root table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}
#phb-recc-root th,
#phb-recc-root td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
#phb-recc-root th {
  background: var(--navy);
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
#phb-recc-root tr:last-child td { border-bottom: 0; }
#phb-recc-root td input {
  width: 100%;
  border: 1px solid var(--line2);
  border-radius: 6px;
  padding: 8px;
  font-weight: 700;
}
#phb-recc-root .status {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 8px;
  font-weight: 800;
  font-size: 11px;
}
#phb-recc-root .good { background: var(--tealSoft); color: #116b50; }
#phb-recc-root .watch { background: var(--goldSoft); color: #8a560c; }
#phb-recc-root .bad { background: var(--redSoft); color: var(--red); }
#phb-recc-root .formula {
  background: #ffffff;
  border: 1px dashed #b9c6d4;
  border-radius: 10px;
  padding: 14px 16px;
  color: #334155;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 14px;
}
#phb-recc-root .bottomline {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: #ffffff;
  padding: 56px 48px;
  position: relative;
}
#phb-recc-root .bottomline .bl-eyebrow {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#phb-recc-root .bottomline p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 24px;
  max-width: 960px;
  color: #ffffff;
}
#phb-recc-root .bottomline .bl-author {
  color: #d5e0ec;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 20px;
  margin-top: 24px;
}
#phb-recc-root .bottomline .bl-author strong { color: #ffffff; }
#phb-recc-root .recc-footer {
  background: var(--paper);
  padding: 32px 48px;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--line);
  border-top: none;
  font-size: 13px;
  color: #4a5868;
}
#phb-recc-root .recc-footer h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 700;
}
#phb-recc-root .recc-attribution {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
#phb-recc-root .recc-attribution strong { color: var(--navy); }
#phb-recc-root .responsive-table {
  overflow-x: auto;
}
@media (max-width: 980px) {
  #phb-recc-root { font-size: 15px; }
  #phb-recc-root .recc-hero { padding: 40px 28px 32px; }
  #phb-recc-root .recc-hero-title { font-size: 36px; }
  #phb-recc-root .recc-hero-sub { font-size: 17px; }
  #phb-recc-root .recc-hero-stats,
  #phb-recc-root .recc-grid.two,
  #phb-recc-root .recc-grid.three,
  #phb-recc-root .recc-grid.four,
  #phb-recc-root .recc-scenarios,
  #phb-recc-root .recc-comparison {
    grid-template-columns: 1fr;
  }
  #phb-recc-root .recc-pill-grid { grid-template-columns: repeat(2, 1fr); }
  #phb-recc-root .recc-process { grid-template-columns: repeat(2, 1fr); }
  #phb-recc-root .recc-tabs { padding: 14px 28px; position: relative; }
  #phb-recc-root .recc-section { padding: 40px 28px; }
  #phb-recc-root .recc-h2 { font-size: 28px; }
  #phb-recc-root .recc-mega-stat { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  #phb-recc-root .recc-mega-stat .mega-num { font-size: 72px; }
  #phb-recc-root .check-item,
  #phb-recc-root .recc-callout {
    grid-template-columns: 1fr;
  }
  #phb-recc-root .driver { grid-template-columns: 1fr; }
  #phb-recc-root .driver span { text-align: left; }
}
@media (max-width: 640px) {
  #phb-recc-root .recc-pill-grid,
  #phb-recc-root .recc-process { grid-template-columns: 1fr; }
  #phb-recc-root .recc-hero-title { font-size: 31px; }
  #phb-recc-root .recc-hero-stat .stat-num { font-size: 32px; }
  #phb-recc-root .input-row { grid-template-columns: 1fr; }
  #phb-recc-root .range-val { text-align: left; }
}
@media print {
  #phb-recc-root .recc-tabs,
  #phb-recc-root .recc-btn { display: none !important; }
  #phb-recc-root .recc-panel { display: block !important; }
  #phb-recc-root .recc-section,
  #phb-recc-root .recc-hero,
  #phb-recc-root .bottomline,
  #phb-recc-root .recc-footer {
    page-break-inside: avoid;
  }
}
