:root {
  color-scheme: light;
  --bg: #f4f8fc;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-muted: #ebf2fb;
  --border: rgba(69, 119, 194, 0.16);
  --border-strong: rgba(69, 119, 194, 0.28);
  --text: #16314e;
  --text-soft: #587089;
  --text-muted: #7590aa;
  --blue: #1c6fe8;
  --blue-deep: #0f56be;
  --blue-ink: #12304f;
  --blue-soft: #dcecff;
  --success: #11775f;
  --warning: #8f5d0d;
  --danger: #c23b4a;
  --shadow: 0 24px 80px rgba(24, 71, 129, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 999px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(100, 170, 255, 0.18), transparent 36%),
    radial-gradient(circle at 82% 18%, rgba(18, 111, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.report-page {
  background: #f4f8fc;
}

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

.hidden {
  display: none !important;
}

.page-shell {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  padding: 40px 20px 72px;
}

.page-backdrop {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.page-backdrop-primary {
  top: -96px;
  left: -48px;
  width: 320px;
  height: 320px;
  background: rgba(72, 141, 255, 0.18);
}

.page-backdrop-secondary {
  top: 160px;
  right: -90px;
  width: 280px;
  height: 280px;
  background: rgba(18, 111, 232, 0.14);
}

.hero,
.report-layout {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.report-hero-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.report-hero-top .language-switcher {
  position: absolute;
  right: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(28, 111, 232, 0.1);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.report-is-completed .hero {
  max-width: var(--max-width);
  margin-bottom: 16px;
}

.report-is-completed .page-shell {
  padding-top: 24px;
}

.report-is-completed .report-hero-top {
  justify-content: space-between;
}

.report-is-completed .report-hero-top .language-switcher {
  position: static;
}

.report-is-completed .hero h1,
.report-is-completed .hero > p {
  display: none;
}

.report-is-completed .summary-card {
  margin-bottom: 14px;
  padding: 16px 20px;
}

.report-is-completed .summary-chip {
  min-height: 32px;
  padding: 0.45rem 0.75rem;
  font-size: 0.84rem;
}

.report-is-completed .report-card {
  margin-top: 14px;
}

.report-is-completed .report-content {
  padding-top: 0;
}

.report-layout {
  max-width: var(--max-width);
  margin: 0 auto;
}

.report-global-shell { max-width: 1220px; margin: 0 auto; }
.report-global-nav { max-width: none; }
.report-footer-shell { width: 100%; max-width: 1220px; }

.summary-card,
.state-card,
.report-card {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.summary-card {
  position: sticky;
  top: 16px;
  z-index: 10;
  margin-bottom: 22px;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
}

.report-page .summary-card {
  border-radius: 22px;
}

.research-brief {
  grid-column: 1;
  min-width: 0;
  margin-bottom: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #ffffff;
  color: var(--text);
}

.research-brief-heading .eyebrow {
  margin-bottom: 8px;
}

.research-brief-title {
  margin: 0 0 20px;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: -.025em;
}

.research-brief-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 20px 28px;
  margin: 0;
}

.research-brief-fields-single-column {
  grid-template-columns: minmax(0, 1fr);
}

.research-brief-field {
  min-width: 0;
}

.research-brief-field-full-width {
  grid-column: 1 / -1;
}

.research-brief-fields-has-context .research-brief-field-full-width {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.research-brief-label {
  margin-bottom: 7px;
  color: var(--text-soft);
  font-size: .78rem;
  font-weight: 700;
}

.research-brief-value {
  max-width: 78ch;
  margin: 0;
  font-size: .9rem;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .research-brief {
    padding: 20px;
  }

  .research-brief-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .research-brief-fields-has-context .research-brief-field-full-width {
    padding-top: 16px;
  }
}

@media (max-width: 1239px) {
  .research-brief {
    margin-bottom: 30px;
  }
}

.summary-copy {
  width: 100%;
  min-width: 0;
}

.summary-primary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
}

.summary-copy h2 {
  min-width: 0;
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-meta,
.summary-actions {
  display: flex;
  gap: 10px;
}

.summary-meta {
  align-items: center;
  margin-top: 10px;
}

.summary-actions {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 8px;
}

.summary-timestamps {
  display: flex;
  flex: 1 1 360px;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.summary-timestamp {
  display: inline-flex;
  align-items: center;
  overflow-wrap: anywhere;
}

.summary-timestamp:not(.hidden) + .summary-timestamp:not(.hidden)::before {
  width: 3px;
  height: 3px;
  margin: 0 10px;
  border-radius: 50%;
  background: var(--text-muted);
  content: "";
}

#summary-available-until {
  color: #3e5f7e;
  font-weight: 700;
}

.summary-print-only {
  display: none;
}

.summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 600;
}

.summary-chip-status[data-status="completed"] {
  background: rgba(17, 119, 95, 0.12);
  color: var(--success);
}

.summary-chip-status[data-status="processing"] {
  background: rgba(28, 111, 232, 0.12);
  color: var(--blue-deep);
}

.summary-chip-status[data-status="failed"],
.summary-chip-status[data-status="not_found"] {
  background: rgba(194, 59, 74, 0.1);
  color: var(--danger);
}

.action-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 1.15rem;
  transition: background-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  box-shadow: 0 7px 16px #1c6fe822;
}

.action-button:hover {
  background: var(--blue-deep);
  box-shadow: 0 8px 22px #1c6fe82f;
}

.action-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.action-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.action-button-secondary {
  border-color: var(--border);
  background: #ffffff;
  color: var(--blue-ink);
  box-shadow: none;
}

.action-button-secondary:hover {
  background: #eaf2ff;
  box-shadow: none;
}

.summary-actions .action-button,
.report-end-actions .action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 0.95rem;
  white-space: nowrap;
}

.state-card,
.report-card {
  border-radius: var(--radius-xl);
  padding: 30px;
}

.state-card {
  min-height: 360px;
}

.state-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.state-panel {
  width: 100%;
  max-width: 660px;
  text-align: center;
}

.state-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.state-panel p {
  margin: 0 auto 10px;
  max-width: 540px;
  color: var(--text-soft);
  line-height: 1.75;
}

.state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(28, 111, 232, 0.12), rgba(28, 111, 232, 0.22));
  color: var(--blue-deep);
  font-size: 1.9rem;
  font-weight: 800;
}

.state-icon[data-tone="danger"] {
  background: linear-gradient(160deg, rgba(194, 59, 74, 0.12), rgba(194, 59, 74, 0.18));
  color: var(--danger);
}

.state-icon[data-tone="warning"] {
  background: linear-gradient(160deg, rgba(143, 93, 13, 0.12), rgba(143, 93, 13, 0.18));
  color: var(--warning);
}

.loader {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
}

.loader-ring,
.loader-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loader-ring {
  border: 7px solid rgba(28, 111, 232, 0.12);
  border-top-color: var(--blue);
  animation: spin 1.1s linear infinite;
}

.loader-core {
  inset: 21px;
  background: radial-gradient(circle at 35% 35%, rgba(28, 111, 232, 0.22), rgba(28, 111, 232, 0.05));
}

.processing-message {
  margin-top: 10px;
  color: var(--blue-deep);
  font-weight: 700;
}

.processing-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.archetype-card-wrap {
  margin-top: 20px;
}

.archetype-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(69, 119, 194, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 242, 251, 0.88));
  text-align: left;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 260ms ease;
  min-height: 15.25rem;
}

