@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  color-scheme: light;
  --ink: #181611;
  --muted: #60584d;
  --muted-soft: #847b6f;
  --paper: #f6f7fb;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --line: rgba(24, 22, 17, 0.12);
  --signal: #2563eb;
  --signal-strong: #1d4ed8;
  --warning: #d97706;
  --danger: #be123c;
  --success: #15803d;
  --shadow: 0 22px 48px rgba(18, 22, 20, 0.08);
  --shadow-soft: 0 12px 24px rgba(18, 22, 20, 0.06);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: linear-gradient(180deg, #fafbff 0%, #f3f5f9 100%);
}

body.sales-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(217, 119, 6, 0.08), transparent 18%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--signal-strong);
}

.report-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 18px 72px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--signal);
}

.brand-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 16px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 110, 105, 0.2);
}

.button-primary:hover {
  background: var(--signal-strong);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.hero-panel,
.panel {
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.hero-panel h1,
.panel h2,
.panel h3 {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.05;
  margin: 8px 0 12px;
}

.hero-panel h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.lede,
.panel p,
.list-copy {
  color: var(--muted);
}

.trust-row,
.summary-grid,
.sample-grid,
.form-grid,
.info-grid,
.viewer-grid,
.artifact-meta {
  display: grid;
  gap: 14px;
}

.trust-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 20px;
}

.trust-chip,
.metric-card,
.sample-card,
.info-card,
.artifact-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.trust-chip,
.metric-card,
.sample-card,
.info-card,
.artifact-card {
  padding: 16px;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  color: var(--signal);
  font-family: "Space Grotesk", Arial, sans-serif;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.panel {
  padding: 24px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field,
.full-span {
  display: grid;
  gap: 8px;
}

.full-span {
  grid-column: 1 / -1;
}

label,
.mini-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.dropzone {
  border: 1.5px dashed rgba(11, 110, 105, 0.32);
  border-radius: 20px;
  padding: 18px;
  background: rgba(245, 252, 251, 0.82);
}

.dropzone p {
  margin: 6px 0 0;
}

.status-box {
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.status-box[data-state="error"] {
  border-color: rgba(159, 18, 57, 0.24);
  background: rgba(255, 245, 248, 0.92);
}

.status-box[data-state="success"] {
  border-color: rgba(11, 110, 105, 0.24);
  background: rgba(240, 252, 251, 0.92);
}

.status-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.status-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.status-steps li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(11, 110, 105, 0.2);
  border: 1px solid rgba(11, 110, 105, 0.25);
}

.status-steps li.is-active::before,
.status-steps li.is-done::before {
  background: var(--signal);
  border-color: var(--signal);
}

.sample-grid,
.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sample-card h3,
.info-card h3 {
  margin-bottom: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.viewer-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.empty-state {
  text-align: center;
  padding: 54px 20px;
}

.muted-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sales-page .hero-panel,
.sales-page .panel {
  border: 1px solid rgba(24, 22, 17, 0.08);
}

.sales-page .panel {
  position: relative;
  padding: 30px;
}

.sales-page .panel::before {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--signal), rgba(37, 99, 235, 0));
}

.sales-page .section-illustrated {
  overflow: hidden;
}

.sales-page .section-illustrated::after {
  content: "";
  position: absolute;
  inset: auto -48px -48px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0));
  pointer-events: none;
}

.sales-page .accent-amber {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(217, 119, 6, 0.18);
}

.sales-page .text-block h3,
.sales-page .faq-flow h3,
.sales-page .sample-flow h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sales-page .text-block h3::before,
.sales-page .faq-flow h3::before,
.sales-page .sample-flow h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--signal), var(--warning));
  flex: 0 0 auto;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.08);
}

.sales-page .faq-flow article p,
.sales-page .sample-flow article p,
.sales-page .text-block p {
  margin-left: 20px;
}

.sales-page .trust-row,
.sales-page .info-grid,
.sales-page .sample-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.sales-page .trust-chip,
.sales-page .info-card,
.sales-page .sample-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 0;
  border-top: 1px solid rgba(24, 22, 17, 0.08);
}

.sales-page .trust-chip:first-child,
.sales-page .info-card:first-child,
.sales-page .sample-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.sales-page .proof-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sales-page .proof-inline span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 22, 17, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-size: 0.95rem;
}

.sales-page .proof-inline span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal);
  flex: 0 0 auto;
}

.sales-page .reading-columns,
.sales-page .text-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.sales-page .narrative-stack {
  display: grid;
  gap: 14px;
}

