html.novo6-document {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body.novo6-page:not(.workspace-mode) {
  --novo-paper: #f7fbff;
  --novo-paper-deep: #eaf4ff;
  --novo-ink: #0b2035;
  --novo-muted: #526a80;
  --novo-line: #cfe0ef;
  --novo-teal: #176ff2;
  --novo-teal-deep: #0a4dbd;
  --novo-coral: #2b8cff;
  --novo-coral-dark: #0e5ed7;
  --novo-lime: #eef6ff;
  --novo-white: #ffffff;
  --novo-blue-soft: #eaf4ff;
  --novo-blue-medium: #d5eaff;
  --novo-purple: #4c8ff7;
  --novo-purple-soft: #edf5ff;
  --novo-green: #17845f;
  --novo-green-soft: #e9f8f1;
  --novo-red: #d23b4f;
  --novo-red-soft: #fff1f3;
  min-height: 100vh;
  margin: 0;
  background: var(--novo-paper);
  color: var(--novo-ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

body.novo6-page:not(.workspace-mode) * {
  box-sizing: border-box;
}

body.workspace-mode .novo-nav,
body.workspace-mode .novo-footer {
  display: none !important;
}

body.novo6-page:not(.workspace-mode) .novo-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 0 clamp(22px, 4vw, 58px);
  border-bottom: 1px solid rgba(220, 230, 235, 0.72);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body.novo6-page:not(.workspace-mode) .novo-nav.is-scrolled {
  border-bottom-color: var(--novo-line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(29, 55, 84, 0.07);
}

.novo-wordmark {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-self: start;
  color: var(--novo-ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-decoration: none;
  padding-block: 7px;
}

.novo-wordmark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.novo-wordmark circle {
  fill: var(--novo-coral);
  stroke: none;
}

.novo-nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.novo-nav-links a,
.novo-nav-actions > a {
  position: relative;
  color: #5b687b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding-block: 12px;
}

.novo-nav-links a:hover,
.novo-nav-actions > a:hover { color: var(--novo-ink); }

.novo-nav-links a[aria-current="location"] {
  color: var(--novo-ink);
}

.novo-nav-links a[aria-current="location"]::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  border-radius: 99px;
  background: var(--novo-coral);
  content: "";
}

.novo-nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-self: end;
}

.novo-nav-actions button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--novo-teal-deep);
  border-radius: 7px;
  background: var(--novo-teal-deep);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.novo-nav-actions button:hover {
  border-color: var(--novo-teal-deep);
  background: var(--novo-teal-deep);
  transform: translateY(-1px);
}

body.novo6-page:not(.workspace-mode) main {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.novo6-page:not(.workspace-mode) main::before {
  display: none;
  content: none;
}

.novo-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--novo-ink);
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
}

.novo-skip-link:focus {
  transform: translateY(0);
}

.novo-shell {
  width: min(1180px, calc(100% - clamp(40px, 8vw, 104px)));
  margin-inline: auto;
}

.novo-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 68px));
  padding: clamp(68px, 8vh, 94px) 0 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--novo-line);
  background:
    radial-gradient(circle at 82% 16%, rgba(74, 143, 196, 0.13), transparent 31%),
    radial-gradient(circle at 12% 78%, rgba(194, 116, 91, 0.035), transparent 24%),
    var(--novo-paper);
}

.novo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.78fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: start;
}

