:root {
  --bg: #f5f6f3;
  --surface: #ffffff;
  --ink: #20231f;
  --muted: #62675f;
  --line: #d8ddd3;
  --accent: #2f6f5e;
  --accent-strong: #245447;
  --amber: #9b6b16;
  --danger: #9f2d2d;
  --soft-green: #e4efe9;
  --soft-amber: #fff4d7;
  --soft-red: #f9e5e3;
  --shadow: 0 18px 40px rgba(32, 35, 31, 0.08);
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.public-page {
  padding-block: 2rem 4rem;
}

.landing-hero {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.landing-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.landing-hero p {
  max-width: 680px;
  font-size: 1.12rem;
  color: var(--muted);
}

.launch-panel,
.pricing-card,
.panel,
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.loop-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.loop-list li {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8faf6;
  font-weight: 800;
}

.page-section {
  width: min(1180px, calc(100vw - 32px));
  margin: 2rem auto 0;
}

.feature-grid,
.pricing-grid,
.card-grid,
.two-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  border-top: 2px solid var(--accent);
  padding-top: 0.8rem;
}

.pricing-grid {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.price-line {
  font-size: 2rem;
  font-weight: 900;
  margin: 0.2rem 0 1rem;
}

.form-panel {
  display: grid;
  gap: 1rem;
  max-width: 680px;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

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

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.75rem 0.85rem;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  color: var(--muted);
  font-weight: 650;
}

.hidden {
  display: none !important;
}

.loading-screen,
.auth-layout,
.page {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.loading-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem max(1rem, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(245, 246, 243, 0.95);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.brand small,
.small-note {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button,
.submit-button,
.flag-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.68rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.primary-button {
  background: var(--accent);
  color: #fff;
}

.primary-button:hover,
.submit-button:hover {
  background: var(--accent-strong);
}

.secondary-button {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.ghost-button {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.compact-button {
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  margin-left: 0.5rem;
}

.submit-button {
  width: 100%;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.submit-button.inline {
  width: auto;
  border: 0;
}

.flag-button {
  background: var(--soft-amber);
  color: var(--amber);
  border-color: #edcf86;
}

.flag-button.active {
  background: #f2c462;
  color: #3b2a00;
}

.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.auth-intro h1,
.page-heading h1,
.setup-panel h1,
.review-panel h1,
.confirmation-panel h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.auth-intro p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.auth-panel,
.setup-panel,
.review-panel,
.confirmation-panel,
.table-section,
.loading-panel,
.error-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.auth-panel {
  padding: 1.1rem;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.tab-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 0.65rem;
  cursor: pointer;
}

.tab-button.active {
  background: var(--soft-green);
  border-color: var(--accent);
  color: var(--accent-strong);
  font-weight: 700;
}

.auth-form {
  display: grid;
  gap: 0.9rem;
}

.form-message {
  min-height: 1.5rem;
  color: var(--danger);
}

.page {
  padding: 2rem 0 4rem;
}

.page-heading,
.section-heading,
.attempt-head,
.card-footer,
.button-row,
.runner-buttons,
.upload-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-heading {
  margin-bottom: 1.5rem;
}

.section-heading.compact h2,
.section-heading.compact h3 {
  margin: 0;
}

.section-heading.compact span {
  color: var(--muted);
  font-size: 0.85rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  gap: 1.25rem;
}

.readiness-panel {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.readiness-panel h2,
.readiness-panel h3 {
  margin: 0;
}

.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.compact-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  display: grid;
  gap: 0.1rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.compact-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-strip {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 120px auto;
  align-items: end;
  gap: 0.75rem;
  width: min(100%, 620px);
}

.profile-strip small {
  grid-column: 1 / -1;
  color: var(--muted);
}

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

.pack-card {
  display: grid;
  gap: 1rem;
  min-height: 320px;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pack-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.pack-card p {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

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

.metric-grid div {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfa;
}

.metric-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-grid dd {
  margin: 0.15rem 0 0;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: #edf0ea;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.status-pill.in_progress {
  background: var(--soft-amber);
  color: var(--amber);
}

.status-pill.submitted,
.status-pill.submitted_unmarked,
.status-pill.completed,
.status-pill.marked {
  background: var(--soft-green);
  color: var(--accent-strong);
}

.status-pill.review_required {
  background: var(--soft-amber);
  color: var(--amber);
}

.status-pill.near_astar,
.status-pill.astar_ready_on_latest_mock {
  background: var(--soft-amber);
  color: var(--amber);
}

.status-pill.consistent_pure_astar_ready,
.status-pill.a_star_secure,
.status-pill.mastered,
.status-pill.stable {
  background: var(--soft-green);
  color: var(--accent-strong);
}

.status-pill.not_ready,
.status-pill.developing,
.status-pill.risk,
.status-pill.recurring,
.status-pill.active,
.status-pill.locked,
.status-pill.failed {
  background: var(--soft-red);
  color: var(--danger);
}

.status-pill.slight_risk,
.status-pill.unlocked,
.status-pill.next_mock_unlocked,
.status-pill.baseline_completed,
.status-pill.benchmark_ready,
.status-pill.certification_ready,
.status-pill.retake_only,
.status-pill.attempted {
  background: var(--soft-amber);
  color: var(--amber);
}

.status-pill.not_started {
  background: #eef0f4;
}

.table-section {
  padding: 1.1rem;
}

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

.setup-layout,
.review-layout,
.confirmation-layout {
  display: grid;
  place-items: start center;
}

.setup-panel,
.review-panel,
.confirmation-panel {
  width: min(860px, 100%);
  padding: 1.4rem;
}

.instruction-box,
.warning-box,
.notice-box,
.diagram-placeholder {
  margin: 1.1rem 0;
  padding: 1rem;
  border-radius: 8px;
}

.instruction-box,
.notice-box {
  background: var(--soft-green);
  border: 1px solid #b9d6c8;
}

.warning-box {
  background: var(--soft-amber);
  border: 1px solid #edcf86;
  color: #4a3100;
}

.success-box {
  margin: 1.1rem 0;
  padding: 1rem;
  border-radius: 8px;
  background: var(--soft-green);
  border: 1px solid #b9d6c8;
  color: var(--accent-strong);
  font-weight: 800;
}

.repair-complete-summary {
  display: grid;
  gap: 0.35rem;
}

.repair-complete-summary span {
  color: var(--text);
  font-weight: 600;
}

.diagram-placeholder {
  background: #f4f0ea;
  border: 1px dashed #c9bfae;
  color: var(--muted);
}

.diagram-panel {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.diagram-panel img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
}

.attempt-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  width: min(1440px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.attempt-main,
.attempt-sidebar {
  min-width: 0;
}

.attempt-main {
  display: grid;
  gap: 1rem;
}

.attempt-head {
  padding: 0.5rem;
}

.attempt-head h1 {
  margin: 0;
  font-size: 2rem;
}

.save-state {
  min-width: 98px;
  text-align: center;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.question-surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2vw, 2rem);
}

.root-question {
  color: var(--muted);
  margin-bottom: 1rem;
}

.part-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.part-row h2 {
  margin: 0;
  font-size: 1.2rem;
}

.marks-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: #f0f2ed;
  font-weight: 800;
}

.question-text {
  margin: 1.2rem 0;
  font-size: 1.18rem;
}

.question-text.math-content,
.root-question.math-content,
.preview-row .math-content {
  white-space: pre-line;
}

.diagnostic-paper-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1rem;
  width: min(1440px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.diagnostic-paper-main {
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.diagnostic-paper-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.diagnostic-paper-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 780px;
}

.diagnostic-paper-surface {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2vw, 2rem);
}

.diagnostic-question-card {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.diagnostic-question-card:first-child {
  padding-top: 0;
}

.diagnostic-question-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.diagnostic-question-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.diagnostic-jump-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.diagnostic-jump-list a {
  display: inline-flex;
  justify-content: center;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.answer-area,
.working-area {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.answer-area h3,
.working-area h3 {
  margin: 0;
}

.answer-input {
  font-size: 1.05rem;
}

.structured-grid,
.multi-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.attempt-sidebar {
  position: sticky;
  top: 78px;
  align-self: start;
  display: grid;
  gap: 0.9rem;
}

.timer-panel,
.nav-panel,
.script-panel {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.script-panel.compact {
  display: grid;
  gap: 0.75rem;
}

.script-upload-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.script-upload-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfa;
}

.script-upload-list span {
  color: var(--muted);
  font-size: 0.82rem;
}

.result-metrics {
  margin-bottom: 1rem;
}

.feedback-page {
  display: grid;
  gap: 1rem;
}

.feedback-hero,
.feedback-grid,
.question-feedback-list,
.priority-list,
.worked-solution-box ol {
  display: grid;
  gap: 1rem;
}

.feedback-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feedback-hero h2 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 0;
}

.feedback-hero p {
  color: var(--muted);
  max-width: 70ch;
}

.feedback-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
}

.priority-row,
.question-feedback-row {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.priority-row div,
.question-feedback-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.priority-row p,
.question-feedback-row p,
.question-detail p {
  margin: 0;
}

.flashcard-back.hidden {
  display: none;
}

.flashcard-front,
.flashcard-back {
  font-size: 1.05rem;
  line-height: 1.5;
}

.flashcard-back {
  border-left: 3px solid var(--accent);
  padding-left: 0.8rem;
}

.priority-row small {
  color: var(--muted);
}

.answer-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
}

.answer-compare div {
  padding: 0.75rem;
  border-radius: 6px;
  background: #fbfcfa;
  border: 1px solid var(--line);
}

.answer-compare dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.answer-compare dd {
  margin: 0.2rem 0 0;
  overflow-wrap: anywhere;
}

.worked-solution-box {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.worked-solution-box h3 {
  margin-top: 0;
}

.worked-solution-box li {
  display: grid;
  gap: 0.25rem;
}

.worked-solution-box small {
  color: var(--muted);
}

.status-pill.urgent,
.status-pill.a_star_blocker {
  background: var(--soft-red);
  color: var(--danger);
}

.status-pill.high,
.status-pill.weak {
  background: var(--soft-amber);
  color: var(--amber);
}

.status-pill.medium,
.status-pill.needs_practice {
  background: #eef0f4;
  color: var(--muted);
}

.status-pill.low,
.status-pill.secure {
  background: var(--soft-green);
  color: var(--accent-strong);
}

.timer-panel strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.timer-panel span,
.timer-panel small {
  display: block;
  color: var(--muted);
  margin-top: 0.45rem;
}

.question-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 0.8rem;
  max-height: calc(100vh - 360px);
  overflow: auto;
}

.nav-item {
  display: grid;
  gap: 0.1rem;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0.45rem;
  cursor: pointer;
}

.nav-item span {
  font-weight: 800;
}

.nav-item small {
  color: var(--muted);
}

.nav-item.current {
  border-color: var(--accent);
  background: var(--soft-green);
}

.nav-item.flagged {
  border-color: #edcf86;
}

.nav-item.answered small {
  color: var(--accent-strong);
}

.nav-item.partially_answered small {
  color: var(--amber);
}

.nav-item.unanswered small {
  color: var(--danger);
}

.review-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.review-lists section,
.preview-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.preview-list {
  display: grid;
  gap: 0.8rem;
}

.preview-row div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.select-label {
  width: min(100%, 360px);
}

.loading-panel,
.error-panel {
  padding: 1.5rem;
}

.error-panel {
  border-color: #e8b2ad;
  color: var(--danger);
}

@media (max-width: 1024px) {
  .auth-layout,
  .pack-grid,
  .attempt-shell,
  .diagnostic-paper-shell,
  .landing-hero,
  .feature-grid,
  .pricing-grid,
  .card-grid,
  .two-column,
  .feedback-hero,
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .attempt-sidebar {
    position: static;
    order: -1;
  }

  .question-nav {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    max-height: none;
  }
}

@media (max-width: 720px) {
  .topbar,
  .page-heading,
  .section-heading,
  .card-footer,
  .button-row,
  .runner-buttons,
  .upload-row {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    position: static;
  }

  .topnav {
    width: 100%;
  }

  .topnav a,
  .topnav button {
    flex: 1 1 auto;
  }

  .profile-strip,
  .metric-grid,
  .metric-grid.wide,
  .readiness-grid,
  .structured-grid,
  .multi-answer-grid,
  .review-lists,
  .answer-compare {
    grid-template-columns: 1fr;
  }

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

/* Product UI refresh */
:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #f8fafb;
  --ink: #17201f;
  --muted: #64706f;
  --line: #d9e0df;
  --accent: #28756f;
  --accent-strong: #185650;
  --blue: #376ea6;
  --amber: #a26213;
  --danger: #b43b3b;
  --soft-green: #e7f3ef;
  --soft-blue: #e8f0fa;
  --soft-amber: #fff2d8;
  --soft-red: #fde8e5;
  --shadow: 0 16px 38px rgba(23, 32, 31, 0.08);
  --shadow-sm: 0 8px 20px rgba(23, 32, 31, 0.06);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
}

a {
  color: var(--accent-strong);
}

input,
textarea,
select {
  border-radius: 8px;
  border-color: #ccd7d6;
  background: #fff;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(40, 117, 111, 0.14);
}

.topbar {
  min-height: 68px;
  padding: 0.72rem max(1rem, calc((100vw - 1280px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 224, 223, 0.9);
  box-shadow: 0 10px 28px rgba(23, 32, 31, 0.05);
}

.brand {
  min-width: max-content;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 0.05rem;
  font-size: 0.76rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #162b28;
  color: #f7fffb;
  letter-spacing: 0;
}

.topnav {
  gap: 0.35rem;
  justify-content: flex-end;
}

.topnav a,
.topnav button {
  min-height: 36px;
  border-radius: 8px;
  padding: 0.48rem 0.68rem;
  color: #31403f;
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.topnav a:hover,
.topnav button:hover {
  background: #eef4f3;
  color: var(--accent-strong);
}

.topnav .primary-button {
  color: #fff;
}

.primary-button,
.secondary-button,
.ghost-button,
.submit-button,
.flag-button {
  min-height: 40px;
  border-radius: 8px;
  padding: 0.62rem 0.88rem;
  font-size: 0.92rem;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.primary-button,
.submit-button {
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(40, 117, 111, 0.16);
}

.primary-button:hover,
.submit-button:hover {
  background: var(--accent-strong);
}

.secondary-button,
.ghost-button {
  background: #fff;
  border-color: #cfdad8;
}

.primary-button:active,
.secondary-button:active,
.ghost-button:active,
.submit-button:active {
  transform: translateY(1px);
}

.page,
.loading-screen,
.auth-layout {
  width: min(1280px, calc(100vw - 32px));
}

.page {
  padding: 1.4rem 0 4rem;
}

.page-heading,
.page-header {
  align-items: flex-end;
  margin-bottom: 1.2rem;
}

.page-heading.slim h1,
.page-header h1 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.page-heading h1,
.page-header h1,
.setup-panel h1,
.review-panel h1,
.confirmation-panel h1 {
  letter-spacing: 0;
}

.eyebrow {
  color: #52706d;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.dashboard-grid {
  gap: 1rem;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: #142522;
  color: #f7fffb;
  border: 1px solid #203d38;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dashboard-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.dashboard-hero p {
  max-width: 78ch;
  color: #c7d8d5;
}

.dashboard-hero .eyebrow {
  color: #9fd2c8;
}

.dashboard-hero .secondary-button {
  color: #f7fffb;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.dashboard-status-card {
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f7fbfa;
  color: var(--ink);
}

.dashboard-status-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.05;
}

.dashboard-status-card span {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent-strong);
}

.dashboard-status-card small {
  color: var(--muted);
}

.readiness-panel,
.table-section,
.pack-card,
.auth-panel,
.setup-panel,
.review-panel,
.confirmation-panel,
.timer-panel,
.nav-panel,
.script-panel,
.question-surface,
.feedback-hero,
.pricing-card,
.panel,
.form-panel,
.launch-panel {
  border-radius: 8px;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.readiness-panel,
.table-section {
  padding: 1.15rem;
}

.readiness-panel h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.profile-strip {
  grid-template-columns: minmax(180px, 1fr) 130px auto;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

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

.pack-card {
  position: relative;
  min-height: 284px;
  overflow: hidden;
}

.pack-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
}

.pack-card h2 {
  font-size: 1.22rem;
}

.pack-card p {
  margin: 0.3rem 0 0;
}

.metric-grid div {
  background: var(--surface-soft);
  border-radius: 8px;
}

.metric-grid dt {
  color: #6d7776;
  font-weight: 650;
}

.metric-grid dd {
  color: var(--ink);
}

.status-pill {
  border-radius: 999px;
  border: 1px solid transparent;
}

.status-pill.locked,
.status-pill.not_ready,
.status-pill.failed,
.status-pill.recurring {
  background: var(--soft-red);
  border-color: #f4beb7;
  color: var(--danger);
}

.status-pill.in_progress,
.status-pill.unlocked,
.status-pill.retake_only,
.status-pill.review_required,
.status-pill.near_astar,
.status-pill.high,
.status-pill.weak {
  background: var(--soft-amber);
  border-color: #f2d198;
  color: var(--amber);
}

.status-pill.submitted,
.status-pill.submitted_unmarked,
.status-pill.completed,
.status-pill.marked,
.status-pill.stable,
.status-pill.mastered,
.status-pill.consistent_pure_astar_ready {
  background: var(--soft-green);
  border-color: #b7dcd2;
  color: var(--accent-strong);
}

.status-pill.medium,
.status-pill.developing,
.status-pill.not_started {
  background: var(--soft-blue);
  border-color: #c5d8ec;
  color: var(--blue);
}

.attempt-shell {
  width: min(1500px, calc(100vw - 24px));
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 0.9rem;
}

.attempt-head {
  padding: 0.2rem 0.15rem;
}

.attempt-head h1 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.question-surface {
  padding: clamp(1.1rem, 2vw, 2rem);
}

.question-text {
  max-width: 78ch;
  font-size: 1.15rem;
}

.root-question {
  padding: 0.85rem;
  border-radius: 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.part-row {
  border-top: 0;
  padding-top: 0;
}

.marks-pill {
  background: var(--soft-blue);
  color: var(--blue);
}

.save-state {
  background: var(--soft-green);
  border-color: #b7dcd2;
  color: var(--accent-strong);
}

.answer-area,
.working-area {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.answer-input,
.answer-area textarea,
.working-area textarea {
  min-height: 44px;
  font-size: 1rem;
}

.working-area textarea {
  min-height: 170px;
}

.attempt-sidebar {
  top: 84px;
}

.timer-panel strong {
  font-size: 2.35rem;
}

.timer-panel {
  background: #142522;
  color: #f7fffb;
  border-color: #203d38;
}

.timer-panel .eyebrow,
.timer-panel span,
.timer-panel small {
  color: #bfd5d1;
}

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

.nav-item {
  border-radius: 8px;
  min-height: 58px;
}

.nav-item.current {
  background: #dff0ec;
}

.script-panel input[type="file"],
.upload-row input[type="file"] {
  padding: 0.65rem;
  background: var(--surface-soft);
}

.feedback-hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
}

.feedback-hero h2 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.priority-row,
.question-feedback-row,
.review-lists section,
.preview-row {
  border-radius: 8px;
  box-shadow: none;
}

.landing-hero {
  min-height: calc(100vh - 86px);
  grid-template-columns: minmax(0, 1fr) 420px;
}

.landing-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.launch-panel {
  align-self: center;
  border-color: #cfdad8;
}

.loop-list li {
  display: flex;
  justify-content: space-between;
  background: var(--surface-soft);
  border-radius: 8px;
}

.loop-list li::after {
  content: "ready";
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

.feature-grid article,
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.pricing-card {
  display: grid;
  gap: 0.7rem;
}

.price-line {
  color: var(--accent-strong);
}

.auth-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
}

.auth-intro h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.tabs {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.25rem;
}

.tab-button {
  border: 0;
  background: transparent;
}

.tab-button.active {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

th {
  background: var(--surface-soft);
  color: #52605f;
}

td,
th {
  padding: 0.78rem 0.9rem;
}

.warning-box,
.notice-box,
.instruction-box,
.diagram-placeholder {
  border-radius: 8px;
}

@media (max-width: 1100px) {
  .dashboard-hero,
  .feedback-hero,
  .landing-hero,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .attempt-shell,
  .diagnostic-paper-shell {
    grid-template-columns: 1fr;
  }

  .attempt-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 760px) {
  .page,
  .loading-screen,
  .auth-layout,
  .landing-hero,
  .page-section,
  .pricing-grid {
    width: min(calc(100vw - 24px), 1280px);
    max-width: calc(100vw - 24px);
  }

  .dashboard-hero,
  .page-heading,
  .readiness-panel,
  .pack-card,
  .table-section,
  .setup-card,
  .result-card,
  .auth-card,
  .pricing-card,
  .support-card,
  .commercial-card {
    max-width: 100%;
    min-width: 0;
  }

  .topbar {
    position: sticky;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 0.7rem;
  }

  .brand small {
    display: none;
  }

  .topnav {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: thin;
  }

  .topnav a,
  .topnav button {
    flex: 0 0 auto;
  }

  .dashboard-hero {
    padding: 1rem;
  }

  .dashboard-hero h1 {
    font-size: 2.25rem;
  }

  .dashboard-status-card span {
    font-size: 1.8rem;
  }

  .profile-strip,
  .readiness-grid,
  .metric-grid,
  .metric-grid.wide,
  .structured-grid,
  .multi-answer-grid,
  .answer-compare,
  .feature-grid,
  .pricing-grid,
  .card-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .page-heading,
  .section-heading,
  .card-footer,
  .button-row,
  .runner-buttons,
  .upload-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .feedback-hero h2 {
    font-size: 3rem;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }
}

/* Launch landing page */
.launch-site {
  --lp-ink: #111d1c;
  --lp-muted: #5d6d6f;
  --lp-line: #cfdcdd;
  --lp-teal: #087b68;
  --lp-teal-dark: #063b34;
  --lp-teal-soft: #e5f4f0;
  --lp-amber: #f3b23c;
  --lp-amber-soft: #fff1d0;
  --lp-red: #db5148;
  --lp-red-soft: #ffe9e6;
  --lp-blue-soft: #eaf1fb;
  background:
    linear-gradient(180deg, #f7faf9 0%, #eef6f6 58%, #f8faf9 100%);
  color: var(--lp-ink);
  overflow: hidden;
}

.lp-hero,
.lp-section,
.lp-loop-bar {
  width: min(1300px, calc(100vw - 64px));
  margin-inline: auto;
}

.lp-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 3.2rem;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 6rem auto auto -9rem;
  width: 560px;
  height: 430px;
  border-radius: 8px;
  background: #d9efec;
  transform: rotate(-7deg);
  z-index: 0;
}

.lp-hero-copy,
.lp-report-card {
  position: relative;
  z-index: 1;
}

.lp-hero-copy {
  max-width: 760px;
}

.lp-hero-copy .eyebrow,
.lp-section .eyebrow {
  width: max-content;
  max-width: 100%;
  background: #d8efeb;
  color: #064c43;
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-hero h1 {
  margin: 1.8rem 0 0.9rem;
  font-size: 6rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.lp-hero-line {
  max-width: 780px;
  margin: 0;
  color: var(--lp-ink);
  font-size: 1.85rem;
  line-height: 1.23;
  font-weight: 760;
}

.lp-hero-subline {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: var(--lp-muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.lp-actions .primary-button,
.lp-actions .secondary-button,
.lp-plan .primary-button,
.lp-plan .secondary-button {
  min-height: 56px;
  padding-inline: 1.35rem;
  font-size: 1rem;
}

.lp-proof-strip,
.lp-loop-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.lp-proof-strip {
  margin-top: 1.25rem;
  color: var(--lp-muted);
}

.lp-proof-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 1rem;
  border-radius: 50%;
  vertical-align: middle;
  background: #8aa19f;
}

.lp-report-card {
  align-self: center;
  background: #fff;
  border: 1px solid #cfdcdd;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 26px 54px rgba(17, 29, 28, 0.16);
}

.lp-report-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--lp-muted);
  font-weight: 850;
}

.lp-report-head strong {
  border: 1px solid #efbf65;
  border-radius: 999px;
  background: #fff6e4;
  color: #8c5908;
  padding: 0.32rem 0.8rem;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.lp-report-card h2 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.1;
}

.lp-report-card p {
  margin: 0.45rem 0 1.2rem;
  color: var(--lp-muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--lp-line);
}

.lp-score-row {
  --fill: 50%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 1rem;
  align-items: center;
  margin-top: 1.2rem;
  font-weight: 850;
}

.lp-score-row strong {
  color: var(--lp-teal);
}

.lp-score-row i {
  grid-column: 1 / -1;
  display: block;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4ebeb;
}

.lp-score-row i::before {
  content: "";
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: var(--lp-teal);
}

.lp-score-row.danger {
  --fill: 42%;
}

.lp-score-row.danger strong,
.lp-score-row.danger i::before {
  color: var(--lp-red);
  background: var(--lp-red);
}

.lp-score-row.amber {
  --fill: 55%;
}

.lp-score-row.amber strong,
.lp-score-row.amber i::before {
  color: #b16d0f;
  background: var(--lp-amber);
}

.lp-score-row.amber.wide {
  --fill: 63%;
}

.lp-score-row.safe {
  --fill: 74%;
}

.lp-next-action {
  margin-top: 1.9rem;
  border: 1px solid #b8dcda;
  border-radius: 8px;
  background: #ecf8f5;
  padding: 1.15rem;
}

.lp-next-action span {
  display: block;
  margin-bottom: 0.45rem;
  color: #075448;
  font-weight: 900;
}

.lp-next-action strong {
  display: block;
  line-height: 1.35;
}

.lp-loop-bar {
  justify-content: space-between;
  margin-top: -1rem;
  padding: 1.35rem 1.8rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(17, 29, 28, 0.1);
}

.lp-loop-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 900;
}

.lp-loop-bar b,
.lp-step-grid b,
.lp-flow-card li::before {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #dff3ef;
  border: 1px solid #a8d7d1;
  color: #075448;
}

.lp-section {
  padding: 6rem 0 0;
}

.lp-section-copy {
  max-width: 980px;
}

.lp-section h2 {
  max-width: 980px;
  margin: 1.5rem 0 0.9rem;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.lp-section p {
  max-width: 820px;
  color: var(--lp-muted);
  font-size: 1.28rem;
  line-height: 1.5;
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.lp-flow-card {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  padding: 2.3rem;
  box-shadow: var(--shadow-sm);
}

.lp-flow-card.problem {
  border-color: #f0c5c0;
}

.lp-flow-card.solution {
  border-color: #b8dcda;
}

.lp-flow-card h3,
.lp-get-list h3,
.lp-plan h3 {
  margin: 0 0 1.6rem;
  font-size: 1.55rem;
}

.lp-flow-card ol {
  counter-reset: flow;
  display: grid;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-flow-card li {
  counter-increment: flow;
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: center;
}

.lp-flow-card li::before {
  content: counter(flow);
  font-weight: 900;
}

.lp-flow-card.problem li::before {
  background: var(--lp-red-soft);
  border-color: #f0c5c0;
  color: var(--lp-red);
}

.lp-flow-card li b,
.lp-flow-card li span {
  display: block;
}

.lp-flow-card li b {
  font-size: 1.18rem;
}

.lp-flow-card li span {
  color: var(--lp-muted);
  margin-top: 0.2rem;
}

.lp-sample {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 3.5rem;
  align-items: center;
}

.lp-mark-table {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.lp-mark-table > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(210px, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 64px;
  padding: 0.75rem 1rem;
  border: 1px solid #e3ebeb;
  border-radius: 8px;
}

.lp-mark-table .lp-mark-table-head {
  min-height: 48px;
  background: #f5f8f8;
  color: var(--lp-muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.loss-red,
.loss-amber {
  font-weight: 900;
}

.loss-red {
  color: var(--lp-red);
}

.loss-amber {
  color: #a46307;
}

.lp-get-list {
  display: grid;
  gap: 1rem;
}

.lp-get-list ul,
.lp-plan ul {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-get-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.lp-get-list li::before,
.lp-plan li::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--lp-teal);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-2px, -4px);
}

.lp-get-list li::before {
  justify-self: center;
  background: transparent;
}

.lp-get-list li b,
.lp-get-list li span {
  display: block;
}

.lp-get-list li span {
  margin-top: 0.25rem;
  color: var(--lp-muted);
}

.lp-step-grid,
.lp-plan-grid,
.lp-compliance-strip {
  display: grid;
  gap: 1.4rem;
}

.lp-step-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2rem;
}

.lp-step-grid article {
  min-height: 300px;
  padding: 1.7rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.lp-step-grid h3 {
  min-height: 56px;
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
  line-height: 1.12;
}

.lp-step-grid p {
  margin: 0;
  font-size: 1rem;
}

.lp-pricing-preview {
  padding-bottom: 5rem;
}

.lp-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.lp-plan {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 430px;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.lp-plan.featured {
  background: #062f2a;
  border-color: #062f2a;
  color: #fff;
}

.lp-plan.featured > span {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  border-radius: 999px;
  background: var(--lp-amber);
  color: #17201f;
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-plan strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.lp-plan p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1rem;
  font-weight: 750;
}

.lp-plan.featured p {
  color: #d3e4df;
}

.lp-plan ul {
  padding-top: 1.3rem;
  border-top: 1px solid var(--lp-line);
}

.lp-plan.featured ul {
  border-color: rgba(255, 255, 255, 0.22);
}

.lp-plan li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  align-items: center;
  font-weight: 850;
}

.lp-plan.featured li::before {
  border-color: var(--lp-amber);
}

.lp-plan .primary-button,
.lp-plan .secondary-button {
  margin-top: auto;
}

.lp-compliance-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
}

.lp-compliance-strip span {
  display: block;
  padding: 1rem;
  border: 1px solid #bfdedb;
  border-radius: 8px;
  background: #edf8f5;
  color: var(--lp-muted);
}

.lp-compliance-strip b {
  display: block;
  margin-bottom: 0.35rem;
  color: #075448;
}

@media (max-width: 1180px) {
  .lp-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .lp-report-card {
    max-width: 620px;
  }

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

  .lp-sample,
  .lp-plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .lp-hero,
  .lp-section,
  .lp-loop-bar {
    width: min(calc(100vw - 28px), 1300px);
  }

  .lp-hero {
    padding-top: 3rem;
  }

  .lp-hero::before {
    inset: 2rem auto auto -18rem;
  }

  .lp-hero h1 {
    font-size: 4.3rem;
  }

  .lp-hero-line,
  .lp-section p {
    font-size: 1.12rem;
  }

  .lp-hero-subline {
    font-size: 1rem;
  }

  .lp-section {
    padding-top: 4rem;
  }

  .lp-section h2 {
    font-size: 2.8rem;
  }

  .lp-loop-bar,
  .lp-compare-grid,
  .lp-step-grid,
  .lp-compliance-strip {
    grid-template-columns: 1fr;
  }

  .lp-loop-bar {
    align-items: stretch;
  }

  .lp-loop-bar span {
    justify-content: flex-start;
  }

  .lp-flow-card,
  .lp-report-card,
  .lp-plan,
  .lp-mark-table {
    padding: 1.2rem;
  }

  .lp-mark-table > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .lp-step-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .lp-hero h1 {
    font-size: 3.25rem;
  }

  .lp-hero-line {
    font-size: 1.32rem;
  }

  .lp-section h2 {
    font-size: 2.15rem;
  }

  .lp-report-card h2 {
    font-size: 1.35rem;
  }

  .lp-report-head,
  .lp-score-row,
  .lp-flow-card li,
  .lp-get-list li,
  .lp-plan li {
    grid-template-columns: 1fr;
  }

  .lp-flow-card li::before,
  .lp-get-list li::before,
  .lp-plan li::before {
    justify-self: start;
  }

  .lp-report-head {
    align-items: start;
  }
}

/* Paper notebook landing direction */
body:has(.paper-landing) {
  background: #f8f2e8;
}

body:has(.paper-landing) .topbar {
  position: relative;
  min-height: 102px;
  padding: 1rem clamp(1.25rem, 5vw, 6.75rem);
  background: #f8f2e8;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body:has(.paper-landing) .brand-mark {
  width: 50px;
  height: 50px;
  background: #14201f;
  color: #fff;
  font-size: 1.26rem;
  box-shadow: inset 0 -12px 22px rgba(255, 255, 255, 0.08);
}

body:has(.paper-landing) .brand {
  gap: 0.9rem;
}

body:has(.paper-landing) .brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.05;
}

body:has(.paper-landing) .brand small {
  margin-top: 0.22rem;
  color: #3e4949;
  font-size: 0.92rem;
}

body:has(.paper-landing) .topnav {
  gap: 1.45rem;
}

body:has(.paper-landing) .topnav a,
body:has(.paper-landing) .topnav button {
  color: #241b1a;
  font-size: 0.95rem;
  font-weight: 720;
}

body:has(.paper-landing) .topnav .primary-button,
.paper-landing .primary-button {
  border: 0;
  background: #711835;
  color: #fff;
  box-shadow: none;
  font-weight: 400;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

body:has(.paper-landing) .topnav .primary-button:hover,
.paper-landing .primary-button:hover {
  background: #711835;
  box-shadow: none;
  transform: translateY(-1px);
}

body:has(.paper-landing) .topnav .primary-button:focus-visible,
.paper-landing .primary-button:focus-visible {
  outline: 3px solid rgba(113, 24, 53, 0.24);
  outline-offset: 3px;
}

body:has(.paper-landing) .topnav .primary-button {
  min-height: 54px;
  padding-inline: 1.55rem;
  font-size: 1rem;
  border-radius: 10px;
}

.paper-landing {
  --paper-bg: #f8f2e8;
  --paper-panel: #fbf6ed;
  --paper-ink: #171c1b;
  --paper-muted: #514946;
  --paper-line: rgba(42, 35, 32, 0.28);
  --paper-light-line: rgba(42, 35, 32, 0.12);
  --paper-burgundy: #711835;
  --paper-burgundy-dark: #581127;
  --paper-gold: #c48a2d;
  min-height: 100vh;
  background: #f8f2e8;
  color: var(--paper-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.paper-landing h1,
.paper-landing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
}

.paper-landing h1 {
  position: relative;
  margin: 0.75rem 0 1.35rem;
  font-size: clamp(3.35rem, 4vw, 4.55rem);
  line-height: 0.94;
}

.paper-copy h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.62rem;
  width: min(430px, 94%);
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 28' preserveAspectRatio='none'%3E%3Cpath d='M8 19 C118 7 298 6 412 19' fill='none' stroke='%23711835' stroke-width='5.2' stroke-linecap='round'/%3E%3Cpath d='M12 20 C128 11 288 10 407 20' fill='none' stroke='%238f3150' stroke-width='1.4' stroke-linecap='round' opacity='.42'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.paper-landing h2 {
  margin: 0 0 0.7rem;
  font-size: 2.4rem;
  line-height: 1.05;
}

.paper-landing h3 {
  margin: 0 0 0.8rem;
  font-size: 1.16rem;
  line-height: 1.2;
}

.paper-landing p {
  color: var(--paper-muted);
  line-height: 1.55;
}

.paper-landing .secondary-button {
  border-color: rgba(113, 24, 53, 0.5);
  color: var(--paper-burgundy);
  background: transparent;
  box-shadow: none;
}

.paper-landing .secondary-button:hover {
  background: rgba(113, 24, 53, 0.08);
}

.paper-hero,
.paper-report,
.paper-grid,
.paper-process,
.paper-pricing,
.paper-footer-proof {
  width: min(1460px, calc(100vw - 76px));
  margin-inline: auto;
}

.paper-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 560px);
  gap: 2.8rem;
  align-items: start;
  min-height: calc(100vh - 88px);
  padding: 1.65rem 0 0.85rem;
  background: url("/assets/landing-paper-bg.png") center top / cover no-repeat;
}

.paper-hero::before {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -58px;
  width: 410px;
  height: 205px;
  border-top: 2px solid rgba(23, 28, 27, 0.58);
  border-left: 2px solid rgba(23, 28, 27, 0.38);
  border-radius: 58% 52% 0 0;
  background:
    repeating-linear-gradient(174deg, transparent 0 13px, rgba(23, 28, 27, 0.34) 14px, transparent 15px),
    linear-gradient(90deg, transparent 0 48%, rgba(23, 28, 27, 0.45) 49% 50%, transparent 51%);
  opacity: 0.55;
  transform: rotate(-9deg);
  pointer-events: none;
}

.paper-hero::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 160px;
  width: 220px;
  height: 27px;
  border: 2px solid rgba(23, 28, 27, 0.62);
  border-right: 0;
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(23, 28, 27, 0.16) 74% 76%, transparent 76%),
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(23, 28, 27, 0.18) 8px);
  opacity: 0.64;
  transform: rotate(-56deg);
  pointer-events: none;
}

.paper-hero::before,
.paper-hero::after {
  display: none;
}

.paper-copy {
  max-width: 660px;
  padding-top: 1.6rem;
}

.paper-kicker {
  margin: 0;
  color: var(--paper-burgundy);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-copy > p:not(.paper-kicker) {
  max-width: 600px;
  margin: 0;
  color: #252423;
  font-size: 1rem;
  line-height: 1.48;
}

.paper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.paper-actions .primary-button {
  min-height: 44px;
  min-width: 164px;
  padding-inline: 0.95rem;
  font-size: 0.84rem;
}

.paper-diagnostic-card {
  align-self: start;
  justify-self: end;
  width: min(100%, 560px);
  margin-top: 0.7rem;
  padding: 1.55rem;
  background: rgba(255, 252, 246, 0.88);
  border: 1.5px solid rgba(42, 35, 32, 0.28);
  border-radius: 8px;
  box-shadow:
    0 10px 0 rgba(23, 28, 27, 0.025),
    0 18px 34px rgba(23, 28, 27, 0.08);
}

.paper-card-kicker {
  margin: 0 0 1rem;
  color: #17201f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 760;
  line-height: 1.1;
}

.hero-report-table {
  overflow: hidden;
  border: 1px solid rgba(42, 35, 32, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.64);
}

.hero-report-table div {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 54px minmax(0, 1.1fr);
  gap: 0.75rem;
  align-items: center;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border-top: 1px solid rgba(42, 35, 32, 0.14);
  color: #171c1b;
  font-size: 0.76rem;
  line-height: 1.22;
}

.hero-report-table div:first-child {
  min-height: 38px;
  border-top: 0;
  background: rgba(23, 28, 27, 0.045);
  color: #3e4949;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.hero-report-table span {
  min-width: 0;
}

.hero-report-table b {
  color: var(--paper-burgundy);
  font-size: 0.86rem;
  text-align: right;
}

.hero-next-action {
  margin-top: 1rem;
  padding: 1rem 1.08rem;
  background: rgba(113, 24, 53, 0.06);
  border: 1px solid rgba(113, 24, 53, 0.24);
  border-radius: 8px;
}

.hero-next-action strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--paper-burgundy);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-next-action p {
  margin: 0;
  color: #1b1f1e;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.32;
}

.paper-loop-card {
  position: relative;
  align-self: start;
  justify-self: center;
  width: min(100%, 500px);
  margin-top: 0.85rem;
  min-height: 0;
  padding: 1.45rem 1.85rem 1.3rem;
  background: rgba(255, 252, 246, 0.82);
  border: 2px solid rgba(23, 28, 27, 0.9);
  border-radius: 8px;
  transform: rotate(-0.35deg);
  box-shadow:
    0 10px 0 rgba(23, 28, 27, 0.035),
    0 18px 34px rgba(23, 28, 27, 0.08);
}

.paper-loop-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(23, 28, 27, 0.08));
}

.paper-loop-card h2 {
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  margin: 0;
  padding-bottom: 0.72rem;
  border-bottom: 2px solid rgba(23, 28, 27, 0.34);
  color: #17201f;
  font-size: 1.12rem;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
}

.paper-loop-card ol {
  counter-reset: product-loop;
  display: grid;
  gap: 0;
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
}

.paper-loop-card li {
  counter-increment: product-loop;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 0.58rem;
  align-items: center;
  min-height: 49px;
  padding: 0.12rem 0;
  border-bottom: 1.5px solid rgba(23, 28, 27, 0.24);
  color: var(--paper-ink);
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: 0.98rem;
  line-height: 1.15;
}

.paper-loop-card li::before {
  content: counter(product-loop) ".";
  color: #17201f;
  text-align: right;
}

.paper-loop-card li:last-child {
  border-bottom: 0;
}

.paper-loop-card em {
  min-width: 50px;
  color: #07533f;
  font-size: 0.76rem;
  font-style: italic;
  text-align: right;
}

.paper-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin-top: 1.15rem;
  padding-top: 0;
  border-top: 0;
}

.paper-icon {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.68rem;
  align-items: center;
  min-height: 46px;
  padding: 0 0.9rem;
  color: #15201f;
}

.paper-icon strong {
  display: block;
  color: #15201f;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.12;
}

.paper-icon small {
  display: block;
  margin-top: 0.16rem;
  color: #3e4949;
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.15;
}

.paper-icon:first-child {
  padding-left: 0;
}

.paper-icon:not(:last-child) {
  border-right: 1px solid var(--paper-line);
}

.paper-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: contrast(1.12);
  mix-blend-mode: multiply;
  opacity: 0.9;
}

.paper-icon.calendar::before {
  background-image: url("/assets/icon-no-card.png?v=3");
}

.paper-icon.timer::before {
  background-image: url("/assets/icon-clock.png?v=3");
}

.paper-icon.badge::before {
  background-image: url("/assets/icon-badge.png?v=3");
}

.paper-report,
.paper-grid,
.paper-process,
.paper-pricing,
.paper-footer-proof {
  position: relative;
  margin-top: 0.42rem;
  padding: 3rem 3.2rem;
  background: rgba(255, 250, 241, 0.72);
  border-top: 1px solid rgba(42, 35, 32, 0.08);
}

.paper-report {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 4rem;
  align-items: center;
}

.paper-index {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  margin: 0;
  color: #141413;
  font-weight: 900;
}

.paper-report > div,
.paper-report aside,
.paper-grid article,
.paper-process > *,
.paper-pricing > *,
.paper-footer-proof > * {
  position: relative;
  z-index: 1;
}

.paper-bars {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.7rem;
  max-width: 540px;
}

.paper-bars div {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 0.45rem 1rem;
  align-items: center;
  font-weight: 850;
}

.paper-bars i {
  grid-column: 1 / 2;
  height: 8px;
  border: 1px solid rgba(23, 28, 27, 0.6);
  background: transparent;
}

.paper-bars i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  background: var(--paper-burgundy);
}

.paper-bars b {
  grid-row: 2;
  grid-column: 2;
}

.paper-next-box {
  min-height: 230px;
  border: 2px dashed rgba(23, 28, 27, 0.45);
  border-radius: 8px;
  padding: 1.7rem;
}

.paper-next-box h3::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 0.7rem;
  border: 1.7px solid var(--paper-ink);
  border-radius: 50%;
  vertical-align: middle;
  background: radial-gradient(circle at center, transparent 0 4px, var(--paper-ink) 5px 6px, transparent 7px);
}

.paper-next-box p {
  margin: 1.4rem 0 0;
  font-family: "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: 1.05rem;
  color: #2d2826;
}

.paper-timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}

.paper-timeline span {
  position: relative;
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  font-weight: 850;
}

.paper-timeline span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 30px);
  width: calc(100% - 36px);
  height: 1px;
  background: var(--paper-line);
}

.paper-timeline b,
.paper-process-steps b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--paper-ink);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.84);
}

.paper-grid {
  display: grid;
  gap: 1px;
  padding: 0;
  background: rgba(42, 35, 32, 0.08);
}

.paper-why {
  grid-template-columns: 0.85fr 1.3fr 1.3fr;
}

.paper-output {
  grid-template-columns: 1.55fr 0.9fr;
}

.paper-mini-panel,
.paper-table-panel,
.paper-list-panel {
  position: relative;
  min-height: 320px;
  padding: 3rem 2.5rem;
  background: rgba(255, 250, 241, 0.86);
}

.paper-mini-panel.why {
  text-align: center;
}

.paper-mini-panel.why h2,
.paper-table-panel h2,
.paper-list-panel h2,
.paper-process h2,
.paper-pricing h2,
.paper-footer-proof h2 {
  font-size: 2rem;
}

.paper-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.paper-flow span {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 118px;
  align-content: start;
  font-weight: 900;
}

.paper-flow span::before {
  content: "";
  justify-self: center;
  width: 46px;
  height: 46px;
  border: 1.7px solid var(--paper-ink);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.7);
}

.paper-flow span:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 12px;
  right: -0.9rem;
  color: var(--paper-ink);
  font-weight: 900;
}