.sales-page .pull-quote,
.sales-page .quote-band {
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.sales-page .pull-quote {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.sales-page .quote-band {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(217, 119, 6, 0.14);
}

.sales-page .pull-quote strong,
.sales-page .quote-band strong {
  display: block;
  margin-bottom: 8px;
}

.sales-page .editorial-list,
.sales-page .step-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}

.sales-page .editorial-list li,
.sales-page .step-flow li {
  position: relative;
  padding: 18px 0 18px 52px;
  border-top: 1px solid rgba(24, 22, 17, 0.08);
  color: var(--muted);
  line-height: 1.72;
}

.sales-page .editorial-list li:first-child,
.sales-page .step-flow li:first-child {
  border-top: 0;
  padding-top: 0;
}

.sales-page .editorial-list li::before,
.sales-page .step-flow li::before {
  content: attr(data-mark);
  position: absolute;
  left: 0;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  background: rgba(37, 99, 235, 0.09);
  color: var(--signal-strong);
}

.sales-page .editorial-list li:first-child::before,
.sales-page .step-flow li:first-child::before {
  top: 0;
}

.sales-page .faq-flow,
.sales-page .sample-flow {
  display: grid;
  gap: 0;
}

.sales-page .faq-flow article,
.sales-page .sample-flow article {
  padding: 18px 0;
  border-top: 1px solid rgba(24, 22, 17, 0.08);
}

.sales-page .faq-flow article:first-child,
.sales-page .sample-flow article:first-child {
  border-top: 0;
  padding-top: 0;
}

.sales-page .sample-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
}

.sales-page .sample-tag::before {
  content: "◆";
  color: var(--warning);
  font-size: 0.72rem;
}

.sales-page .pricing-strip {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin: 18px 0 14px;
}

.sales-page .price-mark {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.sales-page .pricing-notes {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.score-strip,
.action-grid,
.family-grid,
.benchmark-grid,
.fix-grid {
  display: grid;
  gap: 16px;
}

.score-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.action-grid,
.fix-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.family-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.verdict-hero {
  padding: 28px;
}

.verdict-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.verdict-title {
  display: grid;
  gap: 8px;
}

.verdict-main {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.verdict-sub {
  color: var(--muted);
  font-size: 0.98rem;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid rgba(217, 119, 6, 0.22);
  font-size: 0.9rem;
  font-weight: 600;
}

.stat-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

.status-avoid {
  background: rgba(190, 18, 60, 0.12);
  color: var(--danger);
}

.status-customize {
  background: rgba(217, 119, 6, 0.12);
  color: var(--warning);
}

.status-selective,
.status-aggressive {
  background: rgba(21, 128, 61, 0.12);
  color: var(--success);
}

.action-card {
  padding: 22px;
}

.action-card ol,
.action-card ul {
  margin: 0;
  padding-left: 20px;
}

.family-card {
  padding: 20px;
}

.family-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.family-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #eff6ff;
  color: var(--signal-strong);
  font-weight: 700;
  font-size: 0.88rem;
}

.family-blockers {
  color: var(--muted);
  font-size: 0.94rem;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.accordion + .accordion {
  margin-top: 14px;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: grid;
  gap: 10px;
}

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

.accordion-body {
  border-top: 1px solid var(--line);
  padding: 20px 22px 24px;
  display: grid;
  gap: 18px;
}

.jd-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fcfdff;
}

.jd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 16px;
}

.jd-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jd-list-grid ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.jd-list-grid h4 {
  margin: 0;
}

.debug-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .viewer-grid {
    grid-template-columns: 1fr;
  }
  .score-strip,
  .action-grid,
  .fix-grid,
  .jd-grid,
  .jd-list-grid {
    grid-template-columns: 1fr;
  }

  .sales-page .reading-columns,
  .sales-page .text-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bootstrap-report-page {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f8f9fa;
  color: #212529;
}

.bootstrap-report-page h1,
.bootstrap-report-page h2,
.bootstrap-report-page h3,
.bootstrap-report-page h4,
.bootstrap-report-page h5,
.bootstrap-report-page h6,
.bootstrap-report-page .navbar-brand,
.bootstrap-report-page .btn {
  font-family: inherit;
}

.bootstrap-report-page .hero-standard-bg {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.bootstrap-report-page .py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.bootstrap-report-page .report-proof-panel,
.bootstrap-report-page .simple-aside,
.bootstrap-report-page .simple-compare,
.bootstrap-report-page .process-step,
.bootstrap-report-page .sample-line,
.bootstrap-report-page .feature-row {
  background: #fff;
}

.bootstrap-report-page .report-proof-list li {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
  color: #495057;
}

.bootstrap-report-page .report-proof-list li:last-child {
  margin-bottom: 0;
}

.bootstrap-report-page .simple-aside {
  border: 1px solid rgba(13, 110, 253, 0.12);
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.06), rgba(255, 255, 255, 0.96));
}

.bootstrap-report-page .simple-compare {
  border-color: rgba(33, 37, 41, 0.12) !important;
}

