:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --paper: #ffffff;
  --ink: #09111f;
  --muted: #637083;
  --soft: #edf3fa;
  --line: rgba(12, 24, 44, 0.12);
  --line-strong: rgba(12, 24, 44, 0.18);
  --brand-dark: #050609;
  --brand-blue: #3bb7ff;
  --brand-blue-2: #0c74ff;
  --brand-orange: #ff7a2d;
  --success: #17a66a;
  --warning: #d98505;
  --danger: #d63a2f;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(10, 25, 45, 0.12);
  --tight-shadow: 0 10px 34px rgba(10, 25, 45, 0.10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--brand-dark) 0 650px, var(--bg) 650px),
    var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
}

p,
dd,
li,
h1,
h2,
h3,
.brand,
.score-row,
.finding-meta,
.table-row,
.action-item {
  overflow-wrap: anywhere;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.print-masthead,
.print-copy {
  display: none;
}

.report-hero,
main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.report-hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  color: #f8fbff;
}

.report-nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f8fbff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(59, 183, 255, 0.36));
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.nav-actions a,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0 15px;
  color: #f8fbff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  max-width: 100%;
}

.nav-actions a:hover,
.button:hover {
  transform: translateY(-1px);
}

.nav-actions .nav-cta,
.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-blue));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(59, 183, 255, 0.22);
}

.button.secondary {
  border-color: rgba(9, 17, 31, 0.16);
  background: #ffffff;
  color: var(--ink);
}

.report-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.nav-actions .nav-cta {
  max-width: min(360px, 44vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: 52px;
  padding: 42px 0 74px;
  position: relative;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 24px -120px auto auto;
  width: 360px;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 183, 255, 0.34), transparent 62%),
    radial-gradient(circle at 80% 65%, rgba(255, 122, 45, 0.24), transparent 58%);
  filter: blur(20px);
  opacity: 0.9;
}

.kicker,
.section-head p {
  margin: 0 0 12px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 22px;
  color: #c6d1de;
  font-size: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 0 12px;
  color: #c6d1de;
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof strong {
  color: #ffffff;
}

.score-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.score-panel::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 122, 45, 0.22), transparent 68%);
}

.score-panel span {
  margin-top: 16px;
  color: #c6d1de;
  font-weight: 800;
}

.score-panel p {
  margin: 8px 0 0;
  color: #ffffff;
  text-align: center;
}

.score-orbit {
  --score: 0;
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #10131a 0 58%, transparent 59%),
    conic-gradient(var(--score-color, var(--brand-blue)) calc(var(--score) * 1%), rgba(255, 255, 255, 0.14) 0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 0 36px rgba(59,183,255,0.20);
}

.score-orbit strong {
  font-size: 58px;
  line-height: 1;
}

.score-panel.warning,
.score-panel.critical {
  --score-color: var(--brand-orange);
}

.score-panel.decent {
  --score-color: var(--brand-blue);
}

.score-panel.strong {
  --score-color: var(--success);
}

main {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}

.overview-section {
  border-top: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-card,
.score-list,
.money-leak,
.finding-card,
.action-item,
.final-cta,
.competitor-table,
figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--tight-shadow);
}

.metric-card {
  min-height: 182px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.metric-card:hover,
.metric-card:focus {
  transform: translateY(-2px);
  border-color: rgba(59, 183, 255, 0.42);
  box-shadow: var(--shadow);
  outline: none;
}

.metric-icon,
.rank .icon,
.action-item > b {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(59, 183, 255, 0.14), rgba(255, 122, 45, 0.12));
  color: var(--brand-blue-2);
}

.metric-icon {
  width: 42px;
  height: 42px;
}

.metric-copy span,
.score-row span,
.muted {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.metric-copy strong {
  display: block;
  margin: 4px 0 7px;
  font-size: 42px;
  line-height: 1;
}

.metric-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.metric-bar,
.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dde7f1;
}

.metric-bar i,
.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-blue-2), var(--brand-orange));
  transform-origin: left center;
  animation: growBar 900ms cubic-bezier(.2,.7,.2,1) both;
}

.healthy .metric-bar i,
.healthy .bar i {
  background: linear-gradient(90deg, var(--success), var(--brand-blue));
}

.urgent .metric-bar i,
.urgent .bar i,
.leaking .metric-bar i,
.leaking .bar i {
  background: linear-gradient(90deg, var(--danger), var(--brand-orange));
}

.score-list {
  overflow: hidden;
}