.novo-hero-copy,
.novo-upload-column {
  animation: novo-arrive 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.novo-upload-column { animation-delay: 90ms; }

@keyframes novo-arrive {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

html.novo6-motion-ready .novo-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.novo6-motion-ready .novo-reveal.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.novo-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
}

.novo-kicker,
.novo-no-account {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid var(--novo-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #40506a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.novo-kicker i,
.novo-ready i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--novo-teal);
  box-shadow: 0 0 0 4px rgba(47, 110, 166, 0.1);
}

.novo-no-account {
  border-color: transparent;
  background: #e8eef5;
  color: #42546a;
}

.novo-hero h1,
.novo-section-heading h2,
.novo-review-copy h2,
.novo-difficult h2,
.novo-output h2,
.novo-faq h2,
.novo-final h2 {
  margin: 0;
  color: var(--novo-ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.novo-hero h1 {
  max-width: 640px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(52px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

.novo-hero h1 em {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.09em;
  color: var(--novo-teal);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.novo-hero-lede {
  max-width: 610px;
  margin: 28px 0 27px;
  color: #566377;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.65;
  letter-spacing: -0.016em;
}

.novo-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.novo-proof-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #637086;
  font-size: 13px;
}

.novo-nav-actions {
  gap: 0;
}

.novo-nav-actions > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
}

.novo-proof-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--novo-teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.novo-proof-list strong {
  color: var(--novo-ink);
  font-weight: 700;
}

.novo-upload-column {
  min-width: 0;
}

.novo-file-input,
.novo-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.novo-instrument {
  border: 1px solid rgba(44, 74, 104, 0.2);
  border-radius: 22px;
  background: var(--novo-white);
  box-shadow: 0 24px 70px rgba(49, 91, 127, 0.075), 0 2px 8px rgba(49, 91, 127, 0.04);
  overflow: hidden;
}

.novo-instrument-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--novo-line);
  color: #40506a;
  font-size: 13px;
  font-weight: 700;
}

.novo-instrument-head > span:first-child {
  display: flex;
  gap: 9px;
  align-items: baseline;
}

.novo-instrument-head b { color: var(--novo-ink); font-weight: 700; }
.novo-instrument-head small { color: #7a8798; font-size: 10px; font-weight: 500; }

.novo-ready {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--novo-teal);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.novo6-page:not(.workspace-mode) .novo-upload-panel {
  width: auto;
  margin: 0;
  padding: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-height: 348px;
  padding: 34px 30px 28px;
  border: 1.5px dashed #9aafc4;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--novo-ink);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone.is-dragging {
  border-color: var(--novo-teal);
  background: #eef5fb;
  transform: scale(1.006);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within {
  border-color: #7e9fbd;
  background: #f5f9fc;
}

.novo-file-visual {
  position: relative;
  width: 116px;
  height: 110px;
  margin-bottom: 20px;
}

.novo-paper {
  position: absolute;
  display: block;
  width: 74px;
  height: 92px;
  border: 1px solid rgba(36, 75, 112, 0.24);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(29, 55, 84, 0.1);
}

.novo-paper-back {
  top: 5px;
  left: 14px;
  background: #dce9f4;
  transform: rotate(-8deg);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.novo-paper-front {
  top: 10px;
  left: 30px;
  padding: 16px 13px;
  transform: rotate(3deg);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover .novo-paper-back,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within .novo-paper-back {
  transform: translate(-2px, 1px) rotate(-9deg);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover .novo-paper-front,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within .novo-paper-front {
  transform: translateY(-3px) rotate(2deg);
}

.novo-paper-front b {
  display: block;
  margin-bottom: 14px;
  color: var(--novo-coral);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.novo-paper-front i {
  display: block;
  height: 3px;
  margin-top: 7px;
  border-radius: 99px;
  background: #cbd5df;
}

.novo-paper-front i:nth-of-type(2) { width: 76%; }
.novo-paper-front i:nth-of-type(3) { width: 88%; }

.novo-scan-line {
  position: absolute;
  top: 28px;
  left: 22px;
  z-index: 2;
  width: 86px;
  height: 2px;
  background: var(--novo-coral);
  box-shadow: 0 0 7px rgba(182, 88, 70, 0.28);
  transform: translateY(34px);
  animation: novo-scan-once 880ms cubic-bezier(0.22, 1, 0.36, 1) 260ms both;
}

@keyframes novo-scan-once {
  from { opacity: 0.18; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(34px); }
}

body.novo6-page:not(.workspace-mode) .novo-upload-copy {
  display: block !important;
  order: 2 !important;
  margin: 0 0 20px;
  text-align: center;
}

body.novo6-page:not(.workspace-mode) .novo-upload-copy h2 {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
  margin: 0;
  color: var(--novo-ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

body.novo6-page:not(.workspace-mode) .novo-upload-copy p {
  order: initial !important;
  margin: 5px 0 0;
  color: var(--novo-muted);
  font-size: 14px;
  font-weight: 400;
}

body.novo6-page:not(.workspace-mode) .novo-upload-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--novo-teal-deep);
  border-radius: 8px;
  background: var(--novo-teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(40, 91, 132, 0.2);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  order: 3 !important;
}

body.novo6-page:not(.workspace-mode) .novo-upload-button::before {
  display: none !important;
  content: none !important;
}

body.novo6-page:not(.workspace-mode) .novo-upload-button:hover {
  background: var(--novo-teal-deep);
  box-shadow: 0 11px 24px rgba(40, 91, 132, 0.24);
  transform: translateY(-2px);
}

body.novo6-page:not(.workspace-mode) .novo-upload-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.novo-file-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  color: #6f7c8e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  order: 4 !important;
}

.novo-file-rules i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9ba9b8;
}

.novo-privacy-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px 20px 17px;
  border-top: 1px solid var(--novo-line);
  color: #667489;
  font-size: 12px;
  line-height: 1.45;
}

.novo-privacy-note strong { color: #34475f; }
.novo-privacy-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--novo-teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body.novo6-page:not(.workspace-mode) .novo-status {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.9fr);
  gap: 18px;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 82px;
  margin: 12px 0 0;
  padding: 15px 17px;
  border: 1px solid var(--novo-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, 0.9fr) !important;
  grid-template-areas: none !important;
  overflow: hidden !important;
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="active"] {
  border-color: rgba(47, 110, 166, 0.42);
  background: #f3f8fc;
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] {
  border-color: rgba(185, 50, 41, 0.45);
  background: #fff5f3;
}

body.novo6-page:not(.workspace-mode) .novo-status-copy {
  min-width: 0;
}

body.novo6-page:not(.workspace-mode) .novo-status-copy strong {
  display: block;
  margin: 0;
  color: var(--novo-ink);
  font-size: 13px;
  font-weight: 700;
}

body.novo6-page:not(.workspace-mode) .novo-status-copy p {
  margin: 3px 0 0;
  color: #687689;
  font-size: 11.5px;
  line-height: 1.4;
}

body.novo6-page:not(.workspace-mode) #file-status {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 100%;
  margin-top: 5px;
  color: var(--novo-teal);
  font-size: 11px;
}

body.novo6-page:not(.workspace-mode) .file-status-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.novo6-page:not(.workspace-mode) .file-status-size {
  flex: 0 0 auto;
  color: #798697;
}

body.novo6-page:not(.workspace-mode) .novo-status-flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

body.novo6-page:not(.workspace-mode) .novo-status-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 8px;
  align-items: center;
  color: #59687c;
  font-size: 10.5px;
}

body.novo6-page:not(.workspace-mode) #progress-stage-label {
  color: var(--novo-teal);
  font-weight: 700;
  text-transform: uppercase;
}

body.novo6-page:not(.workspace-mode) #progress-estimate {
  grid-column: 1 / -1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.novo6-page:not(.workspace-mode) .novo-status-clock {
  grid-column: 2;
  grid-row: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.novo-progress-track {
  height: 4px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: #dde6ef;
}

.novo-handoff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 12px 0 0;
  padding: 0;
  border: 1px solid var(--novo-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  list-style: none;
  overflow: hidden;
}

.novo-handoff li {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #617086;
  font-size: 10px;
  white-space: nowrap;
}

.novo-handoff li + li { border-left: 1px solid var(--novo-line); }
.novo-handoff span { color: var(--novo-teal); font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-style: italic; }
.novo-handoff b { color: #485a70; font-weight: 600; }

.novo-progress-track span {
  display: block;
  width: var(--progress-meter, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--novo-teal);
  transition: width 420ms ease;
}

.novo-method,
.novo-review,
.novo-output,
.novo-faq {
  padding: clamp(84px, 9vw, 126px) 0;
}

.novo-method {
  background: var(--novo-white);
}

.novo-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 26px 80px;
  align-items: end;
  margin-bottom: 72px;
}

.novo-overline {
  display: block;
  margin-bottom: 18px;
  color: var(--novo-coral-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.novo-section-heading .novo-overline {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.novo-section-heading h2,
.novo-review-copy h2,
.novo-difficult h2,
.novo-output h2,
.novo-faq h2,
.novo-final h2 {
  font-size: clamp(43px, 4.45vw, 60px);
  line-height: 1;
}

.novo-section-heading > p,
.novo-difficult-grid > p,
.novo-output-copy > p,
.novo-faq-grid > div:first-child > p {
  margin: 0;
  color: var(--novo-muted);
  font-size: 17px;
  line-height: 1.65;
}

.novo-method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--novo-line);
  list-style: none;
}

.novo-method-list li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--novo-line);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.novo-method-list li:hover {
  background: #f6f9fc;
  box-shadow: inset 3px 0 var(--novo-coral);
}

.novo-step-number {
  color: var(--novo-coral-dark);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-style: italic;
}

.novo-method-list h3 {
  margin: 0 0 8px;
  color: var(--novo-ink);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.novo-method-list p {
  max-width: 700px;
  margin: 0;
  color: var(--novo-muted);
  font-size: 15px;
}

.novo-step-tag {
  min-width: 86px;
  padding: 7px 11px;
  border: 1px solid var(--novo-line);
  border-radius: 999px;
  color: #5b6a7f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.novo-review {
  border-top: 1px solid var(--novo-line);
  border-bottom: 1px solid var(--novo-line);
  background: #eef7fb;
  color: var(--novo-ink);
}

.novo-review-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(600px, 1fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
}

.novo-review-copy h2 { color: var(--novo-ink); }
.novo-review-copy > p {
  max-width: 480px;
  margin: 28px 0 38px;
  color: var(--novo-muted);
  font-size: 16px;
  line-height: 1.7;
}

.novo-review-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--novo-line);
  list-style: none;
}

.novo-review-copy li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--novo-line);
}

.novo-review-copy li > span {
  color: var(--novo-teal);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-style: italic;
}

.novo-review-copy li strong,
.novo-review-copy li small { display: block; }
.novo-review-copy li strong { font-size: 14px; }
.novo-review-copy li small { margin-top: 3px; color: #758295; font-size: 12px; line-height: 1.5; }

.novo-workspace-preview {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cbd8e4;
  border-radius: 16px;
  background: #edf3f8;
  box-shadow: 0 24px 60px rgba(49, 91, 127, 0.085);
}

.novo-preview-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 0 15px;
  border-bottom: 1px solid #d6e0e9;
  background: #fff;
  color: #526176;
  font-size: 11px;
}

.novo-preview-topbar > div { display: flex; gap: 5px; }
.novo-preview-topbar i { width: 7px; height: 7px; border-radius: 50%; background: #bec9d4; }
.novo-preview-topbar i:first-child { background: var(--novo-coral); }
.novo-preview-topbar b { color: var(--novo-teal); font-weight: 700; }

.novo-preview-body {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1fr;
  min-height: 380px;
}

.novo-preview-pdf,
.novo-preview-records,
.novo-preview-detail {
  min-width: 0;
  padding: 16px;
  color: var(--novo-ink);
}

.novo-preview-pdf { position: relative; background: #dfe8f0; }
.novo-preview-page { position: absolute; top: 12px; right: 14px; color: #667489; font-size: 9px; }
.novo-preview-sheet { min-height: 320px; padding: 28px 20px; background: #fff; box-shadow: 0 5px 16px rgba(29, 55, 84, 0.11); }
.novo-preview-sheet b { display: block; margin-bottom: 20px; font-family: Georgia, serif; font-size: 13px; }
.novo-preview-sheet p { margin: 0 -5px 12px; padding: 5px; color: #3f4f63; font-family: Georgia, serif; font-size: 8px; line-height: 1.5; }
.novo-preview-sheet .is-highlighted { background: #e8f1f8; box-shadow: inset 2px 0 var(--novo-teal); }

.novo-preview-records { border-right: 1px solid #d6e0e9; border-left: 1px solid #d6e0e9; background: #f7f9fc; }
.novo-preview-record { display: grid; grid-template-columns: 21px 1fr 6px; gap: 8px; align-items: center; margin-bottom: 9px; padding: 11px 9px; border: 1px solid #dce5ed; border-radius: 7px; background: #fff; }
.novo-preview-record span { color: #7c8999; font-size: 8px; }
.novo-preview-record p { margin: 0; overflow: hidden; color: #34465c; font-size: 8px; font-weight: 600; line-height: 1.35; }
.novo-preview-record i { width: 6px; height: 6px; border-radius: 50%; background: #6e9bc2; }
.novo-preview-record.is-selected { border-color: var(--novo-teal); box-shadow: 0 3px 10px rgba(47, 110, 166, 0.12); }
.novo-preview-record.is-muted { opacity: 0.72; }

.novo-preview-detail { background: #fff; }
.novo-match-label { display: inline-flex; gap: 6px; align-items: center; margin-bottom: 25px; padding: 5px 7px; border-radius: 5px; background: #e7f0f8; color: #315f8c; font-size: 8px; font-weight: 700; }
.novo-match-label i { width: 5px; height: 5px; border-radius: 50%; background: #4b82b2; }
.novo-preview-detail small,
.novo-preview-detail strong { display: block; }
.novo-preview-detail small { margin: 14px 0 4px; color: #8793a3; font-size: 7px; text-transform: uppercase; }
.novo-preview-detail strong { color: #33455b; font-size: 9px; line-height: 1.45; }
.novo-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.novo-preview-save { display: grid; place-items: center; width: 100%; min-height: 29px; margin-top: 23px; border-radius: 5px; background: var(--novo-teal); color: #fff; font-size: 8px; font-weight: 700; }

.novo-preview-caption {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1fr;
  border-top: 1px solid #d6e0e9;
  background: #fff;
}

.novo-preview-caption span {
  padding: 9px 14px;
  color: #6c7a8e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.novo-difficult {
  padding: clamp(76px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--novo-line);
  background: var(--novo-lime);
}

.novo-difficult-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 30px 90px;
}

.novo-difficult .novo-overline { color: var(--novo-teal); }
.novo-difficult-grid > p { align-self: end; color: var(--novo-muted); }
.novo-difficult ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.novo-difficult li {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(36, 75, 112, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--novo-ink);
  font-size: 12px;
  font-weight: 700;
}

.novo-difficult li svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.novo-output { background: var(--novo-paper); }
.novo-output-grid { display: grid; grid-template-columns: minmax(0, 0.76fr) minmax(500px, 1fr); gap: 80px; align-items: center; }
.novo-output-copy > p { max-width: 500px; margin-top: 26px; }
.novo-output-copy > a { display: inline-flex; gap: 13px; align-items: center; margin-top: 28px; color: var(--novo-teal); font-size: 14px; font-weight: 700; text-decoration: none; }
.novo-output-copy > a { min-height: 44px; }
.novo-output-copy > a span { transition: transform 160ms ease; }
.novo-output-copy > a:hover span { transform: translateX(4px); }

.novo-format-table { border-top: 1px solid var(--novo-ink); }
.novo-format-table > div { display: grid; grid-template-columns: minmax(130px, 1.2fr) repeat(3, 1fr); gap: 12px; align-items: center; min-height: 76px; padding: 0 8px; border-bottom: 1px solid var(--novo-line); }
.novo-format-table b { color: var(--novo-ink); font-size: 13px; }
.novo-format-table span { color: var(--novo-muted); font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-size: 18px; }

.novo-faq { border-top: 1px solid var(--novo-line); background: var(--novo-white); }
.novo-faq-grid { display: grid; grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr); gap: clamp(60px, 9vw, 140px); align-items: start; }
.novo-faq-grid > div:first-child { position: sticky; top: 112px; }
.novo-faq-grid > div:first-child > p { margin-top: 22px; }
.novo-faq-list { border-top: 1px solid var(--novo-ink); }
.novo-faq-list details { border-bottom: 1px solid var(--novo-line); }
.novo-faq-list summary { position: relative; padding: 25px 46px 25px 0; color: var(--novo-ink); cursor: pointer; font-size: 17px; font-weight: 700; letter-spacing: -0.025em; list-style: none; transition: color 160ms ease; }
.novo-faq-list summary:hover { color: var(--novo-teal); }
.novo-faq-list summary::-webkit-details-marker { display: none; }
.novo-faq-list summary::after { position: absolute; top: 21px; right: 4px; color: var(--novo-teal); content: "+"; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-size: 27px; font-weight: 400; line-height: 1; transition: transform 180ms ease; }
.novo-faq-list details[open] summary::after { transform: rotate(45deg); }
.novo-faq-list p { max-width: 700px; margin: -4px 60px 26px 0; color: var(--novo-muted); font-size: 14px; line-height: 1.7; }

.novo-final { padding: 0 0 clamp(88px, 9vw, 132px); background: var(--novo-white); }
.novo-final-card { display: flex; align-items: center; justify-content: space-between; min-height: 258px; padding: clamp(38px, 5vw, 68px); border-radius: 20px; background: var(--novo-teal); color: #fff; box-shadow: 0 24px 60px rgba(29, 72, 112, 0.17); }
.novo-final .novo-overline { color: var(--novo-lime); }
.novo-final h2 { max-width: 700px; color: #fff; font-size: clamp(42px, 5vw, 65px); }
.novo-secondary-upload { flex: 0 0 auto; min-height: 54px; padding: 0 22px; border: 1px solid #fff; border-radius: 999px; background: #fff; color: var(--novo-teal-deep); font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: color 160ms ease, background 160ms ease, transform 160ms ease; }
.novo-secondary-upload:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.novo-secondary-upload span { display: inline-block; margin-left: 8px; }

.novo-footer {
  padding: 64px 0 54px;
  background: #20344f;
  color: #dce4ec;
}

.novo-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 44px;
  align-items: start;
}

.novo-footer .novo-wordmark { color: #fff; }
.novo-footer-brand p { margin: 14px 0 0; color: #9eabba; font-size: 13px; }
.novo-footer nav { display: flex; flex-direction: column; gap: 9px; }
.novo-footer nav > span { margin-bottom: 5px; color: #8190a1; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.novo-footer nav a { padding: 4px 0; color: #cad4de; font-size: 12px; text-decoration: none; }
.novo-footer nav a:hover { color: #fff; }
.novo-footer-note { display: flex; flex-direction: column; gap: 9px; align-items: flex-end; text-align: right; }
.novo-footer-note span { max-width: 220px; color: #fff; font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-size: 22px; line-height: 1.15; }
.novo-footer-note small { color: #8190a1; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Novo3: luminous, research-focused color and type system. */
body.novo6-page:not(.workspace-mode) .novo-nav {
  border-bottom-color: rgba(196, 220, 239, 0.78);
  background: rgba(248, 252, 255, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
}

body.novo6-page:not(.workspace-mode) .novo-nav.is-scrolled {
  border-bottom-color: var(--novo-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(23, 105, 210, 0.07);
}

.novo-wordmark circle,
.novo-nav-links a[aria-current="location"]::after {
  fill: var(--novo-teal);
  background: var(--novo-teal);
}

.novo-nav-links a,
.novo-nav-actions > a { color: #4d6a83; }

.novo-nav-actions button {
  border-color: var(--novo-teal);
  border-radius: 8px;
  background: var(--novo-teal);
  box-shadow: 0 7px 18px rgba(23, 105, 210, 0.16);
}

.novo-nav-actions button:hover {
  border-color: var(--novo-teal-deep);
  background: var(--novo-teal-deep);
}

.novo-hero {
  background:
    radial-gradient(circle at 83% 12%, rgba(140, 205, 255, 0.34), transparent 33%),
    radial-gradient(circle at 7% 82%, rgba(202, 190, 255, 0.2), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

.novo-hero-copy,
.novo-upload-column { animation-duration: 500ms; }

html.novo6-motion-ready .novo-reveal {
  transform: translateY(10px);
  transition-duration: 520ms;
}

.novo-kicker,
.novo-no-account {
  border-color: #cfe3f4;
  background: rgba(255, 255, 255, 0.82);
  color: #3e6281;
}

.novo-kicker i {
  background: var(--novo-teal);
  box-shadow: 0 0 0 4px rgba(23, 105, 210, 0.11);
}

.novo-ready i {
  background: var(--novo-green);
  box-shadow: 0 0 0 4px rgba(20, 133, 98, 0.11);
}

.novo-no-account {
  border-color: #cfe2f7;
  background: var(--novo-purple-soft);
  color: #245f9f;
}

.novo-hero h1,
.novo-section-heading h2,
.novo-review-copy h2,
.novo-difficult h2,
.novo-output h2,
.novo-faq h2,
.novo-final h2,
.novo-hero h1 em {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.052em;
}

.novo-hero h1 {
  font-size: clamp(52px, 4.85vw, 70px);
  font-weight: 700;
  line-height: 0.98;
}

.novo-hero h1 em {
  color: var(--novo-teal);
  font-size: 1em;
}

.novo-hero-lede,
.novo-proof-list li { color: #526e87; }

.novo-instrument {
  border-color: #c8def0;
  box-shadow: 0 24px 64px rgba(48, 119, 186, 0.1), 0 2px 8px rgba(23, 105, 210, 0.05);
}

.novo-instrument-head {
  border-bottom-color: #d8e9f6;
  background: #fbfdff;
}

.novo-instrument-head small { color: #698198; }
.novo-ready { color: var(--novo-green); }

body.novo6-page:not(.workspace-mode) .novo-dropzone {
  border-color: #a8cae6;
  background: #f5faff;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone.is-dragging {
  border-color: var(--novo-teal);
  background: #e8f4ff;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within {
  border-color: #78afe0;
  background: #eef7ff;
}

.novo-paper {
  border-color: rgba(23, 105, 210, 0.25);
  box-shadow: 0 14px 28px rgba(23, 105, 210, 0.12);
}

.novo-paper-back { background: #d8ecff; }
.novo-paper-front b { color: var(--novo-red); }
.novo-paper-front i { background: #c7dced; }

.novo-scan-line {
  background: var(--novo-red);
  box-shadow: 0 0 8px rgba(210, 63, 85, 0.28);
}

body.novo6-page:not(.workspace-mode) .novo-upload-button {
  border-color: var(--novo-teal);
  background: var(--novo-teal);
  box-shadow: 0 9px 22px rgba(23, 105, 210, 0.2);
}

body.novo6-page:not(.workspace-mode) .novo-upload-button:hover {
  background: var(--novo-teal-deep);
  box-shadow: 0 12px 26px rgba(23, 105, 210, 0.24);
}

.novo-file-rules { color: #5f7890; }
.novo-file-rules i { background: #8eb4d3; }

.novo-privacy-note {
  border-top-color: #d7eee5;
  background: #f5fcf9;
  color: #4d7668;
}

.novo-privacy-note strong { color: #17644f; }
.novo-privacy-note svg { stroke: var(--novo-green); }

body.novo6-page:not(.workspace-mode) .novo-status {
  border-color: #d3e6f5;
  background: rgba(255, 255, 255, 0.9);
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="active"] {
  border-color: rgba(23, 105, 210, 0.38);
  background: #eef7ff;
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] {
  border-color: rgba(210, 63, 85, 0.42);
  background: var(--novo-red-soft);
}

body.novo6-page:not(.workspace-mode) .novo-status-copy p,
body.novo6-page:not(.workspace-mode) .novo-status-meta { color: #5a748c; }

.novo-progress-track { background: #d8e9f6; }

.novo-handoff {
  border-color: #d3e6f5;
  background: rgba(255, 255, 255, 0.84);
}

.novo-handoff li { color: #57738b; }
.novo-handoff span {
  color: var(--novo-teal);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
}
.novo-handoff li:nth-child(2) span { color: var(--novo-purple); }
.novo-handoff li:nth-child(3) span { color: var(--novo-green); }
.novo-handoff b { color: #385b78; }

.novo-overline { color: var(--novo-teal); }
.novo-method .novo-overline { color: var(--novo-purple); }

.novo-method-list li:hover {
  background: #f4f9ff;
  box-shadow: inset 3px 0 var(--novo-teal);
}

.novo-method-list li:nth-child(2):hover { box-shadow: inset 3px 0 var(--novo-purple); }
.novo-method-list li:nth-child(3):hover { box-shadow: inset 3px 0 var(--novo-green); }

.novo-step-number {
  color: var(--novo-teal);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.novo-method-list li:nth-child(2) .novo-step-number { color: var(--novo-purple); }
.novo-method-list li:nth-child(3) .novo-step-number { color: var(--novo-green); }

.novo-step-tag {
  border-color: #cfe3f4;
  background: #f5faff;
  color: #34688f;
}

.novo-method-list li:nth-child(2) .novo-step-tag {
  border-color: #cfe2f7;
  background: var(--novo-purple-soft);
  color: #245f9f;
}

.novo-method-list li:nth-child(3) .novo-step-tag {
  border-color: #cceade;
  background: var(--novo-green-soft);
  color: #176c53;
}

.novo-review { background: #eaf5ff; }

.novo-review-copy li > span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.novo-review-copy li small { color: #5d7890; }

.novo-workspace-preview {
  border-color: #bfd9ee;
  background: #e1f0fc;
  box-shadow: 0 24px 56px rgba(23, 105, 210, 0.11);
}

.novo-preview-topbar { border-bottom-color: #d2e6f5; }
.novo-preview-topbar i:first-child { background: var(--novo-red); }
.novo-preview-topbar i:nth-child(2) { background: var(--novo-purple); }
.novo-preview-topbar i:nth-child(3) { background: var(--novo-green); }
.novo-preview-pdf { background: #d7eaf8; }
.novo-preview-sheet .is-highlighted { background: #e6f3ff; }
.novo-preview-records { border-color: #d1e5f4; background: #f3f9fe; }
.novo-preview-record { border-color: #d8e8f5; }
.novo-preview-record i { background: #73aee0; }

.novo-match-label {
  background: var(--novo-green-soft);
  color: #176c53;
}
.novo-match-label i { background: var(--novo-green); }

.novo-difficult { background: var(--novo-purple-soft); }
.novo-difficult .novo-overline { color: var(--novo-purple); }
.novo-difficult li {
  border-color: #cfe2f7;
  background: rgba(255, 255, 255, 0.68);
}

.novo-output { background: #ffffff; }
.novo-format-table span {
  color: #506d86;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.novo-faq { background: #f8fcff; }
.novo-faq-list summary::after {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}

.novo-final { background: #f8fcff; }
.novo-final-card {
  background: linear-gradient(135deg, #1769d2 0%, #247ae0 100%);
  box-shadow: 0 24px 58px rgba(23, 105, 210, 0.19);
}
.novo-final .novo-overline { color: #dceeff; }
.novo-final h2 { color: #ffffff; }

.novo-footer {
  border-top: 1px solid #cfe3f4;
  background: #eaf5ff;
  color: var(--novo-ink);
}

.novo-footer .novo-wordmark,
.novo-footer-note span { color: var(--novo-ink); }
.novo-footer-brand p { color: #587189; }
.novo-footer nav > span,
.novo-footer-note small { color: #587189; }
.novo-footer nav a { color: #3f617e; }
.novo-footer nav a:hover { color: var(--novo-teal); }
.novo-footer-note span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

body.novo6-page:not(.workspace-mode) :focus-visible {
  outline-color: #3f8fea;
}

@media (min-width: 861px) and (max-height: 720px) {
  .novo-hero { min-height: 650px; padding-top: 50px; }
  .novo-hero h1 { font-size: clamp(54px, 5vw, 68px); }
  .novo-hero-lede { margin: 22px 0; font-size: 16px; }
  body.novo6-page:not(.workspace-mode) .novo-dropzone { min-height: 310px; padding-top: 25px; padding-bottom: 22px; }
  .novo-file-visual { height: 88px; margin-bottom: 10px; transform: scale(0.86); }
}

body.novo6-page:not(.workspace-mode) :focus-visible {
  outline: 3px solid #4f83b0;
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .novo-hero-grid { grid-template-columns: minmax(0, 0.82fr) minmax(410px, 0.7fr); gap: 44px; }
  .novo-hero h1 { font-size: clamp(54px, 6.8vw, 74px); }
  .novo-review-grid { grid-template-columns: 1fr; }
  .novo-review-copy { display: grid; grid-template-columns: 1fr 0.9fr; gap: 0 50px; align-items: start; }
  .novo-review-copy .novo-overline,
  .novo-review-copy h2 { grid-column: 1; }
  .novo-review-copy > p { grid-column: 1; }
  .novo-review-copy ul { grid-column: 2; grid-row: 1 / span 3; }
  .novo-output-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
}

@media (max-width: 860px) {
  .novo-nav-links { display: none; }
  body.novo6-page:not(.workspace-mode) .novo-nav { grid-template-columns: 1fr auto; }
  .novo-shell { width: min(100% - 38px, 720px); }
  .novo-hero { min-height: 0; padding-top: 70px; }
  .novo-hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .novo-hero-copy { max-width: 720px; }
  .novo-upload-column { width: min(100%, 600px); margin-inline: auto; }
  .novo-section-heading,
  .novo-difficult-grid,
  .novo-output-grid,
  .novo-faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .novo-section-heading .novo-overline { margin-bottom: -10px; }
  .novo-section-heading { margin-bottom: 52px; }
  .novo-difficult ul { grid-template-columns: 1fr 1fr; }
  .novo-faq-grid > div:first-child { position: static; }
  .novo-final-card { align-items: flex-start; flex-direction: column; gap: 36px; }
  .novo-footer-grid { grid-template-columns: 1fr 1fr; }
  .novo-footer-note { align-items: flex-start; text-align: left; }
}

@media (max-width: 640px) {
  html.novo6-document { scroll-padding-top: 68px; }
  body.novo6-page:not(.workspace-mode) .novo-nav { min-height: 62px; padding-inline: 15px; }
  .novo-nav-actions > a { display: inline-flex; min-height: 40px; font-size: 12px; }
  .novo-nav-actions button { min-height: 42px; padding-inline: 12px; }
  .novo-wordmark { font-size: 17px; }
  .novo-wordmark svg { width: 27px; height: 27px; }
  .novo-shell { width: min(100% - 28px, 540px); }
  .novo-hero { padding-top: 36px; }
  .novo-kicker-row { gap: 7px; margin-bottom: 19px; }
  .novo-kicker,
  .novo-no-account { min-height: 28px; padding: 0 10px; font-size: 9.5px; }
  .novo-hero h1 { font-size: clamp(47px, 14vw, 58px); line-height: 0.93; }
  .novo-hero-lede { margin: 21px 0 0; font-size: 15px; }
  .novo-proof-list { display: none; }
  .novo-instrument { border-radius: 18px; }
  body.novo6-page:not(.workspace-mode) .novo-upload-panel { padding: 10px; }
  body.novo6-page:not(.workspace-mode) .novo-dropzone { min-height: 300px; padding: 23px 18px 20px; }
  .novo-file-visual { height: 86px; margin-bottom: 8px; transform: scale(0.84); }
  body.novo6-page:not(.workspace-mode) .novo-status { grid-template-columns: 1fr !important; }
  body.novo6-page:not(.workspace-mode) .novo-status-flow { padding-top: 12px; border-top: 1px solid var(--novo-line); }
  .novo-handoff li { gap: 6px; padding: 0 8px; }
  .novo-handoff b { font-size: 9px; }
  .novo-privacy-note { padding-inline: 15px; }
  .novo-method,
  .novo-review,
  .novo-output,
  .novo-faq { padding: 82px 0; }
  .novo-section-heading h2,
  .novo-review-copy h2,
  .novo-difficult h2,
  .novo-output h2,
  .novo-faq h2,
  .novo-final h2 { font-size: 44px; }
  .novo-method-list li { grid-template-columns: 46px 1fr; gap: 15px; padding: 27px 0; }
  .novo-method-list li:hover { background: transparent; box-shadow: none; }
  .novo-step-tag { grid-column: 2; justify-self: start; min-width: 0; }
  .novo-review-copy { display: block; }
  .novo-review-copy ul { margin-top: 34px; }
  .novo-workspace-preview { margin: 0 -2px; overflow: hidden; transform: none; }
  .novo-preview-topbar { grid-template-columns: auto 1fr; }
  .novo-preview-topbar b { display: none; }
  .novo-preview-body { grid-template-columns: 0.92fr 1.08fr; min-height: 340px; }
  .novo-preview-pdf { display: none; }
  .novo-preview-records { border-left: 0; }
  .novo-preview-caption { grid-template-columns: 0.92fr 1.08fr; }
  .novo-preview-caption span:first-child { display: none; }
  .novo-difficult { padding: 72px 0; }
  .novo-difficult ul { grid-template-columns: 1fr; margin-top: 20px; }
  .novo-format-table > div { grid-template-columns: 1fr 1fr; padding: 17px 4px; }
  .novo-format-table b { grid-column: 1 / -1; }
  .novo-final-card { min-height: 0; padding: 38px 28px; border-radius: 15px; }
  .novo-secondary-upload { width: 100%; }
  .novo-footer { padding: 50px 0; }
  .novo-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html.novo6-document { scroll-behavior: auto; }
  body.novo6-page:not(.workspace-mode) *,
  body.novo6-page:not(.workspace-mode) *::before,
  body.novo6-page:not(.workspace-mode) *::after { animation-duration: 0.01ms !important; animation-delay: 0ms !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media (forced-colors: active) {
  .novo-kicker i,
  .novo-ready i,
  .novo-preview-record i,
  .novo-match-label i { forced-color-adjust: none; }
}

/* Novo 5: coherent blue design system */
body.novo6-page:not(.workspace-mode) {
  background: var(--novo-paper);
  color: var(--novo-ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.novo6-page:not(.workspace-mode) .novo-nav {
  min-height: 72px;
  padding-inline: clamp(24px, 4vw, 62px);
  border-color: rgba(182, 207, 231, 0.7);
  background: rgba(249, 252, 255, 0.86);
  box-shadow: none;
  backdrop-filter: blur(20px) saturate(1.35);
}

body.novo6-page:not(.workspace-mode) .novo-nav.is-scrolled {
  border-color: rgba(166, 196, 224, 0.8);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(14, 64, 116, 0.08);
}

.novo-wordmark {
  color: #0b3157;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.novo-wordmark circle { fill: var(--novo-teal); }

.novo-nav-links { gap: 34px; }

.novo-nav-links a,
.novo-nav-actions > a {
  color: #536b82;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.novo-nav-links a[aria-current="location"] { color: #0a4dbd; }
.novo-nav-links a[aria-current="location"]::after { height: 2px; background: var(--novo-teal); }

.novo-nav-actions button,
body.novo6-page:not(.workspace-mode) .novo-upload-button {
  border-color: var(--novo-teal);
  background: linear-gradient(135deg, #1473f7 0%, #0d62df 100%);
  box-shadow: 0 10px 25px rgba(23, 111, 242, 0.22);
}

.novo-nav-actions button {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 10px;
  font-weight: 700;
}

.novo-nav-actions button:hover,
body.novo6-page:not(.workspace-mode) .novo-upload-button:hover {
  border-color: #0847ad;
  background: linear-gradient(135deg, #0e65e5 0%, #084bb9 100%);
  box-shadow: 0 13px 28px rgba(13, 85, 196, 0.27);
}

.novo-shell { width: min(1220px, calc(100% - clamp(42px, 8vw, 112px))); }

.novo-hero {
  min-height: min(800px, calc(100vh - 72px));
  padding: clamp(66px, 8vh, 96px) 0 clamp(52px, 7vh, 74px);
  border-color: #cfe2f3;
  background:
    radial-gradient(circle at 77% 18%, rgba(70, 160, 255, 0.23), transparent 30%),
    radial-gradient(circle at 91% 52%, rgba(32, 196, 255, 0.1), transparent 22%),
    radial-gradient(circle at 7% 80%, rgba(70, 135, 255, 0.09), transparent 26%),
    linear-gradient(145deg, #fbfdff 0%, #f5faff 48%, #eef7ff 100%);
}

.novo-hero::before {
  position: absolute;
  top: -210px;
  right: -160px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(53, 145, 242, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 42%, rgba(255, 255, 255, 0.9), rgba(104, 183, 255, 0.09) 48%, transparent 67%);
  content: "";
  pointer-events: none;
  animation: novo6-aurora 16s ease-in-out infinite alternate;
}

.novo-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 112, 173, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 112, 173, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to right, transparent 8%, #000 72%, transparent 100%);
  pointer-events: none;
}

@keyframes novo6-aurora {
  from { transform: translate3d(-12px, -8px, 0) scale(0.98); }
  to { transform: translate3d(18px, 18px, 0) scale(1.04); }
}

.novo-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.86fr);
  gap: clamp(62px, 7.5vw, 118px);
}

.novo-kicker-row { margin-bottom: 28px; }

.novo-kicker,
.novo-no-account {
  min-height: 31px;
  border-color: #c9def2;
  background: rgba(255, 255, 255, 0.76);
  color: #315f89;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.085em;
}

.novo-no-account {
  border-color: #c9e0f6;
  background: #eaf4ff;
  color: #185caa;
}

.novo-kicker i {
  background: #2c8cff;
  box-shadow: 0 0 0 4px rgba(44, 140, 255, 0.13);
}

.novo-hero h1,
.novo-section-heading h2,
.novo-review-copy h2,
.novo-difficult h2,
.novo-output h2,
.novo-faq h2,
.novo-final h2,
.novo-hero h1 em {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.novo-hero h1 {
  max-width: 690px;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.99;
}

.novo-hero h1 em {
  color: #176ff2;
  background: linear-gradient(105deg, #0b5fd8 4%, #278cff 58%, #1f78ed 96%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.novo-hero-lede {
  max-width: 650px;
  margin-top: 27px;
  color: #49657d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.72;
}

.novo-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 29px;
  color: #355a79;
}

.novo-proof-list li { gap: 7px; min-width: 0; padding-right: 13px; color: #4e6b83; font-size: 11px; line-height: 1.35; }
.novo-proof-list li + li { padding-left: 13px; border-left: 1px solid #cddfec; }
.novo-proof-list svg { width: 17px; height: 17px; stroke: #1975ec; }
.novo-proof-list strong { color: #183f61; font-weight: 700; }

.novo-instrument {
  overflow: hidden;
  border: 1px solid #bfd8ee;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 32px 80px rgba(21, 82, 141, 0.13), 0 8px 24px rgba(43, 140, 255, 0.07);
}

.novo-instrument-head {
  min-height: 62px;
  padding-inline: 22px;
  border-color: #d8e8f6;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.novo-instrument-head b { color: #102e4a; font-size: 13px; font-weight: 700; }
.novo-instrument-head small { color: #71869a; font-size: 10px; }
.novo-ready { color: #147855; font-size: 10px; font-weight: 800; letter-spacing: 0.065em; }

body.novo6-page:not(.workspace-mode) .novo-upload-panel { padding: 12px; background: #f7fbff; }

body.novo6-page:not(.workspace-mode) .novo-dropzone {
  min-height: 342px;
  padding: 31px 28px 25px;
  border: 1.5px dashed #90bce3;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 15%, rgba(66, 155, 255, 0.09), transparent 31%),
    linear-gradient(180deg, #f7fbff 0%, #f2f8ff 100%);
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within {
  border-color: #2a87ef;
  background:
    radial-gradient(circle at 50% 15%, rgba(45, 142, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #f5faff 0%, #ebf5ff 100%);
  box-shadow: inset 0 0 0 1px rgba(42, 135, 239, 0.08);
  transform: translateY(-1px);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone.is-dragging {
  border-color: #176ff2;
  background: #e7f3ff;
  box-shadow: inset 0 0 0 2px rgba(23, 111, 242, 0.1), 0 12px 30px rgba(23, 111, 242, 0.12);
  transform: scale(1.006);
}

.novo-file-visual { height: 96px; margin-bottom: 13px; }
.novo-paper { border-color: rgba(28, 117, 225, 0.25); box-shadow: 0 15px 30px rgba(21, 99, 194, 0.14); }
.novo-paper-back { background: #cae4ff; }
.novo-paper-front { background: #fff; }
.novo-paper-front b { color: #176ff2; }
.novo-paper-front i { background: #c3d9ec; }
.novo-scan-line { background: #2d93ff; box-shadow: 0 0 10px rgba(45, 147, 255, 0.45); }

body.novo6-page:not(.workspace-mode) .novo-upload-copy h2 {
  color: #0b2945;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

body.novo6-page:not(.workspace-mode) .novo-upload-copy p { color: #627b91; font-size: 13px; }

body.novo6-page:not(.workspace-mode) .novo-upload-button {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.novo-file-rules { margin-top: 19px; color: #678097; font-size: 9.5px; font-weight: 700; letter-spacing: 0.07em; }
.novo-file-rules i { background: #77a5cb; }

.novo-privacy-note {
  min-height: 62px;
  border-color: #d5e6f4;
  background: #f9fcff;
  color: #526f86;
}
.novo-privacy-note strong { color: #214c70; }
.novo-privacy-note svg { stroke: #287fdc; }

.novo-handoff {
  min-height: 44px;
  margin-top: 12px;
  border-color: #cfe1f1;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(25, 80, 132, 0.045);
}
.novo-handoff li + li { border-color: #d7e7f4; }
.novo-handoff span,
.novo-handoff li:nth-child(2) span,
.novo-handoff li:nth-child(3) span { color: #176ff2; font-weight: 800; }
.novo-handoff b { color: #46657e; font-size: 10px; font-weight: 700; }

body.novo6-page:not(.workspace-mode) .novo-status {
  margin-top: 11px;
  border-color: #cfe2f2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(25, 80, 132, 0.04);
}
body.novo6-page:not(.workspace-mode) .novo-status[data-state="active"] { border-color: #77ace1; background: #edf6ff; }
body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] { border-color: #e7a4ad; background: var(--novo-red-soft); }
.novo-progress-track { background: #d8e9f7; }
.novo-progress-track span { background: linear-gradient(90deg, #0d62df, #39a2ff); }

.novo-method {
  padding: clamp(100px, 10vw, 146px) 0;
  border-bottom: 1px solid #d3e3f0;
  background: #fff;
}

.novo-section-heading {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(46px, 8vw, 120px);
  margin-bottom: 66px;
}

.novo-overline,
.novo-method .novo-overline,
.novo-difficult .novo-overline {
  color: #1269dc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.novo-section-heading h2,
.novo-review-copy h2,
.novo-difficult h2,
.novo-output h2,
.novo-faq h2 {
  color: #0b2035;
  font-size: clamp(46px, 4.2vw, 62px);
  line-height: 1.02;
}

.novo-section-heading p,
.novo-review-copy > p,
.novo-difficult-grid > p,
.novo-output-copy > p,
.novo-faq-grid > div:first-child p { color: #566f84; font-size: 15px; line-height: 1.75; }

.novo-method-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(490px, 1.16fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: stretch;
}

.novo-method-list {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  list-style: none;
}

.novo-method-list li {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
}

.novo-method-list li:hover { background: transparent; box-shadow: none; }

.novo-method-control {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 26px;
  gap: 14px;
  align-items: start;
  width: 100%;
  min-height: 126px;
  padding: 23px 21px;
  overflow: hidden;
  border: 1px solid #d5e4f0;
  border-radius: 15px;
  background: #fbfdff;
  color: var(--novo-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.novo-method-control::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1269dc, #3ba3ff);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.novo-method-control:hover { border-color: #aaccec; background: #f7fbff; transform: translateY(-1px); }
.novo-method-control.is-active {
  border-color: #70a9e3;
  background: linear-gradient(135deg, #eef7ff 0%, #f7fbff 100%);
  box-shadow: 0 14px 36px rgba(26, 91, 157, 0.09);
}
.novo-method-control.is-active::after { transform: scaleX(1); }

.novo-step-number,
.novo-method-list li:nth-child(2) .novo-step-number,
.novo-method-list li:nth-child(3) .novo-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #b9d5ef;
  border-radius: 11px;
  background: #fff;
  color: #176ff2;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 5px 14px rgba(23, 111, 242, 0.08);
}

.novo-method-control.is-active .novo-step-number { border-color: #176ff2; background: #176ff2; color: #fff; }
.novo-step-copy { min-width: 0; }
.novo-step-copy b { display: block; color: #15334d; font-size: 16px; font-weight: 700; letter-spacing: -0.025em; }
.novo-step-copy small { display: block; margin-top: 8px; color: #657d91; font-size: 12px; font-weight: 500; line-height: 1.55; }
.novo-step-arrow { color: #6b96bd; font-size: 20px; line-height: 42px; transition: color 180ms ease, transform 180ms ease; }
.novo-method-control.is-active .novo-step-arrow { color: #176ff2; transform: translateX(2px); }

.novo-method-visual {
  position: relative;
  min-height: 398px;
  overflow: hidden;
  border: 1px solid #b9d4ec;
  border-radius: 21px;
  background:
    radial-gradient(circle at 86% 13%, rgba(57, 161, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #0a3a77 0%, #0d58bc 55%, #1678ed 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(13, 77, 164, 0.2);
}

.novo-method-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(to bottom right, #000, transparent 78%);
  pointer-events: none;
}

.novo-method-visual-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  font-weight: 700;
}
.novo-method-visual-head b { display: inline-flex; gap: 8px; align-items: center; color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.novo-method-visual-head i { width: 7px; height: 7px; border-radius: 50%; background: #6ae0ff; box-shadow: 0 0 0 5px rgba(106,224,255,0.12); }

.novo-method-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 340px;
  padding: 32px;
}
.novo-method-panel[hidden] { display: none; }
.novo-method-panel.is-active { animation: novo6-panel-in 390ms cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes novo6-panel-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

.novo-method-panel > p {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin: 26px 0 0;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.novo-method-panel > p strong { flex: 0 0 auto; color: #fff; font-size: 12px; font-weight: 700; }
.novo-method-panel > p span { max-width: 290px; color: rgba(235,246,255,0.76); font-size: 11px; line-height: 1.55; text-align: right; }

.novo-document-map,
.novo-citation-map,
.novo-review-map {
  align-self: center;
  width: min(100%, 520px);
  margin-inline: auto;
}

.novo-document-map { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center; }
.novo-page-stack {
  position: relative;
  display: block;
  width: 126px;
  height: 164px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 9px;
  background: linear-gradient(#fff, #edf6ff);
  box-shadow: 12px 13px 0 rgba(255,255,255,0.13), 22px 25px 0 rgba(255,255,255,0.07), 0 18px 36px rgba(2,24,60,0.22);
}
.novo-page-stack::before {
  position: absolute;
  inset: 23px 17px;
  background: repeating-linear-gradient(to bottom, #bfd2e4 0 3px, transparent 3px 13px);
  content: "";
}
.novo-page-stack::after {
  position: absolute;
  right: 16px;
  bottom: 29px;
  left: 16px;
  height: 48px;
  border-left: 3px solid #208cff;
  background: #ddecfb;
  content: "";
  animation: novo6-detect 2.8s ease-in-out infinite;
}
@keyframes novo6-detect { 0%,100% { opacity: 0.65; } 50% { opacity: 1; transform: translateY(-4px); } }

.novo-document-map small { display: block; color: #a9d6ff; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; }
.novo-document-map strong { display: block; margin-top: 5px; color: #fff; font-size: 20px; font-weight: 700; letter-spacing: -0.035em; }
.novo-document-map div > span { display: flex; gap: 7px; margin-top: 22px; }
.novo-document-map div > span i { display: block; width: 28px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.2); }
.novo-document-map div > span i:nth-child(-n+3) { background: #65c7ff; }

.novo-citation-map { display: grid; gap: 20px; }
.novo-source-fragment { display: block; padding: 22px; border: 1px solid rgba(255,255,255,0.22); border-radius: 13px; background: rgba(255,255,255,0.1); color: #f3f9ff; font-family: Georgia, serif; font-size: 15px; line-height: 1.55; }
.novo-field-chips { display: grid; grid-template-columns: 1.4fr 1fr 0.6fr 0.7fr; gap: 8px; }
.novo-field-chips span { min-height: 52px; padding: 16px 13px; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; background: rgba(255,255,255,0.12); color: #fff; font-size: 10px; font-weight: 700; text-align: center; }

.novo-review-map { display: grid; grid-template-columns: 0.85fr 1.1fr 1fr; grid-template-rows: auto 142px; gap: 8px; }
.novo-review-map span { color: #cae7ff; font-size: 9px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: 0.06em; }
.novo-review-map i { display: block; border: 1px solid rgba(255,255,255,0.22); border-radius: 11px; background: rgba(255,255,255,0.12); }
.novo-review-map i:nth-of-type(1) { background: linear-gradient(rgba(255,255,255,0.92), rgba(224,240,253,0.92)); }
.novo-review-map i:nth-of-type(2) { background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.17) 0 31px, transparent 31px 38px); }
.novo-review-map i:nth-of-type(3) { background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.09)); }

.novo-review {
  padding: clamp(100px, 10vw, 150px) 0;
  border-color: #c9deef;
  background:
    radial-gradient(circle at 83% 20%, rgba(57, 161, 255, 0.2), transparent 27%),
    linear-gradient(150deg, #eaf5ff 0%, #f5faff 46%, #edf6ff 100%);
}
.novo-review-copy li { border-color: #c9deef; }
.novo-review-copy li > span { color: #176ff2; }
.novo-review-copy li strong { color: #16364f; font-weight: 700; }
.novo-review-copy li small { color: #5d7890; }

.novo-workspace-preview {
  border-color: #adcde8;
  border-radius: 18px;
  background: #dceefd;
  box-shadow: 0 30px 74px rgba(17, 77, 137, 0.16);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}
.novo-workspace-preview:hover { transform: translateY(-3px); box-shadow: 0 36px 84px rgba(17, 77, 137, 0.2); }
.novo-preview-topbar i:first-child,
.novo-preview-topbar i:nth-child(2),
.novo-preview-topbar i:nth-child(3) { background: #2e8fff; }
.novo-preview-topbar i:nth-child(2) { opacity: 0.68; }
.novo-preview-topbar i:nth-child(3) { opacity: 0.4; }
.novo-preview-record.is-selected { border-color: #2b82e5; box-shadow: 0 5px 16px rgba(23,111,242,0.13); }
.novo-preview-record i { background: #4a9df0; }
.novo-match-label { background: #e9f8f1; color: #176c53; }
.novo-preview-save { background: linear-gradient(135deg, #176ff2, #0b54c7); }

.novo-difficult {
  padding: clamp(76px, 8vw, 112px) 0;
  border-color: #cbdfee;
  background: #eaf4ff;
}
.novo-difficult li { border-color: #c9deef; background: rgba(255,255,255,0.72); color: #315777; transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.novo-difficult li:hover { border-color: #83b4e3; background: #fff; transform: translateY(-2px); }
.novo-difficult li svg { stroke: #1d76dc; }

.novo-output { padding: clamp(96px, 9vw, 132px) 0; background: #fff; }
.novo-output-copy > a { color: #0e63d8; }
.novo-format-table { border-color: #123553; }
.novo-format-table > div { border-color: #d2e1ed; }
.novo-format-table b { color: #163650; font-weight: 700; }
.novo-format-table span { color: #526f86; font-size: 14px; font-weight: 600; }

.novo-faq { padding: clamp(96px, 9vw, 132px) 0; border-color: #d1e2ef; background: #f6faff; }
.novo-faq-list { border-color: #173956; }
.novo-faq-list details { border-color: #ccdfed; }
.novo-faq-list summary { color: #183a56; font-size: 16px; font-weight: 700; }
.novo-faq-list summary:hover,
.novo-faq-list summary::after { color: #176ff2; }

.novo-final { padding-bottom: clamp(90px, 9vw, 132px); background: #f6faff; }
.novo-final-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 20%, rgba(86, 191, 255, 0.35), transparent 24%),
    linear-gradient(135deg, #073b83 0%, #0b60d5 55%, #278fff 100%);
  box-shadow: 0 30px 72px rgba(13, 77, 164, 0.22);
}
.novo-final-card::after { position: absolute; right: -70px; bottom: -130px; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; content: ""; }
.novo-final-card > * { position: relative; z-index: 1; }
.novo-final .novo-overline { color: #bfe2ff; }
.novo-secondary-upload { border-color: #fff; border-radius: 11px; color: #0b58c5; font-weight: 700; }
.novo-secondary-upload:hover { background: #eaf5ff; color: #0847ad; }

.novo-footer {
  border-color: #c9deee;
  background: #eaf4ff;
}
.novo-footer .novo-wordmark,
.novo-footer-note span { color: #0d2c49; }
.novo-footer-brand p,
.novo-footer nav > span,
.novo-footer-note small { color: #647d92; }
.novo-footer nav a { color: #3c617f; }
.novo-footer nav a:hover { color: #0f65d7; }
.novo-footer-note span { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-weight: 700; }

html.novo6-motion-ready .novo-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
html.novo6-motion-ready .novo-reveal.is-in-view { opacity: 1; transform: translateY(0); }

body.novo6-page:not(.workspace-mode) :focus-visible { outline: 3px solid #3d92f1; outline-offset: 3px; }

@media (max-width: 1080px) {
  .novo-hero-grid { grid-template-columns: minmax(0, 0.82fr) minmax(430px, 0.78fr); gap: 48px; }
  .novo-hero h1 { font-size: clamp(54px, 6vw, 69px); }
  .novo-method-stage { grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.05fr); gap: 38px; }
  .novo-method-control { min-height: 132px; }
}

@media (max-width: 900px) {
  .novo-shell { width: min(100% - 40px, 760px); }
  .novo-hero { min-height: 0; padding-top: 64px; }
  .novo-hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .novo-hero-copy { max-width: 700px; }
  .novo-upload-column { width: min(100%, 620px); margin-inline: auto; }
  .novo-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .novo-section-heading p { max-width: 620px; }
  .novo-method-stage { grid-template-columns: 1fr; }
  .novo-method-list { grid-template-columns: repeat(3, 1fr); }
  .novo-method-control { grid-template-columns: 42px 1fr; min-height: 178px; padding: 18px; }
  .novo-step-copy b { font-size: 14px; }
  .novo-step-copy small { font-size: 11px; }
  .novo-step-arrow { display: none; }
  .novo-method-visual { min-height: 390px; }
}

@media (max-width: 640px) {
  html.novo6-document { scroll-padding-top: 64px; }
  body.novo6-page:not(.workspace-mode) .novo-nav { min-height: 64px; padding-inline: 15px; }
  .novo-nav-actions button { min-height: 42px; padding-inline: 13px; border-radius: 9px; }
  .novo-shell { width: min(100% - 28px, 560px); }
  .novo-hero { padding-top: 38px; }
  .novo-hero::before { top: -260px; right: -310px; }
  .novo-kicker-row { margin-bottom: 20px; }
  .novo-kicker,
  .novo-no-account { min-height: 28px; padding-inline: 9px; font-size: 9px; }
  .novo-hero h1 { font-size: clamp(45px, 13.2vw, 58px); line-height: 0.96; }
  .novo-hero-lede { margin-top: 21px; font-size: 15px; line-height: 1.64; }
  .novo-proof-list { display: none; }
  .novo-instrument { border-radius: 18px; }
  .novo-instrument-head { min-height: 57px; padding-inline: 16px; }
  body.novo6-page:not(.workspace-mode) .novo-upload-panel { padding: 9px; }
  body.novo6-page:not(.workspace-mode) .novo-dropzone { min-height: 302px; padding: 24px 16px 20px; border-radius: 13px; }
  .novo-file-visual { height: 84px; margin-bottom: 8px; transform: scale(0.85); }
  body.novo6-page:not(.workspace-mode) .novo-upload-copy h2 { font-size: 17px; }
  body.novo6-page:not(.workspace-mode) .novo-status { grid-template-columns: 1fr !important; }
  body.novo6-page:not(.workspace-mode) .novo-status-flow { padding-top: 12px; border-top: 1px solid var(--novo-line); }
  .novo-handoff { min-height: 48px; }
  .novo-handoff li { gap: 5px; padding-inline: 6px; }
  .novo-handoff b { font-size: 8px; }
  .novo-method,
  .novo-review,
  .novo-output,
  .novo-faq { padding: 82px 0; }
  .novo-section-heading { margin-bottom: 42px; }
  .novo-section-heading h2,
  .novo-review-copy h2,
  .novo-difficult h2,
  .novo-output h2,
  .novo-faq h2,
  .novo-final h2 { font-size: clamp(39px, 11vw, 46px); }
  .novo-method-list { grid-template-columns: 1fr; gap: 8px; }
  .novo-method-control { grid-template-columns: 42px minmax(0,1fr) 22px; min-height: 108px; padding: 17px; }
  .novo-step-arrow { display: block; font-size: 18px; }
  .novo-step-copy small { margin-top: 5px; }
  .novo-method-visual { min-height: 366px; border-radius: 17px; }
  .novo-method-visual-head { padding-inline: 17px; }
  .novo-method-panel { min-height: 308px; padding: 24px 18px; }
  .novo-method-panel > p { display: block; }
  .novo-method-panel > p span { display: block; margin-top: 7px; text-align: left; }
  .novo-document-map { grid-template-columns: 110px 1fr; gap: 18px; }
  .novo-page-stack { width: 92px; height: 128px; }
  .novo-document-map strong { font-size: 17px; }
  .novo-field-chips { grid-template-columns: 1fr 1fr; }
  .novo-field-chips span { min-height: 42px; padding: 12px 8px; }
  .novo-review-map { grid-template-rows: auto 120px; }
  .novo-workspace-preview:hover { transform: none; }
  .novo-difficult { padding: 72px 0; }
  .novo-final-card { border-radius: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .novo-hero::before,
  .novo-page-stack::after { animation: none !important; }
  .novo-method-panel.is-active { animation: none !important; }
}

/* Novo 5: evidence-first clinical blue system */
html.novo6-document {
  scroll-padding-top: 72px;
}

body.novo6-page:not(.workspace-mode) {
  --novo-paper: #f8fafc;
  --novo-surface: #ffffff;
  --novo-surface-soft: #f1f6fb;
  --novo-ink: #102638;
  --novo-ink-strong: #091d2d;
  --novo-muted: #586d7e;
  --novo-subtle: #607688;
  --novo-line: #d6e1ea;
  --novo-line-strong: #bdcfdd;
  --novo-blue: #1468e8;
  --novo-blue-strong: #0758cf;
  --novo-blue-bright: #2f86ff;
  --novo-blue-soft: #eaf3ff;
  --novo-blue-pale: #f4f8fe;
  --novo-success: #167d5d;
  --novo-success-soft: #edf8f4;
  --novo-warning: #a86508;
  --novo-warning-soft: #fff7e7;
  --novo-error: #c33e4f;
  --novo-error-soft: #fff2f4;
  background: var(--novo-paper);
  color: var(--novo-ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.novo6-page:not(.workspace-mode) *,
body.novo6-page:not(.workspace-mode) *::before,
body.novo6-page:not(.workspace-mode) *::after {
  box-sizing: border-box;
}

body.novo6-page:not(.workspace-mode) button,
body.novo6-page:not(.workspace-mode) input,
body.novo6-page:not(.workspace-mode) textarea,
body.novo6-page:not(.workspace-mode) select {
  font: inherit;
}

body.novo6-page:not(.workspace-mode) main {
  overflow: clip;
  background: var(--novo-surface);
}

body.novo6-page:not(.workspace-mode) main::before,
.novo-hero::before,
.novo-hero::after {
  display: none !important;
}

.novo-shell {
  width: min(100% - 72px, 1180px);
}

.novo-nav {
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(214, 225, 234, 0.78);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(135%);
}

body.novo6-page:not(.workspace-mode) .novo-nav.is-scrolled {
  border-color: var(--novo-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 18px rgba(25, 55, 82, 0.055);
}

.novo-wordmark {
  gap: 14px;
  color: var(--novo-ink-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.novo-wordmark svg {
  width: 40px;
  height: 38px;
  color: var(--novo-blue);
  stroke-width: 2.15;
  shape-rendering: geometricPrecision;
}

.novo-nav-links {
  gap: 30px;
}

.novo-nav-links a,
.novo-nav-actions > a {
  color: #415669;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.novo-nav-links a::after {
  height: 2px;
  background: var(--novo-blue);
}

.novo-nav-links a:hover,
.novo-nav-actions > a:hover {
  color: var(--novo-ink-strong);
}

.novo-nav-links a[aria-current="location"] {
  color: var(--novo-blue);
}

.novo-nav-links a[aria-current="location"]::after {
  background: currentColor;
}

.novo-nav-actions button,
body.novo6-page:not(.workspace-mode) .novo-upload-button {
  border: 1px solid var(--novo-blue) !important;
  background: var(--novo-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 600 !important;
}

.novo-nav-actions button {
  min-height: 42px;
  padding: 0 19px;
  border-radius: 8px;
  font-size: 13px;
}

.novo-nav-actions button:hover,
body.novo6-page:not(.workspace-mode) .novo-upload-button:hover {
  border-color: var(--novo-blue-strong) !important;
  background: var(--novo-blue-strong) !important;
  transform: translateY(-1px);
}

.novo-skip-link:focus {
  border-radius: 6px;
  background: var(--novo-ink-strong);
  color: #fff;
}

.novo-hero {
  position: relative;
  min-height: 760px;
  padding: 66px 0 64px;
  background:
    radial-gradient(circle at 82% 8%, rgba(71, 149, 255, 0.2) 0%, rgba(71, 149, 255, 0.07) 27%, transparent 46%),
    radial-gradient(circle at 10% 86%, rgba(111, 87, 219, 0.1) 0%, rgba(111, 87, 219, 0.035) 25%, transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f9fcff 42%, #eef6ff 100%);
}

.novo-hero::before {
  position: absolute;
  top: -235px;
  right: -185px;
  z-index: 0;
  display: block !important;
  width: 690px;
  height: 690px;
  border: 1.25px solid rgba(53, 135, 226, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 39% 43%, rgba(255, 255, 255, 0.78), rgba(89, 168, 255, 0.06) 47%, rgba(111, 87, 219, 0.035) 61%, transparent 70%);
  content: "";
  pointer-events: none;
}

.novo-hero::after {
  position: absolute;
  z-index: 0;
  display: block !important;
  inset: 0;
  background-image:
    linear-gradient(rgba(35, 104, 174, 0.046) 1.2px, transparent 1.2px),
    linear-gradient(90deg, rgba(35, 104, 174, 0.046) 1.2px, transparent 1.2px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to right, transparent 1%, #000 20%, #000 82%, transparent 100%);
  opacity: 0.84;
  pointer-events: none;
}

.novo-hero-orbit {
  position: absolute;
  top: 8px;
  right: -125px;
  width: 620px;
  height: 620px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.novo-hero-orbit i {
  position: absolute;
  inset: calc(var(--orbit, 0) * 46px);
  border: 1.25px solid rgba(46, 128, 235, 0.2);
  border-radius: 50%;
}

.novo-hero-orbit i:nth-child(1) { --orbit: 0; }
.novo-hero-orbit i:nth-child(2) { --orbit: 1; }
.novo-hero-orbit i:nth-child(3) { --orbit: 2; }
.novo-hero-orbit i:nth-child(4) { --orbit: 3; }

.novo-hero-orbit i:nth-child(even) {
  border-color: rgba(111, 87, 219, 0.15);
}

.novo-hero-orbit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--novo-blue-bright);
  box-shadow: 0 0 0 5px rgba(47, 134, 255, 0.1);
  animation: novo6-orbit-pulse 5.6s ease-in-out infinite;
}

.novo-hero-orbit span:nth-of-type(1) { top: 106px; left: 225px; }
.novo-hero-orbit span:nth-of-type(2) { top: 244px; left: 65px; animation-delay: -1.8s; }
.novo-hero-orbit span:nth-of-type(3) { top: 390px; left: 172px; animation-delay: -3.2s; }

.novo-hero-orbit span:nth-of-type(2) {
  background: #756ee8;
  box-shadow: 0 0 0 5px rgba(117, 110, 232, 0.1);
}

@keyframes novo6-orbit-pulse {
  0%, 100% { opacity: 0.58; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.08); }
}

.novo-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.03fr) minmax(455px, 0.97fr);
  gap: 68px;
  align-items: start;
}

.novo-hero-copy {
  max-width: 630px;
  padding-top: 22px;
}

.novo-kicker-row {
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 29px;
}

.novo-kicker,
.novo-no-account {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.novo-kicker {
  color: var(--novo-blue-strong);
}

.novo-kicker i {
  width: 7px;
  height: 7px;
  background: var(--novo-blue-bright);
  box-shadow: 0 0 0 4px rgba(47, 134, 255, 0.11);
}

.novo-no-account {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--novo-subtle);
}

.novo-no-account::before {
  width: 1px;
  height: 13px;
  background: var(--novo-line-strong);
  content: "";
}

.novo-hero h1 {
  max-width: 640px;
  margin: 0;
  color: var(--novo-ink-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 4.65vw, 67px);
  font-style: normal;
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.novo-hero h1 em {
  color: var(--novo-blue);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.novo-hero-lede {
  max-width: 590px;
  margin-top: 27px;
  color: var(--novo-muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.62;
}

.novo-proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 610px;
  margin-top: 38px;
  padding: 0;
  border-top: 1px solid var(--novo-line);
}

.novo-proof-list li {
  min-width: 0;
  gap: 10px;
  padding: 17px 15px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.novo-proof-list li + li {
  padding-left: 15px;
  border-left: 1px solid var(--novo-line);
}

.novo-proof-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--novo-blue);
  stroke-width: 1.55;
}

.novo-proof-list span {
  display: grid;
  gap: 2px;
  color: var(--novo-ink);
  font-size: 12px;
  line-height: 1.25;
}

.novo-proof-list strong {
  font-size: 12px;
  font-weight: 650;
}

.novo-proof-list small {
  color: var(--novo-subtle);
  font-size: 10px;
  font-weight: 450;
  white-space: nowrap;
}

.novo-proof-list li[data-state="source-linked"] svg,
.novo-proof-list li[data-state="verified"] svg {
  color: var(--novo-success);
}

.novo-no-account {
  color: var(--novo-success);
}

.novo-no-account::before {
  background: #b9ddcf;
}

.novo-upload-column {
  width: 100%;
  max-width: 515px;
  justify-self: end;
}

.novo-instrument {
  overflow: hidden;
  border: 1px solid var(--novo-line-strong);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(27, 65, 101, 0.105);
}

.novo-instrument-head {
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--novo-line);
  background: #fff;
  color: var(--novo-muted);
}

.novo-instrument-head b {
  color: var(--novo-ink-strong);
  font-size: 12px;
  font-weight: 650;
}

.novo-instrument-head small {
  color: var(--novo-subtle);
  font-size: 10px;
  font-weight: 450;
}

.novo-ready {
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid #bfe4d6;
  border-radius: 999px;
  background: var(--novo-success-soft);
  color: var(--novo-success);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.novo-ready i {
  background: var(--novo-success);
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) .novo-upload-panel {
  padding: 10px;
  background: var(--novo-blue-pale);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone {
  min-height: 330px;
  padding: 30px 28px 25px;
  border: 1.5px dashed #88afd5;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within,
body.novo6-page:not(.workspace-mode) .novo-dropzone.is-dragging {
  border-color: var(--novo-blue);
  background: #fbfdff;
  box-shadow: inset 0 0 0 3px rgba(20, 104, 232, 0.07);
}

.novo-file-visual {
  height: 94px;
  margin-bottom: 13px;
}

.novo-paper {
  border-color: #a8c4de;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 79, 119, 0.08);
}

.novo-paper-front {
  color: var(--novo-blue-strong);
}

.novo-paper-front b {
  color: #d55364;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.novo-paper-front i {
  background: #c6d7e6;
}

.novo-scan-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--novo-blue-bright), transparent);
  box-shadow: 0 0 8px rgba(47, 134, 255, 0.32);
}

body.novo6-page:not(.workspace-mode) .novo-upload-copy h2 {
  color: var(--novo-ink-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

body.novo6-page:not(.workspace-mode) .novo-upload-copy p {
  margin-top: 4px;
  color: var(--novo-subtle);
  font-size: 12px;
}

body.novo6-page:not(.workspace-mode) .novo-upload-button {
  min-height: 48px;
  min-width: 174px;
  margin-top: 21px;
  border-radius: 8px;
  font-size: 13px !important;
  letter-spacing: -0.01em;
}

body.novo6-page:not(.workspace-mode) .novo-upload-button svg {
  width: 17px;
  height: 17px;
}

.novo-file-rules {
  margin-top: 19px;
  color: var(--novo-subtle);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.novo-file-rules i {
  width: 3px;
  height: 3px;
  background: #9fb0bf;
}

.novo-privacy-note {
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 11px 18px;
  border-top: 1px solid var(--novo-line);
  background: #f8fbff;
  color: var(--novo-muted);
  font-size: 11px;
  line-height: 1.45;
}

.novo-privacy-note svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border: 1px solid #c9dff3;
  border-radius: 8px;
  background: #edf6ff;
  color: var(--novo-blue);
  stroke-width: 1.6;
}

.novo-privacy-note strong {
  color: var(--novo-ink);
  font-weight: 600;
}

.novo-privacy-note {
  border-top-color: #d1e9dd;
  background: #f4faf7;
  color: #4f7567;
}

.novo-privacy-note svg {
  border-color: #c9e4d7;
  background: #eaf7f0;
  color: var(--novo-green);
  stroke: var(--novo-green);
}

.novo-privacy-note strong {
  color: #17644f;
}

.novo-privacy-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.novo-privacy-copy strong {
  font-size: 11px;
  line-height: 1.35;
}

.novo-privacy-copy small {
  color: var(--novo-muted);
  font-size: 10px;
  line-height: 1.45;
}

.novo-handoff {
  min-height: 63px;
  margin-top: 10px;
  border: 1px solid var(--novo-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.novo-handoff li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 9px;
  align-content: center;
  min-width: 0;
  padding: 10px 12px;
  white-space: normal;
}

.novo-handoff li + li {
  border-left: 1px solid var(--novo-line);
}

.novo-handoff span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--novo-blue);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.novo-handoff b {
  color: var(--novo-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.novo-handoff small {
  display: block;
  color: var(--novo-subtle);
  font-size: 10px;
  line-height: 1.25;
}

.novo-handoff li {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.novo-handoff span {
  grid-row: auto;
}

.novo-handoff b {
  white-space: nowrap;
}

body.novo6-page:not(.workspace-mode) .novo-status {
  margin-top: 10px;
  border: 1px solid var(--novo-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="active"] {
  border-color: #8bb8ea;
  background: var(--novo-blue-pale);
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] {
  border-color: #e8aab3;
  background: var(--novo-error-soft);
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] #progress-title,
body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] .novo-status-flow b {
  color: var(--novo-error);
}

body.novo6-page:not(.workspace-mode) .novo-status[data-state="error"] #progress-detail {
  color: #8f4050;
}

.novo-method,
.novo-review,
.novo-output,
.novo-faq {
  padding: 116px 0;
}

.novo-method {
  border-top: 1px solid var(--novo-line);
  background: var(--novo-paper);
}

.novo-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: end;
  max-width: none;
  margin-bottom: 64px;
}

.novo-section-heading .novo-overline {
  align-self: start;
  margin-top: 10px;
}

.novo-overline {
  color: var(--novo-blue-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.novo-section-heading h2,
.novo-review-copy h2,
.novo-difficult h2,
.novo-output h2,
.novo-faq h2,
.novo-final h2 {
  margin: 0;
  color: var(--novo-ink-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.novo-section-heading p,
.novo-review-copy > p,
.novo-difficult-grid > p,
.novo-output-copy > p,
.novo-faq-grid > div:first-child > p {
  color: var(--novo-muted);
  font-size: 15px;
  letter-spacing: -0.012em;
  line-height: 1.7;
}

.novo-method-stage {
  grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: stretch;
}

.novo-method-list {
  gap: 0;
  border-top: 1px solid var(--novo-line);
}

.novo-method-list li {
  border-bottom: 1px solid var(--novo-line);
}

.novo-method-list li:nth-child(n):hover {
  box-shadow: none;
}

.novo-method-control {
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  min-height: 124px;
  padding: 21px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.novo-method-control:hover {
  border: 0;
  background: rgba(234, 243, 255, 0.62);
  box-shadow: none;
  transform: none;
}

.novo-method-control::after {
  display: none;
}

.novo-method-control.is-active {
  border: 0;
  background: var(--novo-blue-soft);
  box-shadow: inset 0 0 0 1px #9fc4ea;
  transform: none;
}

.novo-method-control.is-active:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px #8eb9e7;
}

body.novo6-page:not(.workspace-mode) .novo-method-control:focus-visible {
  outline: none;
  outline-offset: 0;
  background: var(--novo-blue-soft);
  box-shadow: inset 0 0 0 1px #8eb9e7;
}

body.novo6-page:not(.workspace-mode) .novo-method-control:focus-visible .novo-step-number {
  box-shadow: 0 0 0 3px rgba(47, 134, 255, 0.2);
}

.novo-step-number {
  color: var(--novo-blue);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.novo-method-list li .novo-method-control.is-active .novo-step-number {
  border-color: var(--novo-blue);
  background: var(--novo-blue);
  color: #fff;
  box-shadow: none;
}

.novo-step-copy b {
  color: var(--novo-ink-strong);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.018em;
}

.novo-step-copy small {
  max-width: 330px;
  margin-top: 7px;
  color: var(--novo-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.58;
}

.novo-step-arrow {
  color: #60778b;
  font-size: 17px;
}

.novo-method-control.is-active .novo-step-arrow {
  color: var(--novo-blue-strong);
  transform: translateX(2px);
}

.novo-method-visual {
  min-height: 412px;
  overflow: hidden;
  border: 1px solid #b9cee2;
  border-radius: 14px;
  background:
    linear-gradient(rgba(45, 126, 224, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 126, 224, 0.055) 1px, transparent 1px),
    #f4f8fd;
  background-size: 32px 32px;
  box-shadow: none;
}

.novo-method-visual::before,
.novo-method-visual::after {
  opacity: 0.35;
}

.novo-method-visual-head {
  min-height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid #c9d9e7;
  background: rgba(255,255,255,0.76);
  color: var(--novo-muted);
  backdrop-filter: blur(10px);
}

.novo-method-visual-head span,
.novo-method-visual-head b {
  color: var(--novo-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.novo-method-visual-head b {
  color: var(--novo-success);
}

.novo-method-visual-head b i {
  background: var(--novo-success);
}

.novo-method-panel {
  min-height: 352px;
  padding: 34px 28px 28px;
  color: var(--novo-ink);
}

.novo-method-panel.is-active {
  animation: novo6-panel-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes novo6-panel-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.novo-method-panel > p {
  align-items: center;
  border-top: 1px solid #cbdbe8;
  color: var(--novo-muted);
}

.novo-method-panel > p strong {
  color: var(--novo-ink-strong);
  font-size: 13px;
  font-weight: 600;
}

.novo-method-panel > p span {
  max-width: 330px;
  color: var(--novo-muted);
  font-size: 12px;
}

.novo-document-map small,
.novo-citation-map small {
  color: var(--novo-blue-strong);
}

.novo-document-map strong {
  color: var(--novo-ink-strong);
  font-weight: 600;
}

.novo-page-stack {
  border-color: #99b8d4;
  background: #fff;
  box-shadow: 12px 13px 0 #e4edf5, 22px 25px 0 #eef4f9, 0 18px 32px rgba(31, 72, 109, 0.12);
}

.novo-page-stack::after {
  background: var(--novo-blue-soft);
}

.novo-document-map span i,
.novo-field-chips span,
.novo-source-fragment,
.novo-review-map span {
  border-color: #bfd2e2;
  background: #fff;
  color: var(--novo-ink);
  box-shadow: none;
}

.novo-field-chips span {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 550;
}

.novo-review-map i {
  background: var(--novo-blue);
}

.novo-review-map {
  display: grid;
  grid-template-columns: 0.9fr 1.08fr 1.16fr;
  grid-template-rows: 1fr;
  gap: 9px;
  width: min(100%, 570px);
}

.novo-review-lane {
  min-width: 0;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid #bfd1e1;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 18px rgba(32, 72, 109, 0.05);
}

.novo-review-lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 9px;
  border-bottom: 1px solid #d6e2ec;
  background: #f8fbfe;
}

.novo-review-map .novo-review-lane-head span {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--novo-ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-align: left;
  text-transform: uppercase;
}

.novo-review-lane-head small {
  color: var(--novo-subtle);
  font-size: 8px;
  font-weight: 600;
}

.novo-mini-paper {
  display: grid;
  align-content: center;
  gap: 9px;
  width: calc(100% - 28px);
  height: 128px;
  margin: 13px auto;
  padding: 20px 13px;
  border: 1px solid #d3dfe8;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(31, 61, 89, 0.07);
}

.novo-mini-paper b {
  display: block;
  height: 3px;
  border-radius: 99px;
  background: #cbd8e3;
}

.novo-mini-paper b:nth-child(2),
.novo-mini-paper b:nth-child(4) {
  width: 82%;
}

.novo-mini-paper b.is-highlighted {
  width: calc(100% + 12px);
  height: 13px;
  margin-left: -6px;
  border-radius: 2px;
  background: #dcecff;
  box-shadow: none;
}

.novo-mini-rows {
  display: grid;
  gap: 7px;
  padding: 15px 10px;
}

.novo-mini-rows > b {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 5px;
  align-items: center;
  min-height: 39px;
  padding: 6px;
  border: 1px solid #d7e2eb;
  border-radius: 6px;
  background: #fff;
  color: var(--novo-muted);
  font-size: 9px;
  font-weight: 550;
  line-height: 1.25;
}

.novo-mini-rows > b.is-selected {
  border-color: #8eb9e7;
  background: var(--novo-blue-soft);
  box-shadow: none;
  color: var(--novo-ink);
}

.novo-mini-rows small {
  color: var(--novo-blue);
  font-size: 9px;
  font-weight: 700;
}

.novo-review-map .novo-mini-rows span {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.novo-mini-edit {
  display: grid;
  gap: 7px;
  padding: 15px 11px;
}

.novo-mini-edit em {
  justify-self: start;
  padding: 4px 7px;
  border: 1px solid #bee3d5;
  border-radius: 99px;
  background: var(--novo-success-soft);
  color: var(--novo-success);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.novo-mini-edit > small {
  margin-top: 2px;
  color: var(--novo-subtle);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.novo-mini-edit > strong {
  color: var(--novo-ink);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.novo-mini-edit > div {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 5px;
  margin-top: 3px;
}

.novo-mini-edit > div b {
  min-width: 0;
  padding: 7px 5px;
  border: 1px solid #d5e1eb;
  border-radius: 5px;
  background: #fff;
  color: var(--novo-muted);
  font-size: 8px;
  font-weight: 650;
  text-align: center;
}

.novo-review {
  background: #fff;
}

.novo-review-grid {
  grid-template-columns: 0.76fr 1.24fr;
  gap: 66px;
  align-items: center;
}

.novo-review-copy h2 {
  margin-top: 17px;
}

.novo-review-copy > p {
  margin-top: 24px;
}

.novo-review-copy ul {
  margin-top: 34px;
  border-top: 1px solid var(--novo-line);
}

.novo-review-copy li {
  grid-template-columns: 33px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--novo-line);
}

.novo-review-copy li > span {
  color: var(--novo-blue);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 650;
}

.novo-review-copy li[data-state="source"] > span {
  border-color: #b9ddcf;
  background: var(--novo-success-soft);
  color: var(--novo-success);
}

.novo-review-copy li[data-state="attention"] > span {
  border-color: #efd8a6;
  background: var(--novo-warning-soft);
  color: var(--novo-warning);
}

.novo-review-copy li strong {
  color: var(--novo-ink-strong);
  font-size: 13px;
  font-weight: 600;
}

.novo-review-copy li small {
  margin-top: 3px;
  color: var(--novo-muted);
  font-size: 12px;
  line-height: 1.52;
}

.novo-workspace-preview {
  overflow: hidden;
  border: 1px solid var(--novo-line-strong);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(25, 60, 94, 0.085);
}

.novo-workspace-preview:hover {
  border-color: var(--novo-line-strong);
  box-shadow: 0 24px 58px rgba(25, 60, 94, 0.085);
  transform: none;
}

.novo-preview-page { font-size: 10px; }
.novo-preview-sheet p { font-size: 9px; }
.novo-preview-record span,
.novo-preview-record p { font-size: 9px; }
.novo-match-label { font-size: 9px; }
.novo-preview-detail small { font-size: 8px; }
.novo-preview-detail strong { font-size: 10px; }
.novo-preview-save { min-height: 32px; font-size: 9px; }
.novo-preview-caption span { font-size: 9px; }

.novo-preview-topbar {
  border-bottom: 1px solid var(--novo-line);
  background: #f8fafc;
  color: var(--novo-muted);
}

.novo-preview-topbar b {
  color: var(--novo-blue-strong);
}

.novo-preview-body {
  background: #fff;
}

.novo-preview-pdf {
  border-right-color: var(--novo-line);
  background: #edf3f8;
}

.novo-preview-sheet {
  border-color: #d3dee7;
  box-shadow: 0 12px 28px rgba(26, 55, 82, 0.08);
}

.novo-preview-sheet .is-highlighted {
  background: #dfeeff;
  box-shadow: none;
}

.novo-preview-records {
  border-right-color: var(--novo-line);
  background: #fbfcfe;
}

.novo-preview-record {
  border-color: var(--novo-line);
  background: #fff;
  box-shadow: none;
}

.novo-preview-record.is-selected {
  border-color: #96bce8;
  background: var(--novo-blue-soft);
  box-shadow: none;
}

.novo-preview-detail {
  background: #fff;
}

.novo-match-label {
  border-color: #bfe3d6;
  background: var(--novo-success-soft);
  color: var(--novo-success);
}

.novo-preview-save {
  border-radius: 6px;
  background: var(--novo-blue);
}

.novo-preview-caption {
  border-top-color: var(--novo-line);
  background: #f8fafc;
  color: var(--novo-subtle);
}

.novo-preview-detail > small,
.novo-field-row small,
.novo-preview-record > span,
.novo-preview-page,
.novo-preview-caption span {
  color: #536b7e;
}

.novo-difficult {
  padding: 96px 0;
  border-block: 1px solid var(--novo-line);
  background:
    radial-gradient(circle at 84% 18%, rgba(47, 137, 244, 0.24), transparent 31%),
    radial-gradient(circle at 9% 92%, rgba(111, 87, 219, 0.14), transparent 36%),
    linear-gradient(142deg, #d9ecff 0%, #edf7ff 48%, #d5eaff 100%);
}

.novo-difficult-grid {
  grid-template-columns: 1fr 0.86fr;
  gap: 34px 70px;
}

.novo-difficult h2 {
  margin-top: 16px;
}

.novo-difficult-grid > p {
  align-self: end;
  margin: 0 0 5px;
}

.novo-difficult ul {
  grid-column: 1 / -1;
  gap: 10px;
  margin-top: 16px;
}

.novo-difficult li {
  min-height: 74px;
  border: 1px solid var(--novo-line);
  border-radius: 10px;
  background: #fff;
  color: var(--novo-ink);
  box-shadow: none;
  font-size: 12px;
  font-weight: 550;
}

.novo-difficult li:hover {
  border-color: var(--novo-line);
  background: #fff;
  transform: none;
}

.novo-difficult li svg {
  color: var(--novo-blue);
  stroke-width: 1.55;
}

.novo-output {
  background: #fff;
}

.novo-output-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 86px;
}

.novo-output h2 {
  margin-top: 16px;
}

.novo-output-copy > p {
  margin-top: 24px;
}

.novo-output-copy > a {
  margin-top: 27px;
  color: var(--novo-blue-strong);
  font-size: 12px;
  font-weight: 600;
}

.novo-format-table {
  overflow: hidden;
  border: 1px solid var(--novo-line-strong);
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.novo-format-table > div {
  grid-template-columns: minmax(160px, 1.12fr) repeat(3, 1fr);
  gap: 0;
  min-height: 86px;
  padding: 0;
  border-color: var(--novo-line);
}

.novo-format-table > div:hover {
  background: var(--novo-blue-pale);
}

.novo-format-table b {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: stretch;
  padding: 0 18px;
  background: #f8fbff;
  color: var(--novo-ink-strong);
  font-size: 13px;
  font-weight: 600;
}

.novo-format-table b::before {
  width: 3px;
  height: 18px;
  border-radius: 99px;
  background: var(--novo-blue);
  content: "";
}

.novo-format-table span {
  display: flex;
  gap: 9px;
  align-items: center;
  align-self: stretch;
  padding: 0 16px;
  border-left: 1px solid var(--novo-line);
  color: var(--novo-muted);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.novo-format-table span::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #76b2f5;
  content: "";
}

.novo-faq {
  border-top: 1px solid var(--novo-line);
  background: var(--novo-paper);
}

.novo-faq-grid {
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.novo-faq h2 {
  margin-top: 16px;
}

.novo-faq-list {
  border-top: 1px solid var(--novo-line-strong);
}

.novo-faq-list details {
  border-color: var(--novo-line);
}

.novo-faq-list summary {
  padding: 22px 42px 22px 0;
  color: var(--novo-ink-strong);
  font-size: 14px;
  font-weight: 550;
}

.novo-faq-list summary::after {
  top: 21px;
  right: 2px;
  color: var(--novo-blue);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 21px;
  font-weight: 400;
}

.novo-faq-list details[open] summary {
  color: var(--novo-blue-strong);
}

.novo-faq-list details[open] summary::after {
  content: "\2212";
  transform: none;
}

.novo-faq-list p {
  max-width: 660px;
  margin: 0 0 24px;
  padding: 0 46px 0 0;
  color: var(--novo-muted);
  font-size: 13px;
  line-height: 1.7;
}

.novo-faq-list details[open] p {
  animation: novo6-faq-answer-in 220ms ease both;
}

@keyframes novo6-faq-answer-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.novo-final {
  padding: 72px 0 84px;
  background: var(--novo-paper);
}

.novo-final-card {
  position: relative;
  min-height: 252px;
  overflow: hidden;
  padding: 54px 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 20%, rgba(86, 191, 255, 0.35), transparent 24%),
    linear-gradient(135deg, #073b83 0%, #0b60d5 55%, #278fff 100%);
  box-shadow: 0 30px 72px rgba(13, 77, 164, 0.22);
  color: #fff;
}

.novo-final-card::before {
  display: none;
}

.novo-final-card::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  display: block;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.novo-final-card > * {
  position: relative;
  z-index: 1;
}

.novo-final h2 {
  max-width: 680px;
  margin-top: 15px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 60px);
}

.novo-final-card .novo-overline {
  color: #bfe2ff;
}

.novo-secondary-upload {
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid #fff;
  border-radius: 11px;
  background: #fff;
  color: #0b58c5;
  box-shadow: 0 10px 24px rgba(3, 38, 94, 0.14);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.novo-secondary-upload:hover {
  border-color: #fff;
  background: #eaf5ff;
  color: #0847ad;
  transform: translateY(-1px);
}

.novo-footer {
  padding: 66px 0 36px;
  border-top: 1px solid var(--novo-line);
  background: #fff;
  color: var(--novo-muted);
}

.novo-footer-grid {
  border-bottom-color: var(--novo-line);
}

.novo-footer-brand p,
.novo-footer nav a,
.novo-footer-note small {
  color: var(--novo-muted);
}

.novo-footer nav span {
  color: var(--novo-subtle);
}

.novo-footer nav a:hover {
  color: var(--novo-blue-strong);
}

.novo-footer nav a {
  display: flex;
  align-items: center;
  min-height: 32px;
}

.novo-footer-note span {
  color: var(--novo-ink-strong);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.novo-instrument,
.novo-handoff,
body.novo6-page:not(.workspace-mode) .novo-status {
  border-width: 1.25px;
  border-color: #b8c9d7;
}

.novo-handoff {
  min-height: 52px;
}

.novo-handoff li {
  padding-block: 7px;
}

/* Novo4-inspired method system, tuned to the quieter Novo6 shell. */
.novo-method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 34%, rgba(38, 137, 255, 0.075), transparent 25%),
    linear-gradient(180deg, #f8fafc 0%, #f6f9fc 100%);
}

.novo-method::before {
  position: absolute;
  top: 170px;
  right: -250px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(27, 112, 226, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(31, 127, 244, 0.025),
    0 0 0 116px rgba(31, 127, 244, 0.018);
  content: "";
  pointer-events: none;
}

.novo-method > .novo-shell {
  position: relative;
  z-index: 1;
}

.novo-method-list {
  gap: 10px;
  border-top: 0;
}

.novo-method-list li {
  border-bottom: 0;
}

.novo-method-control {
  min-height: 124px;
  padding: 21px 18px;
  overflow: hidden;
  border: 1px solid #d2e0ec;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  transition:
    border-color 190ms ease,
    background 190ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.novo-method-control:hover {
  border: 1px solid #a8c9e8;
  background: #fff;
  box-shadow: 0 8px 22px rgba(25, 83, 141, 0.07);
  transform: translateY(-1px);
}

.novo-method-control::after {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #1267dd, #38a4ff);
}

.novo-method-control.is-active,
.novo-method-control.is-active:focus-visible,
body.novo6-page:not(.workspace-mode) .novo-method-control:focus-visible {
  border: 1px solid #77abe0;
  background: linear-gradient(135deg, #ebf5ff 0%, #f8fbff 100%);
  box-shadow: 0 13px 32px rgba(18, 83, 153, 0.1);
  transform: none;
}

.novo-method-control.is-active::after {
  transform: scaleX(1);
}

.novo-method-visual {
  min-height: 412px;
  border: 1px solid rgba(82, 160, 244, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 12%, rgba(93, 190, 255, 0.32), transparent 29%),
    radial-gradient(circle at 16% 94%, rgba(21, 111, 239, 0.24), transparent 35%),
    linear-gradient(145deg, #062d66 0%, #0a4fa9 52%, #0c73e6 100%);
  background-size: auto;
  color: #fff;
  box-shadow: 0 26px 64px rgba(8, 66, 142, 0.19);
}

.novo-method-visual::before {
  opacity: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom right, #000 0%, rgba(0, 0, 0, 0.82) 52%, transparent 92%);
}

.novo-method-visual-head {
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(3, 31, 70, 0.16);
  backdrop-filter: blur(8px);
}

.novo-method-visual-head span,
.novo-method-visual-head b {
  color: rgba(236, 247, 255, 0.88);
  font-weight: 650;
}

.novo-method-visual-head b {
  color: #d9fff1;
}

.novo-method-visual-head b i {
  background: #63e6b5;
  box-shadow: 0 0 0 5px rgba(99, 230, 181, 0.14), 0 0 16px rgba(99, 230, 181, 0.46);
}

.novo-method-panel {
  position: relative;
  min-height: 352px;
  padding: 34px 28px 28px;
  color: #fff;
}

.novo-method-panel > * {
  position: relative;
  z-index: 1;
}

.novo-method-panel > p {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: rgba(229, 243, 255, 0.78);
}

.novo-method-panel > p strong {
  color: #fff;
  font-weight: 650;
}

.novo-method-panel > p span {
  color: rgba(229, 243, 255, 0.76);
}

.novo-document-map small,
.novo-citation-map small {
  color: #acd9ff;
}

.novo-document-map strong {
  color: #fff;
  font-weight: 650;
}

.novo-page-stack {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(#fff, #edf6ff);
  box-shadow:
    12px 13px 0 rgba(255, 255, 255, 0.14),
    22px 25px 0 rgba(255, 255, 255, 0.075),
    0 18px 38px rgba(1, 25, 64, 0.3);
}

.novo-page-stack::after {
  border-left-color: #208cff;
  background: #ddecfb;
}

.novo-document-map div > span i {
  background: rgba(255, 255, 255, 0.19);
}

.novo-document-map div > span i:nth-child(-n+3) {
  background: #67d0ff;
  box-shadow: 0 0 12px rgba(103, 208, 255, 0.28);
}

.novo-source-fragment,
.novo-field-chips span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #f5faff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.novo-field-chips span {
  font-weight: 650;
}

.novo-review-lane {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 24px rgba(1, 29, 70, 0.14);
}

.novo-review-lane-head {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 35, 78, 0.2);
}

.novo-review-map .novo-review-lane-head span {
  color: #e9f6ff;
}

.novo-review-lane-head small {
  color: #acd6f7;
}

.novo-mini-paper,
.novo-mini-rows > b,
.novo-mini-edit > div b {
  border-color: rgba(195, 224, 247, 0.88);
  background: rgba(255, 255, 255, 0.95);
}

.novo-mini-rows > b.is-selected {
  border-color: #72b8ff;
  background: #e8f3ff;
  box-shadow: none;
}

.novo-mini-edit > small {
  color: #b8d8f2;
}

.novo-mini-edit > strong {
  color: #fff;
}

/* Novo3/Novo4-inspired review depth, kept within the Novo6 blue system. */
.novo-review {
  position: relative;
  overflow: hidden;
  border-block-color: #bfd8ec;
  background:
    radial-gradient(circle at 86% 19%, rgba(63, 157, 255, 0.2), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(61, 134, 224, 0.075), transparent 30%),
    linear-gradient(148deg, #eaf5ff 0%, #f7fbff 47%, #e8f4ff 100%);
}

.novo-review::before {
  position: absolute;
  top: 12%;
  right: -16%;
  width: 54%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 68%);
  content: "";
  pointer-events: none;
}

.novo-review > .novo-shell {
  position: relative;
  z-index: 1;
}

.novo-review-copy .novo-overline {
  color: #1069df;
  font-weight: 700;
}

.novo-review-copy > p {
  color: #526f88;
}

.novo-review-copy ul,
.novo-review-copy li {
  border-color: #c5dced;
}

.novo-review-copy li {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
}

.novo-review-copy li > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #b5d3ec;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #126fe8;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(23, 111, 242, 0.055);
}

.novo-review-copy li strong {
  color: #12334f;
  font-weight: 650;
}

.novo-review-copy li small {
  color: #58758d;
}

.novo-workspace-preview {
  border: 1.25px solid #b8c9d7;
  border-radius: 17px;
  background: #d9ecfb;
  box-shadow: 0 30px 76px rgba(14, 75, 139, 0.16);
  transition:
    border-color 240ms ease,
    box-shadow 340ms ease,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.novo-preview-topbar {
  border-bottom-color: #c7deef;
  background: rgba(255, 255, 255, 0.94);
  color: #5c758c;
}

.novo-preview-topbar i[data-state="source"] {
  background: #2788f7;
}

.novo-preview-topbar i[data-state="review"] {
  background: #d9921e;
  opacity: 0.94;
}

.novo-preview-topbar i[data-state="verified"] {
  background: #219a74;
  opacity: 0.92;
}

.novo-preview-topbar b {
  color: #1269df;
}

.novo-preview-pdf {
  border-right-color: #c7deef;
  background: linear-gradient(145deg, #d5eafa, #e4f2fc);
}

.novo-preview-sheet {
  border-color: #c7ddea;
  box-shadow: 0 12px 28px rgba(19, 73, 120, 0.12);
}

.novo-preview-sheet .is-highlighted {
  background: #dceeff;
}

.novo-preview-records {
  border-color: #c8deee;
  background: #f1f8fd;
}

.novo-preview-record {
  border-color: #d0e2ef;
  background: rgba(255, 255, 255, 0.92);
}

.novo-preview-record i {
  background: #4b9ff3;
}

.novo-preview-record[data-state="verified"] i {
  background: var(--novo-success);
  box-shadow: 0 0 0 3px rgba(22, 125, 93, 0.1);
}

.novo-preview-record[data-state="review"] i {
  background: var(--novo-warning);
}

.novo-preview-record.is-selected {
  border-color: #378bea;
  background: #f7fbff;
  box-shadow: 0 5px 16px rgba(23, 111, 242, 0.12);
}

.novo-preview-detail {
  background: rgba(255, 255, 255, 0.96);
}

.novo-match-label {
  border-color: #b9e2d3;
  background: #e9f8f2;
  color: #147057;
}

.novo-preview-save {
  border-radius: 7px;
  background: linear-gradient(135deg, #1676ee, #0b59cf);
  box-shadow: 0 8px 20px rgba(14, 93, 206, 0.16);
}

.novo-preview-caption {
  border-top-color: #c7deef;
  background: rgba(255, 255, 255, 0.94);
  color: #526e86;
}

.novo-preview-swipe-cue {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .novo-workspace-preview:hover {
    border-color: #7db2e1;
    box-shadow: 0 36px 86px rgba(14, 75, 139, 0.2);
    transform: translateY(-3px);
  }
}

html.novo6-motion-ready .novo-reveal {
  opacity: 0.62;
  transform: translateY(6px);
  transition: opacity 260ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.novo6-motion-ready .novo-reveal.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

body.novo6-page:not(.workspace-mode) :focus-visible {
  outline: 2px solid rgba(47, 134, 255, 0.9);
  outline-offset: 2px;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list summary:focus-visible {
  outline: none;
  outline-offset: 0;
  background: rgba(234, 243, 255, 0.72);
  box-shadow: inset 0 0 0 1px #8eb9e7;
}

@media (max-width: 1080px) {
  .novo-shell { width: min(100% - 48px, 960px); }
  .novo-nav { padding-inline: 24px; }
  .novo-hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr); gap: 42px; }
  .novo-hero h1 { font-size: clamp(50px, 5.45vw, 60px); }
  .novo-section-heading { grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); gap: 24px; }
  .novo-review-grid { grid-template-columns: 0.86fr 1.14fr; gap: 40px; }
  .novo-output-grid { gap: 54px; }
  .novo-proof-list small { white-space: normal; }
}

@media (max-width: 900px) {
  body.novo6-page:not(.workspace-mode) .novo-nav { grid-template-columns: 1fr auto; }
  .novo-nav-links { display: none; }
  .novo-hero { min-height: auto; padding: 54px 0 78px; }
  .novo-hero-orbit { top: 20px; right: -230px; opacity: 0.48; }
  .novo-hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .novo-hero-copy { max-width: 720px; }
  .novo-hero-copy { padding-top: 0; }
  .novo-hero h1 { max-width: 700px; font-size: clamp(54px, 8.8vw, 76px); }
  .novo-hero-lede { max-width: 630px; }
  .novo-upload-column { max-width: 610px; justify-self: center; }
  .novo-section-heading { grid-template-columns: 1fr; gap: 14px; }
  .novo-section-heading .novo-overline { margin-top: 0; }
  .novo-section-heading p { max-width: 600px; }
  .novo-method-stage,
  .novo-review-grid,
  .novo-output-grid,
  .novo-faq-grid { grid-template-columns: 1fr; }
  .novo-method-stage { gap: 34px; }
  .novo-method-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 0; }
  .novo-method-list li { border: 0; }
  .novo-method-list li + li { border-left: 0; }
  .novo-method-control { grid-template-columns: 1fr; min-height: 170px; align-content: start; gap: 10px; }
  .novo-method-control.is-active { box-shadow: inset 0 0 0 1px #9fc4ea; }
  .novo-step-arrow { display: none; }
  .novo-review-copy { max-width: 650px; }
  .novo-difficult-grid { grid-template-columns: 1fr; gap: 18px; }
  .novo-difficult ul { grid-column: 1; }
  .novo-output-grid,
  .novo-faq-grid { gap: 52px; }
  .novo-final-card { align-items: flex-start; flex-direction: column; justify-content: flex-start; gap: 36px; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .novo-method-list li { display: flex; }
  .novo-method-control { width: 100%; height: 100%; }
}

@media (min-width: 641px) and (max-width: 700px) {
  .novo-method-list { grid-template-columns: 1fr; gap: 8px; }
  .novo-method-list li { display: block; }
  .novo-method-control {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    min-height: 108px;
    padding: 16px;
  }
  .novo-step-arrow { display: block; }
}

@media (max-width: 640px) {
  html.novo6-document { scroll-padding-top: 64px; }
  .novo-shell { width: min(100% - 28px, 560px); }
  .novo-nav { min-height: 64px; padding-inline: 14px; }
  .novo-nav-actions > a { display: inline-flex; min-height: 40px; font-size: 12px; }
  .novo-wordmark { gap: 13px; }
  .novo-wordmark svg { width: 39px; height: 36px; }
  .novo-nav-actions button { min-height: 40px; border-radius: 7px; }
  .novo-hero { padding: 42px 0 66px; }
  .novo-hero-orbit { right: -340px; }
  .novo-kicker-row { align-items: flex-start; flex-direction: column; gap: 7px; margin-bottom: 23px; }
  .novo-no-account::before { display: none; }
  .novo-kicker,
  .novo-no-account { font-size: 9px; }
  .novo-hero h1 { font-size: clamp(43px, 13vw, 57px); line-height: 1; }
  .novo-hero-lede { margin-top: 22px; font-size: 15px; line-height: 1.62; }
  .novo-proof-list { display: grid; grid-template-columns: 1fr; margin-top: 31px; }
  .novo-proof-list li { padding: 13px 0; }
  .novo-proof-list li + li { padding-left: 0; border-top: 1px solid var(--novo-line); border-left: 0; }
  .novo-proof-list small { white-space: normal; }
  .novo-instrument { border-radius: 13px; }
  body.novo6-page:not(.workspace-mode) .novo-dropzone { min-height: 300px; padding: 24px 16px 21px; border-radius: 9px; }
  .novo-handoff { min-height: 52px; }
  .novo-handoff li { grid-template-columns: 1fr; gap: 2px; padding: 7px 5px; text-align: center; }
  .novo-handoff span { grid-row: auto; }
  .novo-handoff small { display: none; }
  .novo-method,
  .novo-review,
  .novo-output,
  .novo-faq { padding: 82px 0; }
  .novo-section-heading { margin-bottom: 40px; }
  .novo-section-heading h2,
  .novo-review-copy h2,
  .novo-difficult h2,
  .novo-output h2,
  .novo-faq h2 { font-size: clamp(38px, 11vw, 47px); }
  .novo-method-list { grid-template-columns: 1fr; gap: 8px; }
  .novo-method-control { grid-template-columns: 38px minmax(0,1fr) 20px; min-height: 108px; padding: 16px; }
  .novo-method-control.is-active { box-shadow: inset 0 0 0 1px #9fc4ea; }
  .novo-step-arrow { display: block; }
  .novo-method-visual { min-height: 370px; border-radius: 11px; }
  .novo-method-panel { min-height: 311px; padding: 25px 18px; }
  .novo-review-map { grid-template-columns: 0.86fr 1fr 1fr; gap: 5px; }
  .novo-review-lane { min-height: 184px; }
  .novo-review-lane-head { padding-inline: 6px; }
  .novo-review-lane-head small { display: none; }
  .novo-mini-paper { width: calc(100% - 14px); height: 116px; margin-block: 9px; padding-inline: 8px; }
  .novo-mini-rows { gap: 5px; padding: 10px 5px; }
  .novo-mini-rows > b { grid-template-columns: 14px minmax(0,1fr); padding: 4px; }
  .novo-mini-edit { padding: 10px 6px; }
  .novo-mini-edit > div { grid-template-columns: 0.72fr 1.28fr; }
  .novo-review-grid { gap: 42px; }
  .novo-workspace-preview { border-radius: 10px; }
  .novo-preview-body {
    display: flex;
    gap: 9px;
    min-height: 356px;
    padding: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    background: #eaf4fb;
    scroll-padding-inline: 10px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .novo-preview-body::-webkit-scrollbar { display: none; }
  .novo-preview-pdf,
  .novo-preview-records,
  .novo-preview-detail {
    display: block;
    flex: 0 0 80%;
    min-height: 336px;
    padding: 15px;
    border: 1px solid #c7deef;
    border-radius: 8px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .novo-preview-pdf { background: linear-gradient(145deg, #d5eafa, #e4f2fc); }
  .novo-preview-records { border-left: 1px solid #c7deef; }
  .novo-preview-sheet { min-height: 304px; padding: 26px 18px; }
  .novo-preview-swipe-cue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    padding: 0 13px;
    border-top: 1px solid #c7deef;
    background: rgba(255, 255, 255, 0.94);
    color: #526e86;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
  }
  .novo-preview-swipe-cue b { color: #1269df; font-size: 15px; line-height: 1; }
  .novo-preview-caption { display: none; }
  .novo-difficult { padding: 76px 0; }
  .novo-difficult ul { grid-template-columns: 1fr 1fr; gap: 8px; }
  .novo-difficult li { min-height: 82px; padding-inline: 10px; text-align: center; }
  .novo-format-table > div { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 0; }
  .novo-format-table b { grid-column: 1 / -1; min-height: 48px; border-bottom: 1px solid var(--novo-line); }
  .novo-format-table span {
    gap: 5px;
    min-height: 52px;
    padding-inline: 7px;
    border-left: 0;
    font-size: 11px;
    white-space: nowrap;
  }
  .novo-format-table span::before { width: 4px; height: 4px; flex-basis: 4px; }
  .novo-format-table span + span { border-left: 1px solid var(--novo-line); }
  .novo-format-table span:last-child { grid-column: auto; border-top: 0; border-left: 1px solid var(--novo-line); }
  .novo-final { padding: 24px 0 62px; }
  .novo-final-card { min-height: 310px; align-items: flex-start; flex-direction: column; padding: 38px 25px; border-radius: 11px; }
  .novo-final h2 { font-size: clamp(39px, 11vw, 48px); }
  .novo-secondary-upload { width: 100%; justify-content: center; }
  .novo-footer { padding-top: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .novo-hero-orbit span,
  .novo-scan-line,
  .novo-method-panel.is-active { animation: none !important; }
  html.novo6-motion-ready .novo-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Novo6 review workspace
   The extraction engine and workspace markup stay untouched. This layer only
   translates the complete post-processing interface into the Novo6 language.
   -------------------------------------------------------------------------- */

body.novo6-page.workspace-mode {
  --workspace-header-height: 76px !important;
  --ws-paper: #edf4fa;
  --ws-surface: #ffffff;
  --ws-surface-soft: #f5f9fd;
  --ws-surface-blue: #edf5ff;
  --ws-ink: #0b2235;
  --ws-ink-soft: #29465d;
  --ws-muted: #617789;
  --ws-subtle: #7c8e9c;
  --ws-line: #d4e1eb;
  --ws-line-strong: #b9cedd;
  --ws-blue: #1468e8;
  --ws-blue-strong: #0758cf;
  --ws-blue-bright: #2f86ff;
  --ws-blue-soft: #eaf3ff;
  --ws-green: #167d5d;
  --ws-green-soft: #edf8f4;
  --ws-amber: #a86508;
  --ws-amber-soft: #fff7e7;
  --ws-red: #c33e4f;
  --ws-red-soft: #fff2f4;
  overflow: hidden !important;
  background: var(--ws-paper) !important;
  color: var(--ws-ink) !important;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  -webkit-font-smoothing: antialiased;
}

body.novo6-page.workspace-mode *,
body.novo6-page.workspace-mode *::before,
body.novo6-page.workspace-mode *::after {
  box-sizing: border-box;
}

body.novo6-page.workspace-mode button,
body.novo6-page.workspace-mode input,
body.novo6-page.workspace-mode textarea,
body.novo6-page.workspace-mode select,
body.novo6-page.workspace-mode summary {
  font-family: inherit !important;
}

body.novo6-page.workspace-mode button,
body.novo6-page.workspace-mode summary,
body.novo6-page.workspace-mode [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

body.novo6-page.workspace-mode :focus-visible {
  outline: 3px solid rgba(47, 134, 255, 0.26) !important;
  outline-offset: 2px !important;
}

body.novo6-page.workspace-mode .results-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100 !important;
  display: block !important;
  min-height: 100dvh !important;
  overflow: hidden !important;
  background: var(--ws-paper) !important;
}

body.novo6-page.workspace-mode .results-panel::before {
  display: none !important;
}

body.novo6-page.workspace-mode .workspace-header {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  z-index: 160 !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr) auto !important;
  gap: 20px !important;
  align-items: center !important;
  width: 100% !important;
  height: var(--workspace-header-height) !important;
  min-height: var(--workspace-header-height) !important;
  padding: 11px 18px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(185, 206, 221, 0.88) !important;
  background: #fff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.novo6-page.workspace-mode .workspace-header > #scorecard-grid {
  display: none !important;
}

body.novo6-page.workspace-mode .workspace-document {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.novo6-page.workspace-mode .exit-workspace-button {
  display: inline-flex !important;
  gap: 7px !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 142px !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.035em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease !important;
}

body.novo6-page.workspace-mode .exit-workspace-button:hover {
  border-color: #8eb9df !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  transform: none !important;
}

body.novo6-page.workspace-mode .workspace-document-copy {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
  padding: 0 !important;
}

body.novo6-page.workspace-mode .workspace-document-copy > span {
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
  letter-spacing: 0.095em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .workspace-document #workspace-file-name {
  display: block !important;
  max-width: min(27vw, 380px) !important;
  overflow: hidden !important;
  color: var(--ws-ink) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.25 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.novo6-page.workspace-mode #workspace-inline-progress {
  display: block !important;
  max-width: min(27vw, 380px) !important;
  overflow: hidden !important;
  color: var(--ws-muted) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.novo6-page.workspace-mode #workspace-inline-progress[hidden] {
  display: none !important;
}

body.novo6-page.workspace-mode .workspace-actions {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.novo6-page.workspace-mode .workspace-summary-button,
body.novo6-page.workspace-mode .workspace-actions .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 104px !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 15px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  letter-spacing: -0.005em !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease !important;
}

body.novo6-page.workspace-mode .workspace-summary-button {
  display: grid !important;
  gap: 1px !important;
  min-width: 154px !important;
  justify-items: start !important;
  padding-inline: 13px !important;
  text-align: left !important;
}

body.novo6-page.workspace-mode .workspace-summary-button span {
  color: var(--ws-ink) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
}

body.novo6-page.workspace-mode .workspace-summary-button strong {
  color: var(--ws-subtle) !important;
  font-size: 9px !important;
  font-weight: 550 !important;
}

body.novo6-page.workspace-mode .workspace-summary-button:hover,
body.novo6-page.workspace-mode .workspace-actions .button:hover {
  border-color: #8eb9df !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  transform: none !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-enrich-button {
  border-color: #b7d3ed !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-match-button {
  border-color: #eed8ab !important;
  background: #fffaf0 !important;
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-quality-button {
  border-color: #bce1d3 !important;
  background: var(--ws-green-soft) !important;
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-export-button {
  min-width: 96px !important;
  border-color: var(--ws-blue) !important;
  background: var(--ws-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-export-button:hover {
  border-color: #064fbd !important;
  background: #0a57c4 !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .mobile-workspace-tabs {
  display: none !important;
}

body.novo6-page.workspace-mode .workspace-grid {
  position: fixed !important;
  inset: var(--workspace-header-height) 0 0 !important;
  z-index: 110 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 13px 14px 14px !important;
  overflow: hidden !important;
  background: transparent !important;
  transition: grid-template-columns 240ms cubic-bezier(0.2, 0.72, 0.2, 1) !important;
}

body.novo6-page.workspace-mode .workspace-pane {
  position: relative !important;
  min-width: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border: 1.25px solid var(--ws-line-strong) !important;
  border-radius: 8px !important;
  background: var(--ws-surface) !important;
  box-shadow: 0 2px 8px rgba(23, 62, 95, 0.05) !important;
  color: var(--ws-ink) !important;
}

body.novo6-page.workspace-mode .workspace-pane::after {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 4 !important;
  height: 3px !important;
  background: var(--ws-blue-strong) !important;
  content: "" !important;
  pointer-events: none !important;
}

body.novo6-page.workspace-mode .reference-list-pane::after {
  background: var(--ws-blue) !important;
}

body.novo6-page.workspace-mode .reference-detail::after {
  background: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .reference-detail[data-status="review"]::after {
  background: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .reference-detail[data-status="unresolved"]::after {
  background: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .pane-header,
body.novo6-page.workspace-mode .detail-sticky-header {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-height: 78px !important;
  padding: 15px 17px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ws-line) !important;
  background: #f9fbfd !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .pane-kicker,
body.novo6-page.workspace-mode .detail-kicker {
  margin: 0 0 4px !important;
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .reference-list-pane .pane-kicker {
  color: var(--ws-blue) !important;
}

body.novo6-page.workspace-mode .reference-detail .detail-kicker {
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .reference-detail[data-status="review"] .detail-kicker {
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .reference-detail[data-status="unresolved"] .detail-kicker {
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .pane-header h2,
body.novo6-page.workspace-mode .reference-detail h2,
body.novo6-page.workspace-mode .reference-detail h3 {
  margin: 0 !important;
  color: var(--ws-ink) !important;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 620 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
}

body.novo6-page.workspace-mode .pane-header-actions {
  display: flex !important;
  gap: 7px !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

body.novo6-page.workspace-mode .icon-button,
body.novo6-page.workspace-mode .tool-button,
body.novo6-page.workspace-mode .detail-next-button {
  display: inline-grid !important;
  place-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease !important;
}

body.novo6-page.workspace-mode .icon-button:hover,
body.novo6-page.workspace-mode .tool-button:hover,
body.novo6-page.workspace-mode .detail-next-button:hover {
  border-color: #8eb9df !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  transform: none !important;
}

body.novo6-page.workspace-mode #pdf-page-label {
  min-width: 68px !important;
  color: var(--ws-muted) !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;
}

body.novo6-page.workspace-mode .pdf-tools {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  gap: 7px !important;
  align-items: center !important;
  min-height: 50px !important;
  padding: 7px 14px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ws-line) !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .pdf-tools .tool-button {
  width: auto !important;
  min-width: 36px !important;
  padding: 0 10px !important;
  font-size: 11px !important;
}

body.novo6-page.workspace-mode .pdf-tools #pdf-focus-button {
  margin-left: auto !important;
}

body.novo6-page.workspace-mode #pdf-zoom-label {
  min-width: 38px !important;
  color: var(--ws-muted) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  text-align: center !important;
}

body.novo6-page.workspace-mode .pdf-source-status {
  min-height: 38px !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid #cfe0ed !important;
  background: #edf6ff !important;
  color: #356788 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

body.novo6-page.workspace-mode .pdf-viewer {
  height: calc(100% - 166px) !important;
  min-height: 0 !important;
  overflow: auto !important;
  background: #183b60 !important;
  scrollbar-color: rgba(207, 227, 243, 0.68) rgba(9, 35, 58, 0.18) !important;
  scrollbar-width: thin !important;
}

body.novo6-page.workspace-mode .pdf-viewer::-webkit-scrollbar,
body.novo6-page.workspace-mode .reference-list::-webkit-scrollbar,
body.novo6-page.workspace-mode .detail-page-body::-webkit-scrollbar,
body.novo6-page.workspace-mode .utility-scroll-body::-webkit-scrollbar,
body.novo6-page.workspace-mode .review-menu-list::-webkit-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

body.novo6-page.workspace-mode .pdf-viewer::-webkit-scrollbar-track,
body.novo6-page.workspace-mode .reference-list::-webkit-scrollbar-track,
body.novo6-page.workspace-mode .detail-page-body::-webkit-scrollbar-track,
body.novo6-page.workspace-mode .utility-scroll-body::-webkit-scrollbar-track,
body.novo6-page.workspace-mode .review-menu-list::-webkit-scrollbar-track {
  background: transparent !important;
}

body.novo6-page.workspace-mode .pdf-viewer::-webkit-scrollbar-thumb,
body.novo6-page.workspace-mode .reference-list::-webkit-scrollbar-thumb,
body.novo6-page.workspace-mode .detail-page-body::-webkit-scrollbar-thumb,
body.novo6-page.workspace-mode .utility-scroll-body::-webkit-scrollbar-thumb,
body.novo6-page.workspace-mode .review-menu-list::-webkit-scrollbar-thumb {
  border: 2px solid transparent !important;
  border-radius: 999px !important;
  background: #9eb3c3 !important;
  background-clip: padding-box !important;
}

body.novo6-page.workspace-mode .pdf-canvas-wrap {
  min-width: 100% !important;
  padding: 18px !important;
}

body.novo6-page.workspace-mode .pdf-canvas-wrap canvas,
body.novo6-page.workspace-mode .pdf-native-frame {
  border: 0 !important;
  border-radius: 3px !important;
  background: #fff !important;
  box-shadow: 0 3px 10px rgba(1, 18, 34, 0.24) !important;
}

body.novo6-page.workspace-mode .pdf-placeholder {
  min-height: 100% !important;
  padding: 28px !important;
  background: transparent !important;
}

body.novo6-page.workspace-mode .sample-paper {
  border: 1px solid #dbe4eb !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: 0 3px 10px rgba(1, 18, 34, 0.22) !important;
}

body.novo6-page.workspace-mode .reference-list-header {
  gap: 12px !important;
}

body.novo6-page.workspace-mode .reference-list-actions {
  display: flex !important;
  gap: 7px !important;
  align-items: center !important;
  min-width: 0 !important;
}

body.novo6-page.workspace-mode .review-menu {
  position: relative !important;
  width: auto !important;
  margin: 0 !important;
}

body.novo6-page.workspace-mode .review-menu > summary {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-width: 106px !important;
  min-height: 38px !important;
  padding: 0 11px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  cursor: pointer !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  list-style: none !important;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease !important;
}

body.novo6-page.workspace-mode .review-menu > summary::-webkit-details-marker {
  display: none !important;
}

body.novo6-page.workspace-mode .review-menu > summary::after {
  width: 7px !important;
  height: 7px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  content: "" !important;
  transform: translateY(-2px) rotate(45deg) !important;
  transition: transform 160ms ease !important;
}

body.novo6-page.workspace-mode .review-menu[open] > summary {
  border-color: #87b7e0 !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode .review-menu[open] > summary::after {
  transform: translateY(2px) rotate(225deg) !important;
}

body.novo6-page.workspace-mode .reference-filter-menu > summary {
  min-width: 142px !important;
}

body.novo6-page.workspace-mode .reference-filter-menu > summary span {
  min-width: 0 !important;
  max-width: 104px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.novo6-page.workspace-mode .reference-filter-menu > summary strong {
  display: grid !important;
  place-items: center !important;
  min-width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
}

body.novo6-page.workspace-mode .review-menu-list {
  position: absolute !important;
  top: calc(100% + 7px) !important;
  right: 0 !important;
  z-index: 190 !important;
  display: grid !important;
  width: 244px !important;
  max-height: min(360px, calc(100dvh - 150px)) !important;
  overflow: auto !important;
  padding: 7px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(21, 57, 88, 0.12) !important;
  backdrop-filter: none !important;
}

body.novo6-page.workspace-mode .review-menu-list button {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-height: 40px !important;
  padding: 0 11px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: var(--ws-ink-soft) !important;
  cursor: pointer !important;
  font-size: 11px !important;
  font-weight: 550 !important;
  text-align: left !important;
}

body.novo6-page.workspace-mode .review-menu-list button:hover,
body.novo6-page.workspace-mode .review-menu-list button.is-active {
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode .review-menu-list button[data-filter="ready"] {
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .review-menu-list button[data-filter="review"] {
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .review-menu-list button[data-filter="unresolved"],
body.novo6-page.workspace-mode .review-menu-list button[data-filter="conflicts"] {
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .review-menu-list button span {
  display: grid !important;
  place-items: center !important;
  min-width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  background: #f1f5f8 !important;
  color: currentColor !important;
  font-size: 9px !important;
  font-weight: 700 !important;
}

body.novo6-page.workspace-mode .reference-list {
  height: calc(100% - 78px) !important;
  min-height: 0 !important;
  overflow: auto !important;
  background: #fff !important;
  scrollbar-color: #9eb3c3 transparent !important;
  scrollbar-width: thin !important;
}

body.novo6-page.workspace-mode .reference-row {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: start !important;
  min-height: 108px !important;
  margin: 0 !important;
  padding: 14px 14px 13px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ws-line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--ws-ink) !important;
  cursor: pointer !important;
  transition: background 150ms ease, box-shadow 150ms ease !important;
}

body.novo6-page.workspace-mode .reference-row::before {
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 3px !important;
  background: transparent !important;
  content: "" !important;
  transition: background 150ms ease !important;
}

body.novo6-page.workspace-mode .reference-row:hover {
  background: #f8fbfe !important;
}

body.novo6-page.workspace-mode .reference-row.is-selected {
  background: #edf5ff !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .reference-row.is-selected::before {
  background: var(--ws-blue) !important;
}

body.novo6-page.workspace-mode .reference-row > input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  margin: 2px 0 0 !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 4px !important;
  accent-color: var(--ws-blue) !important;
}

body.novo6-page.workspace-mode .reference-row > div:nth-child(2) {
  min-width: 0 !important;
}

body.novo6-page.workspace-mode .reference-row strong {
  display: block !important;
  color: var(--ws-ink) !important;
  font-size: 12px !important;
  font-weight: 620 !important;
  letter-spacing: -0.012em !important;
  line-height: 1.38 !important;
}

body.novo6-page.workspace-mode .reference-row .paper-order {
  display: inline-grid !important;
  place-items: center !important;
  min-width: 22px !important;
  height: 22px !important;
  margin-right: 6px !important;
  border: 1px solid #c4d9ea !important;
  border-radius: 6px !important;
  background: #f7fbff !important;
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
  vertical-align: -1px !important;
}

body.novo6-page.workspace-mode .reference-row p {
  max-width: 100% !important;
  margin: 6px 0 0 !important;
  overflow: hidden !important;
  color: var(--ws-muted) !important;
  font-size: 10px !important;
  font-weight: 450 !important;
  line-height: 1.4 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.novo6-page.workspace-mode .reference-row-meta {
  display: flex !important;
  gap: 5px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-top: 8px !important;
}

body.novo6-page.workspace-mode .reference-row-meta > span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;
  padding: 0 7px !important;
  border: 1px solid #d4e1eb !important;
  border-radius: 999px !important;
  background: #f7fafc !important;
  color: var(--ws-muted) !important;
  font-size: 8px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

body.novo6-page.workspace-mode .status-pill[data-status="ready"] {
  border-color: #b9dfd0 !important;
  background: var(--ws-green-soft) !important;
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .status-pill[data-status="review"] {
  border-color: #efd8a6 !important;
  background: var(--ws-amber-soft) !important;
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .status-pill[data-status="unresolved"] {
  border-color: #efc2c8 !important;
  background: var(--ws-red-soft) !important;
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .reference-row-actions {
  display: none !important;
  gap: 5px !important;
  justify-items: stretch !important;
  width: 100px !important;
  opacity: 0 !important;
  transition: opacity 150ms ease !important;
}

body.novo6-page.workspace-mode .reference-row:hover .reference-row-actions,
body.novo6-page.workspace-mode .reference-row.is-selected .reference-row-actions,
body.novo6-page.workspace-mode .reference-row:focus-within .reference-row-actions {
  opacity: 1 !important;
}

body.novo6-page.workspace-mode .reference-row-actions button {
  min-height: 30px !important;
  padding: 0 8px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  font-size: 8px !important;
  font-weight: 650 !important;
  line-height: 1.15 !important;
}

body.novo6-page.workspace-mode .reference-row-actions button:first-child {
  border-color: #a9cbed !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode .reference-row-actions .is-active {
  border-color: #efc2c8 !important;
  background: var(--ws-red-soft) !important;
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .status-line {
  margin: 0 !important;
  padding: 28px 20px !important;
  color: var(--ws-muted) !important;
  font-size: 12px !important;
  text-align: center !important;
}

body.novo6-page.workspace-mode .reference-detail {
  display: flex !important;
  flex-direction: column !important;
}

body.novo6-page.workspace-mode .detail-sticky-header {
  position: sticky !important;
  top: 0 !important;
  flex: 0 0 auto !important;
}

body.novo6-page.workspace-mode .detail-sticky-copy {
  min-width: 0 !important;
}

body.novo6-page.workspace-mode .detail-page-body,
body.novo6-page.workspace-mode .detail-empty-state {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow: auto !important;
  background: #fff !important;
  scrollbar-color: #9eb3c3 transparent !important;
  scrollbar-width: thin !important;
}

body.novo6-page.workspace-mode .detail-page-body {
  padding-top: 0 !important;
}

body.novo6-page.workspace-mode .detail-empty-state {
  display: grid !important;
  place-content: center !important;
  min-height: 240px !important;
  padding: 36px !important;
  text-align: center !important;
}

body.novo6-page.workspace-mode .detail-empty-state p {
  max-width: 360px !important;
  margin: 0 auto !important;
  color: var(--ws-muted) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}

body.novo6-page.workspace-mode .detail-actions {
  position: sticky !important;
  top: 0 !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  padding: 13px 16px !important;
  border-bottom: 1px solid var(--ws-line) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  margin-top: 0 !important;
}

body.novo6-page.workspace-mode .detail-actions button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 0 11px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.18 !important;
  text-align: center !important;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease !important;
}

body.novo6-page.workspace-mode .detail-actions button:hover {
  border-color: #8eb9df !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  transform: translateY(-1px) !important;
}

body.novo6-page.workspace-mode .detail-actions button[data-action="save"] {
  border-color: var(--ws-blue) !important;
  background: linear-gradient(135deg, #1f7bf1, #0b59cf) !important;
  color: #fff !important;
  box-shadow: 0 8px 19px rgba(14, 93, 206, 0.16) !important;
}

body.novo6-page.workspace-mode .detail-actions button[data-action="advanced-match"] {
  border-color: #ecd6a5 !important;
  background: #fffaf0 !important;
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .detail-section,
body.novo6-page.workspace-mode .reference-intelligence,
body.novo6-page.workspace-mode .status-explanation {
  margin: 0 !important;
  padding: 18px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ws-line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .detail-section-heading,
body.novo6-page.workspace-mode .reference-intelligence-head {
  display: flex !important;
  gap: 16px !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  border: 0 !important;
}

body.novo6-page.workspace-mode .detail-section-heading > span,
body.novo6-page.workspace-mode .reference-intelligence-head > strong {
  color: var(--ws-ink-soft) !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .detail-section-heading > small,
body.novo6-page.workspace-mode .reference-intelligence-head > span {
  color: var(--ws-subtle) !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: right !important;
}

body.novo6-page.workspace-mode .raw-section {
  background: #fbfdff !important;
}

body.novo6-page.workspace-mode .field-control,
body.novo6-page.workspace-mode .detail-grid label {
  display: grid !important;
  gap: 6px !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: var(--ws-muted) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .field-control input,
body.novo6-page.workspace-mode .field-control textarea,
body.novo6-page.workspace-mode .detail-grid input,
body.novo6-page.workspace-mode .detail-grid textarea,
body.novo6-page.workspace-mode .detail-grid select {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 40px !important;
  margin: 0 !important;
  padding: 9px 11px !important;
  border: 1px solid #cbdbe7 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ws-ink) !important;
  box-shadow: inset 0 1px 1px rgba(20, 55, 82, 0.018) !important;
  font-size: 11px !important;
  font-weight: 520 !important;
  letter-spacing: -0.006em !important;
  line-height: 1.35 !important;
  text-transform: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease !important;
}

body.novo6-page.workspace-mode .field-control textarea {
  min-height: 108px !important;
  resize: vertical !important;
}

body.novo6-page.workspace-mode .field-control input:hover,
body.novo6-page.workspace-mode .field-control textarea:hover,
body.novo6-page.workspace-mode .detail-grid input:hover,
body.novo6-page.workspace-mode .detail-grid textarea:hover,
body.novo6-page.workspace-mode .detail-grid select:hover {
  border-color: #a9c6db !important;
}

body.novo6-page.workspace-mode .field-control input:focus,
body.novo6-page.workspace-mode .field-control textarea:focus,
body.novo6-page.workspace-mode .detail-grid input:focus,
body.novo6-page.workspace-mode .detail-grid textarea:focus,
body.novo6-page.workspace-mode .detail-grid select:focus {
  border-color: var(--ws-blue-bright) !important;
  background: #fcfeff !important;
  box-shadow: 0 0 0 3px rgba(47, 134, 255, 0.12) !important;
  outline: 0 !important;
}

body.novo6-page.workspace-mode .detail-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px 10px !important;
}

body.novo6-page.workspace-mode .detail-grid label:first-child,
body.novo6-page.workspace-mode .detail-grid label:nth-child(2),
body.novo6-page.workspace-mode .detail-grid label:last-child {
  grid-column: 1 / -1 !important;
}

body.novo6-page.workspace-mode .status-explanation {
  padding: 0 !important;
}

body.novo6-page.workspace-mode .status-explanation-header {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 11px !important;
  align-items: center !important;
  min-height: 66px !important;
  padding: 13px 16px !important;
  cursor: pointer !important;
  list-style: none !important;
}

body.novo6-page.workspace-mode .status-explanation-header::-webkit-details-marker {
  display: none !important;
}

body.novo6-page.workspace-mode .status-explanation-header > span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 25px !important;
  padding: 0 8px !important;
  border: 1px solid #b9dfd0 !important;
  border-radius: 999px !important;
  background: var(--ws-green-soft) !important;
  color: var(--ws-green) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  width: auto !important;
}

body.novo6-page.workspace-mode .status-explanation[data-status="review"] .status-explanation-header > span {
  border-color: #efd8a6 !important;
  background: var(--ws-amber-soft) !important;
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .status-explanation[data-status="unresolved"] .status-explanation-header > span {
  border-color: #efc2c8 !important;
  background: var(--ws-red-soft) !important;
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .status-explanation-header p {
  margin: 0 !important;
  color: var(--ws-muted) !important;
  font-size: 10px !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  line-height: 1.45 !important;
}

body.novo6-page.workspace-mode .status-summary-cue {
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 650 !important;
  grid-column: 3 !important;
  grid-row: 1 !important;
  white-space: nowrap !important;
}

body.novo6-page.workspace-mode .status-explanation[open] .status-summary-cue {
  font-size: 0 !important;
}

body.novo6-page.workspace-mode .status-explanation[open] .status-summary-cue::before {
  content: "Hide checks" !important;
  font-size: 9px !important;
}

body.novo6-page.workspace-mode .status-explanation-body {
  padding: 0 16px 17px !important;
  border-top: 1px solid var(--ws-line) !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .status-check-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 7px !important;
  margin: 14px 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.novo6-page.workspace-mode .status-check-grid li {
  display: grid !important;
  gap: 3px !important;
  min-height: 54px !important;
  padding: 9px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .status-check-grid li span {
  color: var(--ws-subtle) !important;
  font-size: 8px !important;
  font-weight: 650 !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .status-check-grid li strong {
  color: var(--ws-ink-soft) !important;
  font-size: 9px !important;
  font-weight: 650 !important;
  line-height: 1.3 !important;
}

body.novo6-page.workspace-mode .status-check-grid li[data-state="good"] {
  border-color: #c8e6db !important;
  background: var(--ws-green-soft) !important;
}

body.novo6-page.workspace-mode .status-check-grid li[data-state="warn"] {
  border-color: #efdcb5 !important;
  background: var(--ws-amber-soft) !important;
}

body.novo6-page.workspace-mode .status-check-grid li[data-state="bad"] {
  border-color: #efc7cc !important;
  background: var(--ws-red-soft) !important;
}

body.novo6-page.workspace-mode .status-reason-block {
  margin-top: 10px !important;
  padding: 12px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .status-reason-block > strong {
  color: var(--ws-ink-soft) !important;
  font-size: 9px !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .status-reason-block ul,
body.novo6-page.workspace-mode .reference-intelligence-body ul {
  margin: 8px 0 0 !important;
  padding-left: 17px !important;
  color: var(--ws-muted) !important;
  font-size: 10px !important;
  line-height: 1.55 !important;
}

body.novo6-page.workspace-mode .reference-intelligence-head {
  display: grid !important;
  gap: 4px !important;
}

body.novo6-page.workspace-mode .reference-intelligence-head > span {
  text-align: left !important;
}

body.novo6-page.workspace-mode .reference-intelligence-body {
  display: grid !important;
  gap: 7px !important;
  padding-top: 10px !important;
}

body.novo6-page.workspace-mode .reference-intelligence-body details {
  overflow: hidden !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .reference-intelligence-body summary {
  min-height: 40px !important;
  padding: 11px 36px 11px 12px !important;
  background: #f8fbfd !important;
  color: var(--ws-ink-soft) !important;
  cursor: pointer !important;
  font-size: 10px !important;
  font-weight: 650 !important;
}

body.novo6-page.workspace-mode .reference-intelligence-body details > ul,
body.novo6-page.workspace-mode .reference-intelligence-body details > p {
  margin: 0 !important;
  padding: 11px 14px 13px 29px !important;
  border-top: 1px solid var(--ws-line) !important;
  background: #fff !important;
  color: var(--ws-muted) !important;
  font-size: 10px !important;
  line-height: 1.55 !important;
}

body.novo6-page.workspace-mode .match-list {
  display: grid !important;
  gap: 8px !important;
}

body.novo6-page.workspace-mode .match-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 12px !important;
  align-items: center !important;
  min-height: 76px !important;
  padding: 12px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 9px !important;
  background: var(--ws-surface-soft) !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .candidate-card-main {
  display: grid !important;
  gap: 4px !important;
  min-width: 0 !important;
}

body.novo6-page.workspace-mode .match-card strong {
  color: var(--ws-ink) !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
}

body.novo6-page.workspace-mode .match-card span,
body.novo6-page.workspace-mode .match-card small {
  color: var(--ws-muted) !important;
  font-size: 9px !important;
  line-height: 1.4 !important;
}

body.novo6-page.workspace-mode .match-card button {
  min-height: 34px !important;
  padding: 0 10px !important;
  border: 1px solid #a9cbed !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 650 !important;
}

body.novo6-page.workspace-mode .candidate-empty {
  grid-template-columns: 1fr !important;
  background: #fafcfe !important;
}

body.novo6-page.workspace-mode .workspace-summary-popover[hidden] {
  display: none !important;
}

body.novo6-page.workspace-mode .workspace-summary-popover {
  position: fixed !important;
  inset: 0 !important;
  z-index: 260 !important;
  display: grid !important;
  place-items: center !important;
  padding: 20px !important;
}

body.novo6-page.workspace-mode .workspace-summary-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(7, 27, 45, 0.36) !important;
  backdrop-filter: blur(8px) !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog {
  position: relative !important;
  z-index: 1 !important;
  width: min(680px, calc(100vw - 40px)) !important;
  max-height: calc(100dvh - 40px) !important;
  overflow: auto !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 36px 100px rgba(5, 28, 48, 0.28) !important;
}

body.novo6-page.workspace-mode .workspace-summary-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 4px 16px !important;
  align-items: center !important;
  padding: 20px 22px !important;
  border-bottom: 1px solid var(--ws-line) !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(47, 134, 255, 0.13), transparent 38%),
    #f8fbff !important;
}

body.novo6-page.workspace-mode .workspace-summary-head > span {
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .workspace-summary-head h2 {
  margin: 0 !important;
  color: var(--ws-ink) !important;
  font-size: 24px !important;
  font-weight: 620 !important;
  letter-spacing: -0.035em !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog .workspace-summary-head > span,
body.novo6-page.workspace-mode .workspace-summary-dialog .workspace-summary-head h2 {
  grid-column: 1 !important;
  justify-self: start !important;
  text-align: left !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog .workspace-summary-head > span {
  grid-row: 1 !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog .workspace-summary-head h2 {
  grid-row: 2 !important;
}

body.novo6-page.workspace-mode .workspace-summary-head .icon-button {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog .scorecard-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 18px !important;
}

body.novo6-page.workspace-mode .score-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 4px !important;
  align-content: center !important;
  justify-items: start !important;
  min-width: 0 !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 13px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 10px !important;
  background: var(--ws-surface-soft) !important;
  color: var(--ws-ink) !important;
  box-shadow: none !important;
  text-align: left !important;
}

body.novo6-page.workspace-mode button.score-card {
  cursor: pointer !important;
}

body.novo6-page.workspace-mode button.score-card:hover,
body.novo6-page.workspace-mode .score-card.is-active {
  border-color: #9ac3e8 !important;
  background: var(--ws-blue-soft) !important;
}

body.novo6-page.workspace-mode .score-card strong {
  color: var(--ws-ink) !important;
  font-size: 24px !important;
  font-weight: 620 !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
}

body.novo6-page.workspace-mode .score-card span {
  color: var(--ws-muted) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
}

body.novo6-page.workspace-mode .score-card[data-tone="ready"] {
  border-color: #c7e4d9 !important;
  background: var(--ws-green-soft) !important;
}

body.novo6-page.workspace-mode .score-card[data-tone="ready"] strong {
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .score-card[data-tone="review"] {
  border-color: #efddb8 !important;
  background: var(--ws-amber-soft) !important;
}

body.novo6-page.workspace-mode .score-card[data-tone="review"] strong {
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .score-card[data-tone="unresolved"] {
  border-color: #efc8cd !important;
  background: var(--ws-red-soft) !important;
}

body.novo6-page.workspace-mode .score-card[data-tone="unresolved"] strong {
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .workspace-utilities > .utility-drawer > summary {
  display: none !important;
}

body.novo6-page.workspace-mode .workspace-utilities {
  position: fixed !important;
  inset: 0 !important;
  z-index: 220 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

body.novo6-page.workspace-mode .utility-drawer[open],
body.novo6-page.workspace-mode .utility-drawer[open]::before,
body.novo6-page.workspace-mode .utility-drawer[open] .utility-content {
  pointer-events: auto !important;
}

body.novo6-page.workspace-mode .utility-drawer:not([open]) .utility-content {
  display: none !important;
}

body.novo6-page.workspace-mode .utility-drawer[open]::before {
  position: fixed !important;
  inset: 0 !important;
  z-index: 220 !important;
  background: rgba(7, 27, 45, 0.28) !important;
  backdrop-filter: blur(5px) !important;
  content: "" !important;
}

body.novo6-page.workspace-mode .utility-drawer[open] .utility-content {
  position: fixed !important;
  inset: 12px 12px 12px auto !important;
  z-index: 230 !important;
  display: flex !important;
  flex-direction: column !important;
  width: min(720px, calc(100vw - 24px)) !important;
  max-width: none !important;
  max-height: none !important;
  overflow: hidden !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: -28px 0 90px rgba(5, 28, 48, 0.24) !important;
  transform: none !important;
  animation: novo6-workspace-drawer-in 220ms cubic-bezier(0.2, 0.72, 0.2, 1) both !important;
}

@keyframes novo6-workspace-drawer-in {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

body.novo6-page.workspace-mode .utility-panel-head {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 5px 18px !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  min-height: 106px !important;
  padding: 19px 21px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ws-line) !important;
  background:
    radial-gradient(circle at 92% -20%, rgba(47, 134, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #fbfdff, #f4f9fe) !important;
}

body.novo6-page.workspace-mode .utility-panel-head > div {
  min-width: 0 !important;
}

body.novo6-page.workspace-mode .utility-panel-head span {
  color: var(--ws-blue-strong) !important;
  font-size: 9px !important;
  font-weight: 750 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .utility-panel-head h2 {
  margin: 5px 0 0 !important;
  color: var(--ws-ink) !important;
  font-size: 26px !important;
  font-weight: 620 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.08 !important;
}

body.novo6-page.workspace-mode .utility-panel-head p {
  max-width: 560px !important;
  margin: 7px 0 0 !important;
  color: var(--ws-muted) !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
}

body.novo6-page.workspace-mode .utility-panel-head .utility-close-button {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  border-radius: 9px !important;
  font-size: 20px !important;
}

body.novo6-page.workspace-mode .utility-scroll-body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow: auto !important;
  padding: 16px 18px 22px !important;
  background: #f7fafc !important;
  scrollbar-color: #9eb3c3 transparent !important;
  scrollbar-width: thin !important;
}

body.novo6-page.workspace-mode .quality-overview,
body.novo6-page.workspace-mode .citation-style-card,
body.novo6-page.workspace-mode .quality-report-section,
body.novo6-page.workspace-mode .export-preview {
  overflow: visible !important;
  margin: 0 0 12px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(24, 61, 91, 0.045) !important;
}

body.novo6-page.workspace-mode .quality-overview {
  display: grid !important;
  grid-template-columns: 160px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 13px !important;
}

body.novo6-page.workspace-mode .quality-overview-status {
  display: grid !important;
  gap: 7px !important;
  align-content: center !important;
  min-height: 90px !important;
  padding: 13px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 9px !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .quality-overview-status > span {
  color: var(--ws-muted) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode .quality-score {
  color: var(--ws-ink) !important;
  font-size: 20px !important;
  font-weight: 620 !important;
  letter-spacing: -0.03em !important;
}

body.novo6-page.workspace-mode .quality-score[data-status="ready"] {
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .quality-score[data-status="review"] {
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .quality-score[data-status="unresolved"] {
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .report-summary-metrics {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 7px !important;
}

body.novo6-page.workspace-mode .report-summary-metrics > * {
  display: grid !important;
  gap: 3px !important;
  align-content: center !important;
  min-width: 0 !important;
  min-height: 58px !important;
  padding: 8px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .quality-section-heading,
body.novo6-page.workspace-mode .export-preview > summary {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 60px !important;
  padding: 12px 14px !important;
  cursor: pointer !important;
  list-style: none !important;
}

body.novo6-page.workspace-mode .quality-section-heading::-webkit-details-marker,
body.novo6-page.workspace-mode .export-preview > summary::-webkit-details-marker {
  display: none !important;
}

body.novo6-page.workspace-mode .quality-section-title,
body.novo6-page.workspace-mode .export-preview > summary {
  color: var(--ws-ink-soft) !important;
  font-size: 11px !important;
  font-weight: 650 !important;
}

body.novo6-page.workspace-mode .quality-section-heading small {
  display: block !important;
  margin-top: 3px !important;
  color: var(--ws-muted) !important;
  font-size: 9px !important;
  font-weight: 450 !important;
}

body.novo6-page.workspace-mode .quality-section-count {
  flex: 0 0 auto !important;
  padding: 5px 8px !important;
  border-radius: 999px !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  font-size: 8px !important;
  font-weight: 700 !important;
}

body.novo6-page.workspace-mode .quality-section-count[data-tone="good"] {
  background: var(--ws-green-soft) !important;
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode .quality-section-count[data-tone="warn"] {
  background: var(--ws-amber-soft) !important;
  color: var(--ws-amber) !important;
}

body.novo6-page.workspace-mode .quality-section-count[data-tone="danger"] {
  background: var(--ws-red-soft) !important;
  color: var(--ws-red) !important;
}

body.novo6-page.workspace-mode .quality-section-body {
  padding: 13px 14px !important;
  border-top: 1px solid var(--ws-line) !important;
  color: var(--ws-muted) !important;
  font-size: 10px !important;
}

body.novo6-page.workspace-mode .quality-section-body ul {
  display: grid !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.novo6-page.workspace-mode .quality-section-body li,
body.novo6-page.workspace-mode .source-row {
  padding: 10px 11px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 8px !important;
  background: var(--ws-surface-soft) !important;
  color: var(--ws-ink-soft) !important;
}

body.novo6-page.workspace-mode .quality-section-body li[data-tone="good"],
body.novo6-page.workspace-mode .source-row[data-status="used"] {
  border-color: #c8e6db !important;
  background: var(--ws-green-soft) !important;
}

body.novo6-page.workspace-mode .quality-section-body li[data-tone="warn"] {
  border-color: #efdcb5 !important;
  background: var(--ws-amber-soft) !important;
}

body.novo6-page.workspace-mode .quality-section-body li[data-tone="danger"],
body.novo6-page.workspace-mode .source-row[data-status="failed"] {
  border-color: #efc7cc !important;
  background: var(--ws-red-soft) !important;
}

body.novo6-page.workspace-mode .source-row {
  display: grid !important;
  grid-template-columns: minmax(100px, 0.7fr) minmax(110px, 0.7fr) minmax(0, 1.6fr) !important;
  gap: 10px !important;
  align-items: center !important;
  margin-bottom: 7px !important;
}

body.novo6-page.workspace-mode .source-row strong,
body.novo6-page.workspace-mode .source-row span,
body.novo6-page.workspace-mode .source-row small {
  font-size: 9px !important;
  line-height: 1.4 !important;
}

body.novo6-page.workspace-mode #export-drawer .citation-style-card {
  display: grid !important;
  gap: 12px !important;
  padding: 14px !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-controls,
body.novo6-page.workspace-mode #export-drawer .pdf-style-search-wrap {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
}

body.novo6-page.workspace-mode #export-drawer #pdf-citation-style-select {
  display: none !important;
}

body.novo6-page.workspace-mode #export-drawer #pdf-style-search {
  width: 100% !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 14px 0 39px !important;
  border: 1px solid #c7d9e7 !important;
  border-radius: 9px !important;
  background:
    linear-gradient(45deg, transparent 46%, #7890a2 47%, #7890a2 54%, transparent 55%) 18px 19px / 6px 6px no-repeat,
    radial-gradient(circle, transparent 52%, #7890a2 55%, #7890a2 67%, transparent 70%) 11px 12px / 12px 12px no-repeat,
    #fff !important;
  color: var(--ws-ink) !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 520 !important;
}

body.novo6-page.workspace-mode #export-drawer #pdf-style-search:focus {
  border-color: var(--ws-blue-bright) !important;
  box-shadow: 0 0 0 3px rgba(47, 134, 255, 0.12) !important;
  outline: 0 !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results.is-open {
  position: absolute !important;
  top: calc(100% + 7px) !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 280 !important;
  display: grid !important;
  max-height: min(350px, calc(100dvh - 230px)) !important;
  overflow: auto !important;
  padding: 7px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 11px !important;
  background: rgba(255, 255, 255, 0.99) !important;
  box-shadow: 0 20px 50px rgba(17, 54, 85, 0.20) !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results .pdf-style-result {
  display: grid !important;
  gap: 3px !important;
  min-height: 48px !important;
  padding: 9px 11px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: var(--ws-ink-soft) !important;
  cursor: pointer !important;
  text-align: left !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results .pdf-style-result:hover,
body.novo6-page.workspace-mode #pdf-style-quick-results .pdf-style-result.is-active {
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results .pdf-style-result span {
  font-size: 10px !important;
  font-weight: 650 !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results .pdf-style-result small {
  color: var(--ws-muted) !important;
  font-size: 8px !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-status-row {
  display: grid !important;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr) !important;
  gap: 10px !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-meta-row,
body.novo6-page.workspace-mode #export-drawer .pdf-style-preview {
  min-width: 0 !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 12px 13px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 9px !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-meta-row span,
body.novo6-page.workspace-mode #export-drawer .pdf-style-preview > span {
  color: var(--ws-blue-strong) !important;
  font-size: 8px !important;
  font-weight: 750 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-meta-row strong {
  display: block !important;
  margin-top: 7px !important;
  color: var(--ws-ink) !important;
  font-size: 11px !important;
  font-weight: 620 !important;
  line-height: 1.4 !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-preview {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-preview p {
  margin: 0 !important;
  overflow: hidden !important;
  color: var(--ws-ink-soft) !important;
  font-size: 10px !important;
  line-height: 1.48 !important;
}

body.novo6-page.workspace-mode #export-drawer .citation-style-note {
  margin: 0 !important;
  padding: 12px 0 0 !important;
  border-top: 1px solid var(--ws-line) !important;
  color: var(--ws-muted) !important;
  font-size: 9px !important;
  line-height: 1.5 !important;
}

body.novo6-page.workspace-mode #export-drawer .export-actions {
  position: relative !important;
  z-index: 5 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
  margin: 0 0 12px !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu {
  position: relative !important;
  min-width: 0 !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu > summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 42px !important;
  padding: 0 13px !important;
  border: 1px solid #b7cfe2 !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--ws-ink-soft) !important;
  cursor: pointer !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  list-style: none !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu > summary::-webkit-details-marker {
  display: none !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu > summary::after {
  width: 7px !important;
  height: 7px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  content: "" !important;
  transform: translateY(-2px) rotate(45deg) !important;
  transition: transform 150ms ease !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu[open] > summary {
  border-color: #87b7e0 !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu[open] > summary::after {
  transform: translateY(2px) rotate(225deg) !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu-list {
  position: absolute !important;
  top: calc(100% + 7px) !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 290 !important;
  overflow: hidden !important;
  padding: 7px !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 11px !important;
  background: #fff !important;
  box-shadow: 0 20px 48px rgba(17, 54, 85, 0.20) !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu.is-open-up .export-menu-list {
  inset: auto 0 calc(100% + 7px) !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu-scroll {
  display: grid !important;
  max-height: min(300px, calc(100dvh - 240px)) !important;
  overflow: auto !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu-list button {
  width: 100% !important;
  min-height: 38px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: var(--ws-ink-soft) !important;
  cursor: pointer !important;
  font-size: 10px !important;
  font-weight: 550 !important;
  text-align: left !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu-list button:hover,
body.novo6-page.workspace-mode #export-drawer .export-menu-list button:focus {
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
  outline: 0 !important;
}

body.novo6-page.workspace-mode #export-drawer .export-preview {
  overflow: hidden !important;
}

body.novo6-page.workspace-mode #export-drawer .export-preview[open] > summary {
  border-bottom: 1px solid var(--ws-line) !important;
  background: var(--ws-blue-soft) !important;
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode #export-drawer .output-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  padding: 13px !important;
}

body.novo6-page.workspace-mode #export-drawer .output-grid label {
  display: grid !important;
  gap: 6px !important;
  color: var(--ws-muted) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
}

body.novo6-page.workspace-mode #export-drawer .output-grid textarea {
  width: 100% !important;
  min-height: 150px !important;
  padding: 10px !important;
  border: 1px solid var(--ws-line) !important;
  border-radius: 8px !important;
  background: #f8fbfd !important;
  color: var(--ws-ink-soft) !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace !important;
  font-size: 9px !important;
  line-height: 1.45 !important;
  resize: vertical !important;
}

body.novo6-page.workspace-mode .workspace-restore-button {
  position: fixed !important;
  z-index: 180 !important;
  min-height: 38px !important;
  padding: 0 13px !important;
  border: 1px solid #91b9dc !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: var(--ws-blue-strong) !important;
  box-shadow: 0 10px 26px rgba(17, 61, 99, 0.14) !important;
  font-size: 10px !important;
  font-weight: 650 !important;
}

body.novo6-page.workspace-mode .source-restore {
  top: calc(var(--workspace-header-height) + 22px) !important;
  left: 20px !important;
}

body.novo6-page.workspace-mode .detail-restore {
  top: calc(var(--workspace-header-height) + 22px) !important;
  right: 20px !important;
}

body.novo6-page.workspace-mode .pane-collapse-rail-label {
  border-color: var(--ws-line-strong) !important;
  background: linear-gradient(180deg, #fff, #f2f7fb) !important;
  color: var(--ws-blue-strong) !important;
  box-shadow: 0 10px 25px rgba(18, 62, 99, 0.10) !important;
}

@media (min-width: 1281px) {
  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed {
    grid-template-columns: 58px minmax(410px, 0.84fr) minmax(520px, 1.16fr) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed {
    grid-template-columns: minmax(430px, 1.08fr) minmax(420px, 0.92fr) 58px !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"],
  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"] {
    border-color: var(--ws-line-strong) !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(18, 62, 99, 0.08) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"] {
    box-shadow: inset 3px 0 var(--ws-blue), 0 10px 26px rgba(18, 62, 99, 0.08) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"] {
    box-shadow: inset -3px 0 var(--ws-green), 0 10px 26px rgba(18, 62, 99, 0.08) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"] .pane-collapse-rail-label,
  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"] .pane-collapse-rail-label {
    display: none !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"]::before,
  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"]::before {
    color: var(--ws-ink-soft) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.035em !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"]::after {
    color: var(--ws-blue-strong) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"]::after {
    color: var(--ws-green) !important;
  }
}

body.novo6-page.workspace-mode #bulk-review-menu {
  display: none !important;
}

body.novo6-page.workspace-mode #quality-drawer[open] .utility-content,
body.novo6-page.workspace-mode #export-drawer[open] .utility-content {
  position: fixed !important;
  inset: 12px 12px 12px auto !important;
  display: flex !important;
  width: min(720px, calc(100vw - 24px)) !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  overflow: hidden !important;
  border: 1px solid var(--ws-line-strong) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: -28px 0 90px rgba(5, 28, 48, 0.24) !important;
  transform: none !important;
}

body.novo6-page.workspace-mode #quality-drawer .utility-panel-head,
body.novo6-page.workspace-mode #export-drawer .utility-panel-head {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  min-height: 106px !important;
  padding: 19px 21px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--ws-line) !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 92% -20%, rgba(47, 134, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #fbfdff, #f4f9fe) !important;
}

body.novo6-page.workspace-mode #export-drawer .utility-panel-head span {
  color: var(--ws-blue-strong) !important;
}

body.novo6-page.workspace-mode #quality-drawer .utility-panel-head span {
  color: var(--ws-green) !important;
}

body.novo6-page.workspace-mode #quality-drawer .utility-scroll-body,
body.novo6-page.workspace-mode #export-drawer .utility-scroll-body {
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: auto !important;
  padding: 16px 18px 22px !important;
  background: #f7fafc !important;
}

body.novo6-page.workspace-mode #quality-drawer .utility-close-button.utility-close,
body.novo6-page.workspace-mode #export-drawer .utility-close-button.utility-close {
  position: static !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  border-radius: 9px !important;
  font-size: 20px !important;
}

@media (max-width: 1360px) {
  body.novo6-page.workspace-mode .workspace-header {
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1fr) auto !important;
    gap: 12px !important;
    padding-inline: 13px !important;
  }

  body.novo6-page.workspace-mode .exit-workspace-button {
    min-width: 126px !important;
    padding-inline: 11px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-button {
    min-width: 130px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-button,
  body.novo6-page.workspace-mode .workspace-actions .button {
    min-width: 86px !important;
    padding-inline: 11px !important;
  }

  body.novo6-page.workspace-mode .workspace-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;
    padding: 10px !important;
  }

  body.novo6-page.workspace-mode .pane-header,
  body.novo6-page.workspace-mode .detail-sticky-header {
    padding-inline: 14px !important;
  }

  body.novo6-page.workspace-mode .pane-header h2,
  body.novo6-page.workspace-mode .reference-detail h2,
  body.novo6-page.workspace-mode .reference-detail h3 {
    font-size: 20px !important;
  }

  body.novo6-page.workspace-mode .reference-row-actions {
    width: 88px !important;
  }
}

@media (max-width: 1280px) {
  body.novo6-page.workspace-mode {
    --workspace-header-height: 122px !important;
    overflow: hidden !important;
  }

  body.novo6-page.workspace-mode .results-panel {
    --workspace-header-height: 122px !important;
  }

  body.novo6-page.workspace-mode .workspace-header {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 52px 46px !important;
    gap: 5px !important;
    align-content: center !important;
    height: var(--workspace-header-height) !important;
    min-height: var(--workspace-header-height) !important;
    padding: 8px 12px 7px !important;
  }

  body.novo6-page.workspace-mode .results-panel > .workspace-header {
    height: var(--workspace-header-height) !important;
    min-height: var(--workspace-header-height) !important;
  }

  body.novo6-page.workspace-mode .workspace-document {
    grid-row: 1 !important;
    justify-content: flex-start !important;
  }

  body.novo6-page.workspace-mode .workspace-document #workspace-file-name,
  body.novo6-page.workspace-mode #workspace-inline-progress {
    max-width: calc(100vw - 205px) !important;
  }

  body.novo6-page.workspace-mode .workspace-actions {
    grid-row: 2 !important;
    justify-content: flex-start !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 2px 0 4px !important;
    scroll-padding-inline: 2px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.novo6-page.workspace-mode .workspace-actions::-webkit-scrollbar {
    display: none !important;
  }

  body.novo6-page.workspace-mode .workspace-actions > * {
    flex: 0 0 auto !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-button,
  body.novo6-page.workspace-mode .workspace-actions .button {
    min-width: 106px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-button {
    min-width: 142px !important;
  }

  body.novo6-page.workspace-mode .mobile-workspace-tabs {
    position: fixed !important;
    inset: var(--workspace-header-height) 0 auto !important;
    z-index: 155 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 6px 10px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ws-line-strong) !important;
    background: rgba(248, 251, 254, 0.96) !important;
    box-shadow: 0 6px 18px rgba(19, 58, 91, 0.045) !important;
    backdrop-filter: blur(16px) !important;
  }

  body.novo6-page.workspace-mode .results-panel > .mobile-workspace-tabs {
    top: var(--workspace-header-height) !important;
  }

  body.novo6-page.workspace-mode .mobile-workspace-tabs button {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 7px !important;
    background: transparent !important;
    color: var(--ws-muted) !important;
    font-size: 11px !important;
    font-weight: 650 !important;
  }

  body.novo6-page.workspace-mode .mobile-workspace-tabs button.is-active {
    background: #fff !important;
    color: var(--ws-blue-strong) !important;
    box-shadow: 0 4px 13px rgba(20, 72, 115, 0.09), inset 0 -2px 0 var(--ws-blue) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid {
    inset: calc(var(--workspace-header-height) + 50px) 0 0 !important;
    display: block !important;
    padding: 10px !important;
    overflow: hidden !important;
  }

  body.novo6-page.workspace-mode .results-panel > .workspace-grid {
    inset: calc(var(--workspace-header-height) + 50px) 0 0 !important;
  }

  body.novo6-page.workspace-mode .workspace-pane,
  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"],
  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"] {
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  body.novo6-page.workspace-mode .workspace-grid[data-mobile-panel="references"] > [data-pane="references"],
  body.novo6-page.workspace-mode .workspace-grid[data-mobile-panel="source"] > [data-pane="source"],
  body.novo6-page.workspace-mode .workspace-grid[data-mobile-panel="detail"] > [data-pane="detail"],
  body.novo6-page.workspace-mode .workspace-grid[data-mobile-panel="details"] > [data-pane="detail"] {
    display: flex !important;
    flex-direction: column !important;
  }

  body.novo6-page.workspace-mode .workspace-restore-button,
  body.novo6-page.workspace-mode .pane-collapse-button,
  body.novo6-page.workspace-mode .pane-collapse-rail-label {
    display: none !important;
  }

  body.novo6-page.workspace-mode .reference-row-actions {
    opacity: 1 !important;
  }

  body.novo6-page.workspace-mode .pdf-viewer,
  body.novo6-page.workspace-mode .reference-list,
  body.novo6-page.workspace-mode .detail-page-body,
  body.novo6-page.workspace-mode .detail-empty-state {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
  }
}

@media (max-width: 700px) {
  body.novo6-page.workspace-mode #quality-drawer[open] .utility-content,
  body.novo6-page.workspace-mode #export-drawer[open] .utility-content {
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    border: 0 !important;
    border-radius: 0 !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode #quality-drawer .report-summary-metrics > * > strong {
  display: block !important;
  color: var(--ws-ink) !important;
  font-size: 17px !important;
  font-weight: 650 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.05 !important;
}

body.novo6-page.workspace-mode #quality-drawer .report-summary-metrics > * > span {
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--ws-muted) !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.065em !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

  body.novo6-page.workspace-mode .utility-panel-head {
    min-height: 100px !important;
    padding: 16px !important;
  }

  body.novo6-page.workspace-mode .utility-panel-head h2 {
    font-size: 23px !important;
  }

  body.novo6-page.workspace-mode .utility-panel-head p {
    max-width: calc(100vw - 84px) !important;
    font-size: 10px !important;
  }

  body.novo6-page.workspace-mode .utility-scroll-body {
    padding: 12px !important;
  }

  body.novo6-page.workspace-mode .quality-overview {
    grid-template-columns: 1fr !important;
  }

  body.novo6-page.workspace-mode .report-summary-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.novo6-page.workspace-mode .source-row {
    grid-template-columns: 1fr auto !important;
  }

  body.novo6-page.workspace-mode .source-row small {
    grid-column: 1 / -1 !important;
  }

  body.novo6-page.workspace-mode #export-drawer .pdf-style-status-row,
  body.novo6-page.workspace-mode #export-drawer .output-grid {
    grid-template-columns: 1fr !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-dialog .scorecard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  body.novo6-page.workspace-mode {
    --workspace-header-height: 132px !important;
  }

  body.novo6-page.workspace-mode .results-panel {
    --workspace-header-height: 132px !important;
  }

  body.novo6-page.workspace-mode .workspace-header {
    grid-template-rows: 54px 50px !important;
    gap: 6px !important;
    padding: 7px 9px 8px !important;
  }

  body.novo6-page.workspace-mode .results-panel > .workspace-header {
    height: var(--workspace-header-height) !important;
    min-height: var(--workspace-header-height) !important;
  }

  body.novo6-page.workspace-mode .exit-workspace-button {
    min-width: 116px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding-inline: 9px !important;
    font-size: 9px !important;
  }

  body.novo6-page.workspace-mode .workspace-document {
    gap: 10px !important;
  }

  body.novo6-page.workspace-mode .workspace-document #workspace-file-name,
  body.novo6-page.workspace-mode #workspace-inline-progress {
    max-width: calc(100vw - 154px) !important;
  }

  body.novo6-page.workspace-mode .workspace-document #workspace-file-name {
    font-size: 12px !important;
  }

  body.novo6-page.workspace-mode .workspace-actions {
    gap: 6px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-button,
  body.novo6-page.workspace-mode .workspace-actions .button {
    min-width: 88px !important;
    width: 88px !important;
    flex: 0 0 88px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding-inline: 11px !important;
    font-size: 10px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-button {
    width: 126px !important;
    min-width: 126px !important;
    flex-basis: 126px !important;
  }

  body.novo6-page.workspace-mode .workspace-actions #workspace-export-button {
    min-width: 88px !important;
  }

  body.novo6-page.workspace-mode .mobile-workspace-tabs {
    height: 48px !important;
    min-height: 48px !important;
    padding: 5px 8px !important;
  }

  body.novo6-page.workspace-mode .workspace-grid {
    inset: calc(var(--workspace-header-height) + 48px) 0 0 !important;
    padding: 7px !important;
  }

  body.novo6-page.workspace-mode .results-panel > .mobile-workspace-tabs {
    top: var(--workspace-header-height) !important;
  }

  body.novo6-page.workspace-mode .results-panel > .workspace-grid {
    inset: calc(var(--workspace-header-height) + 48px) 0 0 !important;
  }

  body.novo6-page.workspace-mode .workspace-pane {
    border-radius: 8px !important;
  }

  body.novo6-page.workspace-mode .pane-header,
  body.novo6-page.workspace-mode .detail-sticky-header {
    min-height: 70px !important;
    padding: 12px !important;
  }

  body.novo6-page.workspace-mode .reference-list-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    min-height: 112px !important;
  }

  body.novo6-page.workspace-mode .reference-list-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1.3fr) minmax(96px, 0.8fr) !important;
    gap: 7px !important;
    width: 100% !important;
  }

  body.novo6-page.workspace-mode .pane-header h2,
  body.novo6-page.workspace-mode .reference-detail h2,
  body.novo6-page.workspace-mode .reference-detail h3 {
    font-size: 18px !important;
  }

  body.novo6-page.workspace-mode .reference-filter-menu > summary {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.novo6-page.workspace-mode .reference-filter-menu > summary span {
    max-width: none !important;
  }

  body.novo6-page.workspace-mode #bulk-review-menu > summary {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.novo6-page.workspace-mode .review-menu-list {
    position: fixed !important;
    inset: auto 8px 8px !important;
    width: auto !important;
    max-height: min(390px, 64dvh) !important;
    border-radius: 14px !important;
    box-shadow: 0 24px 65px rgba(8, 31, 50, 0.25) !important;
  }

  body.novo6-page.workspace-mode .review-menu-list button {
    min-height: 44px !important;
    font-size: 12px !important;
  }

  body.novo6-page.workspace-mode .reference-list {
    height: calc(100% - 70px) !important;
  }

  body.novo6-page.workspace-mode .reference-row {
    grid-template-columns: 19px minmax(0, 1fr) !important;
    min-height: 0 !important;
    padding: 13px 12px !important;
  }

  body.novo6-page.workspace-mode .reference-row-actions {
    grid-column: 2 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    margin-top: 2px !important;
  }

  body.novo6-page.workspace-mode .reference-row-actions button {
    min-height: 34px !important;
  }

  body.novo6-page.workspace-mode .pdf-tools {
    flex-wrap: wrap !important;
    min-height: 82px !important;
    padding: 7px 10px !important;
  }

  body.novo6-page.workspace-mode .pdf-tools #pdf-focus-button {
    margin-left: 0 !important;
  }

  body.novo6-page.workspace-mode .pdf-viewer {
    height: calc(100% - 190px) !important;
  }

  body.novo6-page.workspace-mode .detail-actions {
    gap: 7px !important;
    padding: 10px !important;
  }

  body.novo6-page.workspace-mode .detail-actions button {
    min-height: 42px !important;
    font-size: 9px !important;
  }

  body.novo6-page.workspace-mode .detail-section,
  body.novo6-page.workspace-mode .reference-intelligence {
    padding: 16px 12px !important;
  }

  body.novo6-page.workspace-mode .detail-grid,
  body.novo6-page.workspace-mode .status-check-grid {
    grid-template-columns: 1fr !important;
  }

  body.novo6-page.workspace-mode .detail-grid label {
    grid-column: auto !important;
  }

  body.novo6-page.workspace-mode .status-explanation-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  body.novo6-page.workspace-mode .status-explanation-header p {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
  }

  body.novo6-page.workspace-mode .match-card {
    grid-template-columns: 1fr !important;
  }

  body.novo6-page.workspace-mode .match-card button {
    width: 100% !important;
    min-height: 40px !important;
  }

  body.novo6-page.workspace-mode #export-drawer .export-actions {
    grid-template-columns: 1fr !important;
  }

  body.novo6-page.workspace-mode #export-drawer .export-menu > summary {
    min-height: 46px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-popover {
    padding: 8px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-dialog {
    width: calc(100vw - 16px) !important;
    max-height: calc(100dvh - 16px) !important;
    border-radius: 14px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-head {
    padding: 16px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-dialog .scorecard-grid {
    gap: 7px !important;
    padding: 10px !important;
  }

  body.novo6-page.workspace-mode .score-card {
    min-height: 78px !important;
    padding: 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.novo6-page.workspace-mode *,
  body.novo6-page.workspace-mode *::before,
  body.novo6-page.workspace-mode *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Novo6 workspace restraint pass: functional density over decoration. */
body.novo6-page.workspace-mode .workspace-grid {
  gap: 8px !important;
}

body.novo6-page.workspace-mode .workspace-pane {
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(23, 62, 95, 0.05) !important;
}

body.novo6-page.workspace-mode .reference-row-actions {
  display: none !important;
}

body.novo6-page.workspace-mode .detail-actions {
  background: #fff !important;
  backdrop-filter: none !important;
}

body.novo6-page.workspace-mode .detail-actions button:hover {
  transform: none !important;
}

body.novo6-page.workspace-mode .detail-actions button[data-action="save"] {
  border-color: var(--ws-blue) !important;
  background: var(--ws-blue) !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode .workspace-summary-backdrop,
body.novo6-page.workspace-mode .utility-drawer[open]::before {
  background: rgba(7, 27, 45, 0.28) !important;
  backdrop-filter: none !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog {
  width: min(560px, calc(100vw - 32px)) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 36px rgba(5, 28, 48, 0.18) !important;
}

body.novo6-page.workspace-mode .workspace-summary-head {
  padding: 15px 17px !important;
  background: #f7fafc !important;
}

body.novo6-page.workspace-mode .workspace-summary-head h2 {
  font-size: 20px !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog .scorecard-grid {
  gap: 8px !important;
  padding: 14px !important;
}

body.novo6-page.workspace-mode .score-card {
  min-height: 72px !important;
  padding: 11px !important;
  border-radius: 7px !important;
}

body.novo6-page.workspace-mode .score-card strong {
  font-size: 21px !important;
}

body.novo6-page.workspace-mode .utility-drawer[open] .utility-content,
body.novo6-page.workspace-mode #quality-drawer[open] .utility-content,
body.novo6-page.workspace-mode #export-drawer[open] .utility-content {
  border-radius: 10px !important;
  box-shadow: -8px 0 28px rgba(5, 28, 48, 0.14) !important;
}

body.novo6-page.workspace-mode .utility-panel-head,
body.novo6-page.workspace-mode #quality-drawer .utility-panel-head,
body.novo6-page.workspace-mode #export-drawer .utility-panel-head {
  min-height: 96px !important;
  padding: 17px 19px !important;
  background: #f7fafc !important;
}

body.novo6-page.workspace-mode .quality-overview,
body.novo6-page.workspace-mode .citation-style-card,
body.novo6-page.workspace-mode .quality-report-section,
body.novo6-page.workspace-mode .export-preview {
  border-radius: 8px !important;
  box-shadow: none !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results.is-open,
body.novo6-page.workspace-mode #export-drawer .export-menu-list,
body.novo6-page.workspace-mode .review-menu-list {
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(17, 54, 85, 0.12) !important;
  backdrop-filter: none !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu-list {
  right: auto !important;
  left: 0 !important;
  width: 178px !important;
  min-width: 0 !important;
  max-width: min(178px, calc(100vw - 32px)) !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu.is-open-up .export-menu-list {
  inset: auto auto calc(100% + 7px) 0 !important;
}

@media (min-width: 521px) {
  body.novo6-page.workspace-mode .reference-filter-menu .review-menu-list {
    right: 0 !important;
    left: auto !important;
    width: 190px !important;
    min-width: 0 !important;
    max-width: min(190px, calc(100vw - 24px)) !important;
  }
}

body.novo6-page.workspace-mode .workspace-restore-button {
  box-shadow: 0 3px 10px rgba(17, 61, 99, 0.10) !important;
}

body.novo6-page.workspace-mode .pane-collapse-rail-label {
  background: #fff !important;
  box-shadow: none !important;
}

@media (min-width: 1281px) {
  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"],
  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"] {
    box-shadow: none !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-source-collapsed [data-pane="source"] {
    box-shadow: inset 3px 0 var(--ws-blue) !important;
  }

  body.novo6-page.workspace-mode .workspace-grid.is-detail-collapsed [data-pane="detail"] {
    box-shadow: inset -3px 0 var(--ws-green) !important;
  }
}

@media (max-width: 1360px) and (min-width: 1281px) {
  body.novo6-page.workspace-mode .workspace-grid {
    gap: 6px !important;
  }
}

@media (max-width: 1280px) {
  body.novo6-page.workspace-mode .mobile-workspace-tabs {
    background: #f8fbfe !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  body.novo6-page.workspace-mode .mobile-workspace-tabs button.is-active {
    box-shadow: inset 0 -2px 0 var(--ws-blue) !important;
  }
}

@media (max-width: 520px) {
  body.novo6-page.workspace-mode .workspace-pane {
    border-radius: 7px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-dialog {
    width: calc(100vw - 16px) !important;
    border-radius: 8px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-head {
    padding: 13px !important;
  }

  body.novo6-page.workspace-mode .workspace-summary-dialog .scorecard-grid {
    gap: 6px !important;
    padding: 8px !important;
  }

  body.novo6-page.workspace-mode .score-card {
    min-height: 66px !important;
    padding: 9px !important;
  }
}

/* Novo6 structural clarity pass: one border hierarchy across upload, method, review, formats, and FAQ. */
body.novo6-page:not(.workspace-mode) {
  --novo-structure-border: #98afbf;
  --novo-structure-border-soft: #b0c3d0;
  --novo-structure-border-active: #5b98d3;
}

body.novo6-page:not(.workspace-mode) .novo-instrument,
body.novo6-page:not(.workspace-mode) .novo-handoff,
body.novo6-page:not(.workspace-mode) .novo-status {
  border-width: 1.5px;
  border-color: var(--novo-structure-border);
}

body.novo6-page:not(.workspace-mode) .novo-instrument-head {
  border-bottom-width: 1.5px;
  border-bottom-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-dropzone {
  position: relative;
  border: 0;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    repeating-linear-gradient(90deg, #6f9fc8 0 11px, transparent 11px 20px) top left / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, #6f9fc8 0 11px, transparent 11px 20px) bottom left / 100% 2px no-repeat,
    repeating-linear-gradient(180deg, #6f9fc8 0 11px, transparent 11px 20px) top left / 2px 100% no-repeat,
    repeating-linear-gradient(180deg, #6f9fc8 0 11px, transparent 11px 20px) top right / 2px 100% no-repeat;
  content: "";
  pointer-events: none;
}

body.novo6-page:not(.workspace-mode) .novo-dropzone:hover::after,
body.novo6-page:not(.workspace-mode) .novo-dropzone:focus-within::after,
body.novo6-page:not(.workspace-mode) .novo-dropzone.is-dragging::after {
  background:
    repeating-linear-gradient(90deg, #247bd6 0 11px, transparent 11px 20px) top left / 100% 2px no-repeat,
    repeating-linear-gradient(90deg, #247bd6 0 11px, transparent 11px 20px) bottom left / 100% 2px no-repeat,
    repeating-linear-gradient(180deg, #247bd6 0 11px, transparent 11px 20px) top left / 2px 100% no-repeat,
    repeating-linear-gradient(180deg, #247bd6 0 11px, transparent 11px 20px) top right / 2px 100% no-repeat;
}

body.novo6-page:not(.workspace-mode) .novo-method-control {
  border-width: 1.5px;
  border-color: var(--novo-structure-border);
}

body.novo6-page:not(.workspace-mode) .novo-method-control:hover {
  border-width: 1.5px;
  border-color: #78a9d5;
}

body.novo6-page:not(.workspace-mode) .novo-method-control.is-active,
body.novo6-page:not(.workspace-mode) .novo-method-control.is-active:focus-visible,
body.novo6-page:not(.workspace-mode) .novo-method-control:focus-visible {
  border-width: 1.5px;
  border-color: var(--novo-structure-border-active);
}

body.novo6-page:not(.workspace-mode) .novo-review-copy ul {
  border-top-width: 1.5px;
  border-top-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-review-copy li {
  border-bottom-width: 1.5px;
  border-bottom-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-workspace-preview {
  border-width: 1.5px;
  border-color: var(--novo-structure-border);
}

body.novo6-page:not(.workspace-mode) .novo-preview-topbar,
body.novo6-page:not(.workspace-mode) .novo-preview-caption {
  border-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-preview-topbar {
  border-bottom-width: 1.5px;
}

body.novo6-page:not(.workspace-mode) .novo-preview-caption {
  border-top-width: 1.5px;
}

body.novo6-page:not(.workspace-mode) .novo-preview-pdf,
body.novo6-page:not(.workspace-mode) .novo-preview-records {
  border-right-width: 1.5px;
  border-right-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-preview-sheet,
body.novo6-page:not(.workspace-mode) .novo-preview-record,
body.novo6-page:not(.workspace-mode) .novo-match-label {
  border-width: 1.5px;
  border-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-preview-record.is-selected {
  border-color: var(--novo-structure-border-active);
}

body.novo6-page:not(.workspace-mode) .novo-match-label {
  border-color: #86bfa9;
}

body.novo6-page:not(.workspace-mode) .novo-difficult li {
  border-width: 1.5px;
  border-color: var(--novo-structure-border);
}

body.novo6-page:not(.workspace-mode) .novo-difficult li:hover {
  border-color: #78a9d5;
}

body.novo6-page:not(.workspace-mode) .novo-format-table {
  border-width: 1.5px;
  border-color: var(--novo-structure-border);
}

body.novo6-page:not(.workspace-mode) .novo-format-table > div {
  border-bottom-width: 1.5px;
  border-bottom-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-format-table > div:last-child {
  border-bottom: 0;
}

body.novo6-page:not(.workspace-mode) .novo-format-table span {
  border-left-width: 1.5px;
  border-left-color: var(--novo-structure-border-soft);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list {
  border-top-width: 1.5px;
  border-top-color: var(--novo-structure-border);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details {
  border-bottom-width: 1.5px;
  border-bottom-color: var(--novo-structure-border-soft);
}

@media (max-width: 640px) {
  body.novo6-page:not(.workspace-mode) .novo-format-table b {
    border-bottom-width: 1.5px;
    border-bottom-color: var(--novo-structure-border-soft);
  }

  body.novo6-page:not(.workspace-mode) .novo-format-table span + span,
  body.novo6-page:not(.workspace-mode) .novo-format-table span:last-child {
    border-left-width: 1.5px;
    border-left-color: var(--novo-structure-border-soft);
  }
}

/* Restore the desktop PDF-focus interaction after Novo6's equal-column workspace pass. */
@media (min-width: 1281px) {
  body.novo6-page.workspace-mode.pdf-focus-mode .workspace-grid:not(.is-source-collapsed):not(.is-detail-collapsed) {
    grid-template-columns: minmax(0, 1.54fr) minmax(0, 0.73fr) minmax(0, 0.73fr) !important;
  }
}

body.novo6-page.workspace-mode.pdf-focus-mode #pdf-focus-button,
body.novo6-page.workspace-mode #pdf-focus-button[aria-pressed="true"] {
  border-color: #5b98d3 !important;
  background: #e6f1fd !important;
  color: #075cc7 !important;
  box-shadow: inset 0 0 0 1px rgba(20, 104, 232, 0.08) !important;
}

/* Green is reserved for privacy, readiness, and verified outcomes. */
body.novo6-page:not(.workspace-mode) .novo-no-account {
  color: #0b7655;
  font-weight: 700;
}

body.novo6-page:not(.workspace-mode) .novo-privacy-note {
  border-top-width: 1.5px;
  border-top-color: #8fcbb3;
  background: #e6f5ee;
  color: #396c5a;
}

body.novo6-page:not(.workspace-mode) .novo-privacy-note svg {
  border-color: #8fcbb3;
  background: #d9f0e5;
  color: #0b7655;
  stroke: #0b7655;
}

body.novo6-page:not(.workspace-mode) .novo-privacy-note strong {
  color: #0a654a;
  font-weight: 700;
}

body.novo6-page:not(.workspace-mode) .novo-ready {
  border-color: #8fcbb3;
  background: #dff3e9;
  color: #0a6e50;
  font-weight: 800;
}

body.novo6-page:not(.workspace-mode) .novo-ready i {
  background: #0b8a63;
}

body.novo6-page:not(.workspace-mode) .novo-match-label {
  border-color: #83c2a8;
  background: #dff3e9;
  color: #0a6e50;
}

body.novo6-page:not(.workspace-mode) .novo-match-label i {
  background: #0b8a63;
}

/* Keep the structured-reference fields legible above the extraction-map grid. */
body.novo6-page:not(.workspace-mode) .novo-citation-map .novo-source-fragment,
body.novo6-page:not(.workspace-mode) .novo-citation-map .novo-field-chips span {
  border: 1.5px solid #b6c9d9;
  background: #f9fcff;
  color: #18334d;
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) .novo-citation-map .novo-source-fragment {
  color: #213a53;
}

/* Opaque work surfaces for the three-pane review preview. */
body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-lane {
  border: 1.5px solid #91aabd;
  background: #f8fbfd;
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-lane-head {
  border-bottom: 1.5px solid #afc2d1;
  background: #edf4f8;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-lane-head span {
  color: #18344d;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-lane-head small {
  color: #607a8f;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-mini-paper,
body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-mini-rows > b,
body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-mini-edit > div b {
  border: 1.5px solid #b5c7d4;
  background: #fff;
  box-shadow: none;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-mini-rows > b.is-selected {
  border-color: #6fa8df;
  background: #edf6ff;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-mini-edit > small {
  color: #60778b;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-mini-edit > strong {
  color: #17324a;
}

/* Keep the three review lanes equal to the original source-pane scale and
   center the complete work surface inside the extraction map. */
body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-map {
  align-self: center;
  justify-self: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 190px;
  width: min(86.5%, 492px);
  margin-inline: 0;
}

body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-lane {
  width: 100%;
  min-height: 0;
  height: 190px;
}

@media (max-width: 640px) {
  body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-map {
    grid-template-rows: 184px;
    width: min(90%, 442px);
  }

  body.novo6-page:not(.workspace-mode) [data-method-panel="3"] .novo-review-lane {
    height: 184px;
  }

  body.novo6-page:not(.workspace-mode) .novo-preview-pdf,
  body.novo6-page:not(.workspace-mode) .novo-preview-records,
  body.novo6-page:not(.workspace-mode) .novo-preview-detail {
    flex: 0 0 clamp(226px, 68vw, 272px);
  }

  body.novo6-page:not(.workspace-mode) .novo-preview-sheet {
    width: 100%;
    min-height: 0;
    aspect-ratio: 8.5 / 11;
    overflow: hidden;
  }
}

/* Novo6 workspace contrast pass: clearer structure without added decoration. */
body.novo6-page.workspace-mode {
  --ws-paper: #e8f0f6;
  --ws-surface-soft: #eef4f8;
  --ws-surface-blue: #e6f1fc;
  --ws-line: #c4d4df;
  --ws-line-strong: #9fb6c7;
  --ws-blue-soft: #e4efff;
  --ws-green-soft: #e9f6f1;
  --ws-amber-soft: #fff4df;
  --ws-red-soft: #ffedf0;
}

body.novo6-page.workspace-mode .workspace-header {
  border-bottom: 1.25px solid var(--ws-line-strong) !important;
}

body.novo6-page.workspace-mode .workspace-pane {
  border-width: 1.5px !important;
  border-color: var(--ws-line-strong) !important;
  background: #fff !important;
  box-shadow: 0 2px 7px rgba(20, 54, 82, 0.055) !important;
}

body.novo6-page.workspace-mode .pane-header,
body.novo6-page.workspace-mode .detail-sticky-header {
  border-bottom: 1.25px solid var(--ws-line) !important;
  background: #f3f7fa !important;
}

body.novo6-page.workspace-mode .exit-workspace-button,
body.novo6-page.workspace-mode .workspace-summary-button,
body.novo6-page.workspace-mode .workspace-actions .button,
body.novo6-page.workspace-mode .icon-button,
body.novo6-page.workspace-mode .tool-button,
body.novo6-page.workspace-mode .detail-next-button,
body.novo6-page.workspace-mode .review-menu > summary,
body.novo6-page.workspace-mode .detail-actions button,
body.novo6-page.workspace-mode .match-card button,
body.novo6-page.workspace-mode #export-drawer .export-menu > summary,
body.novo6-page.workspace-mode .utility-close-button {
  border-width: 1.25px !important;
  border-color: var(--ws-line-strong) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-enrich-button {
  border-color: #9fc2df !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-match-button,
body.novo6-page.workspace-mode .detail-actions button[data-action="advanced-match"] {
  border-color: #dfbf7d !important;
  background: var(--ws-amber-soft) !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-quality-button {
  border-color: #94cfb9 !important;
  background: var(--ws-green-soft) !important;
}

body.novo6-page.workspace-mode .workspace-actions #workspace-export-button,
body.novo6-page.workspace-mode .detail-actions button[data-action="save"] {
  border-color: var(--ws-blue-strong) !important;
  background: var(--ws-blue) !important;
}

body.novo6-page.workspace-mode .pdf-tools {
  border-bottom: 1.25px solid var(--ws-line) !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .pdf-source-status {
  border-bottom: 1.25px solid #b7cddd !important;
  background: var(--ws-surface-blue) !important;
}

body.novo6-page.workspace-mode .reference-row {
  border-bottom: 1.25px solid var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .reference-row:hover {
  background: #f3f7fa !important;
}

body.novo6-page.workspace-mode .reference-row.is-selected {
  background: var(--ws-surface-blue) !important;
}

body.novo6-page.workspace-mode .reference-row .paper-order,
body.novo6-page.workspace-mode .reference-row-meta > span {
  border-color: #b8ccd9 !important;
  background: #f4f8fa !important;
}

body.novo6-page.workspace-mode .detail-actions {
  border-bottom: 1.25px solid var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .detail-section,
body.novo6-page.workspace-mode .reference-intelligence,
body.novo6-page.workspace-mode .status-explanation {
  border-bottom-color: var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .raw-section {
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .field-control input,
body.novo6-page.workspace-mode .field-control textarea,
body.novo6-page.workspace-mode .detail-grid input,
body.novo6-page.workspace-mode .detail-grid textarea,
body.novo6-page.workspace-mode .raw-section textarea,
body.novo6-page.workspace-mode #export-drawer #pdf-style-search,
body.novo6-page.workspace-mode #export-drawer .output-grid textarea {
  border-width: 1.25px !important;
  border-color: #b5c9d8 !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .status-check-grid li,
body.novo6-page.workspace-mode .status-reason-block,
body.novo6-page.workspace-mode .match-card,
body.novo6-page.workspace-mode .reference-intelligence-body details {
  border-width: 1.25px !important;
  border-color: var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .reference-intelligence-body summary {
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .reference-intelligence-body details > ul,
body.novo6-page.workspace-mode .reference-intelligence-body details > p {
  border-top: 1.25px solid var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .status-check-grid li[data-state="good"] {
  border-color: #9fd3bf !important;
  background: var(--ws-green-soft) !important;
}

body.novo6-page.workspace-mode .status-check-grid li[data-state="warn"] {
  border-color: #e0c17f !important;
  background: var(--ws-amber-soft) !important;
}

body.novo6-page.workspace-mode .status-check-grid li[data-state="bad"] {
  border-color: #dfa7af !important;
  background: var(--ws-red-soft) !important;
}

body.novo6-page.workspace-mode .workspace-summary-dialog,
body.novo6-page.workspace-mode .utility-drawer[open] .utility-content,
body.novo6-page.workspace-mode #quality-drawer[open] .utility-content,
body.novo6-page.workspace-mode #export-drawer[open] .utility-content {
  border-width: 1.5px !important;
  border-color: var(--ws-line-strong) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .workspace-summary-head,
body.novo6-page.workspace-mode .utility-panel-head,
body.novo6-page.workspace-mode #quality-drawer .utility-panel-head,
body.novo6-page.workspace-mode #export-drawer .utility-panel-head {
  border-bottom: 1.25px solid var(--ws-line) !important;
  background: #f2f6f9 !important;
}

body.novo6-page.workspace-mode .utility-scroll-body,
body.novo6-page.workspace-mode #quality-drawer .utility-scroll-body,
body.novo6-page.workspace-mode #export-drawer .utility-scroll-body {
  background: #edf3f7 !important;
}

body.novo6-page.workspace-mode .score-card,
body.novo6-page.workspace-mode .quality-overview,
body.novo6-page.workspace-mode .citation-style-card,
body.novo6-page.workspace-mode .quality-report-section,
body.novo6-page.workspace-mode .export-preview {
  border-width: 1.25px !important;
  border-color: var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .quality-overview-status {
  border-width: 1.25px !important;
  border-color: var(--ws-line) !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode .report-summary-metrics > * {
  border-width: 1.25px !important;
  border-color: var(--ws-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .report-summary-metrics > *[data-tone="good"] {
  border-color: #91cfb6 !important;
  background: var(--ws-green-soft) !important;
}

body.novo6-page.workspace-mode .report-summary-metrics > *[data-tone="warn"] {
  border-color: #dfbd75 !important;
  background: var(--ws-amber-soft) !important;
}

body.novo6-page.workspace-mode .report-summary-metrics > *[data-tone="danger"] {
  border-color: #dda2ab !important;
  background: var(--ws-red-soft) !important;
}

body.novo6-page.workspace-mode .report-summary-metrics > *[data-tone="idle"],
body.novo6-page.workspace-mode .report-summary-metrics > *[data-tone="info"] {
  background: #f4f8fa !important;
}

body.novo6-page.workspace-mode .quality-report-section[open] > .quality-section-heading,
body.novo6-page.workspace-mode #export-drawer .export-preview[open] > summary {
  border-bottom: 1.25px solid var(--ws-line) !important;
  background: var(--ws-surface-blue) !important;
}

body.novo6-page.workspace-mode .quality-section-body {
  border-top-width: 1.25px !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode .quality-section-body li,
body.novo6-page.workspace-mode .source-row,
body.novo6-page.workspace-mode #export-drawer .pdf-style-meta-row,
body.novo6-page.workspace-mode #export-drawer .pdf-style-preview {
  border-width: 1.25px !important;
  border-color: var(--ws-line) !important;
  background: var(--ws-surface-soft) !important;
}

body.novo6-page.workspace-mode #pdf-style-quick-results.is-open,
body.novo6-page.workspace-mode #export-drawer .export-menu-list,
body.novo6-page.workspace-mode .review-menu-list {
  border-width: 1.25px !important;
  border-color: var(--ws-line-strong) !important;
  background: #fff !important;
}

/* Novo6 workspace utility refinement: full content, firmer hierarchy. */
body.novo6-page.workspace-mode {
  --ws-utility-canvas: #e4edf3;
  --ws-utility-header: #eff4f7;
  --ws-utility-line: #afc2cf;
  --ws-utility-line-strong: #8fa8ba;
  --ws-utility-inset: #f2f6f8;
}

body.novo6-page.workspace-mode .workspace-summary-button,
body.novo6-page.workspace-mode .workspace-actions .button {
  box-sizing: border-box !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
}

body.novo6-page.workspace-mode .workspace-actions {
  align-items: stretch !important;
}

body.novo6-page.workspace-mode #quality-drawer[open] .utility-content,
body.novo6-page.workspace-mode #export-drawer[open] .utility-content {
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line-strong) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode #quality-drawer .utility-panel-head,
body.novo6-page.workspace-mode #export-drawer .utility-panel-head {
  border-bottom: 1.5px solid var(--ws-utility-line) !important;
  background: var(--ws-utility-header) !important;
}

body.novo6-page.workspace-mode #quality-drawer .utility-scroll-body,
body.novo6-page.workspace-mode #export-drawer .utility-scroll-body {
  background: var(--ws-utility-canvas) !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-overview,
body.novo6-page.workspace-mode #quality-drawer .quality-report-section,
body.novo6-page.workspace-mode #export-drawer .citation-style-card,
body.novo6-page.workspace-mode #export-drawer .export-preview {
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-overview-status,
body.novo6-page.workspace-mode #quality-drawer .report-summary-metrics > * {
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line) !important;
  background: var(--ws-utility-inset) !important;
}

body.novo6-page.workspace-mode #quality-drawer .report-summary-metrics > *[data-tone="good"] {
  border-color: #79bd9f !important;
  background: #e3f4ec !important;
}

body.novo6-page.workspace-mode #quality-drawer .report-summary-metrics > *[data-tone="warn"] {
  border-color: #d8aa50 !important;
  background: #fff0d3 !important;
}

body.novo6-page.workspace-mode #quality-drawer .report-summary-metrics > *[data-tone="danger"] {
  border-color: #d58f9a !important;
  background: #ffe8ec !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-heading,
body.novo6-page.workspace-mode #export-drawer .export-preview > summary {
  background: #fff !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-report-section[open] > .quality-section-heading,
body.novo6-page.workspace-mode #export-drawer .export-preview[open] > summary {
  border-bottom: 1.5px solid var(--ws-utility-line) !important;
  background: #e5eef5 !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-count {
  border: 1px solid #a9c6dc !important;
  background: #eef5fa !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-count[data-tone="good"] {
  border-color: #98d1ba !important;
  background: #e7f5ef !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-count[data-tone="warn"] {
  border-color: #dfbd72 !important;
  background: #fff1d7 !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-count[data-tone="danger"] {
  border-color: #dba0aa !important;
  background: #ffe9ed !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-body {
  border-top-width: 0 !important;
  background: #fff !important;
  color: #52697b !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-body li,
body.novo6-page.workspace-mode #quality-drawer .source-row {
  border-width: 1.5px !important;
  border-color: #b7c9d5 !important;
  background: var(--ws-utility-inset) !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-body li[data-tone="good"],
body.novo6-page.workspace-mode #quality-drawer .source-row[data-status="used"] {
  border-color: #88c8ae !important;
  background: #e7f5ef !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-body li[data-tone="warn"] {
  border-color: #dbb462 !important;
  background: #fff2da !important;
}

body.novo6-page.workspace-mode #quality-drawer .quality-section-body li[data-tone="danger"],
body.novo6-page.workspace-mode #quality-drawer .source-row[data-status="failed"] {
  border-color: #d796a1 !important;
  background: #ffebee !important;
}

body.novo6-page.workspace-mode #export-drawer #pdf-style-search {
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line-strong) !important;
  background-color: #fff !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-status-row {
  padding-top: 12px !important;
  border-top: 1.5px solid var(--ws-utility-line) !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-meta-row,
body.novo6-page.workspace-mode #export-drawer .pdf-style-preview {
  min-height: 0 !important;
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line) !important;
  background: var(--ws-utility-inset) !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-preview {
  align-content: start !important;
  height: auto !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-preview > span {
  border: 1px solid #a9c9e1 !important;
  background: #e7f1f9 !important;
}

body.novo6-page.workspace-mode #export-drawer .pdf-style-preview p {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  padding-left: 12px !important;
  overflow: visible !important;
  border-left: 1.5px solid var(--ws-utility-line) !important;
  color: #3f566a !important;
  -webkit-box-orient: initial !important;
  -webkit-line-clamp: unset !important;
}

body.novo6-page.workspace-mode #export-drawer .citation-style-note {
  border-top: 1.5px solid var(--ws-utility-line) !important;
  color: #536b7d !important;
}

body.novo6-page.workspace-mode #export-drawer .export-menu > summary,
body.novo6-page.workspace-mode #export-drawer .export-preview > summary {
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line-strong) !important;
  background: #fff !important;
}

body.novo6-page.workspace-mode #export-drawer .output-grid {
  background: #fff !important;
}

body.novo6-page.workspace-mode #export-drawer .output-grid textarea {
  border-width: 1.5px !important;
  border-color: var(--ws-utility-line) !important;
  background: #fff !important;
}

@media (max-width: 1280px) {
  body.novo6-page.workspace-mode .workspace-summary-button,
  body.novo6-page.workspace-mode .workspace-actions .button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-enrich-button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-match-button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-quality-button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-export-button {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }
}

@media (max-width: 520px) {
  body.novo6-page.workspace-mode .workspace-summary-button,
  body.novo6-page.workspace-mode .workspace-actions .button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-enrich-button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-match-button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-quality-button,
  body.novo6-page.workspace-mode .workspace-actions #workspace-export-button {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }

  body.novo6-page.workspace-mode #export-drawer .pdf-style-preview {
    grid-template-columns: 1fr !important;
  }

  body.novo6-page.workspace-mode #export-drawer .pdf-style-preview p {
    padding-top: 10px !important;
    padding-left: 0 !important;
    border-top: 1.5px solid var(--ws-utility-line) !important;
    border-left: 0 !important;
  }
}

/* Final Novo6 interaction and phone-flow refinement. */
body.novo6-page:not(.workspace-mode) .novo-preview-topbar i[data-state="review"],
body.novo6-page:not(.workspace-mode) .novo-preview-record[data-state="review"] i {
  background: var(--novo-error);
}

body.novo6-page:not(.workspace-mode) .novo-review-copy li[data-state="attention"] > span {
  border-color: #e5a2ad;
  background: #ffedf0;
  color: #b92f43;
}

body.novo6-page:not(.workspace-mode) .novo-format-table > div {
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

body.novo6-page:not(.workspace-mode) .novo-format-table > div:hover,
body.novo6-page:not(.workspace-mode) .novo-format-table > div:focus-within {
  background: #e4f0ff;
  box-shadow: inset 4px 0 #1468e8;
}

body.novo6-page:not(.workspace-mode) .novo-format-table > div:hover > b,
body.novo6-page:not(.workspace-mode) .novo-format-table > div:focus-within > b {
  background: #d9eaff;
  color: #0d56bd;
}

body.novo6-page:not(.workspace-mode) .novo-format-table span:hover {
  background: #d9eaff;
  color: #0d56bd;
}

body.novo6-page:not(.workspace-mode) .novo-format-table ::selection {
  background: #1468e8;
  color: #fff;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list {
  overflow-anchor: none;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details {
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 1.5px solid transparent;
  border-bottom-color: var(--novo-structure-border-soft);
  border-radius: 0;
  background: transparent;
  transition:
    margin 320ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details.is-animating {
  will-change: height;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details.is-expanded {
  margin: 8px 0;
  padding: 0 18px;
  border: 1.5px solid #a9bdcb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(40, 82, 116, 0.045);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list p {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details[open] p {
  animation: none;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details.is-expanded p {
  opacity: 1;
  transform: translateY(0);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list summary::before,
body.novo6-page:not(.workspace-mode) .novo-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--novo-blue);
  color: transparent;
  content: "";
  transform-origin: center;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    background-color 180ms ease;
}

body.novo6-page:not(.workspace-mode) .novo-faq-list summary::before {
  transform: translateY(-50%) rotate(90deg);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list summary::after {
  transform: translateY(-50%);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details.is-expanded summary::before {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

body.novo6-page:not(.workspace-mode) .novo-faq-list details.is-expanded summary::after {
  content: "";
  transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
  body.novo6-page:not(.workspace-mode) .novo-faq-list details,
  body.novo6-page:not(.workspace-mode) .novo-faq-list p,
  body.novo6-page:not(.workspace-mode) .novo-faq-list summary::before,
  body.novo6-page:not(.workspace-mode) .novo-faq-list summary::after {
    transition-duration: 1ms !important;
  }
}

@media (max-width: 640px) {
  body.novo6-page:not(.workspace-mode) .novo-hero-grid {
    gap: 42px;
  }

  body.novo6-page:not(.workspace-mode) .novo-upload-column {
    order: 1;
  }

  body.novo6-page:not(.workspace-mode) .novo-hero-copy {
    order: 2;
  }
}