.paper-flow small {
  color: var(--paper-muted);
  font-weight: 500;
  line-height: 1.35;
}

.paper-mark-table {
  display: grid;
  margin-top: 1.4rem;
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.paper-mark-table div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(190px, 1fr);
}

.paper-mark-table span,
.paper-mark-table strong {
  min-height: 44px;
  padding: 0.72rem;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.paper-list-panel ul,
.paper-price-grid ul,
.paper-footer-proof ul {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.paper-list-panel li,
.paper-footer-proof li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.paper-list-panel li::before,
.paper-footer-proof li::before,
.paper-price-grid li::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 1.6px solid var(--paper-ink);
  border-radius: 50%;
}

.paper-list-panel b,
.paper-list-panel span,
.paper-footer-proof b,
.paper-footer-proof span {
  display: block;
}

.paper-list-panel span,
.paper-footer-proof span {
  margin-top: 0.2rem;
  color: var(--paper-muted);
}

.paper-process,
.paper-pricing,
.paper-footer-proof {
  text-align: center;
}

.paper-process > p:not(.paper-index),
.paper-pricing > p:not(.paper-index) {
  max-width: 660px;
  margin-inline: auto;
}

.paper-process-steps,
.paper-price-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.paper-process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.paper-process-steps span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  font-weight: 900;
}

.paper-process-steps span:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 8px;
  right: -0.8rem;
  color: var(--paper-ink);
}

.paper-process-steps small {
  max-width: 160px;
  color: var(--paper-muted);
  font-weight: 500;
  line-height: 1.35;
}

.paper-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.paper-price-grid article {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 350px;
  padding: 1.35rem;
  border: 1.4px solid var(--paper-line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.74);
}

.paper-price-grid article.featured {
  border-color: var(--paper-burgundy);
}

.paper-price-grid em {
  position: absolute;
  top: -0.8rem;
  left: 1rem;
  border-radius: 6px;
  background: var(--paper-burgundy);
  color: #fff;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.paper-price-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.paper-price-grid li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.55rem;
  align-items: center;
}

.paper-price-grid li::before {
  width: 14px;
  height: 14px;
  border-color: var(--paper-burgundy);
}

.paper-price-grid .primary-button,
.paper-price-grid .secondary-button {
  align-self: end;
  width: 100%;
}

.paper-footer-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding-bottom: 4rem;
  text-align: left;
}

.paper-footer-proof h2 {
  margin-bottom: 0.7rem;
}

@media (max-width: 1180px) {
  .paper-hero,
  .paper-report,
  .paper-why,
  .paper-output,
  .paper-footer-proof {
    grid-template-columns: 1fr;
  }

  .paper-diagnostic-card,
  .paper-loop-card {
    max-width: 620px;
  }

  .paper-process-steps,
  .paper-price-grid,
  .paper-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body:has(.paper-landing) .topbar {
    position: sticky;
    min-height: 72px;
    padding: 0.65rem 0.7rem;
  }

  body:has(.paper-landing) .brand {
    gap: 0.65rem;
  }

  body:has(.paper-landing) .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  body:has(.paper-landing) .brand strong {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 0.98rem;
  }

  body:has(.paper-landing) .brand small {
    display: none;
  }

  body:has(.paper-landing) .topnav {
    gap: 0.35rem;
    overflow-x: auto;
  }

  body:has(.paper-landing) .topnav a,
  body:has(.paper-landing) .topnav button {
    min-height: 36px;
    padding: 0.48rem 0.68rem;
    font-size: 0.88rem;
    flex: 0 0 auto;
  }

  body:has(.paper-landing) .topnav .primary-button {
    min-height: 40px;
    padding-inline: 0.88rem;
    font-size: 0.92rem;
  }

  .paper-hero,
  .paper-report,
  .paper-grid,
  .paper-process,
  .paper-pricing,
  .paper-footer-proof {
    width: min(calc(100vw - 24px), 1360px);
  }

  .paper-hero {
    gap: 2rem;
    min-height: auto;
    padding-top: 3rem;
  }

  .paper-hero::before,
  .paper-hero::after {
    display: none;
  }

  .paper-landing h1 {
    font-size: 3.8rem;
  }

  .paper-copy h1::after {
    width: min(430px, 94%);
  }

  .paper-landing h2 {
    font-size: 2rem;
  }

  .paper-report,
  .paper-process,
  .paper-pricing,
  .paper-footer-proof,
  .paper-mini-panel,
  .paper-table-panel,
  .paper-list-panel {
    padding: 2.4rem 1.1rem 1.4rem;
  }

  .paper-proof-row,
  .paper-timeline,
  .paper-flow,
  .paper-process-steps,
  .paper-price-grid {
    grid-template-columns: 1fr;
  }

  .paper-actions .primary-button,
  .paper-actions .secondary-button {
    width: 100%;
    min-width: 0;
  }

  .paper-diagnostic-card {
    justify-self: stretch;
    margin-top: 0.3rem;
    padding: 1.15rem;
  }

  .hero-report-table div {
    grid-template-columns: 1fr 54px;
    gap: 0.42rem 0.75rem;
  }

  .hero-report-table div > :last-child {
    grid-column: 1 / -1;
  }

  .paper-loop-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .paper-proof-row {
    max-width: none;
  }

  .paper-icon {
    border-right: 0 !important;
    padding: 0;
  }

  .paper-timeline span:not(:last-child)::after,
  .paper-process-steps span:not(:last-child)::after,
  .paper-flow span:not(:last-child)::after {
    display: none;
  }

  .paper-mark-table div {
    grid-template-columns: 1fr;
  }

  .paper-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .paper-landing h1 {
    font-size: 3rem;
  }

  .paper-copy > p:not(.paper-kicker) {
    font-size: 1rem;
  }

  .paper-diagnostic-card {
    padding: 0.95rem;
  }

  .paper-card-kicker {
    font-size: 1.12rem;
  }

  .paper-loop-card {
    padding: 1rem;
  }

  .paper-bars div,
  .paper-list-panel li,
  .paper-footer-proof li {
    grid-template-columns: 1fr;
  }

  .paper-bars b {
    grid-row: auto;
    grid-column: auto;
  }
}

/* Fast screenshot-match pass for the launch landing page. */
body:has(.paper-shot) {
  background:
    radial-gradient(rgba(35, 28, 24, 0.045) 1px, transparent 1px),
    #f8f2e8;
  background-size: 10px 10px, auto;
}

body:has(.paper-shot) .topbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100px;
  padding: 1.15rem clamp(1.5rem, 5vw, 6.75rem) 0.85rem;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  z-index: 30;
}

body:has(.paper-shot) .brand {
  gap: 0.9rem;
}

body:has(.paper-shot) .brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #121d1e;
  font-size: 1.38rem;
}

body:has(.paper-shot) .brand strong {
  font-size: 1.58rem;
  line-height: 1.04;
}

body:has(.paper-shot) .brand small {
  margin-top: 0.16rem;
  font-size: 1rem;
}

body:has(.paper-shot) .topnav {
  gap: 1.2rem;
}

body:has(.paper-shot) .topnav a,
body:has(.paper-shot) .topnav button {
  font-size: 0.86rem;
}

body:has(.paper-shot) .topnav a:not(.primary-button),
body:has(.paper-shot) .topnav button:not(.primary-button) {
  color: rgba(36, 27, 26, 0.68);
  font-weight: 650;
}

body:has(.paper-shot) .topnav .primary-button {
  min-height: 48px;
  padding-inline: 1.3rem;
  border-radius: 10px;
  font-weight: 880;
}

.paper-shot {
  background:
    radial-gradient(rgba(35, 28, 24, 0.045) 1px, transparent 1px),
    #f8f2e8;
  background-size: 10px 10px, auto;
}

.public-page.paper-shot {
  padding-block: 0 2rem;
}

.paper-shot .paper-hero,
.paper-shot .paper-compare,
.paper-shot .paper-output,
.paper-shot .paper-process,
.paper-shot .paper-pricing,
.paper-shot .paper-footer-proof,
.paper-shot .paper-site-footer {
  width: min(1180px, calc(100vw - 72px));
  margin-inline: auto;
}

.paper-shot .paper-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: calc(100svh - 160px);
  grid-template-columns:
    minmax(520px, 1.02fr)
    minmax(620px, 0.98fr);
  align-items: center;
  justify-content: stretch;
  gap: clamp(2rem, 3.1vw, 4.5rem);
  padding:
    clamp(1rem, 2.4svh, 2.1rem)
    clamp(1.45rem, 4.6vw, 6rem)
    clamp(1.25rem, 3svh, 2.5rem);
  background: transparent;
}

.paper-shot .paper-hero::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: url("/assets/landing-paper-bg.png") center top / cover no-repeat;
  opacity: 1;
  transform: none;
}

.paper-shot .paper-hero::after {
  display: none;
}

.paper-shot .paper-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 850px;
  padding-top: 0;
  transform: translateY(clamp(-2rem, -2.4svh, -0.9rem));
}

.paper-shot .paper-diagnostic-card {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
}

.paper-shot .paper-kicker {
  margin-bottom: 1.04rem;
  color: var(--paper-burgundy);
  font-size: clamp(0.82rem, 0.86vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-shot h1 {
  max-width: 850px;
  margin: 0 0 clamp(1.52rem, 2.25svh, 2.05rem);
  font-size: clamp(4.35rem, 5.8vw, 7.1rem);
  line-height: 0.955;
}

.paper-shot h1 span {
  display: block;
  white-space: nowrap;
}

.paper-shot h1 em {
  color: var(--paper-burgundy);
  font-style: normal;
}

.paper-shot .paper-copy h1::after {
  bottom: -0.66rem;
  left: clamp(2.1rem, 4vw, 3.7rem);
  width: min(540px, 68%);
  height: 15px;
}

.paper-shot .paper-copy > p:not(.paper-kicker) {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.04vw, 1.24rem);
  line-height: 1.58;
}

.paper-shot .paper-actions {
  margin-top: clamp(1.5rem, 2.25svh, 2rem);
}

.paper-shot .paper-actions .primary-button {
  min-width: min(430px, 100%);
  min-height: 68px;
  padding-inline: 2rem;
  border-radius: 10px;
  gap: 1.1rem;
  font-size: 1.12rem;
  font-weight: 400;
  justify-content: center;
}

.paper-shot .paper-actions .primary-button::after {
  content: "→";
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.paper-shot .paper-proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 2rem;
}

.paper-shot .paper-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  align-items: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(1.75rem, 2.8svh, 2.35rem);
  color: #493e39;
}

.paper-shot .paper-proof-strip .paper-proof-item {
  display: grid;
  grid-template-columns: 48px max-content;
  grid-template-rows: auto auto;
  column-gap: 0.86rem;
  row-gap: 0.12rem;
  align-items: center;
  min-height: 64px;
  padding: 0 1.65rem;
  color: #1c201f;
}

.paper-shot .paper-proof-strip .paper-proof-item:first-child {
  padding-left: 0;
}

.paper-shot .paper-proof-strip .paper-proof-item:not(:last-child) {
  border-right: 1px solid rgba(42, 35, 32, 0.24);
}

.paper-shot .paper-proof-strip .paper-proof-item::before {
  content: "";
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.92;
}

.paper-shot .paper-proof-strip .paper-proof-item.calendar::before {
  background-image: url("/assets/icon-no-card.png?v=3");
}

.paper-shot .paper-proof-strip .paper-proof-item.timer::before {
  background-image: url("/assets/icon-clock.png?v=3");
}

.paper-shot .paper-proof-strip .paper-proof-item.badge::before {
  background-image: url("/assets/icon-badge.png?v=3");
}

.paper-shot .paper-proof-strip strong {
  display: block;
  color: #171c1b;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.12;
  white-space: nowrap;
}

.paper-shot .paper-proof-strip small {
  display: block;
  color: rgba(36, 43, 42, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.12;
  white-space: nowrap;
}

.paper-shot .paper-icon {
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 54px;
  padding: 0 1rem;
}

.paper-shot .paper-icon::before {
  width: 38px;
  height: 38px;
}

.paper-shot .paper-icon strong {
  font-size: 0.76rem;
}

.paper-shot .paper-icon small {
  font-size: 0.64rem;
}

.paper-shot .paper-diagnostic-card {
  width: min(100%, 480px);
  margin-top: 0;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 252, 246, 0.74);
  border: 1.3px solid rgba(42, 35, 32, 0.42);
  border-radius: 7px;
  box-shadow: none;
}

.paper-shot .paper-diagnostic-card.diagnostic-report {
  width: min(100%, 520px);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fffcf6, #fcf6ec),
    repeating-linear-gradient(0deg, rgba(42, 35, 32, 0.028) 0 1px, transparent 1px 34px);
  border: 1.4px solid rgba(42, 35, 32, 0.38);
  box-shadow:
    0 22px 54px rgba(42, 35, 32, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.diagnostic-report-header {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.3rem 1rem;
  border-bottom: 1px solid rgba(42, 35, 32, 0.14);
}

.diagnostic-report-header > div {
  min-width: 0;
}

.report-label {
  margin: 0 0 0.2rem;
  color: rgba(42, 35, 32, 0.62);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.report-score {
  display: block;
  color: #151b1a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3vw, 3.05rem);
  font-weight: 760;
  line-height: 0.94;
}

.report-gap {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(113, 24, 53, 0.22);
  border-radius: 999px;
  background: rgba(113, 24, 53, 0.08);
  color: var(--paper-burgundy);
  font-size: 0.66rem;
  font-weight: 900;
  white-space: nowrap;
}

.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(42, 35, 32, 0.14);
}

.report-summary-grid span {
  display: grid;
  gap: 0.12rem;
  min-height: 72px;
  padding: 0.78rem 0.9rem;
  align-content: center;
}

.report-summary-grid span:not(:last-child) {
  border-right: 1px solid rgba(42, 35, 32, 0.12);
}

.report-summary-grid strong {
  color: #171c1b;
  font-size: 1.35rem;
  font-weight: 920;
  line-height: 1;
}

.report-summary-grid small {
  color: rgba(36, 43, 42, 0.68);
  font-size: 0.62rem;
  font-weight: 760;
  line-height: 1.18;
}

.diagnostic-leak-list {
  display: grid;
  padding: 0 1.3rem;
}

.leak-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px 38px;
  gap: 0.7rem;
  align-items: center;
  min-height: 78px;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(42, 35, 32, 0.13);
}

.leak-row > div {
  min-width: 0;
}

.leak-tag {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--paper-burgundy);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.leak-row strong {
  display: block;
  color: #161c1b;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.22;
}

.leak-row i {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(113, 24, 53, 0.12);
}

.leak-row i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #711835, #a6425f);
}

.leak-row b {
  color: #171c1b;
  font-size: 0.86rem;
  font-weight: 930;
  text-align: right;
}

.diagnostic-next-action {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.78rem;
  align-items: center;
  margin: 1rem 1.3rem 0;
  padding: 0.92rem 0 0;
}

.diagnostic-next-action > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #171c1b;
  color: #fff9ef;
  font-size: 0.72rem;
  font-weight: 900;
}

.diagnostic-next-action strong {
  display: block;
  color: var(--paper-burgundy);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.diagnostic-next-action p {
  margin: 0.18rem 0 0;
  color: #181f1e;
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.3;
}

.paper-shot .paper-card-kicker {
  margin-bottom: 1rem;
  font-size: 1.28rem;
}

.paper-shot .hero-bars {
  gap: 0.72rem;
  margin-top: 0;
}

.paper-shot .paper-bars div {
  grid-template-columns: 1fr 44px;
  gap: 0.28rem 0.8rem;
  font-size: 0.72rem;
}

.paper-shot .paper-bars i {
  height: 7px;
  border: 0;
  background: rgba(113, 24, 53, 0.12);
}

.paper-shot .paper-bars i::before {
  background: var(--paper-burgundy);
}

.paper-shot .paper-bars b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #171c1b;
  font-size: 0.86rem;
}

.paper-shot .hero-next-action {
  position: relative;
  margin-top: 1.1rem;
  padding: 1.05rem 1.08rem 1.08rem 4.55rem;
  background: rgba(113, 24, 53, 0.075);
  border-color: rgba(113, 24, 53, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 252, 246, 0.5);
}

.paper-shot .hero-next-action::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 1.12rem;
  width: 42px;
  height: 42px;
  border: 1.6px solid rgba(113, 24, 53, 0.78);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 5px, rgba(113, 24, 53, 0.92) 5.5px 7px, transparent 7.5px),
    radial-gradient(circle at center, rgba(255, 252, 246, 0.92) 0 13px, transparent 13.5px),
    rgba(113, 24, 53, 0.12);
}

.paper-shot .hero-next-action::after {
  content: "";
  position: absolute;
  left: 2.1rem;
  top: 1.68rem;
  width: 14px;
  height: 7px;
  border-left: 2px solid #711835;
  border-bottom: 2px solid #711835;
  transform: rotate(-45deg);
}

.paper-shot .hero-next-action strong {
  color: #711835;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: none;
}

.paper-shot .hero-next-action p {
  margin-top: 0.28rem;
  font-size: 0.74rem;
  font-weight: 740;
  line-height: 1.42;
}