.bootstrap-report-page .simple-compare.is-accent {
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.08), rgba(255, 255, 255, 1));
  border-color: rgba(13, 110, 253, 0.18) !important;
}

.bootstrap-report-page .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.25rem 0;
}

.bootstrap-report-page .feature-row i {
  font-size: 1.2rem;
  margin-top: 0.15rem;
}

.bootstrap-report-page .report-section-alt {
  background: #f8f9fa;
}

.bootstrap-report-page .report-section-soft {
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.04), rgba(248, 249, 250, 0.9));
}

.bootstrap-report-page .standard-list .list-group-item {
  background: transparent;
  border-color: rgba(33, 37, 41, 0.10);
  color: #495057;
}

.bootstrap-report-page .sample-line {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(33, 37, 41, 0.10);
}

.bootstrap-report-page .sample-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bootstrap-report-page .sample-grid {
  display: block;
}

.bootstrap-report-page .sample-card {
  display: block;
  border: 1px solid rgba(33, 37, 41, 0.10) !important;
}

.bootstrap-report-page .sample-card + .sample-card {
  border-top: 0 !important;
}

.bootstrap-report-page .sample-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.bootstrap-report-page .sample-card p {
  margin-bottom: 0.6rem;
  color: #495057;
}

.bootstrap-report-page .sample-card .tag-row {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.bootstrap-report-page .sample-card .tag {
  font-family: inherit;
  font-size: 0.8rem;
  background: #f8f9fa;
}

.bootstrap-report-page .process-step {
  height: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(33, 37, 41, 0.10);
  border-radius: 1rem;
}

.bootstrap-report-page .step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.10);
  color: #0d6efd;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.bootstrap-report-page .accordion-item {
  background: transparent;
}

.bootstrap-report-page .accordion-button {
  font-weight: 600;
  background: #fff;
}

.bootstrap-report-page .accordion-button:not(.collapsed) {
  color: #212529;
  background: rgba(13, 110, 253, 0.06);
  box-shadow: none;
}

.bootstrap-report-page #report-checkout-status[hidden] {
  display: none !important;
}

.bootstrap-report-page #report-checkout-status[data-state="error"] {
  background: #fff5f5;
  border-color: rgba(220, 53, 69, 0.18);
}

.bootstrap-report-page #report-checkout-status[data-state="success"] {
  background: #f0fff4;
  border-color: rgba(25, 135, 84, 0.18);
}

@media (max-width: 991.98px) {
  .bootstrap-report-page .py-lg-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}


.bootstrap-report-page section {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.bootstrap-report-page .sample-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.bootstrap-report-page .sample-grid-wide {
  max-width: 960px;
  margin: 0 auto;
}

.bootstrap-report-page .sample-card {
  padding: 1.25rem 1.5rem;
}

.bootstrap-report-page .sample-card .mini-label {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d6efd;
}

.bootstrap-report-page .sample-card a {
  font-weight: 600;
}


.bootstrap-report-page .report-shot {
  background: #fff;
}

.bootstrap-report-page .report-shot-toolbar {
  background: #f8f9fa;
}

.bootstrap-report-page .report-shot-title h3 {
  font-size: 1.35rem;
}

.bootstrap-report-page .report-stat {
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(33, 37, 41, 0.10);
  border-radius: 0.85rem;
  background: #fbfcfe;
}

.bootstrap-report-page .report-stat span {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
  margin-bottom: 0.2rem;
}

.bootstrap-report-page .report-stat strong {
  font-size: 1.4rem;
}

.bootstrap-report-page .report-block {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(33, 37, 41, 0.08);
}

.bootstrap-report-page .report-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f8f9fa;
  border: 1px solid rgba(33, 37, 41, 0.08);
  color: #495057;
  font-size: 0.88rem;
}

.bootstrap-report-page .quick-step {
  height: 100%;
  padding: 1rem 1.1rem;
  border-left: 3px solid #0d6efd;
  background: #fff;
  box-shadow: 0 1px 0 rgba(33, 37, 41, 0.06);
}

.bootstrap-report-page .quick-step-number {
  font-size: 0.78rem;
  color: #0d6efd;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.bootstrap-report-page .compare-table th,
.bootstrap-report-page .compare-table td {
  padding: 1rem;
  vertical-align: top;
}

.bootstrap-report-page .compare-table thead th {
  background: #fff;
}

.bootstrap-report-page .real-jobs-table th,
.bootstrap-report-page .real-jobs-table td {
  padding: 0.9rem 0.75rem;
  vertical-align: middle;
}

.bootstrap-report-page .real-jobs-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6c757d;
  white-space: nowrap;
}

.bootstrap-report-page .real-jobs-progress {
  min-width: 120px;
  height: 0.5rem;
  background: #e9ecef;
}

.bootstrap-report-page .sample-card {
  text-decoration: none;
}