.archetype-card.is-switching {
  opacity: 0;
  transform: translateY(4px);
}

.archetype-visual {
  position: relative;
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
}

.archetype-image,
.archetype-fallback {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.archetype-image {
  display: block;
  object-fit: contain;
}

.archetype-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(61, 124, 224, 0.18), rgba(15, 86, 190, 0.2));
  color: var(--blue-deep);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.archetype-copy {
  min-width: 0;
}

.archetype-label {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archetype-title {
  margin: 0;
  color: #17385a;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.archetype-description {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.68;
}

.archetype-mindset {
  margin: 10px 0 0;
  color: #12304f;
  font-size: 0.93rem;
  line-height: 1.6;
}

.archetype-note {
  margin: 10px 4px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.status-stack,
.state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.state-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--blue-deep);
  font-weight: 700;
  text-decoration: none;
}

.report-card {
  margin-top: 22px;
  background: var(--surface-strong);
}

.report-card-completed {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.report-end-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
  padding: 18px 4px 4px;
  border-top: 1px solid rgba(69, 119, 194, 0.14);
}

.report-card.report-card-skeleton-only .report-content-loading {
  padding-top: 0;
}

.skeleton-block {
  position: relative;
  overflow: hidden;
  color: transparent !important;
  background: linear-gradient(90deg, rgba(220, 232, 246, 0.9), rgba(236, 244, 252, 0.98), rgba(220, 232, 246, 0.9));
  background-size: 220% 100%;
  border-color: transparent !important;
  box-shadow: none !important;
  user-select: none;
  animation: skeleton-shimmer 2.2s ease-in-out infinite;
}

