:root {
  color-scheme: light;
  --navy: #07111F;
  --navy-soft: #0B1B2E;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;
  --text: #0F172A;
  --muted: #64748B;
  --line: #D8E0EA;
  --teal: #00BFA6;
  --blue: #2563EB;
  --gold: #C89B3C;
  --critical: #DC2626;
  --warning: #F59E0B;
  --success: #16A34A;
  --ink: var(--text);
  --surface-alt: var(--surface-soft);
  --accent: var(--teal);
  --accent-deep: #007a78;
  --warn: var(--warning);
  --danger: var(--critical);
  --ok: var(--success);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --text: #edf7f4;
  --ink: #edf7f4;
  --muted: #a9bbb7;
  --line: #28403d;
  --surface: #10211f;
  --surface-soft: #0a1514;
  --surface-alt: #0a1514;
  --accent: #00bfa6;
  --accent-deep: #92fff0;
  --warn: #f0b45c;
  --danger: #ff7b7b;
  --ok: #72d99b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--surface-alt);
}

:root[data-theme="dark"] body {
  background: var(--surface-alt);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(280px, 344px) minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #07111f;
  border: 2px solid rgba(0, 191, 166, 0.65);
  box-shadow: var(--shadow);
}

.brand-mark span {
  width: 30px;
  height: 34px;
  border-radius: 4px;
  background:
    linear-gradient(var(--surface), var(--surface)) 7px 9px / 16px 2px no-repeat,
    linear-gradient(var(--surface), var(--surface)) 7px 16px / 16px 2px no-repeat,
    linear-gradient(var(--surface), var(--surface)) 7px 23px / 11px 2px no-repeat,
    rgba(255, 255, 255, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 6px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.control-panel {
  display: grid;
  gap: 10px;
}

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

.split-controls label {
  display: grid;
  gap: 6px;
}

.field-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

input[type="text"],
input[type="file"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

input[type="text"] {
  min-height: 42px;
  padding: 10px 12px;
}

select {
  min-height: 42px;
  padding: 10px 36px 10px 12px;
}

input[type="file"] {
  padding: 10px;
  min-height: 44px;
}

textarea {
  min-height: 240px;
  resize: vertical;
  padding: 14px;
  line-height: 1.52;
}

.button-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.button-row.compact {
  justify-content: flex-end;
  margin-top: 0;
}

.primary-button,
.secondary-button,
.mini-button,
.danger-button {
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-button,
.secondary-button {
  min-height: 42px;
  padding: 0 14px;
}

.primary-button {
  flex: 1;
  background: var(--accent);
  color: #ffffff;
}

.secondary-button {
  background: #ffffff;
  color: var(--accent-deep);
  border-color: #bad4d2;
}

.mini-button {
  min-height: 32px;
  padding: 0 11px;
  background: #e8f3f1;
  color: var(--accent-deep);
}

.danger-button {
  min-height: 40px;
  color: #8f2424;
  background: #fff0f0;
  border-color: #f2c0c0;
}

.primary-button:hover,
.secondary-button:hover,
.mini-button:hover,
.danger-button:hover {
  transform: translateY(-1px);
}

.drop-zone {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 14px;
  place-items: center;
  text-align: center;
  border: 1px dashed #93bbb7;
  border-radius: 8px;
  color: var(--accent-deep);
  background: #f0faf8;
}

.upload-intro {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(0, 122, 120, 0.18);
  border-radius: 8px;
  color: var(--accent-deep);
  background: rgba(0, 122, 120, 0.08);
}

.upload-intro span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.drop-zone.dragging {
  border-color: var(--accent);
  background: #dcf4ee;
}

.drop-zone span {
  color: var(--muted);
  font-size: 0.82rem;
}

.progress-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf9;
}

.progress-bar {
  --progress: 0;
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--progress) * 1%);
  background: linear-gradient(90deg, rgba(0, 122, 120, 0.18), rgba(98, 185, 112, 0.28));
  transition: width 180ms ease;
}

.progress-shell span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.source-card {
  margin-top: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.source-title {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 850;
}

.source-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.workspace {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.top-strip,
.action-bar,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.top-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.score-lockup {
  display: flex;
  gap: 18px;
  align-items: center;
}

.score-gauge {
  --score: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 55%, transparent 56%),
    conic-gradient(var(--score-color, var(--accent)) calc(var(--score) * 1%), #e4eceb 0);
  border: 1px solid #dbe5e4;
}

.score-gauge span {
  color: var(--ink);
  font-size: 1.82rem;
  font-weight: 900;
}

#scoreSummary {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
}

.metric {
  min-height: 82px;
  padding: 14px;
  border: 1px solid #dce6e4;
  border-radius: 8px;
  background: #f7faf9;
}

.metric span {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
}

.metric small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.action-bar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
}

.status-pill,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--accent-deep);
  background: #e8f3f1;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.badge.warn {
  color: #6d3c00;
  background: #fff2db;
}