.paper-shot .hero-proof-line {
  margin: 0.82rem 1.3rem 1.15rem;
  color: #3f4b49;
  font-size: 0.72rem;
}

.paper-shot .paper-diagnostic-card.repair-report {
  width: 100%;
  max-width: 800px;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.repair-card-panel {
  padding: clamp(1.42rem, 1.75vw, 2.05rem) clamp(1.5rem, 2vw, 2.2rem) clamp(1.28rem, 1.65vw, 1.85rem);
  background:
    repeating-linear-gradient(0deg, rgba(42, 35, 32, 0.012) 0 1px, transparent 1px 32px),
    #f8f2e8;
  border: 1px solid rgba(42, 35, 32, 0.2);
  border-radius: 8px;
  box-shadow:
    0 8px 18px rgba(42, 35, 32, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.repair-card-panel h2 {
  margin: 0;
  color: #111817;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 760;
  line-height: 1.05;
  white-space: nowrap;
}

.repair-card-lede {
  margin: 0.42rem 0 0;
  color: #151b1a;
  font-size: clamp(0.86rem, 0.78vw, 0.96rem);
  font-weight: 530;
  line-height: 1.35;
}

.repair-loss-banner {
  display: grid;
  grid-template-columns: clamp(64px, 4.8vw, 76px) minmax(0, 1fr);
  gap: clamp(0.9rem, 1.25vw, 1.25rem);
  align-items: center;
  margin-top: clamp(0.92rem, 1.6svh, 1.25rem);
  min-height: clamp(76px, 8svh, 92px);
  padding: clamp(0.72rem, 1vw, 0.95rem) clamp(1rem, 1.35vw, 1.3rem);
  background: #f7efe4;
  border: 1px solid rgba(113, 24, 53, 0.24);
  border-radius: 7px;
}

.repair-loss-banner > strong {
  display: grid;
  place-items: center;
  width: clamp(58px, 4.4vw, 70px);
  height: clamp(58px, 4.4vw, 70px);
  border-radius: 50%;
  background: #7b1236;
  color: #fff7ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.98rem, 2.35vw, 2.48rem);
  font-weight: 760;
  line-height: 1;
  box-shadow: none;
}

.repair-loss-banner b {
  display: block;
  color: var(--paper-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.3vw, 1.38rem);
  font-weight: 760;
  line-height: 1.05;
}

.repair-loss-banner p {
  margin: 0.26rem 0 0;
  color: #1d2221;
  font-size: clamp(0.72rem, 0.72vw, 0.84rem);
  font-weight: 650;
  line-height: 1.25;
}

.repair-evidence-card,
.repair-plan-card {
  margin-top: clamp(0.86rem, 1.45svh, 1.12rem);
  padding: clamp(0.86rem, 1.05vw, 1.12rem);
  background: #f8f2e8;
  border: 1px solid rgba(42, 35, 32, 0.105);
  border-radius: 7px;
}

.repair-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.46rem;
}

.repair-section-title strong {
  color: #131817;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.1;
}

.repair-section-title span {
  margin-left: 0.28rem;
  color: #303736;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 650;
}

.repair-section-title b {
  color: #162020;
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
}

.repair-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.78rem, 1.05vw, 1.08rem);
}

.repair-evidence-grid article {
  min-width: 0;
  padding: clamp(0.72rem, 0.92vw, 0.98rem);
  background: #f6eee3;
  border: 1px solid rgba(42, 35, 32, 0.08);
  border-radius: 6px;
}

.repair-evidence-grid header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.48rem;
}

.repair-evidence-grid header strong {
  color: #171c1b;
  font-size: 0.72rem;
  font-weight: 920;
  white-space: nowrap;
}

.repair-evidence-grid header span {
  min-width: 0;
  padding: 0.18rem 0.44rem;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(113, 24, 53, 0.09);
  color: #5f1730;
  font-size: 0.56rem;
  font-weight: 820;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.repair-evidence-grid article > b {
  display: block;
  color: var(--paper-burgundy);
  font-size: 0.82rem;
  font-weight: 920;
  line-height: 1;
}

.repair-evidence-grid p,
.repair-evidence-grid small {
  display: block;
  margin: 0.24rem 0 0;
  color: #242927;
  font-size: 0.62rem;
  font-weight: 650;
  line-height: 1.2;
}

.repair-evidence-grid code {
  display: block;
  margin-top: 0.3rem;
  color: #101615;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  line-height: 1.2;
}

.repair-plan-card h3 {
  margin: 0 0 0.42rem;
  color: #111817;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.1;
}

.repair-plan-card ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.repair-plan-card li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 42px minmax(0, 1fr) 18px;
  gap: 0.68rem;
  align-items: center;
  min-height: clamp(50px, 5.6svh, 62px);
  padding: clamp(0.44rem, 0.72vw, 0.62rem) 0.5rem clamp(0.44rem, 0.72vw, 0.62rem) 0;
  border: 1px solid rgba(42, 35, 32, 0.06);
  border-bottom: 0;
  background: #f6eee3;
}

.repair-plan-card li:first-child {
  border-radius: 7px 7px 0 0;
}

.repair-plan-card li:last-child {
  border-bottom: 1px solid rgba(42, 35, 32, 0.06);
  border-radius: 0 0 7px 7px;
}

.repair-plan-card li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -12px;
  z-index: 2;
  width: 1px;
  height: 24px;
  border-left: 1px dashed rgba(42, 35, 32, 0.24);
}

.repair-step-badge {
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-burgundy);
  color: #fff7ef;
  font-size: 0.8rem;
  font-weight: 920;
}

.repair-plan-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  opacity: 0.92;
}

.repair-plan-icon.book {
  background-image: url("/assets/repair-icon-book.png?v=1");
}

.repair-plan-icon.question {
  background-image: url("/assets/repair-icon-question.png?v=1");
}

.repair-plan-icon.clock {
  background-image: url("/assets/repair-icon-stopwatch.png?v=1");
}

.repair-plan-icon.book::before,
.repair-plan-icon.book::after {
  content: none;
  position: absolute;
  top: 4px;
  width: 13px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px 2px 2px 3px;
}

.repair-plan-icon.book::before {
  left: 1px;
  transform: skewY(-5deg);
}

.repair-plan-icon.book::after {
  right: 1px;
  transform: skewY(5deg);
}

.repair-plan-icon.question {
  border: 0;
  border-radius: 0;
}

.repair-plan-icon.question::before {
  content: none;
  position: absolute;
  inset: 2px 0 0;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.repair-plan-icon.clock {
  border: 0;
  border-radius: 0;
}

.repair-plan-icon.clock::before,
.repair-plan-icon.clock::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  background: currentColor;
  transform-origin: top center;
}

.repair-plan-icon.clock::before {
  height: 9px;
  transform: rotate(0deg) translate(-50%, -1px);
}

.repair-plan-icon.clock::after {
  height: 8px;
  transform: rotate(48deg) translate(-50%, -1px);
}

.repair-plan-card strong,
.repair-plan-card small {
  display: block;
  min-width: 0;
}

.repair-plan-card strong {
  color: #121817;
  font-size: 0.78rem;
  font-weight: 920;
  line-height: 1.12;
}

.repair-plan-card small {
  margin-top: 0.12rem;
  color: #252b2a;
  font-size: 0.64rem;
  font-weight: 620;
  line-height: 1.18;
}

.repair-chevron {
  color: rgba(22, 28, 27, 0.66);
  font-size: 1.75rem;
  line-height: 1;
}

.repair-card-cta.primary-button {
  display: flex;
  gap: 1.05rem;
  width: 100%;
  min-height: clamp(64px, 6.5svh, 78px);
  margin-top: clamp(0.96rem, 1.55svh, 1.25rem);
  border-radius: 12px;
  color: #fff7ef;
  font-size: clamp(1.06rem, 1.05vw, 1.24rem);
  font-weight: 400;
  letter-spacing: 0;
}

.repair-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  margin: 0.56rem 0 0;
  color: #4a514f;
  font-size: 0.7rem;
  font-weight: 650;
}

.repair-trust-line span {
  width: 13px;
  height: 15px;
  flex: 0 0 auto;
  background-image: url("/assets/repair-icon-lock.png?v=1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.86;
}

.repair-trust-line span::before {
  content: none;
}

.paper-shot .paper-compare {
  padding: 1.2rem 0 1.25rem;
  border-top: 0;
  text-align: center;
}

.paper-shot .paper-compare h2,
.paper-shot .paper-process h2,
.paper-shot .paper-pricing h2 {
  margin: 0 auto 0.35rem;
  font-size: 1.55rem;
  line-height: 1.1;
}

.paper-shot .paper-compare > p {
  max-width: 760px;
  margin: 0 auto 1.2rem;
  font-size: 0.72rem;
}

.paper-shot .paper-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.5rem;
  align-items: start;
}

.paper-shot .paper-loop-panel {
  padding: 1.15rem;
  border: 1.2px solid rgba(42, 35, 32, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.52);
  text-align: left;
}

.paper-shot .paper-loop-panel h3 {
  margin-bottom: 0.85rem;
  color: var(--paper-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  text-align: center;
}

.paper-shot .paper-loop-list {
  display: grid;
  gap: 0.5rem;
}

.paper-shot .paper-loop-list span {
  display: grid;
  grid-template-columns: 28px minmax(0, 110px) minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem;
  border: 1px solid rgba(42, 35, 32, 0.14);
  border-radius: 5px;
  background: rgba(255, 252, 246, 0.55);
}

.paper-shot .paper-loop-list b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--paper-burgundy);
  color: #fff;
  font-size: 0.72rem;
}

.paper-shot .paper-loop-list strong {
  font-size: 0.72rem;
}

.paper-shot .paper-loop-list small {
  color: var(--paper-muted);
  font-size: 0.66rem;
  line-height: 1.22;
}

.paper-shot .paper-output {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.2rem;
  padding: 0.7rem 0 1.1rem;
  background: transparent;
}

.paper-shot .paper-table-panel,
.paper-shot .paper-list-panel {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.paper-shot .paper-table-panel h2,
.paper-shot .paper-list-panel h2 {
  font-size: 1.45rem;
}

.paper-shot .paper-table-panel p,
.paper-shot .paper-list-panel p {
  margin-block: 0 0.8rem;
  font-size: 0.72rem;
}

.paper-shot .paper-mark-table {
  margin-top: 0.75rem;
  background: rgba(255, 252, 246, 0.45);
  font-size: 0.66rem;
}

.paper-shot .paper-mark-table div {
  grid-template-columns: 70px minmax(0, 1fr) minmax(130px, 1fr);
}

.paper-shot .paper-mark-table span,
.paper-shot .paper-mark-table strong {
  min-height: 29px;
  padding: 0.42rem 0.55rem;
}

.paper-shot .paper-list-panel ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.paper-shot .paper-list-panel li {
  grid-template-columns: 34px 1fr;
  min-height: 70px;
  padding: 0.7rem;
  border: 1px solid rgba(42, 35, 32, 0.16);
  border-radius: 5px;
  background: rgba(255, 252, 246, 0.5);
}

.paper-shot .paper-list-panel b {
  font-size: 0.78rem;
}

.paper-shot .paper-list-panel span {
  grid-column: 2;
  font-size: 0.68rem;
}

.paper-shot .paper-process,
.paper-shot .paper-pricing {
  padding: 0.9rem 0;
  background: transparent;
}

.paper-shot .paper-process > p {
  display: none;
}

.paper-shot .paper-process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.paper-shot .paper-process-steps b {
  width: 30px;
  height: 30px;
  border-color: var(--paper-burgundy);
  background: var(--paper-burgundy);
  color: #fff;
  font-size: 0.8rem;
}

.paper-shot .paper-process-steps span {
  font-size: 0.75rem;
}

.paper-shot .paper-process-steps small {
  font-size: 0.64rem;
}

.paper-shot .paper-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.paper-shot .paper-price-grid article {
  min-height: 0;
  padding: 1rem;
  gap: 0.5rem;
  background: rgba(255, 252, 246, 0.6);
}

.paper-shot .paper-price-grid h3 {
  font-size: 0.95rem;
}

.paper-shot .paper-price-grid strong {
  font-size: 2rem;
}

.paper-shot .paper-price-grid p,
.paper-shot .paper-price-grid li {
  font-size: 0.7rem;
}

.paper-shot .paper-price-grid .primary-button,
.paper-shot .paper-price-grid .secondary-button {
  min-height: 36px;
  padding: 0.55rem 0.8rem;
  font-size: 0.72rem;
}

.paper-shot .paper-footer-proof {
  display: block;
  padding: 0.55rem 0;
  background: transparent;
  text-align: left;
}

.paper-shot .paper-footer-proof ul {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(42, 35, 32, 0.13);
  border-radius: 5px;
  background: rgba(255, 252, 246, 0.38);
}

.paper-shot .paper-footer-proof li {
  grid-template-columns: 32px 1fr;
}

.paper-shot .paper-footer-proof b {
  font-size: 0.72rem;
}

.paper-shot .paper-footer-proof span {
  font-size: 0.64rem;
}

.paper-shot .paper-site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(42, 35, 32, 0.16);
}

.paper-shot .paper-site-footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #121d1e;
}

.paper-shot .paper-site-footer .brand strong {
  font-size: 0.72rem;
}

.paper-shot .paper-site-footer .brand small,
.paper-shot .paper-site-footer small,
.paper-shot .paper-site-footer a,
.paper-shot .paper-site-footer span {
  color: #352f2c;
  font-size: 0.6rem;
}

.paper-shot .paper-site-footer nav {
  display: flex;
  gap: 2.2rem;
}

@media (max-width: 1240px) {
  .paper-shot .paper-hero {
    grid-template-columns: minmax(420px, 0.95fr) minmax(480px, 1fr);
    gap: clamp(1.25rem, 2vw, 2rem);
    padding-inline: 1.2rem;
  }

  .paper-shot h1 {
    font-size: clamp(3.45rem, 4.85vw, 5.25rem);
  }

  .repair-card-panel h2 {
    font-size: 1.55rem;
  }
}

@media (min-width: 1081px) and (max-height: 820px) {
  body:has(.paper-shot) .topbar {
    min-height: 76px;
    padding-block: 0.62rem;
  }

  .paper-shot .paper-hero {
    min-height: calc(100svh - 118px);
    gap: clamp(1.5rem, 2.7vw, 3.2rem);
    padding-block: 0.62rem 0.9rem;
  }

  .paper-shot .paper-copy {
    transform: translateY(-0.45rem);
  }

  .paper-shot .paper-kicker {
    margin-bottom: 0.58rem;
  }

  .paper-shot h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.1rem, 4.65vw, 4.75rem);
  }

  .paper-shot .paper-copy h1::after {
    bottom: -0.46rem;
    height: 12px;
  }

  .paper-shot .paper-copy > p:not(.paper-kicker) {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .paper-shot .paper-actions {
    margin-top: 0.86rem;
  }

  .paper-shot .paper-actions .primary-button {
    min-height: 52px;
  }

  .paper-shot .paper-proof-strip {
    margin-top: 0.74rem;
  }

  .repair-card-panel {
    padding: 1rem 1.2rem 0.9rem;
  }

  .repair-card-panel h2 {
    font-size: 1.48rem;
  }

  .repair-card-lede {
    margin-top: 0.24rem;
    font-size: 0.78rem;
  }

  .repair-loss-banner {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.74rem;
    min-height: 60px;
    margin-top: 0.62rem;
    padding: 0.52rem 0.78rem;
  }

  .repair-loss-banner > strong {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }

  .repair-loss-banner b {
    font-size: 1rem;
  }

  .repair-loss-banner p {
    font-size: 0.68rem;
  }

  .repair-evidence-card,
  .repair-plan-card {
    margin-top: 0.58rem;
    padding: 0.62rem;
  }

  .repair-evidence-grid article {
    padding: 0.52rem;
  }

  .repair-plan-card li {
    min-height: 43px;
    padding: 0.3rem 0.36rem 0.3rem 0;
  }

  .repair-card-cta.primary-button {
    min-height: 52px;
    margin-top: 0.68rem;
    font-size: 0.98rem;
  }

  .repair-trust-line {
    margin-top: 0.35rem;
  }
}

@media (max-width: 1080px) {
  .paper-shot .paper-hero {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin-inline: auto;
  }

  .paper-shot h1 span {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  body:has(.paper-shot) {
    overflow-x: hidden;
  }

  body:has(.paper-shot) .topbar {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 94px;
    padding: 1rem 1.2rem 0.65rem;
    overflow: hidden;
  }

  body:has(.paper-shot) .brand {
    min-width: 0;
  }

  body:has(.paper-shot) .brand-mark {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    font-size: 1.28rem;
  }

  body:has(.paper-shot) .brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    white-space: nowrap;
  }

  body:has(.paper-shot) .brand small {
    display: block;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  body:has(.paper-shot) .topnav {
    display: none;
  }

  body:has(.paper-shot) .topnav a:not(.primary-button),
  body:has(.paper-shot) .topnav button:not(.primary-button) {
    display: none;
  }

  body:has(.paper-shot) .topnav .primary-button {
    min-height: 40px;
    padding-inline: 0.9rem;
    white-space: nowrap;
  }

  .paper-shot .paper-hero,
  .paper-shot .paper-compare-grid,
  .paper-shot .paper-output,
  .paper-shot .paper-price-grid,
  .paper-shot .paper-footer-proof ul {
    grid-template-columns: 1fr;
  }

  .paper-shot .paper-hero,
  .paper-shot .paper-compare,
  .paper-shot .paper-output,
  .paper-shot .paper-process,
  .paper-shot .paper-pricing,
  .paper-shot .paper-footer-proof,
  .paper-shot .paper-site-footer {
    width: min(calc(100vw - 24px), 1180px);
  }

  .paper-shot .paper-hero {
    width: 100%;
    min-height: auto;
    gap: 0.65rem;
    padding:
      calc(68px + 0.9rem)
      1.05rem
      0.65rem;
    background: transparent;
  }

  .paper-shot .paper-copy {
    max-width: none;
    min-width: 0;
    transform: none;
  }

  .paper-shot .paper-kicker {
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .paper-shot h1 {
    max-width: 100%;
    margin-bottom: 1.15rem;
    font-size: clamp(2.85rem, 10.4vw, 4rem);
    line-height: 0.95;
  }

  .paper-shot .paper-copy h1::after {
    bottom: -0.42rem;
    width: min(390px, 92%);
    height: 12px;
  }

  .paper-shot .paper-copy > p:not(.paper-kicker) {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .paper-shot .paper-actions .primary-button {
    width: 100%;
    min-width: 0;
  }

  .paper-shot .paper-proof-strip {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.95rem;
    padding: 0.78rem 0.9rem;
    background: rgba(255, 252, 246, 0.78);
    border: 1px solid rgba(42, 35, 32, 0.12);
    border-radius: 7px;
  }

  .paper-shot .paper-proof-strip .paper-proof-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 40px;
    padding: 0;
  }

  .paper-shot .paper-proof-strip .paper-proof-item:not(:last-child) {
    border-right: 0;
  }

  .paper-shot .paper-proof-strip strong,
  .paper-shot .paper-proof-strip small {
    white-space: normal;
  }

  .paper-shot .paper-diagnostic-card {
    justify-self: stretch;
    min-width: 0;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.9rem;
    background: rgba(255, 252, 246, 0.86);
  }

  .paper-shot .paper-diagnostic-card.diagnostic-report {
    max-width: 100%;
    padding: 0;
    background:
      linear-gradient(135deg, #fffcf6, #fcf6ec),
      repeating-linear-gradient(0deg, rgba(42, 35, 32, 0.028) 0 1px, transparent 1px 34px);
  }

  .paper-shot .paper-diagnostic-card.repair-report {
    max-width: 100%;
    padding: 0;
    background: transparent;
  }

  .repair-card-panel {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 1.15rem;
  }

  .repair-card-panel h2 {
    font-size: 1.42rem;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .paper-shot .paper-card-kicker {
    margin-bottom: 0.75rem;
    font-size: 1.12rem;
  }

  .paper-shot .hero-bars {
    gap: 0.54rem;
  }

  .paper-shot .hero-next-action {
    margin-top: 0.75rem;
    padding-block: 0.82rem;
  }

  .paper-shot .hero-proof-line {
    margin-top: 0.55rem;
  }

  .paper-shot .paper-process-steps,
  .paper-shot .paper-proof-row,
  .paper-shot .paper-list-panel ul {
    grid-template-columns: 1fr;
  }

  .paper-shot .paper-site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 560px) and (max-width: 900px) {
  .paper-shot .paper-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .paper-shot .paper-proof-strip .paper-proof-item {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 54px;
    padding: 0 0.72rem;
  }

  .paper-shot .paper-proof-strip .paper-proof-item:first-child {
    padding-left: 0;
  }

  .paper-shot .paper-proof-strip .paper-proof-item:not(:last-child) {
    border-right: 1px solid rgba(42, 35, 32, 0.22);
  }

  .paper-shot .paper-proof-strip .paper-proof-item::before {
    width: 36px;
    height: 36px;
  }

  .paper-shot .paper-proof-strip strong {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .paper-shot .paper-proof-strip small {
    font-size: 0.64rem;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  body:has(.paper-shot) .topnav {
    display: none;
  }

  .paper-shot .paper-hero {
    padding-inline: 0.9rem;
    justify-items: start;
  }

  .paper-shot .paper-copy,
  .paper-shot .paper-diagnostic-card {
    width: calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
  }

  .paper-shot h1 {
    max-width: calc(100vw - 3rem);
    font-size: 2.24rem;
    line-height: 0.98;
  }

  .paper-shot .paper-copy > p:not(.paper-kicker),
  .paper-shot .paper-actions .primary-button,
  .paper-shot .paper-proof-strip,
  .repair-card-panel {
    max-width: calc(100vw - 3rem);
  }

  .paper-shot .paper-copy > p:not(.paper-kicker) {
    width: min(34ch, calc(100vw - 3rem));
  }

  .diagnostic-report-header {
    display: grid;
    gap: 0.7rem;
    padding: 1rem 1rem 0.85rem;
  }

  .report-score {
    font-size: 2.25rem;
  }

  .report-gap {
    justify-self: start;
    min-height: 28px;
    white-space: normal;
  }

  .report-summary-grid span {
    min-height: 64px;
    padding: 0.7rem 0.78rem;
  }

  .report-summary-grid strong {
    font-size: 1.12rem;
  }

  .report-summary-grid small {
    font-size: 0.55rem;
  }

  .diagnostic-leak-list {
    padding-inline: 1rem;
  }

  .leak-row {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 0.45rem 0.75rem;
    min-height: 84px;
  }

  .leak-row i {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .leak-row b {
    grid-column: 2;
    grid-row: 1;
  }

  .leak-row strong {
    font-size: 0.76rem;
  }

  .diagnostic-next-action {
    grid-template-columns: 38px minmax(0, 1fr);
    margin-inline: 1rem;
  }

  .diagnostic-next-action > span {
    width: 34px;
    height: 34px;
    font-size: 0.64rem;
  }

  .repair-card-panel {
    padding: 1rem;
  }

  .repair-card-panel h2 {
    font-size: 1.16rem;
  }

  .repair-loss-banner {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.76rem;
    padding: 0.68rem;
  }

  .repair-loss-banner > strong {
    width: 46px;
    height: 46px;
    font-size: 1.52rem;
  }

  .repair-loss-banner b {
    font-size: 0.9rem;
  }

  .repair-evidence-grid {
    grid-template-columns: 1fr;
    gap: 0.58rem;
  }

  .repair-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.34rem;
  }

  .repair-plan-card li {
    grid-template-columns: 32px 34px minmax(0, 1fr) 14px;
    gap: 0.55rem;
  }

  .repair-plan-icon {
    width: 28px;
    height: 28px;
  }

  .repair-card-cta.primary-button {
    min-height: 48px;
    font-size: 0.88rem;
  }

  .repair-trust-line {
    align-items: flex-start;
    font-size: 0.64rem;
    line-height: 1.2;
    text-align: center;
  }

  .paper-shot .paper-card-kicker {
    font-size: 1.15rem;
  }

  .paper-shot .paper-bars div {
    grid-template-columns: 1fr 40px;
  }

  .paper-shot .hero-next-action {
    padding: 0.9rem 0.9rem 0.95rem 3.8rem;
  }

  .paper-shot .hero-next-action::before {
    left: 0.82rem;
    width: 36px;
    height: 36px;
  }

  .paper-shot .hero-next-action::after {
    left: 1.78rem;
    top: 1.55rem;
  }
}

/* Mark-loss conversion pass */
.paper-shot .paper-cred-strip,
.paper-shot .paper-patterns,
.paper-shot .paper-free-offer,
.paper-shot .paper-audience,
.paper-shot .paper-parent-proof,
.paper-shot .paper-case-studies,
.paper-shot .paper-faq,
.paper-shot .paper-final-cta {
  width: min(1180px, calc(100vw - 72px));
  margin-inline: auto;
}

.paper-shot .paper-actions {
  align-items: center;
}

.paper-sample-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--paper-burgundy);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.paper-sample-link:hover {
  text-decoration: underline;
}

.paper-anti-generic {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: #453b38;
  font-size: clamp(1rem, 0.98vw, 1.14rem);
  font-weight: 620;
  line-height: 1.54;
}

.paper-shot .paper-proof-strip {
  margin-top: clamp(1.75rem, 2.8svh, 2.35rem);
}

.paper-shot .repair-card-panel h2 {
  white-space: normal;
}

.paper-shot .mark-loss-banner {
  grid-template-columns: 72px minmax(0, 1fr);
}

.paper-shot .hero-loss-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
  margin-top: 0.72rem;
}

.paper-shot .hero-loss-breakdown span {
  display: grid;
  gap: 0.12rem;
  min-height: 54px;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(113, 24, 53, 0.13);
  border-radius: 6px;
  background: rgba(255, 252, 246, 0.44);
  color: #2b2422;
  font-size: 0.65rem;
  line-height: 1.16;
}

.paper-shot .hero-loss-breakdown b {
  color: var(--paper-burgundy);
  font-size: 0.74rem;
}

.paper-shot .repair-evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.paper-shot .repair-evidence-grid article {
  padding: 0.62rem;
}

.paper-shot .paper-cred-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: 0;
  padding: 0.78rem clamp(1rem, 5vw, 6.75rem);
  border-top: 1px solid rgba(42, 35, 32, 0.13);
  border-right: 0;
  border-bottom: 1px solid rgba(42, 35, 32, 0.13);
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 252, 246, 0.72);
}

.paper-shot .paper-hero > .paper-cred-strip {
  grid-column: 1 / -1;
  align-self: end;
  margin: clamp(0.6rem, 1.2svh, 1rem) 0 0;
  padding: 0.62rem 0;
  background: rgba(255, 252, 246, 0.68);
}

.paper-shot .paper-cred-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.64rem;
  min-height: 46px;
  padding: 0 1.1rem;
  color: #2c2522;
  font-size: 0.76rem;
  font-weight: 860;
  line-height: 1.15;
  text-align: center;
}

.paper-shot .paper-cred-strip span::before {
  content: "";
  display: none;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 4px;
  mix-blend-mode: multiply;
  opacity: 0.86;
}

.paper-shot .paper-cred-strip span:nth-child(1)::before {
  display: block;
  background-image: url("/assets/trust-icon-pure.png?v=1");
}

.paper-shot .paper-cred-strip span:nth-child(3)::before {
  display: block;
  background-image: url("/assets/trust-icon-explained.png?v=1");
}

.paper-shot .paper-cred-strip span:nth-child(6)::before {
  display: block;
  background-image: url("/assets/trust-icon-no-card.png?v=1");
}

.paper-shot .paper-cred-strip span:not(:last-child) {
  border-right: 1px solid rgba(42, 35, 32, 0.15);
}

.paper-shot .paper-section-cta {
  display: inline-flex;
  margin-top: 1.15rem;
  min-height: 46px;
  padding-inline: 1.1rem;
  font-size: 0.82rem;
}

.paper-shot .paper-compare-grid {
  gap: 1.2rem;
}

.paper-shot .paper-contrast-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper-shot .paper-contrast-list li {
  min-height: 48px;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(42, 35, 32, 0.13);
  border-radius: 6px;
  background: rgba(255, 252, 246, 0.48);
  color: #171c1b;
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.28;
}

.paper-shot .paper-loop-panel.good .paper-contrast-list li {
  border-color: rgba(113, 24, 53, 0.18);
}

.paper-shot .paper-mark-table div {
  grid-template-columns: 74px 54px minmax(0, 1fr) minmax(130px, 0.72fr);
}

.paper-shot .paper-patterns,
.paper-shot .paper-free-offer,
.paper-shot .paper-audience,
.paper-shot .paper-parent-proof,
.paper-shot .paper-case-studies,
.paper-shot .paper-faq,
.paper-shot .paper-final-cta {
  margin-top: 1.1rem;
  padding: 1.35rem 0;
}

.paper-shot .paper-patterns h2,
.paper-shot .paper-free-offer h2,
.paper-shot .paper-audience h2,
.paper-shot .paper-parent-proof h2,
.paper-shot .paper-case-studies h2,
.paper-shot .paper-faq h2,
.paper-shot .paper-final-cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.55rem;
  line-height: 1.1;
}

.paper-shot .paper-patterns > p,
.paper-shot .paper-free-offer p,
.paper-shot .paper-parent-proof p,
.paper-shot .paper-final-cta p {
  max-width: 760px;
  margin: 0 0 1rem;
  font-size: 0.78rem;
}

.paper-pattern-grid,
.paper-audience-grid,
.paper-case-grid {
  display: grid;
  gap: 1rem;
}

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

.paper-pattern-grid article,
.paper-audience-grid article,
.parent-progress-card,
.paper-case-grid article,
.paper-faq details,
.paper-free-offer {
  border: 1px solid rgba(42, 35, 32, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.5);
}

.paper-pattern-grid article {
  display: grid;
  gap: 0.46rem;
  min-height: 178px;
  padding: 1rem;
}

.paper-pattern-grid strong,
.paper-pattern-grid b {
  color: var(--paper-burgundy);
}

.paper-pattern-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.1;
}

.paper-pattern-grid span,
.paper-pattern-grid small {
  color: #332c29;
  font-size: 0.72rem;
  line-height: 1.32;
}

.paper-shot .paper-loop-section p {
  display: block;
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: 0.78rem;
  text-align: center;
}

.paper-shot .paper-loop-section .paper-process-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.paper-free-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
}

.paper-free-offer .primary-button,
.paper-final-cta .primary-button {
  display: inline-flex;
  width: fit-content;
  min-height: 48px;
  padding-inline: 1.15rem;
  font-size: 0.86rem;
}

.paper-free-offer ul,
.paper-audience ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper-free-offer li,
.paper-audience li {
  position: relative;
  padding-left: 1.2rem;
  color: #201c1a;
  font-size: 0.76rem;
  font-weight: 710;
  line-height: 1.28;
}

.paper-free-offer li::before,
.paper-audience li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper-burgundy);
}

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

.paper-audience-grid article {
  padding: 1rem;
}