.bootstrap-report-page .sample-card-link {
  font-weight: 600;
  color: #0d6efd;
  white-space: nowrap;
}


.bootstrap-report-page .compact-list .list-group-item {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

.bootstrap-report-page .cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 1rem;
}

@media (min-width: 992px) {
  .bootstrap-report-page .cookie-banner {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(880px, calc(100vw - 2rem));
  }
}

.bootstrap-report-viewer .viewer-section {
  border: 1px solid rgba(33, 37, 41, 0.10);
  background: #fff;
}

.bootstrap-report-viewer .viewer-strip-item {
  height: 100%;
  padding: 0.9rem 0 0.6rem;
  border-top: 1px solid rgba(33, 37, 41, 0.08);
}

.bootstrap-report-viewer .viewer-strip-item strong {
  font-size: 1.25rem;
  line-height: 1.3;
}

.bootstrap-report-viewer .viewer-premium-line {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: #212529;
}

.bootstrap-report-viewer .viewer-family-row {
  background: transparent;
  border-color: rgba(33, 37, 41, 0.08);
}

.bootstrap-report-viewer .viewer-family-metrics {
  min-width: 12rem;
  display: grid;
  gap: 0.45rem;
  color: #495057;
  white-space: nowrap;
}

.bootstrap-report-viewer .viewer-family-metrics strong {
  font-size: 1.05rem;
  color: #212529;
}

.bootstrap-report-viewer .family-blocker-list {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bootstrap-report-viewer details.accordion {
  border-top: 1px solid rgba(33, 37, 41, 0.10);
  background: #fff;
  padding: 1rem 0;
}

.bootstrap-report-viewer details.accordion summary {
  cursor: pointer;
  list-style: none;
}

.bootstrap-report-viewer details.accordion summary::-webkit-details-marker {
  display: none;
}

.bootstrap-report-viewer .accordion-body {
  padding-top: 1rem;
}

.bootstrap-report-viewer .jd-card {
  border-top: 1px solid rgba(33, 37, 41, 0.10);
  padding-top: 1rem;
  margin-top: 1rem;
}

.bootstrap-report-viewer .jd-card:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.bootstrap-report-viewer .jd-verdict {
  font-weight: 600;
  color: #212529;
  margin: 0.35rem 0 0.5rem;
}

.bootstrap-report-viewer .jd-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.bootstrap-report-viewer .score-note {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #6c757d;
}

.bootstrap-report-viewer .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.bootstrap-report-viewer .chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f8f9fa;
  border: 1px solid rgba(33, 37, 41, 0.08);
  color: #495057;
  font-size: 0.88rem;
}


.bootstrap-report-intake .intake-side-note {
  background: linear-gradient(180deg, rgba(13, 110, 253, 0.04), rgba(255, 255, 255, 1));
}


.bootstrap-report-viewer .submitted-cv {
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 28rem;
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(33, 37, 41, 0.10);
  border-radius: 0.85rem;
  background: #f8f9fa;
  color: #495057;
  font-size: 0.92rem;
  line-height: 1.6;
}

.bootstrap-report-viewer .chip-muted {
  background: #fff;
  color: #6c757d;
}

.bootstrap-report-viewer .evidence-snippets {
  margin-top: 0.4rem;
}

.bootstrap-report-viewer .evidence-snippet {
  font-size: 0.88rem;
  color: #6c757d;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(13, 110, 253, 0.18);
  margin-top: 0.35rem;
}

.bootstrap-report-viewer .score-details {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(33, 37, 41, 0.08);
}

.bootstrap-report-viewer .score-details summary {
  cursor: pointer;
  font-weight: 600;
  color: #495057;
}

.bootstrap-report-viewer .score-details ul {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.bootstrap-report-viewer .sub-evidence-block {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(33, 37, 41, 0.12);
}

.bootstrap-report-viewer .sub-evidence-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 0.45rem;
}

.bootstrap-report-viewer .sub-evidence-block ul {
  margin-bottom: 0;
}

.bootstrap-report-viewer .role-profile-block {
  margin: 0.5rem 0 0.9rem;
}

.bootstrap-report-viewer .role-profile-list .list-group-item {
  background: transparent;
  border-color: rgba(33, 37, 41, 0.08);
  color: #495057;
  font-size: 0.92rem;
}

.bootstrap-report-viewer .viewer-family-summary {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #495057;
  margin-top: 0.35rem;
}

.bootstrap-report-viewer .viewer-archetype-metrics {
  margin: 1rem 0;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(33, 37, 41, 0.08);
  border-bottom: 1px solid rgba(33, 37, 41, 0.08);
}

.bootstrap-report-viewer .viewer-archetype-metrics dt,
.bootstrap-report-viewer .viewer-archetype-metrics dd {
  padding: 0.3rem 0;
  margin-bottom: 0;
}