.badge.danger {
  color: #7a2020;
  background: #fde8e8;
}

.badge.ok {
  color: #165c39;
  background: #e2f5ea;
}

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

.panel {
  min-width: 0;
  padding: 18px;
}

.panel.span-2 {
  grid-column: span 2;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

td {
  color: var(--ink);
  font-size: 0.9rem;
}

.severity {
  display: inline-flex;
  min-width: 74px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.severity.critical {
  color: #7a2020;
  background: #fde8e8;
}

.severity.warning {
  color: #6d3c00;
  background: #fff2db;
}

.severity.review {
  color: #31566d;
  background: #e8f0f5;
}

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

.issue-list li:not(.empty-state) {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--warn);
  border-radius: 8px;
  background: #fffdf8;
}

.issue-list strong {
  font-size: 0.92rem;
}

.issue-list span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
}

.empty-state {
  color: var(--muted);
  font-style: italic;
}

.handover {
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.48;
}

.radar-grid,
.answer-grid,
.pricing-stack,
.calendar-grid,
.mapper-grid,
.roi-grid,
.glossary-grid,
.questionnaire-grid {
  display: grid;
  gap: 12px;
}

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

.questionnaire-grid div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.questionnaire-grid span,
td small {
  color: var(--muted);
  line-height: 1.35;
}

.rule-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.rule-summary h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
}

.rule-summary a {
  color: var(--accent-deep);
  font-weight: 850;
  text-decoration: none;
}

.radar-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.radar-card {
  min-height: 128px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.radar-card.active {
  border-color: rgba(0, 122, 120, 0.7);
  background: #eff8f6;
}

.radar-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.radar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warn);
}

.radar-dot.live {
  background: var(--ok);
}

.radar-card p {
  margin: 10px 0 8px;
  font-size: 0.86rem;
  line-height: 1.28;
}

.radar-card small {
  color: var(--muted);
  font-weight: 750;
}

.answer-card,
.privacy-mode,
.price-card,
.mini-proof,
.calendar-card,
.mapper-row,
.roi-card,
.glossary-card {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.answer-card strong,
.privacy-mode strong,
.price-card strong,
.mini-proof strong,
.calendar-card strong,
.roi-card strong,
.glossary-card strong {
  display: block;
  margin-bottom: 6px;
}

.answer-card p,
.privacy-mode p,
.price-card p,
.mini-proof p,
.calendar-card p,
.roi-card p,
.glossary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.privacy-mode span,
.price-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.price-card {
  border-color: rgba(0, 122, 120, 0.38);
  background: #f2fbf8;
}

.price-card small {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
}

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

.calendar-card {
  min-height: 118px;
}

.calendar-card small,
.mapper-row small,
.roi-card small {
  color: var(--muted);
  font-weight: 800;
}

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

.mapper-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(180px, 1fr);
  gap: 10px;
  align-items: center;
}

.mapper-row strong {
  font-size: 0.88rem;
}

.mapper-row select {
  min-height: 36px;
}

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

.roi-card strong {
  font-size: 1.25rem;
}

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

.glossary-card {
  min-height: 88px;
}

:root[data-theme="dark"] input[type="text"],
:root[data-theme="dark"] input[type="file"],
:root[data-theme="dark"] select,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] .top-strip,
:root[data-theme="dark"] .action-bar,
:root[data-theme="dark"] .panel,
:root[data-theme="dark"] .sidebar {
  background: rgba(16, 33, 31, 0.94);
}