.score-row {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(120px, 1fr) 42px;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row b {
  text-align: right;
}

.score-copy strong {
  display: block;
}

.money-list,
.finding-grid,
.action-list,
.screenshot-grid {
  display: grid;
  gap: 16px;
}

.money-leak {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.money-leak:hover,
.money-leak:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 45, 0.38);
  box-shadow: var(--shadow);
  outline: none;
}

.rank {
  display: grid;
  align-content: start;
  gap: 10px;
  color: rgba(9, 17, 31, 0.34);
  font-size: 34px;
  font-weight: 900;
}

.rank .icon {
  width: 44px;
  height: 44px;
  padding: 11px;
}

.severity,
.finding-meta b {
  width: fit-content;
  margin-bottom: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.high,
.critical {
  color: var(--danger);
}

.medium {
  color: var(--warning);
}

.low {
  color: var(--brand-blue-2);
}

dl {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 14px 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 0;
}

.evidence-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.evidence-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.evidence-list .icon {
  color: var(--brand-blue-2);
}

.evidence-list a {
  color: var(--brand-blue-2);
  word-break: break-word;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.finding-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.finding-card {
  overflow: hidden;
}

.finding-meta {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.finding-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.finding-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 16px 16px;
  text-align: left;
  font: inherit;
  font-weight: 850;
}

.finding-toggle span {
  font-size: 20px;
  line-height: 1.16;
}

.finding-toggle .icon {
  transition: transform 180ms ease;
}

.finding-card[data-panel="open"] .finding-toggle .icon {
  transform: rotate(90deg);
}

.finding-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 240ms ease, padding-bottom 240ms ease;
}

.finding-card[data-panel="open"] .finding-body {
  max-height: 620px;
  padding-bottom: 18px;
}

.finding-body p {
  color: var(--muted);
  font-size: 14px;
}

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

.action-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.action-item:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 183, 255, 0.36);
  box-shadow: var(--shadow);
}

.action-item > b {
  width: 46px;
  height: 46px;
  color: var(--brand-dark);
}

.action-item span {
  color: var(--brand-blue-2);
  font-weight: 850;
}

.final-cta {
  margin: 42px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(12, 116, 255, 0.90), rgba(255, 122, 45, 0.88)),
    var(--brand-dark);
  padding: 30px;
  box-shadow: 0 24px 80px rgba(12, 116, 255, 0.18);
}

.final-cta p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.final-cta .button.primary {
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

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

figure {
  margin: 0;
  overflow: hidden;
}

.shot-placeholder {
  min-height: 250px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(59, 183, 255, 0.14), rgba(255, 122, 45, 0.10)),
    var(--soft);
  color: var(--muted);
  font-weight: 800;
}