.paper-audience-grid h3 {
  color: var(--paper-burgundy);
  font-family: Georgia, "Times New Roman", serif;
}

.paper-parent-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1.4rem;
  align-items: center;
}

.parent-progress-card {
  padding: 1rem;
}

.parent-progress-card > strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--paper-burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.parent-progress-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.parent-progress-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 34px;
  padding: 0.48rem 0.58rem;
  border-radius: 5px;
  background: rgba(255, 247, 236, 0.74);
}

.parent-progress-card dt,
.parent-progress-card dd {
  margin: 0;
  color: #221d1b;
  font-size: 0.72rem;
  font-weight: 760;
}

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

.paper-case-grid article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.42rem 0.8rem;
  padding: 1rem;
}

.paper-case-grid b {
  color: var(--paper-burgundy);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.paper-case-grid span {
  color: #201c1a;
  font-size: 0.76rem;
  line-height: 1.3;
}

.paper-faq {
  display: grid;
  gap: 0.6rem;
}

.paper-faq details {
  padding: 0.85rem 1rem;
}

.paper-faq summary {
  cursor: pointer;
  color: #171c1b;
  font-weight: 860;
}

.paper-faq p {
  margin: 0.55rem 0 0;
  font-size: 0.76rem;
}

.paper-final-cta {
  display: grid;
  justify-items: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(113, 24, 53, 0.14);
  border-radius: 8px;
  background: rgba(113, 24, 53, 0.055);
  text-align: center;
}

.paper-final-cta p {
  margin-inline: auto;
}

.paper-final-cta small {
  display: block;
  margin-top: 0.7rem;
  color: #514946;
  font-size: 0.72rem;
  font-weight: 650;
}

@media (min-width: 1241px) {
  .paper-shot .paper-diagnostic-card.repair-report {
    max-width: 680px;
  }

  .paper-shot .paper-hero {
    grid-template-columns: minmax(500px, 0.92fr) minmax(620px, 1.08fr);
  }

  .paper-shot .repair-plan-card li {
    min-height: 48px;
  }
}

@media (max-width: 1240px) {
  .paper-shot .repair-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .paper-shot .paper-mark-table div {
    grid-template-columns: 64px 48px minmax(0, 1fr);
  }

  .paper-shot .paper-mark-table div > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .paper-shot .paper-cred-strip,
  .paper-shot .paper-patterns,
  .paper-shot .paper-free-offer,
  .paper-shot .paper-audience,
  .paper-shot .paper-parent-proof,
  .paper-shot .paper-case-studies,
  .paper-shot .paper-faq,
  .paper-shot .paper-final-cta {
    width: min(calc(100vw - 24px), 1180px);
  }

  .paper-shot .paper-cred-strip,
  .paper-pattern-grid,
  .paper-free-offer,
  .paper-audience-grid,
  .paper-parent-proof,
  .paper-case-grid,
  .paper-shot .paper-loop-section .paper-process-steps {
    grid-template-columns: 1fr;
  }

  .paper-shot .paper-cred-strip span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(42, 35, 32, 0.12);
  }

  .paper-shot .repair-evidence-grid,
  .paper-shot .hero-loss-breakdown {
    grid-template-columns: 1fr;
  }

  .paper-free-offer {
    padding: 1rem;
  }
}

/* Above-fold follow-up: guessing vs repairing */
.screenshot-match-landing .paper-fix-section,
.paper-shot .paper-fix-section {
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(3.1rem, 6vw, 5.2rem) 0 clamp(2.6rem, 5vw, 4.4rem);
  color: var(--paper-ink);
  text-align: left;
}

.paper-fix-heading {
  max-width: 820px;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.paper-fix-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--match-red, var(--paper-burgundy));
  font-size: 0.78rem;
  font-weight: 880;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-fix-heading h2,
.paper-fix-heading h2 {
  margin: 0;
  max-width: 780px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.paper-fix-heading p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: #312d2a;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.55;
}

.paper-fix-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  align-items: start;
}

.paper-fix-compare,
.paper-fix-cta-card {
  min-width: 0;
  border: 1px solid rgba(31, 26, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.paper-fix-compare {
  overflow: hidden;
}

.paper-fix-labels,
.paper-fix-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.paper-fix-labels {
  background: rgba(24, 22, 21, 0.035);
}

.paper-fix-labels span {
  padding: 0.82rem clamp(0.95rem, 1.8vw, 1.35rem);
  color: rgba(20, 20, 19, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.paper-fix-labels span + span {
  border-left: 1px solid rgba(31, 26, 24, 0.08);
  color: var(--match-red, var(--paper-burgundy));
}

.paper-fix-row {
  min-height: 84px;
  border-top: 1px solid rgba(31, 26, 24, 0.08);
}

.paper-fix-cell {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.92rem clamp(0.95rem, 1.8vw, 1.35rem);
  text-align: left;
}

.paper-fix-cell + .paper-fix-cell {
  border-left: 1px solid rgba(31, 26, 24, 0.08);
}

.paper-fix-cell.guessing {
  background: rgba(24, 22, 21, 0.016);
}

.paper-fix-cell.repairing {
  background: rgba(255, 255, 255, 0.58);
}

.paper-fix-cell > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}

.paper-fix-cell.guessing > span {
  background: rgba(152, 24, 29, 0.075);
  color: rgba(152, 24, 29, 0.72);
}

.paper-fix-cell.repairing > span {
  background: rgba(152, 24, 29, 0.1);
  color: var(--match-red, var(--paper-burgundy));
}

.paper-fix-cell strong,
.paper-fix-cell small {
  display: block;
}

.paper-fix-cell strong {
  color: #161514;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 790;
  line-height: 1.22;
}

.paper-fix-cell small {
  margin-top: 0.2rem;
  color: #625b55;
  font-size: clamp(0.78rem, 0.86vw, 0.88rem);
  line-height: 1.3;
}

.paper-fix-cta-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.55rem);
  overflow: hidden;
  border-color: rgba(152, 24, 29, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.paper-fix-cta-card p {
  margin: 0;
  color: var(--match-red, var(--paper-burgundy));
  font-size: 0.86rem;
  font-weight: 820;
  line-height: 1.35;
}

.screenshot-match-landing .paper-fix-cta-card h3,
.paper-fix-cta-card h3 {
  margin: 0;
  color: #161514;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.28rem, 1.72vw, 1.72rem);
  font-weight: 820;
  line-height: 1.08;
}

.paper-fix-cta-card .primary-button {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  background: var(--match-red, var(--paper-burgundy));
  box-shadow: none;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
}

.paper-fix-cta-card .primary-button::after {
  content: "->";
  margin-left: 0.65rem;
}

.paper-fix-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem 0.6rem;
  margin-top: 0.05rem;
  color: #625b55;
  font-size: 0.7rem;
  font-weight: 680;
}

.paper-fix-microcopy span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-left: 0.7rem;
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.46);
  vertical-align: middle;
}

.paper-fix-footline {
  margin: clamp(1rem, 2vw, 1.45rem) 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 26, 24, 0.08);
  color: #625b55;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.35;
}

.paper-fix-footline strong {
  color: #161514;
}

@media (max-width: 1180px) {
  .screenshot-match-landing .paper-fix-section,
  .paper-shot .paper-fix-section {
    width: min(1060px, calc(100vw - 40px));
  }

  .paper-fix-layout {
    grid-template-columns: 1fr;
  }

  .paper-fix-cta-card {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .screenshot-match-landing .paper-fix-section,
  .paper-shot .paper-fix-section {
    width: min(calc(100vw - 24px), 920px);
    padding-top: 2rem;
  }

  .paper-fix-heading h2 {
    font-size: clamp(2rem, 8.5vw, 3.1rem);
  }

  .paper-fix-heading p {
    font-size: 0.92rem;
  }

  .paper-fix-row {
    min-height: 76px;
  }

  .paper-fix-footline {
    font-size: 0.88rem;
  }
}

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

  .paper-fix-labels {
    display: none;
  }

  .paper-fix-cell + .paper-fix-cell {
    border-left: 0;
    border-top: 1px solid rgba(31, 26, 24, 0.08);
  }

  .paper-fix-cell {
    position: relative;
    min-height: 70px;
    padding: 1.58rem 0.95rem 0.84rem;
  }

  .paper-fix-cell::before {
    content: "Guessing";
    position: absolute;
    top: 0.55rem;
    left: calc(0.95rem + 43px);
    color: rgba(20, 20, 19, 0.55);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
  }

  .paper-fix-cell.repairing::before {
    content: "Repairing";
    color: var(--match-red, var(--paper-burgundy));
  }

  .paper-fix-labels span {
    padding: 0.7rem 0.95rem;
  }
}

/* Modern underfold comparison: reference-matched guessing vs repairing. */
.screenshot-match-landing .paper-fix-section,
.paper-shot .paper-fix-section {
  width: min(1360px, calc(100vw - 64px));
  padding: clamp(3rem, 5.5vw, 4.35rem) 0 clamp(2.8rem, 5vw, 4rem);
  text-align: center;
}

.paper-fix-heading {
  max-width: 820px;
  margin: 0 auto clamp(1.65rem, 3vw, 2.1rem);
}

.paper-fix-eyebrow {
  margin-bottom: 0.72rem;
  color: var(--match-red, #98181d);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.28em;
}

.screenshot-match-landing .paper-fix-heading h2,
.paper-fix-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #070707;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.25rem);
  font-weight: 830;
  line-height: 1.03;
}

.paper-fix-heading p {
  max-width: 580px;
  margin: 1.05rem auto 0;
  color: #1f2326;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  font-weight: 520;
  line-height: 1.42;
}

.paper-fix-heading p strong {
  color: var(--match-red, #98181d);
  font-weight: 840;
}

.paper-fix-layout {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) 168px minmax(390px, 1fr);
  gap: clamp(1.25rem, 2.6vw, 2.4rem);
  align-items: center;
}

.paper-fix-card {
  min-width: 0;
  padding: clamp(1.25rem, 2vw, 1.55rem);
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(30, 24, 20, 0.055);
  text-align: left;
}

.paper-fix-card header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  margin-bottom: 1.05rem;
}

.paper-fix-card header > span,
.paper-fix-card li > span {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.paper-fix-card header > span {
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 1.65rem;
}

.paper-fix-card.stuck header > span {
  background: #d91824;
}

.paper-fix-card.recovers header > span {
  background: #49af5f;
}

.paper-fix-card h3 {
  position: relative;
  margin: 0;
  color: #111;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  font-weight: 830;
  line-height: 1.1;
}

.paper-fix-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.72rem;
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.paper-fix-card.stuck h3::after {
  color: #d91824;
}

.paper-fix-card.recovers h3::after {
  color: #49af5f;
}

.paper-fix-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper-fix-card li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(130px, 0.64fr);
  gap: 0.95rem;
  align-items: center;
  min-height: 58px;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.paper-fix-card li:first-child {
  border-top: 0;
}

.paper-fix-card li > span {
  width: 34px;
  height: 34px;
  font-size: 1.24rem;
}

.paper-fix-card.stuck li > span {
  background: rgba(217, 24, 36, 0.1);
  color: #d91824;
}

.paper-fix-card.recovers li > span {
  background: rgba(73, 175, 95, 0.12);
  color: #49af5f;
}

.paper-fix-card strong,
.paper-fix-card small {
  display: block;
}

.paper-fix-card strong {
  color: #141414;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 740;
  line-height: 1.22;
}

.paper-fix-card small {
  justify-self: end;
  color: #d91824;
  font-size: clamp(0.76rem, 0.9vw, 0.88rem);
  font-weight: 780;
  line-height: 1.25;
  text-align: right;
}

.paper-fix-card.recovers small {
  color: #49a95d;
}

.paper-vs-divider {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 168px;
}

.paper-vs-divider::before,
.paper-vs-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% + clamp(1.35rem, 2.6vw, 2.55rem));
  border-top: 3px dotted currentColor;
}

.paper-vs-divider::before {
  right: 50%;
  color: rgba(217, 24, 36, 0.58);
}

.paper-vs-divider::after {
  left: 50%;
  color: rgba(73, 175, 95, 0.58);
}

.paper-vs-divider span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border: 1px dotted rgba(20, 20, 20, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(30, 24, 20, 0.05);
}

.paper-vs-divider b {
  color: #d91824;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.paper-vs-divider b:last-child {
  color: #49a95d;
}

.paper-vs-divider strong {
  color: #4a4a4a;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1180px) {
  .screenshot-match-landing .paper-fix-section,
  .paper-shot .paper-fix-section {
    width: min(920px, calc(100vw - 40px));
  }

  .paper-fix-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .paper-vs-divider {
    min-height: 118px;
  }

  .paper-vs-divider::before,
  .paper-vs-divider::after {
    width: calc(50% - 66px);
  }
}

@media (max-width: 720px) {
  .screenshot-match-landing .paper-fix-section,
  .paper-shot .paper-fix-section {
    width: min(100%, calc(100vw - 24px));
    padding-top: 2.4rem;
  }

  .paper-fix-eyebrow {
    letter-spacing: 0.16em;
  }

  .screenshot-match-landing .paper-fix-heading h2,
  .paper-fix-heading h2 {
    font-size: clamp(2.12rem, 10vw, 3rem);
  }

  .paper-fix-card {
    padding: 1.05rem;
  }

  .paper-fix-card header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .paper-fix-card header > span {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .paper-fix-card li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.72rem;
    min-height: 0;
    padding: 0.78rem 0;
  }

  .paper-fix-card li > span {
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
  }

  .paper-fix-card small {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.16rem;
    text-align: left;
  }

  .paper-vs-divider span {
    width: 112px;
    height: 112px;
  }

  .paper-vs-divider strong {
    font-size: 1.62rem;
  }
}

/* Screenshot-matched report detail section. */
.screenshot-match-landing .paper-report-section {
  display: block;
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(3rem, 5.5vw, 4.4rem) 0 clamp(2.8rem, 5vw, 4.2rem);
  color: #080808;
  background: transparent;
}

.paper-output-heading {
  max-width: 980px;
  margin: 0 auto clamp(1.55rem, 3vw, 2rem);
  text-align: center;
}