:root[data-theme="dark"] .metric,
:root[data-theme="dark"] .source-card,
:root[data-theme="dark"] .rule-summary,
:root[data-theme="dark"] .radar-card,
:root[data-theme="dark"] .answer-card,
:root[data-theme="dark"] .privacy-mode,
:root[data-theme="dark"] .price-card,
:root[data-theme="dark"] .mini-proof,
:root[data-theme="dark"] .calendar-card,
:root[data-theme="dark"] .mapper-row,
:root[data-theme="dark"] .roi-card,
:root[data-theme="dark"] .glossary-card,
:root[data-theme="dark"] .drop-zone,
:root[data-theme="dark"] .progress-shell {
  background: #10211f;
}

.handover h4 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.95rem;
}

.handover p,
.handover ul {
  margin: 0;
}

.handover ul {
  padding-left: 18px;
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .top-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .sidebar,
  .workspace {
    padding: 18px;
  }

  .score-lockup,
  .action-bar,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row.compact {
    width: 100%;
  }

  .summary-grid,
  .report-grid,
  .calendar-grid,
  .mapper-grid,
  .roi-grid,
  .glossary-grid {
    grid-template-columns: 1fr;
  }

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

  .panel.span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .radar-cards {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .sidebar,
  .action-bar,
  .mini-button {
    display: none !important;
  }

  .app-shell,
  .workspace,
  .report-grid {
    display: block;
  }

  .workspace {
    padding: 0;
  }

  .top-strip,
  .panel {
    break-inside: avoid;
    box-shadow: none;
    margin-bottom: 14px;
  }
}

/* Review layout: guided workflow */
.product-shell {
  display: grid;
  gap: 18px;
  width: min(1480px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 32px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.header-copy {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.header-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
  min-width: min(340px, 100%);
}

.header-controls label {
  display: grid;
  gap: 6px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.workflow-steps a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #bad4d2;
  border-radius: 8px;
  background: #ffffff;
  color: var(--accent-deep);
  font-weight: 850;
  text-decoration: none;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  padding: 26px;
  border-radius: 8px;
  color: #edf7f4;
  background: linear-gradient(135deg, #07111f, #102a34);
  box-shadow: var(--shadow);
}

.launch-hero h2 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  color: #ffffff;
}

.launch-hero p {
  max-width: 760px;
  color: #bed6d2;
  font-size: 1.06rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.primary-link {
  color: #07111f;
  background: #00bfa6;
}

.secondary-link {
  color: #d7fffa;
  border: 1px solid rgba(215, 255, 250, 0.35);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span,
.status-chip {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.1);
}

.hero-report {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-report strong {
  font-size: 1.8rem;
  color: #ffffff;
}

.hero-report ul {
  margin: 0;
  padding-left: 18px;
  color: #bed6d2;
  line-height: 1.45;
}

.status-chip.blocked {
  color: #fff4f4;
  background: rgba(220, 38, 38, 0.28);
}

.deadline-cockpit {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.deadline-cockpit article {
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: var(--shadow);
}

.deadline-cockpit small {
  color: #75541b;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.deadline-cockpit strong {
  color: #07111f;
  font-size: 1.25rem;
  line-height: 1.1;
}

.deadline-cockpit span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

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

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

.commercial-grid article,
.country-pack-strip,
.module-strip,
.pricing-strip {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.blocker-grid,
.country-pack-strip,
.module-strip,
.pricing-strip {
  display: grid;
  gap: 10px;
}

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

.blocker-grid span,
.country-pack-strip div,
.module-strip div,
.pricing-strip article,
.fix-impact-item,
.partner-dashboard div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.blocker-grid.detailed span {
  display: grid;
  gap: 6px;
  align-content: start;
  min-height: 104px;
}

.blocker-grid.detailed small {
  color: var(--muted);
  line-height: 1.35;
}

.privacy-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.privacy-flow span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07111f;
  background: #d9f8f2;
  font-weight: 850;
  text-align: center;
}

.country-pack-strip,
.module-strip,
.source-system-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.country-pack-strip strong,
.module-strip strong,
.pricing-strip strong {
  display: block;
  margin-bottom: 6px;
}

.country-pack-strip span,
.module-strip span,
.pricing-strip p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.module-strip .primary-module {
  border-color: rgba(0, 191, 166, 0.55);
  background: #e8fbf7;
}

.source-system-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.source-system-strip span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--accent-deep);
  background: #e8f3f1;
  font-size: 0.82rem;
  font-weight: 850;
}

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

.buyer-paths article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.buyer-paths small {
  color: var(--accent-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.buyer-paths h3 {
  margin: 7px 0 8px;
  font-size: 1rem;
}

.buyer-paths p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.scope-grid label {
  display: grid;
  gap: 6px;
}

.onboarding-status {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 10px;
  border-radius: 999px;
  padding: 0 12px;
  color: #6d3c00;
  background: #fff2db;
  font-weight: 850;
}

.onboarding-status.ready {
  color: #165c39;
  background: #e2f5ea;
}

.onboarding-status.blocked {
  color: #7a2020;
  background: #fde8e8;
}

.fix-impact-list,
.partner-dashboard {
  display: grid;
  gap: 10px;
}

.fix-impact-item strong {
  display: block;
  margin-bottom: 4px;
}

.fix-impact-item span,
.partner-dashboard span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.pricing-strip span {
  display: block;
  color: var(--accent-deep);
  font-size: 1.2rem;
  font-weight: 900;
}

.setup-column {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 14px;
}

.setup-card {
  display: grid;
  gap: 11px;
}

.section-heading h2 {
  margin: 0 0 6px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.compact-details {
  display: grid;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact-details summary {
  cursor: pointer;
  color: var(--accent-deep);
  font-weight: 850;
}

.compact-details[open] {
  gap: 10px;
}

.compact-details[open] summary {
  margin-bottom: 10px;
}

.compact-details label,
.upload-block {
  display: grid;
  gap: 10px;
}

.privacy-note {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.privacy-note p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.results-column {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.next-action-panel {
  padding: 18px;
  border: 1px solid rgba(0, 122, 120, 0.3);
  border-radius: 8px;
  background: #f4fbf9;
  box-shadow: var(--shadow);
}

.next-action-panel .panel-header {
  margin-bottom: 12px;
}

.quick-grid,
.two-column-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.report-section {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-section summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.report-section summary::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 900;
}

.report-section[open] summary::before {
  content: "-";
}

.report-section > :not(summary) {
  margin: 0 18px 18px;
}

.advanced-grid {
  display: grid;
  gap: 18px;
}

.advanced-grid article {
  min-width: 0;
}

.advanced-grid h3 {
  margin-bottom: 10px;
}

.report-section .table-wrap {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .review-layout {
    grid-template-columns: 1fr;
  }

  .setup-column {
    position: static;
  }

  .launch-hero,
  .deadline-cockpit,
  .live-cockpit,
  .commercial-grid,
  .buyer-paths,
  .country-pack-strip,
  .module-strip,
  .pricing-strip {
    grid-template-columns: 1fr;
  }

  .blocker-grid,
  .privacy-flow,
  .questionnaire-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .product-header,
  .header-controls,
  .workflow-steps,
  .quick-grid,
  .two-column-details,
  .scope-grid,
  .questionnaire-grid {
    grid-template-columns: 1fr;
  }

  .product-header {
    display: grid;
  }
}

@media (max-width: 560px) {
  .product-shell {
    width: min(100% - 20px, 1480px);
    padding-top: 10px;
  }

  .report-section summary,
  .action-bar {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }
}

:root[data-theme="dark"] .product-header,
:root[data-theme="dark"] .report-section,
:root[data-theme="dark"] .workflow-steps a,
:root[data-theme="dark"] .next-action-panel,
:root[data-theme="dark"] .privacy-note,
:root[data-theme="dark"] .commercial-grid article,
:root[data-theme="dark"] .buyer-paths article,
:root[data-theme="dark"] .country-pack-strip,
:root[data-theme="dark"] .module-strip,
:root[data-theme="dark"] .source-system-strip,
:root[data-theme="dark"] .pricing-strip,
:root[data-theme="dark"] .blocker-grid span,
:root[data-theme="dark"] .country-pack-strip div,
:root[data-theme="dark"] .module-strip div,
:root[data-theme="dark"] .pricing-strip article,
:root[data-theme="dark"] .fix-impact-item,
:root[data-theme="dark"] .partner-dashboard div,
:root[data-theme="dark"] .questionnaire-grid div {
  background: rgba(16, 33, 31, 0.94);
}

:root[data-theme="dark"] .deadline-cockpit article {
  background: rgba(35, 28, 13, 0.94);
  border-color: rgba(200, 155, 60, 0.35);
}

:root[data-theme="dark"] .deadline-cockpit strong {
  color: #fff7dd;
}

:root[data-theme="dark"] .deadline-cockpit small {
  color: #f2d17d;
}

:root[data-theme="dark"] .module-strip .primary-module {
  background: rgba(0, 191, 166, 0.14);
}

:root[data-theme="dark"] .upload-intro {
  background: rgba(31, 213, 194, 0.1);
  border-color: rgba(31, 213, 194, 0.22);
}

/* Premium split layout */
.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 260px);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 12px 0;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(16px);
}

.site-footer {
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-brand {
  display: inline-grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.site-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.site-brand strong {
  display: block;
  line-height: 1.1;
}

.site-brand small {
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.quiet-controls {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.quiet-controls .field-label {
  font-size: 0.7rem;
}

.quiet-controls select {
  min-height: 34px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  min-height: 640px;
  padding: 52px;
  border-radius: 8px;
  color: #eef8ff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: grid;
  align-content: center;
}

.premium-hero .eyebrow,
.final-cta .eyebrow {
  color: #7df4e6;
}

.premium-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 5.8rem);
  line-height: 0.96;
}

.premium-hero p {
  max-width: 680px;
  color: #bfd0df;
  font-size: 1.12rem;
  line-height: 1.55;
}

.primary-link,
.secondary-link {
  border: 0;
}

.premium-hero .primary-link,
.final-cta .primary-link {
  color: var(--navy);
  background: var(--teal);
}

.premium-hero .secondary-link,
.final-cta .secondary-link {
  color: #e7fbff;
  border-color: rgba(231, 251, 255, 0.32);
}

.trust-line {
  color: #a8bac8;
  font-weight: 800;
  line-height: 1.5;
}

.hero-report-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(216, 224, 234, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-report-card small,
.hero-report-card span {
  color: #b7cad8;
  font-weight: 800;
}

.report-status {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-left: 4px solid var(--critical);
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.14);
}

.report-status strong {
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
}

.hero-report-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.hero-report-card dl div,
.top-blocker-card,
.fastest-fix {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(216, 224, 234, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-report-card dt {
  color: #b7cad8;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-report-card dd {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
}

.top-blocker-card strong,
.fastest-fix strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.landing-section {
  padding: 76px 0 0;
}

.section-kicker {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-kicker h2,
.scanner-heading h2,
.final-cta h2 {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.blocker-card-grid,
.buyer-card-grid,
.report-preview-grid,
.pricing-cards {
  display: grid;
  gap: 14px;
}

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

.buyer-card-grid,
.report-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.blocker-card-grid article,
.buyer-card-grid article,
.report-preview-grid article,
.pricing-cards article,
.scanner-card,
.scanner-heading,
.wizard-panel,
.report-cover {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.blocker-card-grid article,
.buyer-card-grid article,
.report-preview-grid article,
.pricing-cards article {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 180px;
  padding: 20px;
}

.blocker-card-grid h3,
.buyer-card-grid h3,
.report-preview-grid h3 {
  font-size: 1.08rem;
}

.blocker-card-grid p,
.report-preview-grid p,
.pricing-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.blocker-card-grid span,
.blocker-card-grid small,
.buyer-card-grid small,
.pricing-cards small {
  color: var(--accent-deep);
  font-weight: 850;
}

.report-preview-grid article > span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(0, 191, 166, 0.2);
  font-weight: 900;
}

.report-preview-grid table {
  margin-top: 6px;
  font-size: 0.86rem;
}

.privacy-architecture {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-architecture span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 191, 166, 0.24);
  border-radius: 8px;
  background: rgba(0, 191, 166, 0.08);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.featured-price {
  border-color: rgba(0, 191, 166, 0.5) !important;
  background: #f0fffb !important;
}

.pricing-cards strong {
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1.15;
}

.final-cta {
  display: grid;
  gap: 20px;
  margin: 76px 0;
  padding: 42px;
  border-radius: 8px;
  background: var(--navy-soft);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
}

.page-stack {
  display: grid;
  gap: 0;
}

.page-hero {
  display: grid;
  align-content: center;
  min-height: 460px;
  padding: 52px;
  border-radius: 8px;
  color: #eef8ff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.compact-page-hero {
  min-height: 360px;
}

.page-hero .eyebrow {
  color: #7df4e6;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  color: #bfd0df;
  font-size: 1.12rem;
  line-height: 1.55;
}

.page-hero .secondary-link {
  color: #e7fbff;
  border-color: rgba(231, 251, 255, 0.32);
}

.supporting-copy {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.process-strip span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface-soft);
  font-weight: 900;
  text-align: center;
}

.scanner-shell {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f6fa;
}

.scanner-heading {
  padding: 22px;
}

.scanner-heading h1 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.scanner-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.scan-page-shell {
  margin-top: 24px;
}

.scan-app-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 250px;
  gap: 16px;
  align-items: start;
}

.scan-app-layout .wizard-steps {
  position: sticky;
  top: 96px;
  grid-template-columns: 1fr;
}

.scan-app-layout .wizard-step {
  justify-content: flex-start;
  padding: 0 14px;
  text-align: left;
}

.scan-workspace-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.scan-side-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}

.scan-side-panel article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.scan-side-panel small {
  color: var(--accent-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.scan-side-panel strong {
  color: var(--text);
  font-size: 1.05rem;
}

.scan-side-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.wizard-step {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
  font-weight: 850;
}

.wizard-step.active {
  color: var(--navy);
  background: var(--teal);
  border-color: var(--teal);
}

.wizard-panel {
  display: none;
  padding: 22px;
}

.wizard-panel.active {
  display: grid;
  gap: 18px;
}

.scanner-card {
  padding: 0;
}

.scanner-card .wizard-panel {
  border: 0;
  box-shadow: none;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.upload-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.upload-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.upload-card.required {
  border-color: rgba(0, 191, 166, 0.52);
  background: #effffb;
}

.upload-card small {
  color: var(--accent-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.upload-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.mapping-preview {
  display: grid;
  gap: 10px;
}

.mapping-preview div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(160px, 1.2fr) 70px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.mapping-preview small {
  color: var(--success);
  font-weight: 900;
  text-align: right;
}

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

.scan-progress-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 800;
}

.pre-scan-prompt {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 28px;
  border: 1px solid rgba(0, 191, 166, 0.28);
  border-radius: 8px;
  background: #f1fffb;
}

.pre-scan-prompt p {
  margin: 0;
  color: var(--muted);
}

.scan-results-content {
  display: grid;
  gap: 16px;
}

.report-cover {
  padding: 24px;
  border-top: 5px solid var(--critical);
}

.report-cover h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.hidden-support-panels[hidden],
[hidden] {
  display: none !important;
}

.subtle-export {
  opacity: 0.72;
}

.static-report {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.report-document-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
}

.report-document-cover h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.report-document-cover p:last-child {
  margin: 0;
  color: #bfd0df;
}

.report-stamp {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.18);
  color: #ffffff;
  font-weight: 950;
}

.report-stat-grid,
.responsibility-grid,
.privacy-proof-grid,
.partner-dashboard-preview {
  display: grid;
  gap: 12px;
}

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

.report-stat-grid article,
.responsibility-grid article,
.privacy-proof-grid article,
.partner-dashboard-preview article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.report-stat-grid small,
.responsibility-grid small,
.partner-dashboard-preview small {
  color: var(--accent-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.report-stat-grid strong,
.partner-dashboard-preview strong {
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.15;
}

.report-block {
  display: grid;
  gap: 14px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

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

.split-report-block article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.split-report-block p,
.email-paper p,
.privacy-proof-grid p,
.partner-dashboard-preview span {
  color: var(--muted);
  line-height: 1.55;
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.responsibility-grid,
.privacy-proof-grid,
.partner-dashboard-preview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.email-paper {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.pricing-table-section {
  padding-top: 32px;
}

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

.pricing-table article {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 440px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-table small {
  color: var(--accent-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-table h2 {
  margin: 8px 0;
  color: var(--text);
  font-size: 2rem;
}

.pricing-table p {
  color: var(--muted);
  line-height: 1.5;
}

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

.privacy-architecture-large span {
  min-height: 110px;
}

@media print {
  .site-header,
  .premium-hero,
  .landing-section,
  .final-cta,
  .wizard-steps,
  .scanner-heading,
  .scanner-card,
  .export-panel,
  .pre-scan-prompt {
    display: none !important;
  }

  .site-shell,
  .scanner-shell,
  .wizard-panel,
  .scan-results-content {
    display: block !important;
    width: 100%;
    padding: 0;
    background: #ffffff;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .site-header,
  .premium-hero,
  .blocker-card-grid,
  .buyer-card-grid,
  .report-preview-grid,
  .pricing-cards,
  .privacy-architecture,
  .process-strip,
  .scan-app-layout,
  .report-stat-grid,
  .responsibility-grid,
  .privacy-proof-grid,
  .partner-dashboard-preview,
  .pricing-table,
  .split-report-block,
  .upload-cards,
  .scan-progress-list {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .premium-hero {
    min-height: auto;
    padding: 32px;
  }

  .page-hero {
    min-height: auto;
    padding: 32px;
  }

  .scan-app-layout .wizard-steps,
  .scan-side-panel {
    position: static;
  }

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

  .scan-app-layout .wizard-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .quiet-controls {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    padding: 24px;
  }

  .premium-hero h1,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-report-card dl,
  .mapping-preview div,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .wizard-steps {
    grid-template-columns: 1fr;
  }

  .scan-app-layout .wizard-steps {
    grid-template-columns: 1fr;
  }

  .report-document-cover {
    grid-template-columns: 1fr;
  }
}

:root[data-theme="dark"] .site-header {
  background: rgba(10, 21, 20, 0.96);
}

:root[data-theme="dark"] .premium-hero,
:root[data-theme="dark"] .final-cta {
  background: #07111f;
}

:root[data-theme="dark"] .blocker-card-grid article,
:root[data-theme="dark"] .buyer-card-grid article,
:root[data-theme="dark"] .report-preview-grid article,
:root[data-theme="dark"] .pricing-cards article,
:root[data-theme="dark"] .scanner-card,
:root[data-theme="dark"] .scanner-heading,
:root[data-theme="dark"] .wizard-panel,
:root[data-theme="dark"] .report-cover,
:root[data-theme="dark"] .static-report,
:root[data-theme="dark"] .report-stat-grid article,
:root[data-theme="dark"] .responsibility-grid article,
:root[data-theme="dark"] .privacy-proof-grid article,
:root[data-theme="dark"] .partner-dashboard-preview article,
:root[data-theme="dark"] .pricing-table article,
:root[data-theme="dark"] .split-report-block article,
:root[data-theme="dark"] .email-paper,
:root[data-theme="dark"] .scan-side-panel article,
:root[data-theme="dark"] .process-strip,
:root[data-theme="dark"] .process-strip span,
:root[data-theme="dark"] .privacy-architecture,
:root[data-theme="dark"] .upload-card,
:root[data-theme="dark"] .scan-progress-list span,
:root[data-theme="dark"] .mapping-preview div {
  background: #10211f;
}

:root[data-theme="dark"] .featured-price,
:root[data-theme="dark"] .pre-scan-prompt,
:root[data-theme="dark"] .upload-card.required {
  background: rgba(0, 191, 166, 0.12) !important;
}

:root[data-theme="dark"] .scanner-shell {
  background: #0a1514;
}