figcaption {
  padding: 14px 16px;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

@keyframes growBar {
  from {
    transform: scaleX(0.18);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  body {
    background:
      linear-gradient(180deg, var(--brand-dark) 0 1250px, var(--bg) 1250px),
      var(--bg);
  }

  .report-hero,
  main {
    padding: 0 16px;
  }

  main {
    margin-top: 0;
  }

  .report-nav {
    align-items: flex-start;
    height: auto;
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .brand {
    max-width: 100%;
  }

  .nav-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-actions .nav-cta {
    max-width: 100%;
  }

  .hero-grid,
  .split-section,
  .metric-grid,
  .finding-grid,
  .screenshot-grid,
  .action-list {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding: 34px 0 82px;
  }

  .score-panel {
    min-height: auto;
  }

  .money-leak {
    grid-template-columns: 1fr;
  }

  .score-row {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .score-row .bar {
    grid-column: 1 / -1;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media print {
  @page {
    size: Letter;
    margin: 0.35in;
  }

  :root {
    color-scheme: light;
  }

  html,
  body {
    background: #fff;
  }

  body {
    color: #111;
    font-size: 9px;
    line-height: 1.24;
  }

  .report-hero,
  main {
    max-width: none;
    padding: 0;
  }

  .report-nav,
  .hero-actions,
  .final-cta .button,
  .hero-grid::before {
    display: none;
  }

  .print-masthead {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 7px;
    background:
      linear-gradient(135deg, #050609 0%, #0b2038 58%, #263144 100%);
    color: #fff;
    margin: 0 0 10px;
    padding: 10px 12px;
    break-inside: avoid;
  }

  .print-brand {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .print-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
  }

  .print-brand strong,
  .print-meta strong {
    display: block;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .print-brand span,
  .print-meta span {
    display: block;
    color: #c8d5e4;
    font-size: 8px;
  }

  .print-meta {
    text-align: right;
  }

  .screen-copy {
    display: none;
  }

  .print-copy {
    display: inline;
  }

  .report-hero {
    min-height: auto;
    color: #111;
  }

  main {
    margin-top: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 142px;
    gap: 12px;
    padding: 0 0 9px;
    border-bottom: 2px solid #0c74ff;
  }

  .hero-proof {
    margin-bottom: 6px;
  }

  .hero-proof span {
    min-height: 24px;
    border-color: rgba(0,0,0,0.16);
    color: #333;
    background: #fff;
    padding: 0 7px;
  }

  .hero-proof strong {
    color: #111;
  }

  h1 {
    max-width: none;
    margin-bottom: 6px;
    font-size: 23px;
    line-height: 1;
  }

  h2 {
    font-size: 15px;
  }

  h3,
  .finding-toggle span {
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.12;
  }

  p,
  dd,
  .evidence-list,
  .score-row span,
  .metric-copy p,
  .muted,
  figcaption {
    font-size: 8px;
  }

  .hero-copy,
  .final-cta p {
    margin-bottom: 0;
    color: #333;
    font-size: 9px;
  }

  .kicker,
  .section-head p {
    margin-bottom: 4px;
    font-size: 7px;
  }

  .score-panel {
    min-height: 120px;
    padding: 10px;
    box-shadow: none;
    color: #111;
    background: #fff;
    border-color: rgba(0,0,0,0.16);
  }

  .score-panel span,
  .score-panel p {
    color: #333;
  }

  .score-orbit {
    width: 82px;
    height: 82px;
    box-shadow: none;
    background:
      radial-gradient(circle at center, #fff 0 58%, transparent 59%),
      conic-gradient(var(--score-color, #0c74ff) calc(var(--score) * 1%), #e3e7ee 0);
  }

  .score-orbit strong {
    font-size: 30px;
  }

  .section {
    padding: 9px 0;
  }

  .section-head {
    margin-bottom: 7px;
  }

  .section-head p {
    color: #0c74ff;
  }

  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 6px;
  }

  .metric-card {
    min-height: auto;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
  }

  .metric-icon {
    width: 22px;
    height: 22px;
  }

  .metric-copy strong {
    margin: 1px 0 3px;
    font-size: 18px;
  }

  .metric-copy p {
    margin-top: 4px;
  }

  .metric-bar,
  .bar {
    height: 4px;
  }

  .score-row {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 6px;
    padding: 5px 7px;
  }

  .score-row .bar {
    grid-column: 1 / -1;
  }

  .score-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-color: #d5dde8;
  }

  .score-row:nth-child(odd) {
    border-right: 1px solid #d5dde8;
  }

  .score-row:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .money-list,
  .finding-grid,
  .action-list,
  .screenshot-grid {
    gap: 6px;
  }

  .money-leak {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
    border-left: 3px solid #ff7a2d;
  }

  .rank {
    gap: 5px;
    font-size: 16px;
  }

  .rank .icon {
    width: 22px;
    height: 22px;
    padding: 5px;
  }

  .severity,
  .finding-meta b {
    margin-bottom: 3px;
    padding: 1px 4px;
    font-size: 6px;
  }

  dl {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 3px 7px;
    margin: 5px 0;
  }

  dt {
    font-size: 7px;
  }

  .evidence-list {
    gap: 4px;
    margin: 4px 0 0;
  }

  .evidence-list li {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 4px;
  }

  .evidence-list .icon {
    width: 12px;
    height: 12px;
  }

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

  .finding-meta {
    min-height: auto;
    padding: 7px 7px 0;
    gap: 5px;
    font-size: 7px;
  }

  .finding-toggle {
    padding: 4px 7px 5px;
    pointer-events: none;
  }

  .finding-toggle .icon {
    display: none;
  }

  .finding-body,
  .finding-card[data-panel="closed"] .finding-body,
  .finding-card[data-panel="open"] .finding-body {
    max-height: none;
    overflow: visible;
    padding: 0 7px 7px;
  }

  .finding-body p {
    margin-bottom: 4px;
    font-size: 8px;
  }

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

  .action-item {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    padding: 7px;
    border-left: 3px solid #0c74ff;
  }

  .action-item > b {
    width: 22px;
    height: 22px;
  }

  .final-cta {
    margin: 10px 0 0;
    grid-template-columns: 1fr;
    gap: 0;
    color: #111;
    background:
      linear-gradient(90deg, rgba(12,116,255,0.10), rgba(255,122,45,0.10)),
      #f6f8fb;
    border-color: #cfd8e5;
    box-shadow: none;
    padding: 9px;
  }

  .metric-card,
  .score-list,
  .money-leak,
  .finding-card,
  .action-item,
  .final-cta,
  .competitor-table {
    box-shadow: none;
    break-inside: avoid;
  }

  .evidence-section,
  .screenshot-grid {
    display: none;
  }
}