.paper-output-eyebrow {
  margin: 0 0 0.72rem;
  color: var(--match-red, #98181d);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-output-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.65rem, 5.1vw, 4.45rem);
  font-weight: 830;
  letter-spacing: 0;
  line-height: 0.98;
}

.paper-output-heading h2 span {
  display: inline-block;
  margin-left: 0.32rem;
  color: var(--match-red, #98181d);
  font-size: 0.45em;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: translateY(-0.35em);
}

.paper-output-heading p {
  max-width: 760px;
  margin: 1.2rem auto 0;
  color: #24282b;
  font-size: clamp(1rem, 1.2vw, 1.17rem);
  font-weight: 500;
  line-height: 1.45;
}

.screenshot-match-landing .paper-report-section .paper-table-panel,
.screenshot-match-landing .paper-report-section .paper-list-panel {
  min-height: 0;
  padding: clamp(1.35rem, 2vw, 1.85rem);
  border: 1px solid rgba(18, 17, 16, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(28, 20, 16, 0.06);
}

.paper-report-section .paper-list-panel {
  margin-top: clamp(1rem, 2vw, 1.2rem);
}

.paper-panel-heading {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 0.72rem;
}

.paper-panel-icon,
.paper-loss-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(152, 24, 29, 0.08);
}

.paper-panel-icon {
  width: 58px;
  height: 58px;
}

.paper-panel-icon::before,
.paper-loss-icon::before,
.paper-repair-action i::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: var(--match-red, #98181d);
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  mask: var(--icon-mask) center / contain no-repeat;
}

.paper-panel-icon.target,
.paper-repair-action.repair-target i,
.paper-loss-icon.target {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 2v4m0 12v4M2 12h4m12 0h4M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm0 3a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E");
}

.paper-panel-heading h3,
.screenshot-match-landing .paper-report-section .paper-list-panel h3 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  font-weight: 830;
  line-height: 1.12;
}

.screenshot-match-landing .paper-report-section .paper-mark-table {
  display: grid;
  margin-top: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(18, 17, 16, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.screenshot-match-landing .paper-report-section .paper-mark-table div {
  display: grid;
  grid-template-columns: minmax(96px, 0.72fr) minmax(96px, 0.72fr) minmax(280px, 1.8fr) minmax(230px, 1.05fr);
  align-items: center;
}

.screenshot-match-landing .paper-report-section .paper-mark-table div + div {
  border-top: 1px solid rgba(18, 17, 16, 0.08);
}

.screenshot-match-landing .paper-report-section .paper-mark-table span,
.screenshot-match-landing .paper-report-section .paper-mark-table strong {
  min-height: 0;
  padding: 1rem 1.15rem;
  border: 0;
}

.paper-mark-head strong {
  color: rgba(8, 8, 8, 0.62);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.paper-mark-row > span:first-child {
  color: #090909;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 830;
}

.paper-mark-row > span:nth-child(2) b {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 38px;
  border-radius: 10px;
  background: rgba(152, 24, 29, 0.1);
  color: var(--match-red, #98181d);
  font-size: 1rem;
  font-weight: 900;
}

.paper-mark-row > span:nth-child(3) {
  color: #202427;
  font-weight: 520;
  line-height: 1.35;
}

.paper-repair-action {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 18px;
  gap: 0.72rem;
  align-items: center;
  color: var(--match-red, #98181d);
  font-weight: 840;
  line-height: 1.2;
}

.paper-repair-action i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
}

.paper-repair-action i::before {
  width: 24px;
  height: 24px;
}

.paper-repair-action.repair-clock i {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12 6v6l4 2M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/%3E%3C/svg%3E");
}

.paper-repair-action.repair-list i {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01'/%3E%3C/svg%3E");
}

.paper-repair-action em {
  color: #252525;
  font-style: normal;
  font-size: 1.95rem;
  font-weight: 320;
  line-height: 1;
}

.screenshot-match-landing .paper-report-section .paper-list-panel h3 {
  margin-bottom: 1.05rem;
}

.screenshot-match-landing .paper-report-section .paper-list-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.screenshot-match-landing .paper-report-section .paper-list-panel li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1.05rem;
  align-items: center;
  min-height: 112px;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(18, 17, 16, 0.11);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.58);
}

.screenshot-match-landing .paper-report-section .paper-list-panel li::before {
  display: none;
}

.screenshot-match-landing .paper-report-section .paper-list-panel .paper-loss-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0;
  color: var(--match-red, #98181d);
  line-height: 0;
}

.screenshot-match-landing .paper-report-section .paper-list-panel .paper-loss-icon::before {
  width: 34px;
  height: 34px;
  margin: 0;
}

.paper-loss-icon.puzzle {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M9 4h6m-6 0a3 3 0 0 1 6 0M7 6h10a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2Zm3 7 4 4m0-4-4 4'/%3E%3C/svg%3E");
}

.paper-loss-icon.link {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M10 13a5 5 0 0 0 7.1.1l3-3a5 5 0 0 0-7.1-7.1l-1.7 1.7M14 11a5 5 0 0 0-7.1-.1l-3 3A5 5 0 0 0 11 21l1.7-1.7'/%3E%3C/svg%3E");
}

.paper-loss-icon.pencil {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m18 2 4 4L8 20l-6 2 2-6L18 2Zm-3 3 4 4M4 16l4 4'/%3E%3C/svg%3E");
}

.paper-loss-icon.check {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v16H4V4Zm4 8 3 3 5-6'/%3E%3C/svg%3E");
}

.paper-loss-icon.alert {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m12 3 10 18H2L12 3Zm0 6v5m0 4h.01'/%3E%3C/svg%3E");
}

.paper-loss-icon.stopwatch {
  --icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M10 2h4M12 14l3-3m4-2 1.5-1.5M4.5 7.5 6 9m15 5a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/%3E%3C/svg%3E");
}

.screenshot-match-landing .paper-report-section .paper-list-panel b {
  color: #111;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 830;
  line-height: 1.2;
}

.screenshot-match-landing .paper-report-section .paper-list-panel li span:not(.paper-loss-icon) {
  margin-top: 0.42rem;
  color: #24282b;
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  font-weight: 500;
  line-height: 1.32;
}

.paper-output-footline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin: 1.35rem 0 0;
  color: #24282b;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  font-weight: 520;
  line-height: 1.35;
  text-align: center;
}

.paper-output-footline span {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 34px;
  color: var(--match-red, #98181d);
}

.paper-output-footline span::before {
  content: "";
  width: 26px;
  height: 30px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linejoin='round' d='M12 2 21 5v7c0 6-4 10-9 13-5-3-9-7-9-13V5l9-3Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m8 13 3 3 5-6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linejoin='round' d='M12 2 21 5v7c0 6-4 10-9 13-5-3-9-7-9-13V5l9-3Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m8 13 3 3 5-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.paper-output-footline strong {
  color: var(--match-red, #98181d);
}

@media (max-width: 980px) {
  .screenshot-match-landing .paper-report-section {
    width: min(100%, calc(100vw - 32px));
  }

  .screenshot-match-landing .paper-report-section .paper-mark-table {
    overflow-x: auto;
  }

  .screenshot-match-landing .paper-report-section .paper-mark-table div {
    min-width: 820px;
  }

  .screenshot-match-landing .paper-report-section .paper-list-panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .screenshot-match-landing .paper-report-section {
    width: min(100%, calc(100vw - 24px));
    padding-top: 2.4rem;
  }

  .screenshot-match-landing .paper-output-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .paper-output-heading h2 span {
    margin-left: 0.12rem;
  }

  .screenshot-match-landing .paper-report-section .paper-table-panel,
  .screenshot-match-landing .paper-report-section .paper-list-panel {
    padding: 1rem;
  }

  .screenshot-match-landing .paper-report-section .paper-mark-table {
    gap: 0.72rem;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .screenshot-match-landing .paper-report-section .paper-mark-head {
    display: none;
  }

  .screenshot-match-landing .paper-report-section .paper-mark-table div {
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 0.85rem;
    border: 1px solid rgba(18, 17, 16, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.66);
  }

  .screenshot-match-landing .paper-report-section .paper-mark-table div + div {
    border-top: 1px solid rgba(18, 17, 16, 0.1);
  }

  .screenshot-match-landing .paper-report-section .paper-mark-table span {
    padding: 0.18rem 0;
  }

  .paper-mark-row > span:first-child::before,
  .paper-mark-row > span:nth-child(2)::before,
  .paper-mark-row > span:nth-child(3)::before,
  .paper-repair-action::before {
    display: block;
    margin-bottom: 0.16rem;
    color: rgba(8, 8, 8, 0.54);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .paper-mark-row > span:first-child::before {
    content: "Question";
  }

  .paper-mark-row > span:nth-child(2)::before {
    content: "Lost mark";
  }

  .paper-mark-row > span:nth-child(3)::before {
    content: "Why it happened";
  }

  .paper-repair-action::before {
    content: "Repair";
    grid-column: 1 / -1;
  }

  .paper-panel-heading {
    gap: 0.85rem;
  }

  .paper-panel-icon {
    width: 48px;
    height: 48px;
  }

  .paper-panel-icon::before {
    width: 24px;
    height: 24px;
  }

  .screenshot-match-landing .paper-report-section .paper-list-panel ul {
    grid-template-columns: 1fr;
  }

  .screenshot-match-landing .paper-report-section .paper-list-panel li {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 92px;
    padding: 0.85rem;
  }

  .screenshot-match-landing .paper-report-section .paper-list-panel .paper-loss-icon {
    width: 54px;
    height: 54px;
  }

  .screenshot-match-landing .paper-report-section .paper-list-panel .paper-loss-icon::before {
    width: 30px;
    height: 30px;
  }

  .paper-output-footline {
    align-items: flex-start;
    text-align: left;
  }
}

/* Screenshot-matched pattern recovery section. */
.screenshot-match-landing .paper-pattern-section {
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(3.1rem, 5.8vw, 4.7rem) 0 clamp(3rem, 5vw, 4.4rem);
  background: transparent;
  color: #080808;
  text-align: center;
}

.paper-pattern-heading {
  max-width: 900px;
  margin: 0 auto clamp(1.65rem, 3vw, 2.2rem);
}

.paper-pattern-eyebrow {
  margin: 0 0 0.82rem;
  color: var(--match-red, #98181d);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-pattern-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.2vw, 4.35rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.04;
}

.screenshot-match-landing .paper-pattern-heading p {
  max-width: 820px;
  margin: 1.15rem auto 0;
  color: #333842;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 500;
  line-height: 1.45;
}

.screenshot-match-landing .paper-pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.9rem);
  margin-top: 0;
}

.screenshot-match-landing .paper-pattern-grid .paper-pattern-card {
  display: grid;
  gap: 1.2rem;
  min-height: 426px;
  padding: clamp(1.45rem, 2vw, 1.9rem);
  border: 1px solid rgba(18, 17, 16, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(28, 20, 16, 0.06);
  text-align: left;
}

.paper-pattern-symbol {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(152, 24, 29, 0.12);
  border-radius: 10px;
  background: rgba(152, 24, 29, 0.07);
  color: var(--match-red, #98181d);
}

.paper-pattern-symbol.integration {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M7 19a2 2 0 0 0 2 2c2 0 2-4 3-9s1-9 3-9a2 2 0 0 1 2 2'/%3E%3C/svg%3E");
}

.paper-pattern-symbol.integration::before,
.paper-pattern-symbol.stack::before,
.paper-pattern-symbol.speech::before,
.pattern-mini-icon::before,
.paper-pattern-shield::before,
.paper-pattern-trend::before {
  content: "";
  display: block;
  background: var(--match-red, #98181d);
  -webkit-mask: var(--pattern-icon) center / contain no-repeat;
  mask: var(--pattern-icon) center / contain no-repeat;
}

.paper-pattern-symbol.integration::before,
.paper-pattern-symbol.stack::before,
.paper-pattern-symbol.speech::before {
  width: 46px;
  height: 46px;
}

.paper-pattern-symbol.stack {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linejoin='round' d='M8 8h22v22H8zM18 18h22v22H18z'/%3E%3C/svg%3E");
}

.paper-pattern-symbol.speech {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M8 10h32v23H22L12 41v-8H8zM17 19h18M17 26h13'/%3E%3C/svg%3E");
}

.screenshot-match-landing .paper-pattern-card h3 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 840;
  line-height: 1.08;
}

.paper-pattern-evidence,
.paper-pattern-repair {
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 17, 16, 0.09);
}

.paper-pattern-evidence small,
.paper-pattern-repair small {
  display: block;
  margin-bottom: 0.34rem;
  color: rgba(8, 8, 8, 0.56);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.paper-pattern-evidence p,
.paper-pattern-repair p {
  margin: 0;
  color: #17191c;
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  font-weight: 500;
  line-height: 1.35;
}

.paper-pattern-recover {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  min-height: 54px;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(152, 24, 29, 0.17);
  border-radius: 8px;
  background: rgba(152, 24, 29, 0.035);
  color: var(--match-red, #98181d);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 850;
  line-height: 1.2;
}

.paper-pattern-repair {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.pattern-mini-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--match-red, #98181d);
}

.pattern-mini-icon::before {
  width: 32px;
  height: 32px;
}

.pattern-mini-icon.target {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M24 4v8m0 24v8M4 24h8m24 0h8M24 14a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 7a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.pattern-mini-icon.clipboard {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M17 7h14l2 6H15l2-6ZM12 11H8v33h32V11h-4M17 24h14M17 32h10'/%3E%3C/svg%3E");
}

.pattern-mini-icon.link {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M21 28a10 10 0 0 0 14 0l5-5A10 10 0 0 0 26 9l-3 3M27 20a10 10 0 0 0-14 0l-5 5a10 10 0 0 0 14 14l3-3'/%3E%3C/svg%3E");
}

.pattern-mini-icon.pencil {
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='m35 4 9 9-27 27-13 4 4-13L35 4Zm-6 6 9 9M8 31l9 9'/%3E%3C/svg%3E");
}

.paper-pattern-callout {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr) 1px 86px minmax(0, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
  align-items: center;
  margin-top: clamp(1.55rem, 3vw, 2.1rem);
  padding: clamp(1.2rem, 2vw, 1.45rem) clamp(1.2rem, 2.4vw, 1.9rem);
  border: 1px solid rgba(152, 24, 29, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
}

.paper-pattern-shield {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(152, 24, 29, 0.08);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
}

.paper-pattern-shield::before {
  width: 74px;
  height: 82px;
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='5' stroke-linejoin='round' d='M32 5 56 13v18c0 17-10 28-24 36C18 59 8 48 8 31V13l24-8Z'/%3E%3Cpath fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' d='m22 34 8 8 14-17'/%3E%3C/svg%3E");
}

.paper-pattern-trend {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(152, 24, 29, 0.1);
  border-radius: 9px;
  background: rgba(152, 24, 29, 0.04);
}

.paper-pattern-trend::before {
  width: 46px;
  height: 46px;
  --pattern-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M7 36 19 24l8 7 14-20M31 11h10v10'/%3E%3C/svg%3E");
}

.paper-pattern-callout-rule {
  width: 1px;
  align-self: stretch;
  background: rgba(152, 24, 29, 0.18);
}

.paper-pattern-callout-copy h3 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 840;
  line-height: 1.12;
}

.paper-pattern-callout-copy h3 strong,
.paper-pattern-callout-copy p {
  color: var(--match-red, #98181d);
}

.paper-pattern-callout-copy p {
  margin: 0.55rem 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.48rem);
  font-weight: 820;
  line-height: 1.15;
}

.paper-pattern-callout-copy:last-child p {
  color: #333842;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .screenshot-match-landing .paper-pattern-section {
    width: min(100%, calc(100vw - 32px));
  }

  .screenshot-match-landing .paper-pattern-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-match-landing .paper-pattern-grid .paper-pattern-card {
    min-height: 0;
  }

  .paper-pattern-callout {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .paper-pattern-callout-rule {
    display: none;
  }

  .paper-pattern-trend {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .screenshot-match-landing .paper-pattern-section {
    width: min(100%, calc(100vw - 24px));
    padding-top: 2.4rem;
  }

  .screenshot-match-landing .paper-pattern-heading h2 {
    font-size: clamp(2.08rem, 10vw, 3rem);
  }

  .paper-pattern-eyebrow {
    letter-spacing: 0.16em;
  }

  .screenshot-match-landing .paper-pattern-grid .paper-pattern-card {
    padding: 1.15rem;
  }

  .paper-pattern-symbol {
    width: 68px;
    height: 68px;
  }

  .paper-pattern-symbol.integration::before,
  .paper-pattern-symbol.stack::before,
  .paper-pattern-symbol.speech::before {
    width: 36px;
    height: 36px;
  }

  .paper-pattern-callout {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1.1rem;
  }

  .paper-pattern-shield {
    width: 86px;
    height: 86px;
  }

  .paper-pattern-shield::before {
    width: 54px;
    height: 60px;
  }

  .paper-pattern-trend {
    width: 68px;
    height: 68px;
  }

  .paper-pattern-trend::before {
    width: 38px;
    height: 38px;
  }
}

/* Screenshot-matched pricing and plans section. */
.screenshot-match-landing .paper-pricing-section {
  width: min(1320px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(3.1rem, 5.6vw, 4.75rem) 0 clamp(2.8rem, 5vw, 4rem);
  color: #080808;
  background: transparent;
  text-align: center;
}

.paper-pricing-heading {
  max-width: 880px;
  margin: 0 auto clamp(1.8rem, 3vw, 2.5rem);
}

.paper-pricing-eyebrow {
  margin: 0 0 0.82rem;
  color: var(--match-red, #98181d);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.3em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-pricing-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.7rem, 5.2vw, 4.35rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.04;
}

.screenshot-match-landing .paper-pricing-heading p {
  margin: 1.1rem auto 0;
  color: #2d3543;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
}

.screenshot-match-landing .paper-pricing-section .paper-price-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: stretch;
  margin-top: 0;
  text-align: left;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.72rem;
  min-height: 508px;
  padding: clamp(1.45rem, 2.2vw, 1.85rem);
  border: 1px solid rgba(18, 17, 16, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(28, 20, 16, 0.06);
}

.screenshot-match-landing .paper-pricing-section .paper-price-card.featured {
  border: 1.5px solid #d50912;
  background: rgba(255, 255, 255, 0.78);
}

.paper-price-card header {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(152, 24, 29, 0.14);
}

.screenshot-match-landing .paper-price-card h3 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 840;
  line-height: 1.08;
}

.paper-price-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(152, 24, 29, 0.09);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
}

.paper-price-icon::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: var(--match-red, #98181d);
  -webkit-mask: var(--price-icon) center / contain no-repeat;
  mask: var(--price-icon) center / contain no-repeat;
}

.paper-price-icon.search {
  --price-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M22 36a14 14 0 1 1 0-28 14 14 0 0 1 0 28Zm10-4 10 10M22 14v4m0 8v4m-8-8h4m8 0h4m-8-4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z'/%3E%3C/svg%3E");
}

.paper-price-icon.trend {
  --price-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M7 34 19 22l8 7 14-20M31 9h10v10'/%3E%3C/svg%3E");
}

.paper-price-icon.stopwatch {
  --price-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M19 4h10M24 25l5-6m12 8a17 17 0 1 1-34 0 17 17 0 0 1 34 0Zm-5-13 3-3'/%3E%3C/svg%3E");
}

.paper-price-icon.target {
  --price-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M24 4v8m0 24v8M4 24h8m24 0h8M24 14a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 7a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.paper-price-icon.trophy {
  --price-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' d='M15 8h18v8c0 9-4 14-9 17-5-3-9-8-9-17V8Zm0 4H7v5a8 8 0 0 0 8 8m18-13h8v5a8 8 0 0 1-8 8M24 33v7m-8 0h16'/%3E%3C/svg%3E");
}

.screenshot-match-landing .paper-pricing-section .paper-price-card em {
  position: absolute;
  top: 1.05rem;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  gap: 0.38rem;
  align-items: center;
  transform: translateX(-50%);
  padding: 0.42rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--match-red, #98181d);
  color: #fff;
  box-shadow: none;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card em.plain {
  left: auto;
  right: 1.85rem;
  transform: none;
  background: rgba(152, 24, 29, 0.08);
  color: var(--match-red, #98181d);
  font-size: 0.88rem;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card.featured header {
  margin-top: 2.2rem;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card strong {
  display: block;
  margin-top: 0.3rem;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.55rem, 4.2vw, 3.2rem);
  font-weight: 840;
  line-height: 1;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card p {
  margin: 0;
  color: #2d3543;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.35;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card ul {
  display: grid;
  align-content: start;
  gap: 0;
  margin: 0.25rem 0 1rem;
  padding: 0;
  list-style: none;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  min-height: 40px;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(18, 17, 16, 0.08);
  color: #111;
  font-size: clamp(0.92rem, 1.06vw, 1.02rem);
  font-weight: 520;
  line-height: 1.25;
}

.screenshot-match-landing .paper-pricing-section .paper-price-card li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1.8px solid #d50912;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 49%, #d50912 50% 58%, transparent 59%) 45% 52% / 9px 7px no-repeat,
    linear-gradient(-45deg, transparent 49%, #d50912 50% 58%, transparent 59%) 58% 50% / 12px 8px no-repeat;
}

.screenshot-match-landing .paper-pricing-section .primary-button,
.screenshot-match-landing .paper-pricing-section .secondary-button {
  align-self: end;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: var(--match-red, #98181d);
  color: #fff;
  box-shadow: none;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  font-weight: 850;
}

.paper-pricing-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  margin-top: clamp(1.6rem, 3vw, 2rem);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(152, 24, 29, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  text-align: left;
}

.paper-pricing-proof span {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 1rem;
  align-items: center;
  min-height: 82px;
  padding: 0 1rem;
}

.paper-pricing-proof span:not(:last-child) {
  border-right: 1px solid rgba(152, 24, 29, 0.18);
}

.paper-pricing-proof .paper-price-icon {
  grid-row: span 2;
  width: 62px;
  height: 62px;
}

.paper-pricing-proof .paper-price-icon::before {
  width: 34px;
  height: 34px;
}

.paper-pricing-proof b {
  color: #111;
  font-size: 1.02rem;
  font-weight: 840;
  line-height: 1.2;
}

.paper-pricing-proof small {
  color: #2d3543;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.3;
}

.paper-pricing-safe {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  color: rgba(45, 53, 67, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}

.paper-pricing-safe span {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 9V7a5 5 0 0 0-10 0v2H5v12h14V9h-2Zm-8 0V7a3 3 0 0 1 6 0v2H9Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 9V7a5 5 0 0 0-10 0v2H5v12h14V9h-2Zm-8 0V7a3 3 0 0 1 6 0v2H9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 980px) {
  .screenshot-match-landing .paper-pricing-section {
    width: min(100%, calc(100vw - 32px));
  }

  .screenshot-match-landing .paper-pricing-section .paper-price-grid,
  .paper-pricing-proof {
    grid-template-columns: 1fr;
  }

  .screenshot-match-landing .paper-pricing-section .paper-price-card {
    min-height: 0;
  }

  .paper-pricing-proof span {
    padding: 0.85rem 0;
  }

  .paper-pricing-proof span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(152, 24, 29, 0.18);
  }
}

@media (max-width: 640px) {
  .screenshot-match-landing .paper-pricing-section {
    width: min(100%, calc(100vw - 24px));
    padding-top: 2.4rem;
  }

  .screenshot-match-landing .paper-pricing-heading h2 {
    font-size: clamp(2.12rem, 10vw, 3rem);
  }

  .paper-pricing-eyebrow {
    letter-spacing: 0.18em;
  }

  .screenshot-match-landing .paper-pricing-section .paper-price-card {
    padding: 1.15rem;
  }

  .paper-price-card header {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .paper-price-icon {
    width: 54px;
    height: 54px;
  }

  .paper-price-icon::before {
    width: 30px;
    height: 30px;
  }

  .screenshot-match-landing .paper-pricing-section .paper-price-card em.plain {
    right: 1.1rem;
  }

  .paper-pricing-proof {
    padding: 0.75rem 1rem;
  }

  .paper-pricing-proof span {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .paper-pricing-proof .paper-price-icon {
    width: 50px;
    height: 50px;
  }

  .paper-pricing-safe {
    flex-wrap: wrap;
    font-size: 0.82rem;
  }
}

/* Screenshot-matched diagnose / repair / retest process section. */
.screenshot-match-landing .paper-process-section {
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(3.2rem, 5.8vw, 4.8rem) 0 clamp(2.8rem, 5vw, 4.2rem);
  background: transparent;
  color: #080808;
  text-align: center;
}

.paper-process-heading {
  max-width: 1040px;
  margin: 0 auto clamp(2rem, 3.6vw, 2.9rem);
}

.paper-process-eyebrow {
  margin: 0 0 0.82rem;
  color: var(--match-red, #98181d);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-process-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.1vw, 4.35rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.08;
}

.screenshot-match-landing .paper-process-heading p {
  margin: 1.25rem auto 0;
  color: #2d3543;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.42;
}

.screenshot-match-landing .paper-process-section .paper-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 0;
}

.paper-process-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 424px;
  padding: clamp(1.55rem, 2vw, 2rem) clamp(1.35rem, 2vw, 1.8rem);
  border: 1px solid rgba(18, 17, 16, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(28, 20, 16, 0.06);
  text-align: center;
}

.paper-process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 41%;
  left: calc(100% - 0.5rem);
  width: calc(clamp(1.5rem, 4vw, 4rem) + 1rem);
  height: 24px;
  background:
    radial-gradient(circle, rgba(213, 9, 18, 0.58) 0 4px, transparent 4.5px) 0 50% / 10px 10px no-repeat,
    linear-gradient(90deg, rgba(213, 9, 18, 0.38) 50%, transparent 0) 12px 50% / 10px 2px repeat-x,
    linear-gradient(45deg, transparent 45%, rgba(213, 9, 18, 0.5) 46% 55%, transparent 56%) right 7px center / 12px 12px no-repeat,
    linear-gradient(-45deg, transparent 45%, rgba(213, 9, 18, 0.5) 46% 55%, transparent 56%) right 7px center / 12px 12px no-repeat;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.paper-process-number {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  min-height: 0;
  gap: 0;
  align-content: center;
  border: 1px solid rgba(152, 24, 29, 0.09);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
  color: var(--match-red, #98181d);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.screenshot-match-landing .paper-process-section .paper-process-number::before,
.screenshot-match-landing .paper-process-section .paper-process-number::after {
  content: none;
  display: none;
}

.paper-process-icon {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  margin-top: 1.25rem;
}

.paper-process-icon::before,
.paper-process-trophy::before {
  content: "";
  display: block;
  background: var(--match-red, #98181d);
  -webkit-mask: var(--process-icon) center / contain no-repeat;
  mask: var(--process-icon) center / contain no-repeat;
}

.paper-process-icon::before {
  width: 116px;
  height: 116px;
}

.paper-process-card.diagnose .paper-process-icon {
  --process-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='56' cy='56' r='40'/%3E%3Cpath d='m86 86 30 30'/%3E%3Cpath d='M56 20v16m0 40v16M20 56h16m40 0h16'/%3E%3Ccircle cx='56' cy='56' r='22'/%3E%3Ccircle cx='56' cy='56' r='7'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-process-card.repair .paper-process-icon {
  --process-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M87 15a28 28 0 0 0-34 34L18 84a15 15 0 1 0 21 21l35-35a28 28 0 0 0 34-34L89 55 73 39l19-19Z'/%3E%3Ccircle cx='29' cy='95' r='3'/%3E%3Cpath d='M87 89v14M105 78l11 8M70 109l8 11'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-process-card.process-retest .paper-process-icon {
  --process-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M52 10h24v12H52zM64 22v12'/%3E%3Ccircle cx='64' cy='72' r='44'/%3E%3Cpath d='m45 70 14 14 27-32M30 72h6m56 0h6M64 38v6m0 56v6M95 35l10-10M102 31l8 8'/%3E%3Cpath stroke-dasharray='5 10' d='M40 48a32 32 0 0 1 48 0M88 96a32 32 0 0 1-48 0'/%3E%3C/g%3E%3C/svg%3E");
}

.screenshot-match-landing .paper-process-card h3 {
  position: relative;
  margin: 1rem 0 0;
  padding-bottom: 0.8rem;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.18rem);
  font-weight: 840;
  line-height: 1.05;
}

.paper-process-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: rgba(213, 9, 18, 0.16);
  transform: translateX(-50%);
}

.screenshot-match-landing .paper-process-card p {
  max-width: 230px;
  margin: 1rem auto 0;
  color: #2d3543;
  font-size: clamp(1rem, 1.16vw, 1.14rem);
  font-weight: 500;
  line-height: 1.42;
}

.paper-process-callout {
  display: grid;
  grid-template-columns: 128px 1px minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  margin-top: clamp(1.8rem, 3.5vw, 2.6rem);
  padding: clamp(1.25rem, 2vw, 1.55rem) clamp(1.2rem, 2.5vw, 1.9rem);
  border: 1px solid rgba(152, 24, 29, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
}

.paper-process-trophy {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(152, 24, 29, 0.09);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
  --process-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12h32v14c0 16-8 25-16 30-8-5-16-14-16-30V12Z'/%3E%3Cpath d='M20 17H9v9a13 13 0 0 0 11 13M52 17h11v9a13 13 0 0 1-11 13M36 56v8M26 64h20'/%3E%3Cpath d='m36 23 3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1 3-6Z'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-process-trophy::before {
  width: 54px;
  height: 54px;
}

.paper-process-callout-rule {
  width: 1px;
  align-self: stretch;
  background: rgba(152, 24, 29, 0.18);
}

.screenshot-match-landing .paper-process-callout p {
  margin: 0;
  color: #080808;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  font-weight: 830;
  line-height: 1.24;
}

.paper-process-callout b {
  color: var(--match-red, #98181d);
  font-weight: 850;
}

@media (max-width: 980px) {
  .screenshot-match-landing .paper-process-section {
    width: min(100%, calc(100vw - 32px));
  }

  .screenshot-match-landing .paper-process-section .paper-process-steps {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .paper-process-card {
    min-height: 0;
  }

  .paper-process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .screenshot-match-landing .paper-process-section {
    width: min(100%, calc(100vw - 24px));
    padding-top: 2.4rem;
  }

  .paper-process-eyebrow {
    letter-spacing: 0.16em;
  }

  .screenshot-match-landing .paper-process-heading h2 {
    font-size: clamp(2.05rem, 9.6vw, 3rem);
  }

  .paper-process-card {
    padding: 1.2rem 1rem;
  }

  .paper-process-number {
    width: 56px;
    height: 56px;
  }

  .paper-process-icon {
    width: 92px;
    height: 92px;
    margin-top: 1rem;
  }

  .paper-process-icon::before {
    width: 88px;
    height: 88px;
  }

  .paper-process-callout {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: start;
    padding: 1.1rem;
  }

  .paper-process-trophy {
    justify-self: start;
    width: 68px;
    height: 68px;
  }

  .paper-process-trophy::before {
    width: 42px;
    height: 42px;
  }

  .paper-process-callout-rule {
    display: none;
  }
}

/* Screenshot-matched parent clarity and case-study proof sections. */
.screenshot-match-landing .paper-parent-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(3rem, 5.6vw, 4.4rem) 0 clamp(2.5rem, 4.5vw, 3.4rem);
  background: transparent;
  color: #080808;
  text-align: center;
}

.paper-parent-icon,
.paper-case-heading-icon,
.paper-case-row i,
.paper-case-footline span {
  display: grid;
  place-items: center;
  color: var(--match-red, #98181d);
}

.paper-parent-icon::before,
.paper-case-heading-icon::before,
.paper-case-row i::before,
.paper-case-footline span::before {
  content: "";
  display: block;
  background: currentColor;
  -webkit-mask: var(--case-icon) center / contain no-repeat;
  mask: var(--case-icon) center / contain no-repeat;
}

.paper-parent-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0.45rem;
  --case-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='22' cy='28' r='8'/%3E%3Ccircle cx='42' cy='28' r='8'/%3E%3Cpath d='M8 54c2-10 9-14 18-14s16 4 18 14M30 53c2-8 8-13 18-13 5 0 10 2 13 6'/%3E%3Cpath d='M22 5v7M8 12l5 5M42 5v7M56 12l-5 5'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-parent-icon::before {
  width: 48px;
  height: 48px;
}

.screenshot-match-landing .paper-parent-section h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.75rem, 5.3vw, 4.35rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.08;
}

.screenshot-match-landing .paper-parent-section p {
  margin: 1rem 0 0;
  color: #516075;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 500;
  line-height: 1.42;
}

.screenshot-match-landing .paper-case-section {
  width: min(1320px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(1.4rem, 3.4vw, 2.6rem) 0 clamp(3rem, 5vw, 4.2rem);
  background: transparent;
}

.paper-case-heading {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 1.2rem;
  text-align: left;
}

.paper-case-heading-icon {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(152, 24, 29, 0.08);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
  --case-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 43h18M25 51h14M22 35c-5-4-8-9-8-16a18 18 0 1 1 36 0c0 7-3 12-8 16-3 2-3 4-3 8H25c0-4 0-6-3-8Z'/%3E%3Cpath d='M32 8v6M14 14l4 4M50 14l-4 4'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-case-heading-icon::before {
  width: 44px;
  height: 44px;
}

.screenshot-match-landing .paper-case-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.1;
}

.paper-case-heading p {
  margin: 0.28rem 0 0;
  color: #516075;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 500;
  line-height: 1.3;
}

.paper-case-heading .paper-case-step {
  margin: 0 0 0.72rem;
  color: var(--match-red, #98181d);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-case-section .paper-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.9rem);
}

.screenshot-match-landing .paper-case-grid .paper-case-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 260px;
  padding: clamp(1.25rem, 2vw, 1.55rem);
  border: 1px solid rgba(18, 17, 16, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(28, 20, 16, 0.06);
}

.paper-case-row {
  position: relative;
  display: grid;
  grid-template-columns: 58px 44px 128px minmax(0, 1fr);
  gap: 0.78rem;
  align-items: center;
  min-height: 72px;
}

.paper-case-row:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(50% + 22px);
  bottom: calc(-50% + 22px);
  left: 81px;
  border-left: 2px dotted rgba(152, 24, 29, 0.16);
}

.paper-case-row i {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(152, 24, 29, 0.11);
  border-radius: 12px;
  background: rgba(152, 24, 29, 0.045);
}

.paper-case-row i::before {
  width: 32px;
  height: 32px;
}

.paper-case-row.before i {
  --case-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='34' r='20'/%3E%3Cpath d='M32 20v14l8 5M22 8h20M18 13l-6 6M46 13l6 6'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-case-row.leak i {
  --case-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='28' cy='28' r='18'/%3E%3Cpath d='m42 42 12 12'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-case-row.repair i {
  --case-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M46 8a15 15 0 0 0-18 18L10 44a8 8 0 1 0 10 10l18-18A15 15 0 0 0 56 18L45 29 35 19 46 8Z'/%3E%3Ccircle cx='16' cy='48' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.paper-case-row > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(152, 24, 29, 0.1);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.055);
  color: var(--match-red, #98181d);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}

.screenshot-match-landing .paper-case-row b {
  color: var(--match-red, #98181d);
  font-size: clamp(0.95rem, 1.12vw, 1.08rem);
  font-weight: 850;
  line-height: 1.2;
  text-transform: none;
}

.paper-case-row p {
  margin: 0;
  color: #111;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 500;
  line-height: 1.3;
}

.paper-case-footline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  min-height: 64px;
  margin: 1.55rem 0 0;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(18, 17, 16, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 36px rgba(28, 20, 16, 0.045);
  color: #516075;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.paper-case-footline span {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(152, 24, 29, 0.08);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
  --case-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='5' stroke-linejoin='round' d='M32 5 56 13v18c0 17-10 28-24 36C18 59 8 48 8 31V13l24-8Z'/%3E%3C/svg%3E");
}

.paper-case-footline span::before {
  width: 36px;
  height: 42px;
}

.paper-case-footline strong {
  color: #080808;
  font-weight: 840;
}

.paper-case-footline b {
  color: var(--match-red, #98181d);
  font-weight: 850;
}

@media (max-width: 980px) {
  .screenshot-match-landing .paper-parent-section,
  .screenshot-match-landing .paper-case-section {
    width: min(100%, calc(100vw - 32px));
  }

  .screenshot-match-landing .paper-case-section .paper-case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .screenshot-match-landing .paper-parent-section,
  .screenshot-match-landing .paper-case-section {
    width: min(100%, calc(100vw - 24px));
  }

  .screenshot-match-landing .paper-parent-section h2 {
    font-size: clamp(2.1rem, 9.8vw, 3rem);
  }

  .screenshot-match-landing .paper-parent-section p br,
  .screenshot-match-landing .paper-process-heading p br {
    display: none;
  }

  .paper-case-heading {
    align-items: flex-start;
  }

  .paper-case-heading-icon {
    width: 58px;
    height: 58px;
  }

  .paper-case-heading-icon::before {
    width: 34px;
    height: 34px;
  }

  .screenshot-match-landing .paper-case-grid .paper-case-card {
    padding: 1rem;
  }

  .paper-case-row {
    grid-template-columns: 46px 34px minmax(0, 1fr);
    gap: 0.58rem;
    align-items: start;
    min-height: 86px;
  }

  .paper-case-row i {
    width: 42px;
    height: 42px;
  }

  .paper-case-row i::before {
    width: 26px;
    height: 26px;
  }

  .paper-case-row > span {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .paper-case-row b {
    align-self: center;
  }

  .paper-case-row p {
    grid-column: 3;
  }

  .paper-case-row:not(:last-child)::after {
    left: 61px;
  }

  .paper-case-footline {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.9rem;
    text-align: left;
  }

  .paper-case-footline span {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
  }

  .paper-case-footline span::before {
    width: 30px;
    height: 34px;
  }
}

/* Straightened FAQ section. */
.screenshot-match-landing .paper-faq-section {
  display: block;
  width: min(980px, calc(100vw - 64px));
  margin: 0 auto;
  padding: clamp(2.8rem, 5vw, 4.1rem) 0 clamp(2.8rem, 5vw, 4rem);
  background: transparent;
  color: #080808;
  text-align: center;
}

.paper-faq-heading {
  max-width: 720px;
  margin: 0 auto clamp(1.35rem, 2.6vw, 1.9rem);
}

.paper-faq-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--match-red, #98181d);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.screenshot-match-landing .paper-faq-heading h2 {
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 840;
  letter-spacing: 0;
  line-height: 1.06;
}

.screenshot-match-landing .paper-faq-heading p {
  margin: 0.85rem auto 0;
  color: #516075;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.42;
}

.paper-faq-list {
  display: grid;
  gap: 0.72rem;
}

.screenshot-match-landing .paper-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(18, 17, 16, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(28, 20, 16, 0.045);
  text-align: left;
}

.screenshot-match-landing .paper-faq-list summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 1rem 1.15rem;
  cursor: pointer;
  color: #080808;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 820;
  line-height: 1.25;
  list-style: none;
}

.screenshot-match-landing .paper-faq-list summary::-webkit-details-marker {
  display: none;
}

.screenshot-match-landing .paper-faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(152, 24, 29, 0.12);
  border-radius: 50%;
  background: rgba(152, 24, 29, 0.06);
  color: var(--match-red, #98181d);
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1;
}

.screenshot-match-landing .paper-faq-list details[open] summary::after {
  content: "-";
  padding-bottom: 0.1rem;
}

.screenshot-match-landing .paper-faq-list p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: #303847;
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.48;
}

.screenshot-match-landing .paper-faq-answer {
  padding: 0 1.15rem 1.1rem;
  color: #303847;
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.5;
}

.screenshot-match-landing .paper-faq-answer p {
  margin: 0 0 0.72rem;
  padding: 0;
}

.screenshot-match-landing .paper-faq-answer p:last-child {
  margin-bottom: 0;
}

.screenshot-match-landing .paper-faq-answer ul,
.screenshot-match-landing .paper-faq-answer ol {
  display: grid;
  gap: 0.34rem;
  margin: 0 0 0.82rem 1.15rem;
  padding: 0;
}

.screenshot-match-landing .paper-faq-answer li {
  padding-left: 0.1rem;
}

.screenshot-match-landing .paper-faq-answer blockquote {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--match-red, #98181d);
  border-radius: 0 9px 9px 0;
  background: rgba(152, 24, 29, 0.06);
  color: var(--match-red, #98181d);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 820;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .screenshot-match-landing .paper-faq-section {
    width: min(100%, calc(100vw - 24px));
    padding-top: 2.4rem;
  }

  .screenshot-match-landing .paper-faq-heading h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .screenshot-match-landing .paper-faq-list summary {
    align-items: flex-start;
    min-height: 0;
    padding: 0.92rem;
  }

  .screenshot-match-landing .paper-faq-list p {
    padding: 0 0.92rem 0.95rem;
  }

  .screenshot-match-landing .paper-faq-answer {
    padding: 0 0.92rem 0.95rem;
  }
}

/* Hero report card: flattened to match the sample-output report mockup. */
.paper-shot .paper-diagnostic-card.repair-report {
  width: 100%;
  max-width: 860px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.paper-shot .repair-card-panel {
  padding: clamp(1.85rem, 2.3vw, 2.45rem) clamp(2rem, 2.7vw, 2.9rem) clamp(1.35rem, 2vw, 2rem);
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(80, 64, 52, 0.22);
  border-radius: 7px;
  box-shadow:
    0 16px 36px rgba(42, 35, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.paper-shot .repair-card-panel .report-label {
  margin-bottom: 0.45rem;
  color: rgba(34, 39, 39, 0.68);
  font-size: clamp(0.72rem, 0.78vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.paper-shot .repair-card-panel h2 {
  margin: 0;
  color: #111817;
  font-size: clamp(2.15rem, 2.65vw, 3.05rem);
  line-height: 1;
}

.paper-shot .repair-loss-banner {
  display: grid;
  grid-template-columns: clamp(74px, 6vw, 92px) minmax(0, 1fr);
  gap: clamp(1.15rem, 1.6vw, 1.75rem);
  min-height: auto;
  margin-top: clamp(1.35rem, 2vw, 1.85rem);
  padding: 0;
  background: transparent;
  border: 0;
}

.paper-shot .repair-loss-banner > strong {
  width: clamp(70px, 5.8vw, 88px);
  height: clamp(70px, 5.8vw, 88px);
  background: #7b1236;
  color: #fff7ef;
  font-size: clamp(2.35rem, 3.05vw, 3.35rem);
  box-shadow: none;
}

.paper-shot .repair-loss-banner b {
  color: var(--paper-burgundy);
  font-size: clamp(1.52rem, 2vw, 2.28rem);
}

.paper-shot .repair-loss-banner p {
  margin-top: 0.42rem;
  color: #222928;
  font-size: clamp(0.92rem, 1vw, 1.08rem);
  font-weight: 660;
}

.paper-shot .hero-loss-breakdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1.2rem, 1.9vw, 1.6rem);
  padding: clamp(1rem, 1.25vw, 1.25rem) 0;
  border-top: 1px solid rgba(42, 35, 32, 0.16);
  border-bottom: 1px solid rgba(42, 35, 32, 0.16);
}

.paper-shot .hero-loss-breakdown span {
  display: block;
  min-height: 0;
  padding: 0 clamp(0.85rem, 1.15vw, 1.25rem);
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #202726;
  font-size: clamp(0.78rem, 0.88vw, 0.98rem);
  font-weight: 600;
  line-height: 1.36;
}

.paper-shot .hero-loss-breakdown span:first-child {
  padding-left: 0;
}

.paper-shot .hero-loss-breakdown span:not(:last-child) {
  border-right: 1px solid rgba(42, 35, 32, 0.14);
}

.paper-shot .hero-loss-breakdown b {
  display: block;
  margin-bottom: 0.26rem;
  color: var(--paper-burgundy);
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 900;
}

.paper-shot .repair-evidence-card,
.paper-shot .repair-plan-card {
  margin-top: clamp(1rem, 1.45vw, 1.35rem);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.paper-shot .repair-section-title {
  margin-bottom: 0.8rem;
}

.paper-shot .repair-section-title strong,
.paper-shot .repair-plan-card h3 {
  color: #111817;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.25vw, 1.38rem);
  font-weight: 760;
  line-height: 1.1;
}

.paper-shot .repair-section-title b {
  color: #161d1c;
  font-size: clamp(0.82rem, 0.86vw, 0.96rem);
  font-weight: 850;
}

.paper-shot .repair-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-bottom: clamp(0.95rem, 1.2vw, 1.25rem);
  border-bottom: 1px solid rgba(42, 35, 32, 0.14);
}

.paper-shot .repair-evidence-grid article {
  padding: 0 clamp(1rem, 1.35vw, 1.4rem);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.paper-shot .repair-evidence-grid article:first-child {
  padding-left: 0;
}

.paper-shot .repair-evidence-grid article:not(:last-child) {
  border-right: 1px solid rgba(42, 35, 32, 0.14);
}

.paper-shot .repair-evidence-grid header {
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.78rem;
}

.paper-shot .repair-evidence-grid header strong {
  color: #151b1a;
  font-size: clamp(0.92rem, 0.94vw, 1.04rem);
}

.paper-shot .repair-evidence-grid header span {
  max-width: 120px;
  padding: 0.24rem 0.52rem;
  background: rgba(113, 24, 53, 0.105);
  color: #711835;
  font-size: clamp(0.58rem, 0.62vw, 0.7rem);
}

.paper-shot .repair-evidence-grid article > b {
  color: var(--paper-burgundy);
  font-size: clamp(0.96rem, 1.02vw, 1.16rem);
}

.paper-shot .repair-evidence-grid p,
.paper-shot .repair-evidence-grid small {
  color: #202625;
  font-size: clamp(0.76rem, 0.82vw, 0.94rem);
  font-weight: 650;
  line-height: 1.36;
}

.paper-shot .repair-evidence-grid code {
  margin-top: 0.55rem;
  color: #101615;
  font-size: clamp(0.9rem, 1vw, 1.12rem);
  background: transparent;
}

.paper-shot .repair-evidence-grid p span,
.paper-shot .repair-evidence-grid small span {
  display: block;
  margin-bottom: 0.08rem;
  color: var(--paper-burgundy);
  font-size: 0.72em;
  font-weight: 920;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.paper-shot .repair-evidence-grid small {
  margin-top: 0.7rem;
  font-weight: 830;
}

.paper-shot .repair-plan-card h3 {
  margin-bottom: 0.72rem;
}

.paper-shot .repair-plan-card li {
  grid-template-columns: 40px 48px minmax(0, 1fr) 24px;
  gap: clamp(0.7rem, 1vw, 1rem);
  min-height: clamp(52px, 5.4vw, 64px);
  padding: 0.52rem 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(42, 35, 32, 0.12);
  border-radius: 0;
}

.paper-shot .repair-plan-card li:first-child {
  border-radius: 0;
}

.paper-shot .repair-plan-card li:last-child {
  border-bottom: 1px solid rgba(42, 35, 32, 0.12);
  border-radius: 0;
}

.paper-shot .repair-plan-card li:not(:last-child)::after {
  content: none;
}

.paper-shot .repair-step-badge {
  width: 36px;
  height: 36px;
  background: #7b1236;
  font-size: 0.92rem;
}

.paper-shot .repair-plan-icon {
  width: 34px;
  height: 34px;
}

.paper-shot .repair-plan-card strong {
  font-size: clamp(0.9rem, 0.96vw, 1.08rem);
}

.paper-shot .repair-plan-card small {
  color: #222928;
  font-size: clamp(0.72rem, 0.78vw, 0.88rem);
}

.paper-shot .repair-chevron {
  justify-self: end;
  color: rgba(22, 28, 27, 0.66);
  font-size: 1.8rem;
}

.paper-shot .repair-card-cta.primary-button {
  min-height: clamp(58px, 5.8vw, 72px);
  margin-top: clamp(1rem, 1.5vw, 1.35rem);
  border-radius: 8px;
  background: #7b1236;
  box-shadow: none;
  color: #fff7ef;
  font-size: clamp(1rem, 1.18vw, 1.3rem);
  font-weight: 400;
}

.paper-shot .repair-card-cta.primary-button::after {
  content: "→";
  font-size: 1.18em;
}

.paper-shot .repair-trust-line {
  margin-top: 0.72rem;
  color: #4b5351;
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
}

@media (min-width: 1241px) {
  .paper-shot .paper-hero {
    grid-template-columns: minmax(540px, 0.9fr) minmax(620px, 1.1fr);
  }
}

@media (max-width: 1240px) {
  .paper-shot .repair-card-panel {
    padding: 1.5rem;
  }

  .paper-shot .hero-loss-breakdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 0;
  }

  .paper-shot .hero-loss-breakdown span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .paper-shot .repair-card-panel {
    padding: 1.1rem;
  }

  .paper-shot .repair-loss-banner {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .paper-shot .repair-loss-banner > strong {
    width: 58px;
    height: 58px;
  }

  .paper-shot .hero-loss-breakdown,
  .paper-shot .repair-evidence-grid {
    grid-template-columns: 1fr;
  }

  .paper-shot .hero-loss-breakdown span,
  .paper-shot .hero-loss-breakdown span:first-child,
  .paper-shot .repair-evidence-grid article,
  .paper-shot .repair-evidence-grid article:first-child {
    padding: 0.72rem 0;
  }

  .paper-shot .hero-loss-breakdown span:not(:last-child),
  .paper-shot .repair-evidence-grid article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(42, 35, 32, 0.12);
  }

  .paper-shot .repair-plan-card li {
    grid-template-columns: 34px 38px minmax(0, 1fr) 16px;
  }

  .paper-shot .repair-step-badge {
    width: 32px;
    height: 32px;
  }

  .paper-shot .repair-plan-icon {
    width: 30px;
    height: 30px;
  }
}

/* Desktop screenshot-match pass: keep the whole first viewport balanced. */
@media (min-width: 1241px) {
  body:has(.paper-shot) .topbar {
    min-height: 96px;
    padding: 1.05rem clamp(3.5rem, 4.4vw, 6.75rem) 0.55rem;
  }

  .paper-shot .paper-hero {
    min-height: calc(100svh - 96px);
    grid-template-columns: minmax(660px, 0.95fr) minmax(780px, 1.05fr);
    align-items: start;
    gap: clamp(3rem, 4vw, 5.25rem);
    padding:
      clamp(0.55rem, 1.1svh, 1.1rem)
      clamp(3.5rem, 4.4vw, 6.75rem)
      1rem;
  }

  .paper-shot .paper-copy {
    max-width: 900px;
    padding-top: clamp(3.2rem, 5.8svh, 4.7rem);
    transform: none;
  }

  .paper-shot .paper-diagnostic-card {
    align-self: start;
    justify-self: end;
  }

  .paper-shot .paper-kicker {
    margin-bottom: 1.25rem;
    font-size: clamp(0.9rem, 0.88vw, 1.02rem);
  }

  .paper-shot h1 {
    max-width: 900px;
    margin-bottom: clamp(1.25rem, 2svh, 1.8rem);
    font-size: clamp(5rem, 4.95vw, 6.35rem);
    line-height: 0.96;
  }

  .paper-shot .paper-copy h1::after {
    bottom: -0.46rem;
    left: 2.4rem;
    width: min(520px, 60%);
    height: 12px;
  }

  .paper-shot .paper-copy > p:not(.paper-kicker) {
    max-width: 780px;
    font-size: clamp(1.06rem, 0.96vw, 1.16rem);
    line-height: 1.55;
  }

  .paper-shot .paper-actions {
    gap: clamp(2rem, 2.8vw, 3.2rem);
    margin-top: clamp(1.35rem, 2.2svh, 1.85rem);
  }

  .paper-shot .paper-actions .primary-button {
    min-width: 430px;
    min-height: 62px;
    font-size: 1.06rem;
  }

  .paper-shot .paper-actions .primary-button::after {
    font-size: 1.16rem;
  }

  .paper-shot .paper-sample-link {
    color: var(--paper-burgundy);
    border-bottom: 2px solid rgba(113, 24, 53, 0.62);
    font-size: 1.02rem;
    font-weight: 820;
  }

  .paper-shot .paper-anti-generic {
    max-width: 780px;
    margin-top: 1.25rem;
    font-size: clamp(1rem, 0.95vw, 1.1rem);
  }

  .paper-shot .paper-proof-strip {
    margin-top: clamp(2.05rem, 3.6svh, 2.75rem);
  }

  .paper-shot .paper-diagnostic-card.repair-report {
    max-width: 930px;
  }

  .paper-shot .repair-card-panel {
    padding: clamp(1.7rem, 2vw, 2.15rem) clamp(2rem, 2.35vw, 2.45rem) clamp(1rem, 1.3vw, 1.35rem);
    background: #fffdf8;
  }

  .paper-shot .repair-card-panel .report-label {
    margin-bottom: 0.42rem;
    font-size: clamp(0.68rem, 0.68vw, 0.8rem);
  }

  .paper-shot .repair-card-panel h2 {
    font-size: clamp(2.15rem, 2.15vw, 2.7rem);
  }

  .paper-shot .repair-loss-banner {
    grid-template-columns: clamp(72px, 4.8vw, 88px) minmax(0, 1fr);
    gap: clamp(1.15rem, 1.45vw, 1.65rem);
    margin-top: clamp(1.2rem, 1.6vw, 1.55rem);
  }

  .paper-shot .repair-loss-banner > strong {
    width: clamp(70px, 4.8vw, 88px);
    height: clamp(70px, 4.8vw, 88px);
    font-size: clamp(2.35rem, 2.7vw, 3.15rem);
  }

  .paper-shot .repair-loss-banner b {
    font-size: clamp(1.35rem, 1.55vw, 1.9rem);
  }

  .paper-shot .repair-loss-banner p {
    margin-top: 0.34rem;
    font-size: clamp(0.82rem, 0.78vw, 0.96rem);
  }

  .paper-shot .hero-loss-breakdown {
    margin-top: clamp(0.9rem, 1.35vw, 1.18rem);
    padding: clamp(0.78rem, 0.9vw, 0.96rem) 0;
  }

  .paper-shot .hero-loss-breakdown span {
    padding: 0 clamp(0.78rem, 1vw, 1.05rem);
    font-size: clamp(0.68rem, 0.7vw, 0.82rem);
    line-height: 1.34;
  }

  .paper-shot .hero-loss-breakdown b {
    margin-bottom: 0.18rem;
    font-size: clamp(0.82rem, 0.78vw, 0.96rem);
  }

  .paper-shot .repair-evidence-card,
  .paper-shot .repair-plan-card {
    margin-top: clamp(0.78rem, 1vw, 1.02rem);
  }

  .paper-shot .repair-section-title {
    margin-bottom: 0.62rem;
  }

  .paper-shot .repair-section-title strong,
  .paper-shot .repair-plan-card h3 {
    font-size: clamp(0.98rem, 1vw, 1.2rem);
  }

  .paper-shot .repair-section-title b {
    font-size: clamp(0.72rem, 0.72vw, 0.86rem);
  }

  .paper-shot .repair-evidence-grid {
    padding-bottom: clamp(0.72rem, 0.85vw, 0.95rem);
  }

  .paper-shot .repair-evidence-grid article {
    padding: 0 clamp(0.86rem, 1.1vw, 1.12rem);
  }

  .paper-shot .repair-evidence-grid header {
    gap: 0.62rem;
    margin-bottom: 0.52rem;
  }

  .paper-shot .repair-evidence-grid header strong {
    font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  }

  .paper-shot .repair-evidence-grid header span {
    max-width: 116px;
    padding: 0.18rem 0.44rem;
    font-size: clamp(0.52rem, 0.52vw, 0.62rem);
  }

  .paper-shot .repair-evidence-grid article > b {
    font-size: clamp(0.84rem, 0.84vw, 1rem);
  }

  .paper-shot .repair-evidence-grid p,
  .paper-shot .repair-evidence-grid small {
    margin-top: 0.2rem;
    font-size: clamp(0.66rem, 0.68vw, 0.8rem);
    line-height: 1.32;
  }

  .paper-shot .repair-evidence-grid code {
    margin-top: 0.38rem;
    font-size: clamp(0.78rem, 0.82vw, 0.96rem);
  }

  .paper-shot .repair-evidence-grid small {
    margin-top: 0.48rem;
  }

  .paper-shot .repair-plan-card h3 {
    margin-bottom: 0.52rem;
  }

  .paper-shot .repair-plan-card li {
    grid-template-columns: 34px 40px minmax(0, 1fr) 20px;
    min-height: 48px;
    padding: 0.36rem 0;
  }

  .paper-shot .repair-step-badge {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }

  .paper-shot .repair-plan-icon {
    width: 30px;
    height: 30px;
  }

  .paper-shot .repair-plan-card strong {
    font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  }

  .paper-shot .repair-plan-card small {
    font-size: clamp(0.62rem, 0.64vw, 0.76rem);
  }

  .paper-shot .repair-card-cta.primary-button {
    min-height: 54px;
    margin-top: clamp(0.76rem, 1vw, 1rem);
    font-size: clamp(0.95rem, 0.98vw, 1.14rem);
  }

  .paper-shot .repair-trust-line {
    margin-top: 0.46rem;
    font-size: clamp(0.66rem, 0.68vw, 0.78rem);
  }
}

/* Screenshot-matched landing hero, isolated from the older paper-shot pass. */
body:has(.screenshot-match-landing) {
  overflow-x: hidden;
  background: #fffdf9;
  color: #15110f;
}

body:has(.screenshot-match-landing) .topbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 88px;
  padding: 1.05rem clamp(1.5rem, 6vw, 7rem) 0.85rem;
  background: #fffdf9;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body:has(.screenshot-match-landing) .brand {
  gap: 0.82rem;
  min-width: 0;
  color: #15110f;
  text-decoration: none;
}

body:has(.screenshot-match-landing) .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #15110f;
  color: #fffdf9;
  font-size: 1.04rem;
}

body:has(.screenshot-match-landing) .brand strong {
  display: block;
  color: #15110f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.05;
  letter-spacing: 0;
}

body:has(.screenshot-match-landing) .brand small {
  margin-top: 0.12rem;
  color: #15110f;
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0;
}

body:has(.screenshot-match-landing) .topnav {
  justify-content: end;
  gap: 1.55rem;
}

body:has(.screenshot-match-landing) .topnav a,
body:has(.screenshot-match-landing) .topnav button {
  color: #15110f;
  font-size: 0.9rem;
  font-weight: 720;
  letter-spacing: 0;
  text-decoration: none;
}

body:has(.screenshot-match-landing) .topnav .primary-button,
.screenshot-match-landing .primary-button {
  border: 0;
  background: #7d1738;
  color: #fffdf9;
  box-shadow: none;
}

body:has(.screenshot-match-landing) .topnav .primary-button {
  min-height: 48px;
  padding: 0.75rem 1.42rem;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 850;
}

body:has(.screenshot-match-landing) .topnav .primary-button:hover,
.screenshot-match-landing .primary-button:hover {
  background: #68122d;
}

.public-page.screenshot-match-landing {
  --paper-bg: var(--match-bg);
  --paper-panel: var(--match-panel);
  --paper-ink: var(--match-ink);
  --paper-muted: #3d3734;
  --paper-line: rgba(21, 17, 15, 0.18);
  --paper-light-line: rgba(21, 17, 15, 0.1);
  --paper-burgundy: var(--match-red);
  --paper-burgundy-dark: var(--match-red-dark);
  --paper-gold: #b9822b;
  --match-bg: #fffdf9;
  --match-panel: #fffaf2;
  --match-ink: #15110f;
  --match-muted: #27211e;
  --match-soft: #f8efe6;
  --match-red: #7d1738;
  --match-red-dark: #68122d;
  --match-line: rgba(21, 17, 15, 0.16);
  overflow-x: hidden;
  padding: 0 0 3rem;
  background: var(--match-bg);
  color: var(--match-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.screenshot-match-landing h1,
.screenshot-match-landing h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 760;
  letter-spacing: 0;
}

.screenshot-match-landing p {
  color: var(--match-ink);
  line-height: 1.55;
}

.screenshot-match-landing .match-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 0.98fr);
  gap: 3.5rem;
  align-items: center;
  width: min(1660px, 100%);
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: 2.6rem clamp(1.5rem, 6vw, 7rem) 3rem;
  background: var(--match-bg);
}

.match-hero-copy {
  position: relative;
  max-width: 760px;
}

.match-kicker {
  margin: 0 0 1.05rem;
  color: var(--match-ink);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.match-hero h1 {
  margin: 0;
  color: var(--match-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
}

.match-hero h1 span {
  display: block;
}

.match-hero h1 span:first-child {
  white-space: nowrap;
}

.match-hero h1 em {
  color: var(--match-red);
  font-style: italic;
  letter-spacing: 0;
}

.match-underlined {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.match-underlined::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.1em;
  bottom: -0.08em;
  height: 0.12em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 34' preserveAspectRatio='none'%3E%3Cpath d='M8 22 C120 6 380 8 512 19' fill='none' stroke='%237d1738' stroke-width='6' stroke-linecap='round'/%3E%3Cpath d='M13 25 C160 13 360 11 506 22' fill='none' stroke='%23ad405b' stroke-width='2' stroke-linecap='round' opacity='.45'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.screenshot-match-landing .match-lede {
  max-width: 650px;
  margin: 1.6rem 0 0;
  color: var(--match-ink);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0;
}

.match-actions {
  display: flex;
  margin-top: 1.55rem;
}

.match-actions .primary-button {
  min-width: 330px;
  min-height: 58px;
  padding: 0.9rem 1.55rem;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: 0;
}

.match-proof-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.65rem;
}

.match-proof-row span {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
  padding: 0 1.25rem;
  color: var(--match-ink);
}

.match-proof-row span:first-child {
  padding-left: 0;
}

.match-proof-row span:not(:last-child) {
  border-right: 1px solid var(--match-line);
}

.match-proof-row strong,
.match-proof-row small {
  color: var(--match-ink);
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
}

.match-proof-row strong {
  font-size: 0.82rem;
  font-weight: 850;
}

.match-proof-row small {
  font-size: 0.72rem;
  font-weight: 520;
}

.match-spark {
  position: absolute;
  width: 22px;
  height: 22px;
  color: var(--match-red);
  pointer-events: none;
}

.match-spark::before,
.match-spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 100%;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.match-spark::after {
  width: 100%;
  height: 4px;
}

.spark-a {
  right: 2rem;
  top: 2.2rem;
  transform: rotate(24deg);
}

.spark-b {
  left: -1.1rem;
  bottom: 7.2rem;
  width: 16px;
  height: 16px;
  transform: rotate(-18deg);
}

.match-report-card {
  width: min(100%, 760px);
  justify-self: end;
  padding: 1.2rem;
  background: #fffdf9;
  border: 1px solid rgba(21, 17, 15, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(21, 17, 15, 0.08);
}

.match-report-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.95rem;
}

.match-report-head p {
  margin: 0 0 0.28rem;
  color: var(--match-ink);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.match-report-head h2 {
  margin: 0;
  color: var(--match-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.match-report-head > span {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0.44rem 0.7rem;
  border: 1px solid rgba(125, 23, 56, 0.24);
  border-radius: 999px;
  background: rgba(125, 23, 56, 0.08);
  color: var(--match-red);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.match-score-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--match-line);
  border-radius: 7px;
}

.match-score-row div {
  display: grid;
  align-content: center;
  min-height: 78px;
  padding: 0.85rem 1rem;
  background: var(--match-panel);
}

.match-score-row div:not(:last-child) {
  border-right: 1px solid var(--match-line);
}

.match-score-row strong,
.match-score-row span {
  color: var(--match-ink);
  line-height: 1;
  letter-spacing: 0;
}

.match-score-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 760;
}

.match-score-main strong {
  color: var(--match-red);
  font-size: 3.2rem;
}

.match-score-row span {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.18;
}

.match-status-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 0.9rem;
  padding: 0.74rem 0.9rem;
  background: var(--match-red, #98181d);
  border-radius: 7px;
  color: #fffdf9;
}

.match-status-ribbon span,
.match-status-ribbon strong {
  color: #fffdf9;
  line-height: 1.18;
  letter-spacing: 0;
}

.match-status-ribbon span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.match-status-ribbon strong {
  font-size: 0.88rem;
  font-weight: 820;
  text-align: right;
}

.match-xray {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 0.72rem;
  margin-top: 0.9rem;
}

.match-xray article {
  min-width: 0;
  padding: 0.8rem;
  background: var(--match-soft);
  border: 1px solid rgba(21, 17, 15, 0.11);
  border-radius: 7px;
}

.match-xray header {
  display: flex;
  gap: 0.48rem;
  align-items: center;
  margin-bottom: 0.58rem;
}

.match-xray header span,
.match-repair-plan li > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--match-red, #98181d);
  color: #fffdf9;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
}

.match-xray header strong {
  color: var(--match-ink);
  font-size: 0.82rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.match-xray figure,
.match-line-scan {
  overflow: hidden;
  margin: 0;
  background: #fffdf9;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 6px;
}

.match-xray figure {
  height: 150px;
}

.match-xray img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-line-scan {
  height: 52px;
  padding: 0.28rem;
}

.match-line-scan img {
  object-fit: contain;
}

.match-xray b {
  display: block;
  margin-top: 0.64rem;
  color: var(--match-red);
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.screenshot-match-landing .match-xray p,
.screenshot-match-landing .match-xray li {
  color: var(--match-ink);
  font-size: 0.72rem;
  font-weight: 560;
  line-height: 1.32;
  letter-spacing: 0;
}

.match-xray p {
  margin: 0.58rem 0 0;
}

.match-xray ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-xray li {
  position: relative;
  padding-left: 0.9rem;
  font-weight: 780;
}

.match-xray li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--match-red);
}

.match-repair-plan {
  margin-top: 0.9rem;
  padding-top: 0.86rem;
  border-top: 1px solid var(--match-line);
}

.match-repair-plan h3 {
  margin: 0 0 0.58rem;
  color: var(--match-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.match-repair-plan ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-repair-plan li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  min-width: 0;
  padding: 0.68rem;
  background: #fffaf2;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 7px;
}

.match-repair-plan li > span {
  width: 28px;
  height: 28px;
  font-size: 0.64rem;
}

.screenshot-match-landing .match-repair-plan strong,
.screenshot-match-landing .match-repair-plan small {
  display: block;
  min-width: 0;
  color: var(--match-ink);
  letter-spacing: 0;
}

.match-repair-plan strong {
  font-size: 0.78rem;
  line-height: 1.14;
}

.screenshot-match-landing .match-repair-plan small {
  display: none;
  margin-top: 0.18rem;
  font-size: 0.68rem;
  font-weight: 520;
  line-height: 1.22;
}

.match-report-cta.primary-button {
  width: 100%;
  min-height: 50px;
  margin-top: 0.92rem;
  border-radius: 7px;
  font-size: 0.98rem;
  font-weight: 840;
  letter-spacing: 0;
}

.screenshot-match-landing .match-trust-line {
  margin: 0.56rem 0 0;
  color: var(--match-ink);
  font-size: 0.72rem;
  font-weight: 560;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

@media (min-width: 1800px) {
  .match-hero h1 {
    font-size: 6.05rem;
  }

  .match-report-card {
    width: min(100%, 820px);
    padding: 1.35rem;
  }

  .match-xray figure {
    height: 170px;
  }
}

@media (max-width: 1500px) {
  .screenshot-match-landing .match-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 0.98fr);
    gap: 2.4rem;
  }

  .match-hero h1 {
    font-size: 4.45rem;
  }

  .match-lede {
    font-size: 1rem;
  }

  .match-report-card {
    padding: 0.86rem;
  }

  .match-report-head h2 {
    font-size: 1.72rem;
  }

  .match-score-row div {
    min-height: 68px;
    padding: 0.72rem 0.82rem;
  }

  .match-score-main strong {
    font-size: 2.62rem;
  }

  .match-score-row strong {
    font-size: 1.58rem;
  }

  .match-xray figure {
    height: 112px;
  }

  .match-repair-plan ol {
    gap: 0.48rem;
  }

  .match-xray article,
  .match-repair-plan li {
    padding: 0.58rem;
  }

  .screenshot-match-landing .match-repair-plan small {
    display: none;
  }

  .match-report-cta.primary-button {
    min-height: 44px;
    margin-top: 0.68rem;
  }

  .screenshot-match-landing .match-trust-line {
    margin-top: 0.38rem;
  }
}

@media (max-height: 820px) and (min-width: 1181px) {
  body:has(.screenshot-match-landing) .topbar {
    min-height: 76px;
    padding-top: 0.78rem;
    padding-bottom: 0.55rem;
  }

  .screenshot-match-landing .match-hero {
    min-height: calc(100svh - 76px);
    padding-top: 1.15rem;
    padding-bottom: 1.2rem;
  }

  .match-hero h1 {
    font-size: 3.9rem;
  }

  .match-kicker {
    margin-bottom: 0.76rem;
    font-size: 0.76rem;
  }

  .match-lede {
    margin-top: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .match-actions {
    margin-top: 1rem;
  }

  .match-actions .primary-button {
    min-height: 50px;
  }

  .match-proof-row {
    margin-top: 1.15rem;
  }

  .match-report-card {
    padding: 0.86rem;
  }

  .match-report-head {
    padding-bottom: 0.72rem;
  }

  .match-report-head h2 {
    font-size: 1.48rem;
  }

  .match-score-row div {
    min-height: 58px;
  }

  .match-score-main strong {
    font-size: 2.2rem;
  }

  .match-score-row strong {
    font-size: 1.36rem;
  }

  .match-status-ribbon,
  .match-xray,
  .match-repair-plan,
  .match-report-cta.primary-button {
    margin-top: 0.62rem;
  }

  .match-status-ribbon {
    padding: 0.56rem 0.7rem;
  }

  .match-xray article {
    padding: 0.62rem;
  }

  .match-xray figure {
    height: 96px;
  }

  .match-line-scan {
    height: 42px;
  }

  .match-xray p,
  .match-xray li {
    font-size: 0.66rem;
  }

  .match-repair-plan {
    padding-top: 0.6rem;
  }

  .match-repair-plan h3 {
    margin-bottom: 0.42rem;
    font-size: 0.98rem;
  }

  .match-repair-plan li {
    padding: 0.48rem;
  }

  .screenshot-match-landing .match-repair-plan small {
    display: none;
  }

  .match-report-cta.primary-button {
    min-height: 42px;
  }
}

@media (max-width: 1180px) {
  body:has(.screenshot-match-landing) .topbar {
    min-height: 82px;
  }

  .screenshot-match-landing .match-hero {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    align-items: start;
    min-height: 0;
    padding-top: 2rem;
  }

  .match-hero-copy {
    max-width: 760px;
  }

  .match-report-card {
    justify-self: center;
    width: min(100%, 820px);
  }
}

@media (max-width: 820px) {
  body:has(.screenshot-match-landing) .topbar {
    padding-inline: 1rem;
  }

  .match-hero h1 {
    font-size: 3.52rem;
  }

  .match-proof-row,
  .match-xray,
  .match-repair-plan ol {
    grid-template-columns: 1fr;
  }

  .match-proof-row {
    width: 100%;
    gap: 0.62rem;
  }

  .match-proof-row span {
    padding: 0.65rem 0;
  }

  .match-proof-row span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--match-line);
  }

  .match-proof-row strong,
  .match-proof-row small {
    white-space: normal;
  }

  .match-xray figure {
    height: auto;
  }

  .match-xray img {
    height: auto;
    object-fit: contain;
  }

  .match-line-scan {
    height: 58px;
  }

  .match-line-scan img {
    height: 100%;
  }
}

@media (max-width: 640px) {
  body:has(.screenshot-match-landing) .topbar {
    grid-template-columns: 1fr;
    gap: 0.72rem;
    min-height: 0;
    padding: 0.75rem 0.9rem 0.85rem;
  }

  body:has(.screenshot-match-landing) .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  body:has(.screenshot-match-landing) .brand strong {
    font-size: 1.02rem;
  }

  body:has(.screenshot-match-landing) .brand small {
    display: block;
    font-size: 0.68rem;
  }

  body:has(.screenshot-match-landing) .topnav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.56rem;
    width: 100%;
  }

  body:has(.screenshot-match-landing) .topnav a:not(.primary-button) {
    min-height: 42px;
    padding: 0.62rem 0.72rem;
  }

  body:has(.screenshot-match-landing) .topnav .primary-button {
    width: 100%;
    min-height: 42px;
    padding: 0.62rem 0.76rem;
    font-size: 0.82rem;
    white-space: normal;
  }

  .screenshot-match-landing .match-hero {
    padding: 1.5rem 0.9rem 2.2rem;
  }

  .match-kicker {
    font-size: 0.72rem;
  }

  .match-hero h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  .match-lede {
    margin-top: 1.28rem;
    font-size: 0.94rem;
  }

  .match-actions .primary-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 1rem;
    font-size: 0.92rem;
  }

  .match-spark {
    display: none;
  }

  .match-report-card {
    padding: 0.78rem;
  }

  .match-report-head {
    display: grid;
  }

  .match-report-head h2 {
    font-size: 1.44rem;
  }

  .match-report-head > span {
    justify-self: start;
  }

  .match-score-row {
    grid-template-columns: 1fr;
  }

  .match-score-row div {
    min-height: 0;
    padding: 0.74rem 0.78rem;
  }

  .match-score-row div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--match-line);
  }

  .match-score-main strong {
    font-size: 2.38rem;
  }

  .match-status-ribbon {
    display: grid;
  }

  .match-status-ribbon strong {
    text-align: left;
  }

  .match-repair-plan li {
    padding: 0.62rem;
  }
}

@media (max-width: 380px) {
  .match-hero h1 {
    font-size: 2.44rem;
  }

  .match-report-card {
    padding: 0.64rem;
  }

  .match-xray article {
    padding: 0.68rem;
  }
}

/* Screenshot target pass: final hero composition. */
body:has(.screenshot-match-landing) .topbar {
  min-height: 74px;
  padding: 0.8rem 1rem 0.45rem clamp(1rem, 3vw, 3.5rem);
}

body:has(.screenshot-match-landing) .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(21, 17, 15, 0.12);
}

body:has(.screenshot-match-landing) .brand strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.22rem;
  font-weight: 780;
  letter-spacing: 0;
}

body:has(.screenshot-match-landing) .brand small {
  font-size: 0.78rem;
  font-weight: 650;
}

body:has(.screenshot-match-landing) .topnav {
  gap: 2rem;
}

body:has(.screenshot-match-landing) .topnav a:not(.primary-button) {
  color: #15110f;
  font-size: 0.86rem;
  font-weight: 840;
}

body:has(.screenshot-match-landing) .topnav .primary-button,
.screenshot-match-landing .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  background: #98181d;
  background-image: none;
  color: #fffdf9;
  box-shadow: none;
}

body:has(.screenshot-match-landing) .topnav .primary-button {
  min-height: 42px;
  padding: 0.7rem 1.35rem;
  border-radius: 7px;
  font-size: 0.92rem;
}

body:has(.screenshot-match-landing) .topnav .primary-button:hover,
.screenshot-match-landing .primary-button:hover {
  background: var(--match-red-dark, #7e1216);
  background-image: none;
  box-shadow: none;
}

.public-page.screenshot-match-landing {
  --match-bg: #fffdf9;
  --match-panel: #fffaf7;
  --match-ink: #15110f;
  --match-muted: #28201e;
  --match-soft: #fff8f4;
  --match-red: #98181d;
  --match-red-dark: #7e1216;
  --match-danger: var(--match-red);
  --match-danger-muted: #c65a54;
  --match-danger-soft: #fff6f5;
  --match-blue-ink: #15110f;
  --match-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --match-orange: #d97833;
  --match-orange-soft: #fff9f3;
  --match-green: #38c950;
  --match-line: rgba(21, 17, 15, 0.075);
  --match-line-soft: rgba(21, 17, 15, 0.052);
  background: var(--match-bg);
}

.screenshot-match-landing .match-hero {
  grid-template-columns: minmax(430px, 0.65fr) minmax(720px, 0.98fr);
  gap: 3rem;
  align-items: center;
  width: min(1880px, 100%);
  min-height: clamp(560px, calc(100svh - 120px), 700px);
  padding: 0.15rem 1rem 1.35rem clamp(1rem, 3vw, 3.5rem);
}

.match-hero-copy {
  max-width: 610px;
  transform: translateY(-2.4rem);
}

.match-kicker {
  margin-bottom: 1.55rem;
  color: #ef392f;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.065em;
}

.match-hero h1 {
  font-family: var(--match-display);
  font-size: 3.34rem;
  font-weight: 720;
  line-height: 1.06;
}

.match-hero h1 em {
  color: var(--match-red);
  font-style: normal;
  font-weight: 760;
}

.match-underlined {
  display: inline-block;
}

.match-underlined::after {
  display: none;
}

.match-inline-sparks {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  margin-left: 0.12em;
  vertical-align: -0.18em;
}

.match-inline-sparks::before,
.match-inline-sparks::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(var(--match-red), var(--match-red)) 50% 0 / 3px 100% no-repeat,
    linear-gradient(var(--match-red), var(--match-red)) 0 50% / 100% 3px no-repeat;
}

.match-inline-sparks::before {
  left: 1px;
  top: 4px;
  transform: rotate(4deg);
}

.match-inline-sparks::after {
  right: 2px;
  bottom: 7px;
  transform: rotate(10deg) scale(0.85);
}

.screenshot-match-landing .match-lede {
  max-width: 470px;
  margin-top: 1.45rem;
  color: var(--match-ink);
  font-size: 1.12rem;
  font-weight: 560;
  line-height: 1.75;
}

.match-lede em {
  color: #e7352f;
  font-style: normal;
  font-weight: 820;
}

.match-actions {
  margin-top: 1.85rem;
}

.match-actions .primary-button {
  min-width: 390px;
  min-height: 56px;
  border-radius: 7px;
  font-size: 1.05rem;
  font-weight: 860;
}

.match-proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(620px, 100%);
  margin-top: 1.7rem;
}

.match-proof-row > span {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.82rem;
  align-items: center;
  padding: 0 1.25rem;
}

.match-proof-row > span:first-child {
  padding-left: 0;
}

.match-proof-row > span:not(:last-child) {
  border-right: 1px solid var(--match-line);
}

.match-proof-row > span > b {
  display: grid;
  gap: 0.08rem;
}

.match-proof-row strong,
.match-proof-row small {
  color: var(--match-ink);
  white-space: normal;
}

.match-proof-row strong {
  font-size: 0.82rem;
}

.match-proof-row small {
  font-size: 0.74rem;
  font-weight: 560;
}

.match-proof-icon {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  color: #ef392f;
}

.match-proof-img {
  display: block;
  width: 42px;
  height: 42px;
}

.match-proof-icon.shield {
  border: 2px solid currentColor;
  border-radius: 16px 16px 20px 20px;
  clip-path: polygon(50% 0, 92% 13%, 86% 72%, 50% 100%, 14% 72%, 8% 13%);
}

.match-proof-icon.shield::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 9px;
  height: 16px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.match-proof-icon.clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.match-proof-icon.clock::before,
.match-proof-icon.clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 0;
}

.match-proof-icon.clock::before {
  height: 12px;
  transform: rotate(0deg);
}

.match-proof-icon.clock::after {
  height: 10px;
  transform: rotate(128deg);
}

.match-proof-icon.target {
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px var(--match-bg), inset 0 0 0 9px currentColor;
}

.match-proof-icon.target::before,
.match-proof-icon.target::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.match-proof-icon.target::before {
  left: 50%;
  top: -6px;
  width: 2px;
  height: 52px;
  transform: translateX(-50%);
}

.match-proof-icon.target::after {
  left: -6px;
  top: 50%;
  width: 52px;
  height: 2px;
  transform: translateY(-50%);
}

.match-report-card {
  align-self: center;
  justify-self: end;
  width: min(852px, 100%);
  padding: 0.8rem 0 0.25rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-0.4rem);
}

.match-hero-xray-card {
  width: min(100%, 980px);
  padding: 0.95rem;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(21, 17, 15, 0.08);
  transform: translateY(-0.2rem);
}

.match-hero-xray-card .match-report-metrics {
  margin-top: 0;
}

.match-hero-xray-card .match-report-metrics span {
  min-height: 34px;
  padding: 0.34rem 0.5rem;
}

.match-hero-xray-card .match-report-metrics b {
  font-size: 0.53rem;
}

.match-hero-xray-card .match-xray {
  grid-template-columns: minmax(136px, 0.66fr) minmax(274px, 1.44fr) minmax(196px, 1fr);
  gap: 0.62rem;
  margin-top: 0.72rem;
}

.match-hero-xray-card .match-xray article {
  min-height: 218px;
  padding: 0.78rem;
}

.match-hero-xray-card .match-line-card ol {
  margin-top: 0.88rem;
}

.match-hero-xray-card .match-line-card li {
  min-height: 25px;
  padding: 0.22rem 0.38rem;
  font-size: 0.58rem;
}

.match-hero-xray-card .match-line-card li strong {
  font-size: 0.56rem;
}

.match-hero-xray-card .match-line-scan {
  height: 46px;
}

.match-hero-xray-card .match-repair-plan {
  grid-template-columns: minmax(0, 1fr) minmax(238px, 0.44fr);
  gap: 0.78rem;
  margin-top: 0.72rem;
  padding: 0.75rem;
}

.match-hero-xray-card .match-repair-plan h3 {
  font-size: 1.06rem;
}

.match-hero-xray-card .match-repair-plan li {
  grid-template-columns: 32px minmax(0, 1fr);
}

.match-hero-xray-card .match-repair-summary {
  padding: 0.78rem 0.88rem;
}

.match-hero-xray-card .match-report-cta.primary-button {
  width: min(440px, 100%);
  min-height: 42px;
  margin-right: auto;
  margin-left: auto;
}

.match-score-demo {
  position: relative;
  min-height: 365px;
  margin-bottom: 0.2rem;
}

.match-score-breakdown,
.match-loss-table-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 17, 15, 0.08);
  border-radius: 9px;
  box-shadow: 0 16px 34px rgba(21, 17, 15, 0.09);
}

.match-score-breakdown {
  width: min(480px, 64%);
  margin-left: 2.6rem;
  padding: 1.45rem 1.55rem 1.25rem;
  transform: rotate(-3.5deg);
}

.match-loss-table-card {
  position: absolute;
  right: 0.2rem;
  bottom: 0.15rem;
  width: min(520px, 68%);
  padding: 1.25rem 1.45rem 1.18rem;
  transform: rotate(2.8deg);
}

.match-score-breakdown h2,
.match-loss-table-card h2 {
  margin: 0 0 1.05rem;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 1rem;
  font-weight: 840;
  line-height: 1.15;
  letter-spacing: 0;
}

.match-score-body {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
}

.match-score-ring {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 48%, transparent 49%),
    conic-gradient(var(--match-red) 0 68%, #ece9e8 68% 100%);
}

.match-score-ring strong {
  color: var(--match-ink);
  font-size: 2.05rem;
  font-weight: 860;
  line-height: 0.9;
}

.match-score-ring span {
  color: var(--match-ink);
  font-size: 0.75rem;
  font-weight: 560;
}

.match-score-body dl,
.match-loss-table {
  margin: 0;
}

.match-score-body dl {
  display: grid;
  gap: 0.85rem;
}

.match-score-body dl div,
.match-loss-table div {
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(21, 17, 15, 0.08);
}

.match-score-body dl div {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  padding-bottom: 0.55rem;
}

.match-score-body dl div:last-child,
.match-loss-table div:last-child {
  border-bottom: 0;
}

.match-score-body dt,
.match-score-body dd {
  margin: 0;
  color: var(--match-ink);
  font-size: 0.76rem;
  line-height: 1.2;
}

.match-score-body dd strong {
  color: var(--match-red);
  font-weight: 900;
}

.match-loss-table {
  display: grid;
  gap: 0;
}

.match-loss-table div {
  grid-template-columns: 78px 64px minmax(0, 1fr);
  gap: 0.85rem;
  min-height: 46px;
  padding: 0.48rem 0;
}

.match-loss-table div:first-child {
  min-height: 26px;
  color: var(--match-ink);
  font-size: 0.68rem;
  font-weight: 820;
}

.match-loss-table span {
  color: var(--match-ink);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.match-loss-table div:first-child span,
.match-loss-table div:first-child strong {
  font-size: inherit;
  font-weight: inherit;
}

.match-loss-table b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  min-height: 28px;
  margin: 0;
  border-radius: 6px;
  background: var(--match-red);
  color: #fffdf9;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.match-report-intro h2 {
  margin: 0;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 1.46rem;
  font-weight: 760;
  line-height: 1.08;
}

.match-recovery-count {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.62rem;
}

.match-recovery-count strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--match-red);
  background-image: none;
  color: #fffdf9;
  font-family: var(--match-display);
  font-size: 2.12rem;
  font-weight: 840;
  line-height: 1;
  box-shadow: none;
}

.match-recovery-count span {
  color: var(--match-red);
  font-family: var(--match-display);
  font-size: 1.5rem;
  font-weight: 820;
  line-height: 1.1;
}

.match-report-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 1.05rem;
  border: 1px solid var(--match-line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.match-report-metrics span {
  display: flex;
  gap: 0.48rem;
  align-items: center;
  min-height: 36px;
  padding: 0.36rem 0.58rem;
  color: rgba(21, 17, 15, 0.66);
}

.match-report-metrics span:not(:last-child) {
  border-right: 1px solid var(--match-line-soft);
}

.match-report-metrics b {
  color: rgba(21, 17, 15, 0.66);
  font-size: 0.55rem;
  font-weight: 620;
  line-height: 1.25;
}

.match-metric-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: #ef392f;
}

.match-metric-img {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  opacity: 0.6;
}

.match-metric-icon.bolt::before {
  content: "!";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: currentColor;
  font-size: 1rem;
  font-weight: 920;
  transform: rotate(14deg);
}

.match-metric-icon.check {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.match-metric-icon.check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.match-metric-icon.shield {
  border: 2px solid currentColor;
  border-radius: 5px 5px 8px 8px;
  clip-path: none;
}

.match-metric-icon.shield::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.match-metric-icon.document {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.match-metric-icon.document::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  border-top: 7px solid #fff;
  border-left: 7px solid currentColor;
}

.match-xray {
  grid-template-columns: minmax(176px, 0.76fr) minmax(326px, 1.48fr) minmax(232px, 1.03fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.match-xray article {
  min-height: 276px;
  padding: 0.84rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--match-line-soft);
  border-radius: 8px;
}

.match-upload-card {
  position: relative;
  z-index: 3;
}

.match-line-card {
  position: relative;
  z-index: 2;
}

.match-leak-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.42rem;
  align-items: center;
  margin: 0 0 0.58rem;
  min-width: 0;
}

.match-leak-card header strong {
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 1rem;
  font-weight: 780;
  line-height: 1;
}

.match-leak-card header span {
  flex: 0 0 auto;
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  padding: 0.24rem 0.38rem;
  border: 1px solid #f0dce2;
  border-radius: 999px;
  background: #fff6f7;
  color: var(--match-danger-muted);
  font-size: 0.44rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.match-line-scan {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0.34rem;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff9fa, #fff);
  box-shadow: inset 0 0 0 1px #f0e1e2;
}

.match-line-scan img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(1.02) contrast(1.01) saturate(0.9);
  object-fit: contain;
  object-position: center;
}

.match-leak-card b {
  display: block;
  margin-top: 0.68rem;
  color: #a50f2b;
  font-size: 0.76rem;
  font-weight: 850;
}

.match-leak-card p,
.match-leak-card small {
  color: var(--match-ink);
  font-size: 0.69rem;
  font-weight: 520;
  line-height: 1.45;
}

.match-leak-card p {
  margin: 0.48rem 0 0;
}

.match-leak-card small {
  display: block;
  margin-top: 0.6rem;
  padding: 0.54rem 0.64rem;
  border: 1px solid #ecd9de;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffafb, #fff5f6);
  color: #111923;
  font-weight: 750;
  line-height: 1.28;
}

.match-upload-card h3,
.match-line-card h3 {
  margin: 0 0 0.75rem;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.15;
}

.match-upload-card h3 {
  white-space: nowrap;
}

.match-upload-card figure {
  position: relative;
  overflow: visible;
  margin: 0;
}

.match-upload-card figcaption {
  display: none;
  margin-bottom: 0;
  color: var(--match-ink);
  font-size: 0.9rem;
  font-weight: 760;
}

.match-work-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 760 / 470;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(21, 17, 15, 0.07);
  border-radius: 7px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.match-work-image::before {
  content: none;
}

.match-work-image::after {
  content: none;
}

.match-work-image > span {
  display: none;
}

.match-work-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 470;
  filter: brightness(1.018) contrast(1.018) saturate(0.94);
  object-fit: contain;
  border-radius: 6px;
}

.match-connector {
  position: absolute;
  left: calc(100% - 42px);
  right: -84px;
  height: 0;
  border-top: 2px solid currentColor;
  opacity: 0.96;
  pointer-events: none;
  z-index: 7;
}

.match-connector::before,
.match-connector::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.82);
}

.match-connector::before {
  left: -1px;
}

.match-connector::after {
  right: -1px;
}

.connector-1 {
  top: 20.5%;
  color: var(--match-green);
}

.connector-2 {
  top: 34.7%;
  color: var(--match-green);
}

.connector-3 {
  top: 49.4%;
  color: var(--match-green);
}

.connector-4 {
  top: 68.1%;
  color: var(--match-danger-muted);
}

.connector-5 {
  top: 87.6%;
  color: var(--match-orange);
}

.match-line-card ol {
  display: grid;
  gap: 0.08rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.match-line-card li {
  display: grid;
  grid-template-columns: 21px 20px minmax(0, 1fr);
  gap: 0.42rem;
  align-items: center;
  min-height: 29px;
  padding: 0.26rem 0.5rem;
  border-top: 1px solid var(--match-line-soft);
  border-radius: 6px;
  color: var(--match-ink);
  font-size: 0.66rem;
}

.match-line-card li::before {
  content: none;
}

.match-line-card li > span {
  color: var(--match-ink);
  font-weight: 760;
}

.match-line-card li b {
  display: block;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1;
}

.match-line-card li strong {
  color: var(--match-ink);
  font-size: 0.64rem;
  font-weight: 760;
  line-height: 1.08;
}

.match-line-card li em {
  color: inherit;
  font-style: normal;
  font-weight: 900;
}

.match-line-card li.ok b {
  color: var(--match-green);
}

.match-line-card li.bad {
  background: var(--match-danger-soft);
}

.match-line-card li.bad,
.match-line-card li.bad span,
.match-line-card li.bad b,
.match-line-card li.bad strong {
  color: var(--match-danger);
}

.match-line-card li.warn {
  background: var(--match-orange-soft);
}

.match-line-card li.warn,
.match-line-card li.warn span,
.match-line-card li.warn b,
.match-line-card li.warn strong {
  color: var(--match-orange);
}

.match-repair-plan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 1.1rem;
  align-items: stretch;
  margin-top: 0.95rem;
  padding: 0.92rem 1rem 0.78rem;
  border: 1px solid var(--match-line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.match-repair-plan-main {
  min-width: 0;
}

.match-repair-plan h3 {
  margin-bottom: 0.72rem;
  font-family: var(--match-display);
  font-size: 1.28rem;
}

.match-repair-plan ol {
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

.match-repair-plan li {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.88rem;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
}

.match-repair-plan li > span {
  width: 34px;
  height: 34px;
  background: var(--match-red);
  background-image: none;
  box-shadow: none;
  font-size: 1rem;
}

.match-repair-plan strong {
  font-size: 1.02rem;
  font-weight: 760;
}

.screenshot-match-landing .match-repair-plan small {
  display: block;
  margin-top: 0.08rem;
  color: var(--match-ink);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.24;
}

.match-repair-summary {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(152, 24, 29, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(152, 24, 29, 0.1), transparent 32%),
    linear-gradient(135deg, #fffdf9, #fff6f2);
}

.match-summary-kicker {
  margin: 0;
  color: var(--match-red);
  font-size: 0.68rem;
  font-weight: 860;
  line-height: 1.1;
  text-transform: uppercase;
}

.match-repair-summary ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-repair-summary li {
  position: relative;
  display: block;
  min-height: 0;
  padding-left: 1.15rem;
  border: 0;
  background: transparent;
  color: rgba(21, 17, 15, 0.74);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.24;
}

.match-repair-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.34em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--match-red);
}

.match-report-cta.primary-button {
  min-height: 46px;
  margin-top: 0.82rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 860;
}

.screenshot-match-landing .match-trust-line {
  display: flex;
  justify-content: center;
  gap: 0.52rem;
  align-items: center;
  margin-top: 0.58rem;
  color: var(--match-ink);
  font-size: 0.74rem;
  font-weight: 650;
}

.match-trust-line > span {
  position: relative;
  width: 12px;
  height: 10px;
  border: 2px solid #1b2460;
  border-radius: 2px;
}

.match-trust-line > span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -9px;
  width: 6px;
  height: 8px;
  border: 2px solid #1b2460;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.match-diagnostic-includes,
.match-fit-section {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 1.9rem auto 0;
}

.match-diagnostic-includes {
  padding: 2rem 1.7rem 1.7rem;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(21, 17, 15, 0.045);
}

.match-diagnostic-includes h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 1.85rem;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 1.72rem;
  font-weight: 860;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0;
}

.match-diagnostic-includes h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.72rem;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: var(--match-red);
  transform: translateX(-50%) rotate(-1.5deg);
}

.match-diagnostic-copy {
  max-width: 780px;
  margin: -0.65rem auto 1.85rem;
  color: #334155;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 520;
  line-height: 1.45;
  text-align: center;
}

.landing-product-loop {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid rgba(152, 24, 29, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(152, 24, 29, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 60px rgba(28, 20, 16, 0.07);
}

.landing-product-loop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.landing-product-loop-heading p {
  margin: 0;
  color: var(--match-red, #98181d);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-product-loop-heading h2 {
  min-width: 0;
  max-width: 620px;
  margin: 0;
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: right;
}

.landing-product-loop ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-product-loop li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.38rem;
  min-height: 142px;
  padding: 0.85rem 0.85rem 0.9rem;
  border: 1px solid rgba(21, 17, 15, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(28, 20, 16, 0.045);
}

.landing-product-loop li:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 50%;
  right: -0.86rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 1.02rem;
  height: 1.02rem;
  border-radius: 50%;
  background: var(--match-red, #98181d);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.landing-product-loop span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(152, 24, 29, 0.12);
  border-radius: 50%;
  background: #fff4f6;
  color: var(--match-red, #98181d);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.landing-product-loop b {
  color: #080808;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  font-weight: 860;
  line-height: 1.12;
}

.landing-product-loop small {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 560;
  line-height: 1.34;
}

@media (max-width: 980px) {
  .landing-product-loop-heading {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .landing-product-loop-heading h2 {
    width: 100%;
    max-width: 520px;
    text-align: center;
  }

  .landing-product-loop ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-product-loop li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .landing-product-loop {
    padding: 0.72rem;
  }

  .landing-product-loop ol {
    grid-template-columns: 1fr;
  }

  .landing-product-loop li {
    min-height: 0;
    padding: 0.85rem;
  }
}

.match-include-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.match-include-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 210px;
  padding: 0.35rem 1.05rem 0;
  text-align: center;
}

.match-include-grid article:not(:last-child) {
  border-right: 1px solid rgba(21, 17, 15, 0.1);
}

.include-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #fff0f0;
  color: var(--match-red);
}

.include-icon::before {
  content: "";
  position: absolute;
  display: block;
  color: currentColor;
}

.include-icon.chart::before {
  left: 19px;
  bottom: 19px;
  width: 5px;
  height: 13px;
  border-radius: 2px 2px 0 0;
  background: currentColor;
  box-shadow: 9px -6px 0 currentColor, 18px -13px 0 currentColor;
}

.include-icon.chart::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: 16px;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.include-icon.doc::before {
  width: 24px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: inset 0 9px 0 rgba(152, 24, 29, 0.12);
}

.include-icon.doc::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.include-icon.cross::before {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.include-icon.cross::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
}

.include-icon.target::before {
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #fff0f0, inset 0 0 0 8px currentColor;
}

.include-icon.target::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.include-icon.wrench::before {
  width: 34px;
  height: 34px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14.7 6.3a4 4 0 0 0-5.4 5.4l-5.8 5.8a2.1 2.1 0 0 0 3 3l5.8-5.8a4 4 0 0 0 5.4-5.4l-2.5 2.5-3-3 2.5-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M14.7 6.3a4 4 0 0 0-5.4 5.4l-5.8 5.8a2.1 2.1 0 0 0 3 3l5.8-5.8a4 4 0 0 0 5.4-5.4l-2.5 2.5-3-3 2.5-2.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.include-icon.wrench::after {
  content: none;
  display: none;
}

.include-icon.book::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.include-icon.book::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 28px;
  background: currentColor;
  box-shadow: -8px 6px 0 -6px currentColor, 8px 6px 0 -6px currentColor;
}

.match-include-grid h3 {
  margin: 0;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0;
}

.match-include-grid p {
  margin: 1rem 0 0;
  color: var(--match-ink);
  font-size: 0.88rem;
  font-weight: 520;
  line-height: 1.55;
}

.match-fit-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.1rem;
}

.match-fit-heading {
  grid-column: 1 / -1;
  max-width: 820px;
  margin: 0 auto -0.4rem;
  text-align: center;
}

.match-fit-heading h2 {
  margin: 0;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: clamp(2.05rem, 4vw, 3.2rem);
  font-weight: 860;
  letter-spacing: 0;
  line-height: 1.06;
}

.match-fit-heading p {
  max-width: 640px;
  margin: 0.85rem auto 0;
  color: #334155;
  font-size: clamp(0.98rem, 1.12vw, 1.1rem);
  font-weight: 520;
  line-height: 1.45;
}

.match-fit-card {
  min-height: 300px;
  padding: 1.7rem 1.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.match-fit-card.positive {
  border: 1px solid rgba(30, 128, 44, 0.28);
  box-shadow: inset 0 0 42px rgba(30, 128, 44, 0.035);
}

.match-fit-card.negative {
  border: 1px solid rgba(213, 18, 27, 0.28);
  box-shadow: inset 0 0 42px rgba(213, 18, 27, 0.035);
}

.match-fit-card h2 {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.1rem;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 1.72rem;
  font-weight: 860;
  line-height: 1.12;
  letter-spacing: 0;
}

.match-fit-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.match-fit-title-text {
  min-width: 0;
}

.match-fit-card h2 strong {
  overflow-wrap: anywhere;
}

.match-fit-card.positive .match-fit-card-icon {
  background: #267f22;
}

.match-fit-card.negative .match-fit-card-icon {
  background: var(--match-red);
}

.match-fit-card.positive strong {
  color: #267f22;
}

.match-fit-card.negative strong {
  color: var(--match-red);
}

.match-fit-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-fit-card li {
  position: relative;
  min-height: 56px;
  padding: 0.85rem 0 0.85rem 3rem;
  border-top: 1px solid rgba(21, 17, 15, 0.08);
  color: var(--match-ink);
  font-size: 1rem;
  font-weight: 560;
  line-height: 1.32;
}

.match-fit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.8rem;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #267f22;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.match-fit-card.negative li::before {
  content: "×";
  background: var(--match-red);
  font-size: 1.25rem;
}

.match-evidence-section {
  width: min(1180px, calc(100% - 2.2rem));
  margin: 2.1rem auto 0;
  padding: 1.15rem;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 30px rgba(21, 17, 15, 0.045);
}

.match-evidence-section .match-report-metrics {
  margin-top: 0;
}

.match-evidence-section .match-report-cta.primary-button {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-width: min(420px, 100%);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.4rem;
  padding-left: 1.4rem;
}

.screenshot-match-landing .paper-free-offer,
.screenshot-match-landing .paper-audience {
  display: none;
}

.screenshot-match-landing.landing-restored-lower {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #fffaf7;
}

.screenshot-match-landing.landing-restored-lower .landing-story-band {
  width: 100%;
  padding: clamp(3.6rem, 6.3vw, 5.9rem) 0;
  border-top: 1px solid rgba(21, 17, 15, 0.07);
}

.screenshot-match-landing.landing-restored-lower .landing-band-inner {
  display: grid;
  gap: clamp(2.8rem, 5.3vw, 4.6rem);
  width: min(1360px, calc(100% - clamp(1.5rem, 5vw, 4rem)));
  margin: 0 auto;
}

.screenshot-match-landing.landing-restored-lower .landing-band-inner > * {
  width: 100%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.screenshot-match-landing.landing-restored-lower .landing-band-inner > :is(
  .match-diagnostic-includes,
  .match-fit-section,
  .paper-final-cta,
  .paper-footer-proof
) {
  margin-left: 0;
  margin-right: 0;
}

.screenshot-match-landing.landing-restored-lower .landing-band-inner > :is(
  .match-diagnostic-includes,
  .match-fit-section,
  .paper-fix-section,
  .paper-report-section,
  .paper-pattern-section,
  .paper-process-section,
  .paper-parent-section,
  .paper-case-section,
  .paper-pricing-section,
  .paper-faq-section
) {
  padding-top: 0;
  padding-bottom: 0;
}

.screenshot-match-landing.landing-restored-lower .landing-band-conversion .paper-faq-section {
  width: min(980px, 100%);
  justify-self: center;
}

.screenshot-match-landing.landing-restored-lower .match-diagnostic-includes {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(1.6rem, 3.2vw, 3rem);
  align-items: start;
  padding: clamp(1.35rem, 2.4vw, 1.9rem);
}

.screenshot-match-landing.landing-restored-lower .match-diagnostic-includes h2 {
  width: auto;
  margin: 0;
  text-align: left;
}

.screenshot-match-landing.landing-restored-lower .match-diagnostic-includes h2::after {
  left: 0;
  transform: rotate(-1.5deg);
}

.screenshot-match-landing.landing-restored-lower .match-diagnostic-copy {
  max-width: 420px;
  margin: 0;
  text-align: left;
}

.screenshot-match-landing.landing-restored-lower .match-include-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.screenshot-match-landing.landing-restored-lower .match-fit-section {
  grid-template-columns: minmax(240px, 0.46fr) repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.65rem);
  align-items: stretch;
}

.screenshot-match-landing.landing-restored-lower .match-fit-heading {
  grid-column: 1;
  align-self: center;
  max-width: 360px;
  margin: 0;
  text-align: left;
}

.screenshot-match-landing.landing-restored-lower .match-fit-heading p {
  margin-left: 0;
  margin-right: 0;
}

.screenshot-match-landing.landing-restored-lower .landing-band-diagnostic {
  background: linear-gradient(180deg, #fffdfb 0%, #f8eee6 100%);
}

.screenshot-match-landing.landing-restored-lower .landing-band-evidence {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.screenshot-match-landing.landing-restored-lower .landing-band-repair {
  background: linear-gradient(180deg, #f3faf3 0%, #fffaf7 100%);
}

.screenshot-match-landing.landing-restored-lower .landing-band-proof {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.screenshot-match-landing.landing-restored-lower .landing-band-conversion {
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.landing-demo-frame {
  width: min(1240px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(21, 17, 15, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 70px rgba(21, 17, 15, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.landing-report-frame,
.landing-pattern-frame,
.landing-process-frame,
.landing-case-frame,
.landing-pricing-frame {
  width: min(1280px, 100%);
}

.landing-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 44px;
  padding: 0.72rem clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid rgba(21, 17, 15, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 242, 0.78));
  color: rgba(21, 17, 15, 0.72);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.landing-window-dots {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 10px;
}

.landing-window-dots::before,
.landing-window-dots::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.landing-window-dots::before {
  left: 0;
  background: rgba(182, 31, 60, 0.78);
  box-shadow: 16px 0 rgba(207, 139, 49, 0.72), 32px 0 rgba(55, 139, 90, 0.72);
}

.landing-frame-body {
  padding: clamp(1rem, 2.4vw, 1.7rem);
}

.landing-frame-body > :first-child {
  margin-top: 0;
}

.landing-frame-body > :last-child {
  margin-bottom: 0;
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-fix-section,
  .paper-report-section,
  .paper-pattern-section,
  .paper-process-section,
  .paper-pricing-section
) {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.58fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-fix-heading,
  .paper-output-heading,
  .paper-pattern-heading,
  .paper-process-heading,
  .paper-pricing-heading
) {
  max-width: 520px;
  margin: 0;
  text-align: left;
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-fix-heading h2,
  .paper-output-heading h2,
  .paper-pattern-heading h2,
  .paper-process-heading h2,
  .paper-pricing-heading h2
) {
  margin-left: 0;
  margin-right: 0;
  font-size: clamp(2.25rem, 3.7vw, 3.45rem);
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-fix-heading p,
  .paper-output-heading p,
  .paper-pattern-heading p,
  .paper-process-heading p,
  .paper-pricing-heading p
) {
  margin-left: 0;
  margin-right: 0;
}

.screenshot-match-landing.landing-restored-lower :is(
  .landing-fix-frame,
  .landing-report-frame,
  .landing-pattern-frame,
  .landing-process-frame,
  .landing-case-frame,
  .landing-pricing-frame
) {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-pattern-section
) {
  grid-template-columns: minmax(0, 1.58fr) minmax(260px, 0.68fr);
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-pattern-section
) > :is(.paper-pattern-heading) {
  grid-column: 2;
  grid-row: 1;
}

.screenshot-match-landing.landing-restored-lower :is(
  .paper-pattern-section
) > :is(.landing-pattern-frame) {
  grid-column: 1;
  grid-row: 1;
}

.screenshot-match-landing.landing-restored-lower .paper-case-section {
  display: block;
}

.screenshot-match-landing.landing-restored-lower .paper-case-heading {
  justify-content: center;
  align-items: center;
  max-width: 820px;
  margin: 0 auto clamp(1.2rem, 2.3vw, 1.8rem);
  text-align: center;
}

.screenshot-match-landing.landing-restored-lower .paper-case-heading p {
  margin-left: auto;
  margin-right: auto;
}

.screenshot-match-landing.landing-restored-lower .landing-case-frame {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.screenshot-match-landing .landing-frame-body :is(
  .paper-table-panel,
  .paper-list-panel,
  .paper-pattern-card,
  .paper-process-card,
  .paper-case-card,
  .paper-price-card
) {
  box-shadow: 0 14px 34px rgba(28, 20, 16, 0.045);
}

.screenshot-match-landing.landing-restored-lower .landing-fix-frame .paper-fix-layout {
  grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
  gap: clamp(0.85rem, 1.6vw, 1.25rem);
}

.screenshot-match-landing.landing-restored-lower .landing-fix-frame .paper-fix-card li {
  grid-template-columns: 34px minmax(0, 1fr);
}

.screenshot-match-landing.landing-restored-lower .landing-fix-frame .paper-fix-card small {
  grid-column: 2;
  justify-self: start;
  max-width: 100%;
  font-size: 0.72rem;
  text-align: left;
}

.screenshot-match-landing.landing-restored-lower .landing-fix-frame .paper-vs-divider span {
  width: 104px;
  height: 104px;
}

.screenshot-match-landing.landing-restored-lower .landing-fix-frame .paper-vs-divider strong {
  font-size: 1.55rem;
}

@media (max-width: 1080px) {
  .screenshot-match-landing.landing-restored-lower :is(
    .paper-fix-section,
    .paper-report-section,
    .paper-pattern-section,
    .paper-process-section,
    .paper-pricing-section
  ) {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 4vw, 2.4rem);
  }

  .screenshot-match-landing.landing-restored-lower :is(
    .paper-fix-heading,
    .paper-output-heading,
    .paper-pattern-heading,
    .paper-process-heading,
    .paper-pricing-heading
  ) {
    max-width: 860px;
    text-align: center;
    justify-self: center;
  }

  .screenshot-match-landing.landing-restored-lower :is(
    .paper-fix-heading h2,
    .paper-output-heading h2,
    .paper-pattern-heading h2,
    .paper-process-heading h2,
    .paper-pricing-heading h2,
    .paper-fix-heading p,
    .paper-output-heading p,
    .paper-pattern-heading p,
    .paper-process-heading p,
    .paper-pricing-heading p
  ) {
    margin-left: auto;
    margin-right: auto;
  }

  .screenshot-match-landing.landing-restored-lower :is(
    .paper-pattern-section
  ) > :is(.paper-pattern-heading, .landing-pattern-frame) {
    grid-column: auto;
    grid-row: auto;
  }

  .screenshot-match-landing.landing-restored-lower .match-diagnostic-includes {
    grid-template-columns: 1fr;
  }

  .screenshot-match-landing.landing-restored-lower .match-diagnostic-includes h2,
  .screenshot-match-landing.landing-restored-lower .match-diagnostic-copy {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .screenshot-match-landing.landing-restored-lower .match-diagnostic-includes h2::after {
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
  }

  .screenshot-match-landing.landing-restored-lower .match-include-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .screenshot-match-landing.landing-restored-lower .match-fit-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-match-landing.landing-restored-lower .match-fit-heading {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .screenshot-match-landing.landing-restored-lower .landing-fix-frame .paper-fix-layout {
    grid-template-columns: 1fr;
  }
}

.screenshot-match-landing .paper-final-cta {
  position: relative;
  display: grid;
  justify-items: start;
  width: min(1180px, calc(100% - 2.2rem));
  margin: 2.45rem auto 0;
  padding: clamp(1.65rem, 4vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(21, 17, 15, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 16%, rgba(218, 17, 24, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.9));
  box-shadow: 0 22px 55px rgba(21, 17, 15, 0.08);
  text-align: left;
}

.screenshot-match-landing .paper-final-cta::after {
  content: "";
  position: absolute;
  right: clamp(1.1rem, 4vw, 3.2rem);
  top: clamp(1.3rem, 4vw, 2.5rem);
  width: min(34%, 320px);
  height: 58%;
  min-height: 168px;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(#ebe7e2 0 0) left 24px top 34px / 56% 2px no-repeat,
    linear-gradient(#ebe7e2 0 0) left 24px top 68px / 72% 2px no-repeat,
    linear-gradient(#ebe7e2 0 0) left 24px top 102px / 64% 2px no-repeat,
    linear-gradient(#da1118 0 0) left 24px bottom 34px / 42% 8px no-repeat,
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 15px 38px rgba(21, 17, 15, 0.08);
  transform: rotate(3deg);
}

.screenshot-match-landing .paper-final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: min(760px, calc(100% - 300px));
  margin: 0;
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 780;
  line-height: 1.05;
}

.screenshot-match-landing .paper-final-cta h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: var(--match-red);
}

.screenshot-match-landing .paper-final-cta p {
  position: relative;
  z-index: 1;
  max-width: min(620px, calc(100% - 310px));
  margin: 1rem 0 0;
  color: rgba(21, 17, 15, 0.72);
  font-size: 1.04rem;
  font-weight: 560;
  line-height: 1.62;
}

.screenshot-match-landing .paper-final-cta .primary-button {
  position: relative;
  z-index: 1;
  min-height: 56px;
  margin-top: 1.35rem;
  padding: 0.95rem 1.55rem;
  border: 0;
  background: linear-gradient(135deg, #f12624, #cf0d14);
  color: #fffdf9;
  font-size: 1rem;
  font-weight: 860;
  box-shadow: 0 14px 30px rgba(218, 17, 24, 0.24);
}

.screenshot-match-landing .paper-final-cta .primary-button::after {
  content: "->";
  margin-left: 0.85rem;
  font-weight: 900;
}

.screenshot-match-landing .paper-final-cta .primary-button:hover {
  background: linear-gradient(135deg, #d30f16, #ad090f);
  color: #fffdf9;
}

.screenshot-match-landing .paper-final-cta small {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  color: rgba(21, 17, 15, 0.58);
  font-size: 0.82rem;
  font-weight: 680;
}

.screenshot-match-landing .paper-footer-proof {
  display: block;
  grid-template-columns: none;
  width: min(1180px, calc(100% - 2.2rem));
  margin: 1.05rem auto 0;
  padding: 0;
  background: transparent;
}

.screenshot-match-landing .paper-footer-proof ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.screenshot-match-landing .paper-footer-proof li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.28rem;
  align-items: center;
  min-height: 118px;
  padding: 1.15rem 1.1rem 1.15rem 4.25rem;
  border: 1px solid rgba(21, 17, 15, 0.11);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 244, 0.84));
  box-shadow: 0 12px 34px rgba(21, 17, 15, 0.055);
}

.screenshot-match-landing .paper-footer-proof li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff0f0;
  box-shadow: inset 0 0 0 1px rgba(218, 17, 24, 0.08);
}

.screenshot-match-landing .paper-footer-proof li::after {
  content: "";
  position: absolute;
  left: 1.78rem;
  top: 1.55rem;
  width: 0.52rem;
  height: 0.9rem;
  border-right: 3px solid var(--match-red);
  border-bottom: 3px solid var(--match-red);
  transform: rotate(42deg);
}

.screenshot-match-landing .paper-footer-proof b {
  color: var(--match-ink);
  font-size: 0.95rem;
  font-weight: 820;
  line-height: 1.18;
}

.screenshot-match-landing .paper-footer-proof span {
  color: rgba(21, 17, 15, 0.66);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.35;
}

.screenshot-match-landing .paper-site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.2rem;
  align-items: center;
  width: min(1180px, calc(100% - 2.2rem));
  min-height: 88px;
  margin: 1.05rem auto 0;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(21, 17, 15, 0.1);
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.78);
}

.screenshot-match-landing .paper-site-footer .brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.screenshot-match-landing .paper-site-footer .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--match-ink);
  color: #fffdf9;
  font-size: 0.9rem;
}

.screenshot-match-landing .paper-site-footer .brand strong {
  color: var(--match-ink);
  font-family: var(--match-display);
  font-size: 0.96rem;
  font-weight: 820;
}

.screenshot-match-landing .paper-site-footer .brand small {
  display: block;
  margin-top: 0.08rem;
  color: rgba(21, 17, 15, 0.62);
  font-size: 0.74rem;
  font-weight: 560;
}

.screenshot-match-landing .paper-site-footer nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.screenshot-match-landing .paper-site-footer nav span,
.screenshot-match-landing .paper-site-footer > small {
  color: rgba(21, 17, 15, 0.64);
  font-size: 0.76rem;
  font-weight: 650;
}

@media (max-width: 900px) {
  .screenshot-match-landing .paper-final-cta,
  .screenshot-match-landing .paper-footer-proof,
  .screenshot-match-landing .paper-site-footer {
    width: min(100% - 1.2rem, 1180px);
  }

  .screenshot-match-landing .paper-final-cta h2,
  .screenshot-match-landing .paper-final-cta p {
    max-width: 100%;
  }

  .screenshot-match-landing .paper-final-cta::after {
    display: none;
  }

  .screenshot-match-landing .paper-footer-proof ul {
    grid-template-columns: 1fr;
  }

  .screenshot-match-landing .paper-footer-proof li {
    min-height: 88px;
  }

  .screenshot-match-landing .paper-site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.75rem;
    min-height: 0;
    padding-bottom: 0.45rem;
  }

  .screenshot-match-landing .paper-site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .screenshot-match-landing .paper-final-cta {
    padding: 1.35rem;
  }

  .screenshot-match-landing .paper-final-cta .primary-button {
    width: 100%;
  }
}

@media (min-width: 1401px) and (max-width: 1500px) {
  .match-hero h1 {
    font-size: 3.34rem;
  }

  .match-report-card {
    width: min(820px, 100%);
    transform: translateY(-0.65rem);
  }
}

@media (min-width: 1800px) {
  .match-hero-copy {
    max-width: 760px;
  }

  .match-hero h1 {
    font-size: 3.96rem;
  }

  .match-report-card {
    width: min(100%, 980px);
  }

  .match-line-card ol {
    margin-top: 1.9rem;
  }

  .connector-a {
    top: 49.4%;
  }

  .connector-b {
    top: 68.1%;
  }

  .connector-c {
    top: 87.6%;
  }
}

@media (max-width: 1400px) {
  .screenshot-match-landing .match-hero {
    grid-template-columns: minmax(390px, 0.62fr) minmax(640px, 0.98fr);
    gap: 2rem;
  }

  .match-hero h1 {
    font-size: 3.08rem;
  }

  .match-report-card {
    width: min(790px, 100%);
    padding: 1.42rem;
  }

  .match-report-intro h2 {
    font-size: 1.38rem;
  }

  .match-recovery-count span {
    font-size: 1.32rem;
  }

  .match-xray {
    grid-template-columns: minmax(154px, 0.76fr) minmax(270px, 1.42fr) minmax(206px, 1.05fr);
    gap: 0.65rem;
  }

  .match-xray article {
    padding: 0.78rem;
  }

  .match-work-image img {
    width: 100%;
  }
}

@media (max-height: 820px) and (min-width: 1181px) {
  .screenshot-match-landing .match-hero {
    padding-top: 0;
    padding-bottom: 0.7rem;
  }

  .match-hero h1 {
    font-size: 2.96rem;
  }

  .match-kicker {
    margin-bottom: 1.05rem;
  }

  .screenshot-match-landing .match-lede {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .match-actions {
    margin-top: 1.2rem;
  }

  .match-proof-row {
    margin-top: 2.1rem;
  }

  .match-report-card {
    padding: 1.18rem;
    transform: translateY(-0.25rem);
  }

  .match-report-metrics {
    margin-top: 0.78rem;
  }

  .match-report-metrics span {
    min-height: 34px;
    padding-block: 0.35rem;
  }

  .match-xray {
    margin-top: 0.72rem;
  }

  .match-xray article {
    min-height: 238px;
  }

  .connector-a {
    top: 49.4%;
  }

  .connector-b {
    top: 68.1%;
  }

  .connector-c {
    top: 87.6%;
  }

  .match-line-card li {
    min-height: 28px;
    padding-block: 0.24rem;
  }

  .match-repair-plan {
    margin-top: 0.72rem;
    padding: 0.68rem 0.85rem;
  }

  .match-repair-plan h3 {
    margin-bottom: 0.45rem;
    font-size: 1.06rem;
  }

  .match-repair-plan li > span {
    width: 30px;
    height: 30px;
    font-size: 0.88rem;
  }

  .match-repair-plan strong {
    font-size: 0.9rem;
  }

  .screenshot-match-landing .match-repair-plan small {
    font-size: 0.74rem;
  }

  .match-report-cta.primary-button {
    min-height: 40px;
    margin-top: 0.62rem;
  }
}

@media (max-width: 1180px) {
  .screenshot-match-landing .match-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2rem;
  }

  .match-hero-copy {
    max-width: 720px;
    transform: none;
  }

  .match-report-card {
    justify-self: center;
    width: min(100%, 900px);
    transform: none;
  }

  .connector-a {
    top: 49.4%;
  }

  .connector-b {
    top: 68.1%;
  }

  .connector-c {
    top: 87.6%;
  }

  .match-include-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.7rem;
  }

  .match-include-grid article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .match-hero h1 {
    font-size: 3.12rem;
  }

  .match-score-demo {
    display: grid;
    min-height: 0;
    gap: 0.9rem;
  }

  .match-score-breakdown,
  .match-loss-table-card {
    position: static;
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .match-score-body {
    grid-template-columns: 106px minmax(0, 1fr);
  }

  .match-proof-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .match-proof-row > span,
  .match-proof-row > span:first-child {
    padding: 0;
    border: 0;
  }

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

  .match-report-metrics span:nth-child(2) {
    border-right: 0;
  }

  .match-report-metrics span:nth-child(-n+2) {
    border-bottom: 1px solid var(--match-line-soft);
  }

  .match-xray {
    grid-template-columns: 1fr;
  }

  .match-repair-plan {
    grid-template-columns: 1fr;
  }

  .match-line-card ol {
    margin-top: 1rem;
  }

  .match-xray article {
    min-height: 0;
  }

  .match-work-image {
    min-height: 0;
  }

  .match-work-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .match-work-image::before,
  .match-work-image::after {
    display: none;
  }

  .match-connector {
    display: none;
  }

  .match-diagnostic-includes,
  .match-fit-section,
  .match-evidence-section {
    width: min(100% - 1.8rem, 720px);
  }

  .match-diagnostic-includes {
    padding: 1.55rem 1rem 1.1rem;
  }

  .match-include-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 0;
  }

  .match-include-grid article {
    min-height: 0;
    padding: 0 0.85rem;
  }

  .match-include-grid article:nth-child(3n) {
    border-right: 1px solid rgba(21, 17, 15, 0.1);
  }

  .match-include-grid article:nth-child(2n) {
    border-right: 0;
  }

  .match-fit-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  body:has(.screenshot-match-landing) .topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.8rem 0.9rem;
  }

  body:has(.screenshot-match-landing) .topnav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    width: 100%;
  }

  body:has(.screenshot-match-landing) .topnav a:not(.primary-button) {
    justify-self: start;
  }

  body:has(.screenshot-match-landing) .topnav .primary-button {
    width: 100%;
    min-height: 42px;
    font-size: 0.78rem;
    gap: 0.45rem;
  }

  .screenshot-match-landing .match-hero {
    padding: 1.35rem 0.9rem 2rem;
  }

  .match-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .match-hero h1 {
    font-size: 2.38rem;
  }

  .match-hero h1 span:first-child {
    white-space: normal;
  }

  .match-inline-sparks {
    width: 30px;
    height: 30px;
  }

  .screenshot-match-landing .match-lede {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .match-actions .primary-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    gap: 0.5rem;
    font-size: 0.88rem;
  }

  .match-report-card {
    padding: 0.95rem;
  }

  .match-score-breakdown,
  .match-loss-table-card {
    padding: 1rem;
  }

  .match-score-body {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.9rem;
  }

  .match-loss-table div {
    grid-template-columns: 54px 42px minmax(0, 1fr);
    gap: 0.55rem;
  }

  .match-loss-table b {
    width: 34px;
  }

  .match-report-intro h2 {
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .match-recovery-count {
    gap: 0.78rem;
  }

  .match-recovery-count strong {
    width: 42px;
    height: 42px;
    font-size: 1.78rem;
  }

  .match-recovery-count span {
    font-size: 1.08rem;
  }

  .match-report-metrics {
    grid-template-columns: 1fr;
  }

  .match-report-metrics span {
    border-right: 0;
  }

  .match-report-metrics span:not(:last-child) {
    border-bottom: 1px solid var(--match-line-soft);
  }

  .match-work-image {
    padding-left: 0;
  }

  .match-line-card li {
    grid-template-columns: 20px 22px minmax(0, 1fr);
    gap: 0.34rem;
  }

  .match-diagnostic-includes,
  .match-fit-section,
  .match-evidence-section {
    width: min(100% - 1.1rem, 390px);
    margin-top: 1.1rem;
  }

  .match-diagnostic-includes h2,
  .match-fit-card h2 {
    font-size: 1.36rem;
  }

  .match-include-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .match-include-grid article,
  .match-include-grid article:nth-child(2n),
  .match-include-grid article:nth-child(3n) {
    border-right: 0;
  }

  .match-fit-card {
    min-height: 0;
    padding: 1.2rem;
  }

  .match-fit-card h2 {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .match-fit-card-icon {
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }
}

@media (max-width: 520px) {
  body:has(.screenshot-match-landing) .topbar,
  .screenshot-match-landing .match-hero {
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: 0;
  }

  .match-hero h1 {
    max-width: 100%;
    font-size: 2.06rem;
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .match-hero h1 span {
    white-space: normal;
  }

  .screenshot-match-landing .match-lede {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .match-hero h1 {
    font-size: 1.96rem;
  }

  .match-report-card {
    padding: 0.7rem;
  }
}

/* Release-ready landing top imported from the standalone pathway mockup. */
body:has(.release-pathway-page) {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(155, 0, 31, 0.045), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fffdfb 100%);
  color: #08090d;
}

.public-page.release-pathway-page {
  --release-bg: #fffdfb;
  --release-ink: #08090d;
  --release-navy: #202a3a;
  --release-muted: #626c7c;
  --release-line: #eadfe0;
  --release-soft-line: #f2e8e6;
  --release-burg: #9b001f;
  --release-burg-dark: #87001b;
  --release-rose: #f8e8ec;
  --release-rose-soft: #fff5f7;
  --release-shadow: 0 18px 42px rgba(33, 24, 24, 0.085);
  --release-ok: #338a58;
  --release-warn: #c87412;
  --release-proof-h: 206px;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 12px 34px 3rem;
  background: transparent;
  color: var(--release-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.release-pathway-page *,
.release-pathway-page *::before,
.release-pathway-page *::after {
  box-sizing: border-box;
}

.release-pathway-page h1,
.release-pathway-page h2,
.release-pathway-page h3,
.release-pathway-page p {
  letter-spacing: 0;
}

.release-pathway-top {
  width: 100%;
}

.release-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
}

.release-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  color: var(--release-ink);
  text-decoration: none;
}

.release-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(140deg, #151922, #030405);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.release-logo sup {
  position: relative;
  top: -0.45em;
  font-size: 12px;
}

.release-brand-title {
  color: var(--release-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.05;
}

.release-brand-sub {
  display: inline-block;
  margin-top: 2px;
  color: #263243;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.release-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.release-home {
  color: #222d3d;
  font-size: 15.5px;
  font-weight: 550;
  text-decoration: none;
}

.release-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #a60024, #8a001b);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 11px 24px rgba(155, 0, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.release-cta:hover {
  background: linear-gradient(180deg, #950020, #760018);
  color: #fff;
}

.release-top-cta {
  min-height: 46px;
  padding: 0 25px;
  font-size: 17px;
}

.release-arrow {
  font-size: 23px;
  line-height: 1;
  transform: translateY(-1px);
}

.release-menu {
  position: relative;
  display: none;
  width: 25px;
  height: 20px;
  margin-top: 10px;
}

.release-menu::before,
.release-menu::after,
.release-menu span {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 10px;
  background: #223040;
}

.release-menu::before {
  top: 1px;
}

.release-menu span {
  top: 9px;
}

.release-menu::after {
  top: 17px;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(500px, 632px) minmax(770px, 900px);
  gap: 42px;
  align-items: start;
}

.release-layout > * {
  min-width: 0;
}

.release-hero {
  padding-top: 56px;
}

.release-eyebrow {
  margin: 0 0 26px;
  color: var(--release-burg);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 3.65px;
  text-transform: uppercase;
}

.release-hero h1 {
  max-width: 630px;
  margin: 0;
  color: #050507;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 4.48vw, 72px);
  font-weight: 800;
  line-height: 1.055;
}

.release-exact {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: var(--release-burg);
  font-style: italic;
}

.release-exact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--release-burg);
  transform: rotate(-1.8deg);
}

.release-spark {
  position: relative;
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin-left: 0.08em;
  vertical-align: middle;
  color: var(--release-burg);
  transform: translateY(-0.14em) rotate(18deg);
}

.release-spark::before,
.release-spark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.14em;
  height: 100%;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.release-spark::after {
  width: 100%;
  height: 0.14em;
}

.release-sub {
  max-width: 595px;
  margin: 22px 0 0;
  color: var(--release-navy);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.62;
}

.release-sub em {
  color: var(--release-burg);
  font-style: italic;
  font-weight: 850;
}

.release-hero-actions {
  margin-top: 28px;
}

.release-hero-cta {
  min-height: 60px;
  padding: 0 34px;
  font-size: 18px;
}

.release-features {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 610px;
  margin-top: 42px;
}

.release-feature {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-right: 18px;
}

.release-feature + .release-feature {
  padding-left: 22px;
  border-left: 1px solid #e5dcdf;
}

.release-feature img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.release-feature-title {
  color: var(--release-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
}

.release-feature-sub {
  color: var(--release-muted);
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.release-report {
  position: relative;
  margin-top: 0;
  padding: 22px 22px 16px;
  overflow: hidden;
  border: 1px solid #eee4e1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--release-shadow);
}

.release-report::before {
  content: "Mark-loss report preview";
  display: flex;
  align-items: center;
  min-height: 40px;
  margin: -22px -22px 18px;
  padding: 0 22px 0 78px;
  border-bottom: 1px solid #eee4e1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 244, 0.86));
  color: rgba(32, 42, 58, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.release-report::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(182, 31, 60, 0.78);
  box-shadow: 15px 0 rgba(207, 139, 49, 0.72), 30px 0 rgba(55, 139, 90, 0.72);
}

.release-report h2 {
  margin: 0;
  color: var(--release-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.12;
}

.release-score {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 9px;
}

.release-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #ad0024, #8a001b);
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(155, 0, 31, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.release-score-text {
  min-width: 0;
  color: var(--release-burg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.release-status {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr 1.12fr;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--release-line);
  border-radius: 10px;
  background: #fff;
}

.release-status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  min-width: 0;
  padding: 0 14px;
  color: #1d2635;
  font-size: 11.8px;
  font-weight: 780;
  line-height: 1.22;
}

.release-status-item + .release-status-item {
  border-left: 1px solid var(--release-line);
}

.release-status-item img,
.release-script-proof img,
.release-under-note img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.release-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 10px;
}

.release-section-title {
  color: var(--release-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.release-script-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475469;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.release-evidence-grid {
  display: grid;
  grid-template-columns: minmax(206px, 31%) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.release-card {
  overflow: hidden;
  border: 1px solid var(--release-line);
  border-radius: 10px;
  background: #fff;
}

.release-evidence-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 10px;
  border-color: #eadedf;
  border-radius: 9px;
  background: linear-gradient(180deg, #fff 0%, #fffdfb 100%);
}

.release-evidence-card.release-tile-image-card {
  display: block;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.release-tile-image-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 11px;
}

.release-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
}

.release-q {
  color: #1b2534;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.release-tag {
  padding: 4px 6px;
  border: 1px solid #f0dce2;
  border-radius: 999px;
  background: #fff6f7;
  color: #9d3145;
  font-size: 8.8px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.release-evidence-imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(180deg, #fff9fa, #fff);
  box-shadow: inset 0 0 0 1px #f0e1e2;
}

.release-evidence-imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92) contrast(1.01);
}

.release-loss {
  margin-top: 2px;
  color: #a50f2b;
  font-size: 12.7px;
  font-weight: 850;
  line-height: 1.22;
}

.release-explain {
  margin-top: 0;
  color: #263446;
  font-size: 12.2px;
  font-weight: 520;
  line-height: 1.48;
}

.release-repair-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1px;
  padding: 7px 8px;
  border: 1px solid #ecd9de;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffafb, #fff5f6);
  color: #111923;
  font-size: 11.8px;
  font-weight: 750;
  line-height: 1.28;
}

.release-repair-note span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent;
  color: #8f2d3e;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.release-repair-note span:first-child svg {
  display: block;
  width: 14px;
  height: 14px;
  stroke-width: 2.1;
}

.release-repair-note > span:last-child {
  min-width: 0;
}

.release-repair-prefix {
  color: #667085;
  font-weight: 720;
}

.release-proof-card {
  min-width: 0;
  padding: 8px;
  border-color: #eadedf;
  border-radius: 9px;
  background: linear-gradient(180deg, #fff 0%, #fffdfb 100%);
}

.release-proof-card.release-proof-image-card {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
}

.release-proof-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  object-position: center;
}

.release-proof-body {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 38px minmax(150px, 0.72fr);
  gap: 0;
  align-items: start;
}

.release-proof-title {
  margin: 0 0 8px;
  color: var(--release-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13.2px;
  font-weight: 800;
  line-height: 1.18;
}

.release-script-frame {
  position: relative;
  height: var(--release-proof-h);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fffdfb);
  box-shadow: inset 0 0 0 1px #f0e1e2;
}

.release-script-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94) contrast(1.01);
}

.release-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: var(--release-proof-h);
  overflow: visible;
  opacity: 0.82;
}

.release-connector svg {
  display: block;
  width: 38px;
  height: 100%;
  overflow: visible;
}

.release-xray-list {
  height: var(--release-proof-h);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #f0e1e2;
}

.release-xrow {
  display: grid;
  grid-template-columns: 26px 20px minmax(0, 1fr) auto;
  align-items: center;
  height: calc(var(--release-proof-h) / 5);
  padding-right: 8px;
  border-bottom: 1px solid #f1e6e5;
  color: #252e3e;
  font-size: 10.35px;
  font-weight: 760;
  line-height: 1.12;
}

.release-xrow:last-child {
  border-bottom: 0;
}

.release-num {
  color: #697586;
  font-weight: 720;
  text-align: center;
}

.release-ico {
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.release-txt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-good {
  color: var(--release-ok);
}

.release-bad {
  color: var(--release-burg);
}

.release-badrow {
  background: #fff0f3;
  color: #9d0a2a;
}

.release-points {
  margin-left: 5px;
  font-size: 10.3px;
  font-weight: 850;
  white-space: nowrap;
}

.release-plan {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--release-line);
  border-radius: 10px;
  background: #fff;
}

.release-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.release-plan-title {
  color: var(--release-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.release-plan-pill {
  padding: 7px 10px;
  border: 1px solid #ecd2d8;
  border-radius: 999px;
  background: var(--release-rose-soft);
  color: var(--release-burg);
  font-size: 10.7px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.release-plan-stack {
  display: grid;
}

.release-step {
  display: grid;
  grid-template-columns: 34px minmax(190px, 245px) 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #efe5e3;
}

.release-step > *,
.release-step-visual,
.release-drill,
.release-name,
.release-retest-text {
  min-width: 0;
}

.release-step:first-child {
  border-top: 0;
}

.release-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--release-burg);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 7px 14px rgba(155, 0, 31, 0.18);
}

.release-step-title {
  margin-bottom: 4px;
  color: #202a39;
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.22;
}

.release-step-copy {
  color: #415066;
  font-size: 12.6px;
  font-weight: 640;
  line-height: 1.42;
}

.release-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid #f0e5e3;
  border-radius: 10px;
  background: #fffefd;
}

.release-fix-img {
  display: block;
  width: 100%;
  height: 78px;
  border-radius: 7px;
  object-fit: contain;
  object-position: center;
}

.release-drills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
}

.release-drill {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #efe6e4;
  border-radius: 8px;
  background: #fff;
}

.release-drill span {
  font-size: 11.5px;
  line-height: 1.2;
}

.release-label {
  color: #788394;
  font-weight: 850;
}

.release-name {
  color: #212b3a;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.release-go {
  color: var(--release-burg);
  font-weight: 900;
}

.release-retest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.release-gauge {
  position: relative;
  width: 90px;
  height: 54px;
  flex: 0 0 auto;
}

.release-gauge svg {
  width: 100%;
  height: 100%;
}

.release-needle {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 2px;
  height: 25px;
  border-radius: 99px;
  background: var(--release-burg);
  transform: translateX(-50%) rotate(38deg);
  transform-origin: bottom center;
}

.release-needle::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--release-burg);
  transform: translateX(-50%);
}

.release-retest-text {
  color: #374559;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.3;
  text-align: right;
}

.release-retest-text strong {
  display: block;
  margin-top: 2px;
  color: var(--release-burg);
  font-size: 29px;
  font-weight: 950;
  line-height: 1;
}

.release-bottom-cta {
  width: 100%;
  min-height: 50px;
  margin-top: 15px;
  font-size: 16.5px;
}

.release-under-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #344050;
  font-size: 13.5px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.release-pathway-page .match-diagnostic-includes {
  margin-top: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 1320px) {
  .public-page.release-pathway-page {
    --release-proof-h: 206px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .release-layout {
    grid-template-columns: minmax(410px, 560px) minmax(690px, 1fr);
    gap: 30px;
  }

  .release-hero h1 {
    font-size: clamp(54px, 4.5vw, 64px);
  }

  .release-evidence-grid {
    grid-template-columns: minmax(206px, 31%) minmax(0, 1fr);
  }

  .release-proof-body {
    grid-template-columns: minmax(240px, 1fr) 36px minmax(145px, 0.72fr);
  }

  .release-connector svg {
    width: 36px;
  }
}

@media (max-width: 1300px) {
  .release-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .release-hero {
    max-width: 760px;
    padding-top: 34px;
  }

  .release-hero h1 {
    font-size: clamp(56px, 7vw, 70px);
  }

  .release-report {
    max-width: 920px;
  }
}

@media (max-width: 820px) {
  .public-page.release-pathway-page {
    --release-proof-h: 300px;
    padding: 14px 18px 2.5rem;
  }

  .release-topbar {
    align-items: flex-start;
    min-height: 0;
  }

  .release-logo {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .release-brand-title {
    font-size: 20px;
  }

  .release-brand-sub {
    font-size: 13px;
  }

  .release-home,
  .release-top-cta {
    display: none;
  }

  .release-menu {
    display: block;
  }

  .release-hero {
    padding-top: 38px;
  }

  .release-eyebrow {
    max-width: 330px;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .release-hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 10.5vw, 49px);
    line-height: 1.08;
  }

  .release-sub {
    max-width: 355px;
    font-size: 16px;
    line-height: 1.58;
  }

  .release-hero-actions {
    margin-top: 24px;
  }

  .release-hero-cta {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    font-size: 16px;
  }

  .release-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .release-feature,
  .release-feature + .release-feature {
    padding: 14px 16px;
    border: 1px solid #ece3e1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
  }

  .release-report {
    width: 100%;
    max-width: 100%;
    padding: 16px 14px;
    border-radius: 12px;
  }

  .release-report::before {
    min-height: 38px;
    margin: -16px -14px 16px;
    padding: 0 14px 0 66px;
    font-size: 10px;
  }

  .release-report::after {
    top: 14px;
    left: 16px;
  }

  .release-report h2 {
    font-size: 23px;
  }

  .release-score {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .release-bubble {
    width: 49px;
    height: 49px;
    font-size: 31px;
  }

  .release-score-text {
    font-size: clamp(21px, 6.4vw, 24px);
  }

  .release-status {
    grid-template-columns: 1fr;
  }

  .release-status-item {
    min-height: 48px;
    font-size: 12.5px;
  }

  .release-status-item + .release-status-item {
    border-top: 1px solid var(--release-line);
    border-left: 0;
  }

  .release-section-bar {
    align-items: flex-start;
    gap: 10px;
  }

  .release-script-proof {
    max-width: 158px;
    font-size: 11.5px;
    white-space: normal;
  }

  .release-evidence-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .release-card-head {
    display: grid;
    justify-content: start;
    justify-items: start;
    gap: 6px;
  }

  .release-tag {
    max-width: 100%;
  }

  .release-evidence-imgbox {
    height: 82px;
  }

  .release-proof-body {
    display: block;
  }

  .release-proof-card.release-proof-image-card {
    height: auto !important;
    overflow: visible;
  }

  .release-proof-image-card img {
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .release-script-frame {
    height: auto;
  }

  .release-script-frame img {
    height: auto;
    object-fit: contain;
  }

  .release-connector {
    display: none;
  }

  .release-xray-pane {
    margin-top: 14px;
  }

  .release-xray-list {
    height: auto;
  }

  .release-xrow {
    grid-template-columns: 34px 28px minmax(0, 1fr) auto;
    height: 48px;
    font-size: 12.2px;
  }

  .release-plan {
    padding: 16px 14px;
  }

  .release-plan-head {
    flex-direction: column;
    gap: 8px;
  }

  .release-plan-pill {
    white-space: normal;
  }

  .release-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
  }

  .release-step-visual {
    grid-column: 1 / -1;
    min-height: unset;
    margin-top: 2px;
  }

  .release-fix-img {
    height: auto;
    max-height: 94px;
  }
}

@media (max-width: 420px) {
  .public-page.release-pathway-page {
    padding-right: 14px;
    padding-left: 14px;
  }

  .release-brand {
    gap: 12px;
  }

  .release-script-proof {
    max-width: 135px;
  }

  .release-xrow {
    font-size: 11.6px;
  }

  .release-points {
    font-size: 10.8px;
  }

  .release-retest {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .release-retest-text {
    text-align: left;
  }

  .release-drill {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 8px;
  }

  .release-drill span {
    font-size: 10.8px;
  }

  .release-retest-text strong {
    font-size: 25px;
  }
}