.summary-title-skeleton {
  width: min(100%, 28rem);
  min-height: 2.35rem;
  border-radius: 14px;
}

.summary-chip-skeleton {
  min-width: 10rem;
}

.summary-timestamp-skeleton {
  display: inline-flex;
  align-items: center;
  width: 13.5rem;
  min-height: 1.2rem;
  border-radius: var(--radius-sm);
}

.report-content-loading {
  padding-top: 28px;
}

.report-skeleton-stack {
  display: grid;
  gap: 14px;
}

.report-skeleton-group {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.report-skeleton-line {
  height: 1rem;
  border-radius: 999px;
}

.report-skeleton-line-lg {
  width: 88%;
}

.report-skeleton-line-md {
  width: 72%;
}

.report-skeleton-line-sm {
  width: 58%;
}

.report-content {
  padding-top: 28px;
  color: #233f5d;
  font-size: 1rem;
  line-height: 1.68;
}

.structured-report {
  display: grid;
  gap: 28px;
}

.structured-report-empty {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  color: var(--text-soft);
}

.report-section {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(24, 71, 129, 0.08);
  scroll-margin-top: 136px;
}

.report-section:focus-visible {
  outline: 3px solid rgba(28, 111, 232, 0.42);
  outline-offset: 4px;
}

.report-section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.report-section-title-wrap {
  min-width: 0;
}

.section-eyebrow,
.finding-number,
.detail-label,
.customer-profile-label,
.validation-number {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-title {
  margin: 5px 0 0;
  color: #17385a;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.detail-copy {
  margin: 6px 0 0;
  color: #284766;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.executive-summary {
  position: relative;
  overflow: hidden;
  border-color: rgba(17, 75, 139, 0.5);
  background:
    radial-gradient(circle at 88% 10%, rgba(137, 195, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #153b63 0%, #0f56be 100%);
  color: #ffffff;
  box-shadow: 0 24px 64px rgba(15, 86, 190, 0.22);
}

.executive-summary .section-eyebrow,
.executive-summary .insight-label {
  color: rgba(232, 244, 255, 0.74);
}

.executive-summary .section-title {
  color: #ffffff;
}

.signal-badge,
.quick-meta-chip,
.finding-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.48rem 0.72rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.signal-badge {
  color: #0d493c;
  background: #d9f5ea;
}

.signal-badge[data-signal="promising_conditional"] {
  color: #69440a;
  background: #fff0c8;
}

.signal-badge[data-signal="mixed"],
.signal-badge[data-signal="default"] {
  color: #164b84;
  background: #e2efff;
}

.signal-badge[data-signal="weak"] {
  color: #7e2733;
  background: #ffe3e7;
}

.quick-meta-chip {
  color: #eaf5ff;
  background: rgba(255, 255, 255, 0.12);
}

.executive-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.report-section-nav {
  color: var(--text-soft);
}

.report-section-nav-desktop,
.report-section-nav-mobile {
  display: none;
}

.report-section-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-section-nav-desktop .report-section-nav-list {
  position: relative;
  padding: 4px 0 4px 17px;
  border-left: 1px solid rgba(69, 119, 194, 0.22);
}

.report-section-nav-link,
.report-back-to-top {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.report-section-nav-desktop .report-section-nav-link {
  position: relative;
  display: block;
  padding: 7px 4px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 160ms ease, transform 160ms ease;
}

.report-section-nav-desktop .report-section-nav-link::before {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 8px;
  height: 8px;
  border: 2px solid #b8c9dc;
  border-radius: 50%;
  background: var(--bg);
  content: "";
  transform: translateY(-50%);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.report-section-nav-desktop .report-section-nav-link:hover {
  color: var(--blue-deep);
}

.report-section-nav-desktop .report-section-nav-link.is-active {
  color: var(--text);
  font-weight: 800;
  transform: translateX(3px);
}

.report-section-nav-desktop .report-section-nav-link.is-active::before {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-50%) scale(1.25);
}

.report-section-nav-link:focus-visible,
.report-back-to-top:focus-visible,
.report-section-nav-summary:focus-visible {
  outline: 3px solid rgba(28, 111, 232, 0.34);
  outline-offset: 3px;
}

.report-back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 12px;
  border-top: 1px solid rgba(69, 119, 194, 0.15);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 160ms ease;
}

.report-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media (min-width: 1240px) {
  .report-is-completed .hero {
    max-width: 1312px;
  }

  .report-is-completed .report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1120px) 164px;
    column-gap: 28px;
    max-width: 1312px;
  }

  .report-is-completed .summary-card,
  .report-is-completed .state-card,
  .report-is-completed .report-card {
    grid-column: 1;
  }

  .report-section-nav-desktop {
    position: sticky;
    top: 22px;
    display: block;
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: start;
    padding-top: 4px;
  }
}

.report-page .page-shell { min-height: 0; padding: 0 0 72px; }
.report-page .report-layout { width: calc(100% - 56px); max-width: 1164px; }
.report-page.report-is-completed .report-layout { grid-template-columns: minmax(0, 1fr) 164px; max-width: 1164px; }

@media (min-width: 1800px) {
  .report-global-shell { max-width: 1320px; }
  .report-footer-shell { max-width: 1320px; }
  .report-page .report-layout,
  .report-page.report-is-completed .report-layout { max-width: 1264px; }
}

@media (max-width: 1239px) {
  .report-is-completed .summary-card {
    position: static;
  }

  .report-section-nav-mobile {
    position: sticky;
    top: 10px;
    z-index: 12;
    display: block;
    min-width: 0;
    margin: 0 0 14px;
  }

  .report-section-nav-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(24, 71, 129, 0.12);
    color: var(--text);
    cursor: pointer;
    list-style: none;
  }

  .report-section-nav-summary::-webkit-details-marker {
    display: none;
  }

  .report-section-nav-current {
    min-width: 0;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .report-section-nav-summary-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .report-section-nav-chevron {
    color: var(--blue-deep);
    font-size: 1rem;
    line-height: 1;
    transition: transform 160ms ease;
  }

  .report-section-nav-mobile[open] .report-section-nav-chevron {
    transform: rotate(180deg);
  }

  .report-section-nav-menu {
    position: absolute;
    top: calc(100% + 7px);
    right: 0;
    left: 0;
    max-height: min(70vh, 430px);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 22px 60px rgba(24, 71, 129, 0.2);
  }

  .report-section-nav-menu .report-section-nav-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 650;
  }

  .report-section-nav-menu .report-section-nav-link.is-active {
    background: var(--surface-muted);
    color: var(--text);
    font-weight: 800;
    box-shadow: inset 3px 0 0 var(--blue);
  }

  .report-back-to-top-mobile {
    justify-content: flex-start;
    min-height: 44px;
    padding: 9px 12px;
  }

  .report-section {
    scroll-margin-top: 74px;
  }
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.executive-insight {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.executive-insight[data-tone="next"] {
  background: rgba(255, 255, 255, 0.16);
}

.insight-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-value {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.key-findings-section {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.finding-list {
  display: grid;
  gap: 16px;
}

.finding-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(24, 71, 129, 0.07);
}

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

.finding-title-wrap {
  min-width: 0;
}

.finding-number {
  color: var(--blue-deep);
}

.finding-title,
.customer-profile-title,
.validation-card-title,
.tension-title {
  margin: 6px 0 0;
  color: #17385a;
  line-height: 1.3;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.finding-title {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.finding-badges {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: 42%;
}

.finding-badge {
  min-height: 29px;
  color: var(--blue-deep);
  background: rgba(28, 111, 232, 0.09);
}

.strength-badge[data-value="strong"] {
  color: var(--success);
  background: rgba(17, 119, 95, 0.11);
}

.strength-badge[data-value="mixed"],
.strength-badge[data-value="weak_niche"] {
  color: var(--warning);
  background: rgba(143, 93, 13, 0.1);
}

.finding-evidence {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid rgba(28, 111, 232, 0.5);
  border-radius: 0 14px 14px 0;
  background: rgba(220, 236, 255, 0.32);
}

.finding-interpretation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.finding-meaning,
.finding-implication {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f5f8fc;
}

.finding-implication {
  background: rgba(220, 236, 255, 0.52);
}

.finding-uncertainty {
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px dashed rgba(143, 93, 13, 0.28);
  border-radius: 14px;
  background: rgba(255, 244, 220, 0.48);
}

.adoption-section {
  background: linear-gradient(145deg, rgba(242, 248, 255, 0.98), rgba(231, 241, 253, 0.9));
}

.adoption-columns,
.adoption-support-grid,
.unknowns-grid,
.context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.adoption-list-panel,
.adoption-support-card,
.uncertainty-panel,
.context-detail,
.context-limitations {
  padding: 18px;
  border-radius: 18px;
}

.adoption-list-panel {
  border: 1px solid rgba(69, 119, 194, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.adoption-barriers {
  border-top: 4px solid rgba(194, 59, 74, 0.55);
}

.adoption-alternatives {
  border-top: 4px solid rgba(28, 111, 232, 0.48);
}

.list-panel-title,
.tension-area-title,
.priority-title {
  margin: 0;
  color: #17385a;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

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

.insight-list-item {
  position: relative;
  padding-left: 18px;
  color: #284766;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.insight-list-item::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.adoption-barriers .insight-list-item::before,
.stop-panel .insight-list-item::before {
  background: var(--danger);
}

.adoption-support-grid {
  margin-top: 14px;
}

.adoption-support-card {
  background: rgba(255, 255, 255, 0.58);
}

.customer-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.customer-profile-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: linear-gradient(160deg, #ffffff, #f4f8fc);
}

.customer-profile-card-no-image {
  grid-template-columns: 1fr;
}

.customer-profile-visual,
.customer-profile-image,
.customer-profile-fallback {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.customer-profile-image {
  display: block;
  object-fit: contain;
}

.customer-profile-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.customer-profile-copy {
  min-width: 0;
}

.customer-profile-title {
  font-size: 1.08rem;
}

.customer-profile-perspective {
  margin: 9px 0 0;
  color: var(--text-soft);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.tension-area {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.tension-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.tension-card {
  padding: 17px;
  border-radius: 17px;
  background: #17385a;
  color: #ffffff;
}

.tension-title {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.tension-card .detail-label {
  color: rgba(232, 244, 255, 0.68);
}

.tension-card .detail-copy {
  color: rgba(255, 255, 255, 0.9);
}

.product-implications-section {
  background: rgba(233, 242, 253, 0.8);
}

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

.priority-column {
  min-width: 0;
  padding: 18px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.7);
}

.priority-column[data-priority="now"] {
  border-top: 5px solid var(--blue);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 86, 190, 0.09);
}

.priority-column[data-priority="next"] {
  border-top: 5px solid rgba(28, 111, 232, 0.42);
}

.priority-column[data-priority="later"] {
  border-top: 5px solid rgba(117, 144, 170, 0.36);
}

.priority-items {
  display: grid;
  gap: 11px;
  margin-top: 13px;
}

.priority-card {
  padding-top: 13px;
  border-top: 1px solid var(--border);
}

.priority-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.priority-action {
  margin: 0;
  color: #17385a;
  font-weight: 800;
  line-height: 1.52;
  overflow-wrap: anywhere;
}

.priority-evidence {
  margin-top: 9px;
}

.priority-evidence .detail-copy {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.unknowns-section {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.uncertainty-panel {
  border: 1px solid var(--border);
}

.unknown-panel {
  background: rgba(225, 239, 255, 0.62);
}

.stop-panel {
  border-color: rgba(194, 59, 74, 0.17);
  background: rgba(255, 238, 240, 0.68);
}

.continue-if-card {
  margin-top: 14px;
  padding: 20px;
  border-radius: 19px;
  background: linear-gradient(135deg, #17385a, #205d96);
}

.continue-if-card .detail-label {
  color: #bcdcff;
}

.continue-if-card .detail-copy {
  color: #ffffff;
  font-size: 1.03rem;
  font-weight: 700;
}

.validation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.validation-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: #ffffff;
}

.validation-number {
  color: var(--blue-deep);
}

.validation-card-title {
  font-size: 1.12rem;
}

.validation-detail,
.validation-decision {
  margin-top: 15px;
}

.validation-decision {
  padding: 14px;
  border-radius: 14px;
  background: rgba(28, 111, 232, 0.09);
}

.validation-decision .detail-copy {
  color: #17385a;
  font-weight: 700;
}

.context-section {
  background: rgba(240, 245, 251, 0.84);
  box-shadow: none;
}

.context-detail,
.context-limitations {
  background: rgba(255, 255, 255, 0.58);
}

.context-limitations {
  margin-top: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@media (max-width: 880px) {
  .summary-primary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .summary-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .summary-actions .action-button {
    flex: 1 1 180px;
  }

  .summary-meta {
    flex-wrap: wrap;
  }

  .priority-grid,
  .validation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .report-page .page-shell { padding: 0 0 48px; }

  .report-hero-top {
    flex-direction: column;
    gap: 12px;
  }

  .report-hero-top .language-switcher {
    position: static;
  }

  .summary-card,
  .state-card,
  .report-card {
    padding: 20px;
    border-radius: 22px;
  }

  .report-card.report-card-completed {
    padding: 0;
    border-radius: 0;
  }

  .state-card {
    min-height: 300px;
  }

  .state-content {
    min-height: 240px;
  }

  .summary-chip,
  .state-link,
  .action-button {
    width: 100%;
    justify-content: center;
  }

  .summary-meta .summary-chip-status {
    width: auto;
    justify-content: flex-start;
  }

  .summary-timestamps {
    display: grid;
    flex-basis: 100%;
    width: 100%;
    gap: 5px;
  }

  .report-end-actions {
    padding-right: 0;
    padding-left: 0;
  }

  .summary-timestamp:not(.hidden) + .summary-timestamp:not(.hidden)::before {
    display: none;
  }

  .report-content {
    font-size: 1rem;
    line-height: 1.68;
  }

  .structured-report {
    gap: 22px;
  }

  .report-section,
  .finding-card {
    padding: 20px;
    border-radius: 21px;
  }

  .report-section-heading,
  .finding-header {
    flex-direction: column;
    align-items: stretch;
  }

  .executive-badges {
    justify-content: flex-start;
  }

  .finding-badges {
    justify-content: flex-start;
    max-width: none;
  }

  .executive-grid,
  .finding-interpretation,
  .adoption-columns,
  .adoption-support-grid,
  .unknowns-grid,
  .context-grid {
    grid-template-columns: 1fr;
  }

  .customer-profile-grid,
  .tension-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .customer-profile-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .customer-profile-card-no-image {
    grid-template-columns: 1fr;
  }

  .customer-profile-visual,
  .customer-profile-image,
  .customer-profile-fallback {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .summary-title-skeleton,
  .summary-chip-skeleton,
  .summary-timestamp-skeleton,
  .report-skeleton-line-lg,
  .report-skeleton-line-md,
  .report-skeleton-line-sm {
    width: 100%;
    min-width: 0;
  }

  .archetype-card {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 28rem;
  }

  .archetype-visual {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .report-page .report-layout { width: calc(100% - 44px); }
}

@media (max-width: 420px) {
  .report-page .report-layout { width: calc(100% - 36px); }
}

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

@page {
  margin: 10mm 11mm 11mm;
}

@media print {
  html {
    font-size: 11px;
  }

  body {
    background: #ffffff;
    color: #142f4a;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .report-page {
    background: #ffffff;
  }

  .page-shell {
    overflow: visible;
    padding: 0;
  }

  .report-is-completed .page-shell {
    padding: 0;
  }

  .report-is-completed .report-layout {
    display: block;
    max-width: none;
  }

  .page-backdrop,
  .report-global-shell,
  .report-footer-shell,
  .hero,
  .state-card,
  .summary-actions,
  .report-end-actions,
  .report-section-nav {
    display: none !important;
  }

  .summary-card,
  .report-card {
    box-shadow: none;
  }

  .summary-card {
    position: static;
    display: block;
    margin: 0 0 8px;
    padding: 10px 13px;
    border: 1px solid #b9cfe7;
    border-left: 5px solid #1c6fe8;
    border-radius: 10px;
    background: #eef5ff;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-page .summary-card {
    border-radius: 10px;
  }

  .research-brief {
    margin-bottom: 8px;
    padding: 10px 13px;
    border: 1px solid #b9cfe7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
  }

  .research-brief-heading {
    break-inside: avoid;
    break-after: avoid;
  }

  .research-brief-title {
    margin-bottom: 10px;
    font-size: 12pt;
  }

  .research-brief-fields {
    display: block;
  }

  .research-brief-field + .research-brief-field {
    margin-top: 9px;
  }

  .research-brief-label {
    margin-bottom: 3px;
    font-size: 7.5pt;
    break-after: avoid;
  }

  .research-brief-value {
    max-width: none;
    font-size: 8.5pt;
    line-height: 1.5;
    orphans: 3;
    widows: 3;
  }

  .summary-primary-row {
    display: block;
    margin-top: 0;
  }

  .summary-screen-only {
    display: none !important;
  }

  .summary-print-only {
    display: inline !important;
  }

  .report-is-completed .summary-card {
    margin-bottom: 8px;
    padding: 10px 13px;
  }

  .summary-copy h2 {
    margin-top: 2px;
    font-size: 15pt;
  }

  .summary-card .eyebrow {
    font-size: 6.6pt;
  }

  .summary-meta {
    display: flex;
    align-items: center;
    margin-top: 6px;
    gap: 7px;
  }

  .summary-chip,
  .report-is-completed .summary-chip {
    min-height: 0;
    width: auto;
    padding: 3px 7px;
    border: 1px solid currentColor;
    font-size: 7pt;
    line-height: 1.2;
  }

  .summary-timestamps {
    display: flex;
    flex: 1 1 auto;
    width: auto;
    gap: 0;
    color: #405f7c;
    font-size: 7.2pt;
    line-height: 1.3;
  }

  #summary-available-until {
    color: #405f7c;
    font-weight: 650;
  }

  .summary-timestamp:not(.hidden) + .summary-timestamp:not(.hidden)::before {
    display: block;
  }

  .report-card {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: #ffffff;
  }

  .report-is-completed .report-card {
    margin-top: 0;
  }

  .report-content {
    padding-top: 0;
    font-size: 8.2pt;
    line-height: 1.34;
  }

  .structured-report {
    gap: 10px;
  }

  .report-section {
    overflow: visible;
    padding: 11px;
    border: 1px solid #cbd9e7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: none;
    color: #142f4a;
    break-inside: auto;
    page-break-inside: auto;
  }

  .key-findings-section,
  .unknowns-section {
    padding: 0;
    border: 0;
    background: #ffffff;
    box-shadow: none;
    color: #142f4a;
  }

  .executive-summary {
    padding: 12px;
    border-color: #174d87;
    border-radius: 10px;
    background: linear-gradient(145deg, #153b63 0%, #0f56be 100%);
    color: #ffffff;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-section-heading {
    display: flex;
    margin-bottom: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: avoid;
    page-break-after: avoid;
  }

  .section-eyebrow,
  .finding-number,
  .detail-label,
  .customer-profile-label,
  .validation-number {
    font-size: 6.4pt;
  }

  .section-title {
    margin-top: 2px;
    font-size: 13.2pt;
    line-height: 1.12;
  }

  .executive-summary .section-title,
  .executive-summary .insight-value,
  .tension-title,
  .tension-card .detail-copy,
  .continue-if-card .detail-copy {
    color: #ffffff;
  }

  .executive-summary .section-eyebrow,
  .executive-summary .insight-label,
  .tension-card .detail-label,
  .continue-if-card .detail-label {
    color: #d9ebff;
  }

  .executive-grid,
  .adoption-columns,
  .adoption-support-grid,
  .unknowns-grid,
  .context-grid,
  .customer-profile-grid,
  .tension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .executive-insight {
    padding: 7px 8px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
  }

  .executive-insight[data-tone="next"] {
    background: rgba(255, 255, 255, 0.17);
  }

  .insight-value {
    margin-top: 3px;
    font-size: 8pt;
    line-height: 1.3;
  }

  .signal-badge,
  .quick-meta-chip,
  .finding-badge {
    min-height: 0;
    padding: 3px 6px;
    border: 1px solid rgba(23, 56, 90, 0.28);
    font-size: 6.6pt;
  }

  .executive-summary .signal-badge {
    border-color: #a8d8c9;
    background: #d9f5ea;
    color: #0d493c;
  }

  .executive-summary .signal-badge[data-signal="promising_conditional"] {
    border-color: #e4c677;
    background: #fff0c8;
    color: #69440a;
  }

  .executive-summary .quick-meta-chip {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
  }

  .finding-list {
    gap: 8px;
  }

  .finding-card {
    padding: 10px;
    border: 1px solid #c8d8e8;
    border-radius: 9px;
    background: #f8fbff;
    box-shadow: none;
    break-inside: auto;
    page-break-inside: auto;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .finding-header {
    gap: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
    break-after: avoid;
    page-break-after: avoid;
  }

  .finding-title {
    margin-top: 3px;
    font-size: 10.6pt;
  }

  .finding-badges {
    gap: 4px;
    max-width: 38%;
  }

  .finding-evidence {
    margin-top: 7px;
    padding: 7px 9px;
    border-left-color: #4d88d4;
    border-radius: 0 7px 7px 0;
    background: #eaf3ff;
  }

  .finding-interpretation {
    gap: 7px;
    margin-top: 7px;
  }

  .finding-meaning,
  .finding-implication {
    padding: 7px 9px;
    border-radius: 7px;
    background: #f0f4f8;
  }

  .finding-implication {
    background: #e6f0fd;
  }

  .finding-uncertainty {
    margin-top: 7px;
    padding: 6px 8px;
    border-radius: 7px;
    background: #fff8e8;
  }

  .detail-copy {
    margin-top: 3px;
    line-height: 1.34;
  }

  .adoption-section {
    background: #edf5ff;
  }

  .adoption-list-panel,
  .adoption-support-card,
  .uncertainty-panel,
  .context-detail,
  .context-limitations {
    padding: 8px;
    border-radius: 8px;
  }

  .adoption-list-panel,
  .adoption-support-card,
  .customer-profile-card,
  .priority-column,
  .uncertainty-panel,
  .context-detail,
  .context-limitations {
    border: 1px solid #d1deea;
    background: #ffffff;
    box-shadow: none;
  }

  .adoption-barriers {
    border-top: 3px solid #c23b4a;
  }

  .adoption-alternatives {
    border-top: 3px solid #1c6fe8;
  }

  .insight-list {
    gap: 5px;
    margin-top: 7px;
  }

  .insight-list-item {
    padding-left: 13px;
    line-height: 1.36;
  }

  .insight-list-item::before {
    top: 0.52em;
    width: 4px;
    height: 4px;
  }

  .adoption-support-grid {
    margin-top: 7px;
  }

  .customer-profile-card {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .customer-profile-card-no-image {
    grid-template-columns: 1fr;
  }

  .customer-profile-visual,
  .customer-profile-image,
  .customer-profile-fallback {
    width: 36px;
    height: 36px;
    border-radius: 0;
  }

  .customer-profile-title {
    margin-top: 3px;
    font-size: 9pt;
  }

  .customer-profile-perspective {
    margin-top: 4px;
    line-height: 1.34;
  }

  .tension-area {
    margin-top: 9px;
    padding-top: 8px;
  }

  .tension-grid {
    margin-top: 6px;
  }

  .tension-card {
    padding: 8px;
    border: 1px solid #17385a;
    border-radius: 8px;
    background: #17385a;
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .tension-title {
    font-size: 8.6pt;
  }

  .product-implications-section {
    background: #e9f2fd;
  }

  .priority-grid {
    display: block;
  }

  .priority-column + .priority-column {
    margin-top: 7px;
  }

  .priority-column {
    padding: 8px;
    border-radius: 8px;
  }

  .priority-column[data-priority="now"] {
    border-top: 4px solid #1c6fe8;
  }

  .priority-column[data-priority="next"] {
    border-top: 4px solid #75a5e7;
    background: #f6f9fd;
  }

  .priority-column[data-priority="later"] {
    border-top: 4px solid #a9b8c7;
    background: #f6f7f8;
  }

  .priority-items {
    gap: 6px;
    margin-top: 6px;
  }

  .priority-card {
    padding-top: 6px;
  }

  .priority-action {
    line-height: 1.32;
  }

  .priority-evidence {
    margin-top: 4px;
  }

  .priority-evidence .detail-copy {
    font-size: 7.5pt;
    line-height: 1.32;
  }

  .unknown-panel {
    background: #e8f3ff;
  }

  .stop-panel {
    border-color: #efc7cd;
    background: #fff0f2;
  }

  .continue-if-card {
    margin-top: 7px;
    padding: 8px 10px;
    border: 1px solid #17385a;
    border-radius: 8px;
    background: linear-gradient(135deg, #17385a, #205d96);
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .continue-if-card .detail-copy {
    font-size: 8pt;
  }

  .validation-grid {
    display: block;
  }

  .validation-card {
    margin-bottom: 7px;
    padding: 9px;
    border: 1px solid #cbd9e7;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
    break-inside: auto;
    page-break-inside: auto;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .validation-card:last-child {
    margin-bottom: 0;
  }

  .validation-card-title {
    margin-top: 3px;
    font-size: 9.5pt;
  }

  .validation-detail,
  .validation-decision {
    margin-top: 6px;
  }

  .validation-decision {
    padding: 7px;
    border-radius: 7px;
    background: #eaf3ff;
  }

  .context-section {
    background: #f0f5fb;
  }

  .context-limitations {
    margin-top: 7px;
  }

  .finding-evidence,
  .finding-meaning,
  .finding-implication,
  .finding-uncertainty,
  .validation-detail,
  .validation-decision {
    break-inside: auto;
    page-break-inside: auto;
  }

  .executive-insight,
  .adoption-list-panel,
  .adoption-support-card,
  .priority-card,
  .context-detail,
  .context-limitations {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-section-heading,
  .finding-header,
  .section-title,
  .finding-title,
  .customer-profile-title,
  .validation-number,
  .validation-card-title,
  .detail-label,
  .list-panel-title,
  .priority-title,
  .tension-area-title {
    break-after: avoid;
    page-break-after: avoid;
  }

  .report-section,
  .finding-card,
  .validation-card,
  .detail-copy,
  .insight-list-item,
  .priority-action,
  .priority-evidence {
    max-width: 100%;
    overflow: visible;
    overflow-wrap: anywhere;
  }
}
