:root {
  --novo-ink: #0a2133;
  --novo-ink-strong: #071a2a;
  --novo-ink-soft: #17384f;
  --novo-muted: #5d7282;
  --novo-subtle: #7890a1;
  --novo-blue: #176de7;
  --novo-blue-strong: #0759d1;
  --novo-blue-bright: #3294ff;
  --novo-blue-soft: #eaf4ff;
  --novo-blue-pale: #f5f9ff;
  --novo-green: #157b5c;
  --novo-green-soft: #eaf8f2;
  --novo-red: #c84d5d;
  --novo-red-soft: #fff0f2;
  --novo-line: #b9ccd9;
  --novo-line-soft: #dce7ee;
  --novo-paper: #fff;
  --novo-canvas: #f7fafe;
  --novo-shadow-sm: 0 10px 30px rgba(8, 34, 54, .07);
  --novo-shadow-md: 0 24px 70px rgba(8, 34, 54, .13);
  --novo-shadow-blue: 0 26px 80px rgba(7, 89, 209, .2);
  --novo-radius: 18px;
  --novo-shell: min(1240px, calc(100% - 64px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--novo-ink);
  background: var(--novo-canvas);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.novo-home {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(23, 109, 231, .32);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: #fff;
  background: var(--novo-ink-strong);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.novo-shell {
  width: var(--novo-shell);
  margin-inline: auto;
}

.novo-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  background: rgba(250, 252, 255, .92);
  border-bottom: 1px solid rgba(185, 204, 217, .58);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.novo-site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(8, 34, 54, .06);
}

.novo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  color: var(--novo-ink-strong);
  font-family: Manrope, Inter, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.novo-wordmark svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--novo-blue);
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.novo-wordmark .novo-wordmark-monogram {
  stroke-width: 2.15;
}

.novo-primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}

.novo-primary-nav a,
.novo-header-link {
  position: relative;
  padding: 26px 0 24px;
  color: var(--novo-ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.novo-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity 160ms ease, transform 220ms cubic-bezier(.2, .9, .25, 1);
}

.novo-primary-nav a:hover,
.novo-primary-nav a[aria-current="location"],
.novo-header-link:hover {
  color: var(--novo-blue);
}

.novo-primary-nav a:hover::after,
.novo-primary-nav a[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.novo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  color: var(--novo-ink);
  background: #fff;
  border: 1px solid var(--novo-line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(8, 34, 54, .04);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.novo-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--novo-shadow-sm);
}

.novo-button--small {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--novo-ink-strong);
  border-color: var(--novo-ink-strong);
  border-radius: 8px;
  box-shadow: none;
  font-size: 12px;
}

.novo-button--small:hover,
.novo-button--primary {
  color: #fff;
  background: var(--novo-blue);
  border-color: var(--novo-blue);
}

.novo-button--primary {
  min-width: 174px;
  box-shadow: 0 12px 28px rgba(23, 109, 231, .2);
}

.novo-button--primary:hover {
  background: var(--novo-blue-strong);
  border-color: var(--novo-blue-strong);
  box-shadow: 0 16px 35px rgba(23, 109, 231, .27);
}

.novo-button--quiet {
  color: var(--novo-blue-strong);
  background: rgba(255, 255, 255, .74);
}

.novo-menu-button,
.novo-mobile-nav {
  display: none;
}

.novo-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(rgba(47, 134, 223, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 134, 223, .08) 1px, transparent 1px),
    radial-gradient(circle at 78% 17%, rgba(58, 150, 255, .25), transparent 36%),
    radial-gradient(circle at 16% 83%, rgba(116, 116, 255, .12), transparent 35%),
    radial-gradient(circle at 68% 84%, rgba(43, 189, 162, .08), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #f5f9ff 48%, #eef7ff 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto, auto;
  border-bottom: 1px solid var(--novo-line-soft);
}

.novo-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 250, 254, .96));
  content: "";
}

.novo-hero-orbit {
  position: absolute;
  top: -310px;
  right: -230px;
  width: 850px;
  height: 850px;
  pointer-events: none;
  border: 1px solid rgba(23, 109, 231, .1);
  border-radius: 50%;
}

.novo-hero-orbit::before,
.novo-hero-orbit::after,
.novo-hero-orbit i {
  position: absolute;
  border: 1px solid rgba(23, 109, 231, .09);
  border-radius: 50%;
  content: "";
}

.novo-hero-orbit::before { inset: 85px; }
.novo-hero-orbit::after { inset: 180px; }
.novo-hero-orbit i:nth-child(1) { inset: 270px; }
.novo-hero-orbit i:nth-child(2) { top: 39%; left: 1.2%; width: 9px; height: 9px; background: var(--novo-blue-bright); border: 0; box-shadow: 0 0 0 7px rgba(50, 148, 255, .09); }
.novo-hero-orbit i:nth-child(3) { top: 28.5%; left: 69%; width: 7px; height: 7px; background: #29b99a; border: 0; box-shadow: 0 0 0 6px rgba(41, 185, 154, .08); }
.novo-hero-orbit i:nth-child(4) { top: 32.5%; left: 55%; width: 8px; height: 8px; background: var(--novo-blue-bright); border: 0; box-shadow: 0 0 0 6px rgba(50, 148, 255, .08); }

.novo-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .91fr) minmax(570px, 1.09fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: 670px;
  padding-block: 78px 62px;
}

.novo-kicker-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.novo-kicker,
.novo-private,
.novo-overline {
  color: var(--novo-blue-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.novo-kicker,
.novo-private {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.novo-kicker i,
.novo-private i {
  width: 7px;
  height: 7px;
  background: var(--novo-blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(50, 148, 255, .09);
}

.novo-private {
  padding-left: 18px;
  color: var(--novo-green);
  border-left: 1px solid var(--novo-line);
}

.novo-private i {
  background: var(--novo-green);
  box-shadow: 0 0 0 5px rgba(21, 123, 92, .08);
}

.novo-hero h1,
.novo-section h2,
.novo-final-card h2 {
  margin: 0;
  color: var(--novo-ink-strong);
  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

.novo-hero h1 {
  max-width: 640px;
  font-size: clamp(54px, 5.3vw, 78px);
}

.novo-hero h1 em,
.novo-product-card h3 em {
  color: var(--novo-blue);
  font-style: normal;
}

.novo-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--novo-muted);
  font-size: 17px;
  line-height: 1.75;
}

.novo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.novo-proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 590px;
  padding: 24px 0 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--novo-line-soft);
  list-style: none;
}

.novo-proof-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  padding-right: 16px;
}

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

.novo-proof-list svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  fill: none;
  stroke: var(--novo-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.novo-proof-list span,
.novo-proof-list strong,
.novo-proof-list small {
  display: block;
}

.novo-proof-list strong {
  color: var(--novo-ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

.novo-proof-list small {
  margin-top: 3px;
  color: var(--novo-subtle);
  font-size: 9px;
  line-height: 1.35;
}

.novo-hero-product {
  position: relative;
  min-width: 0;
  padding: 24px 0 42px 22px;
}

.novo-product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #9fb7c7;
  border-radius: 15px;
  box-shadow: var(--novo-shadow-md);
}

.novo-window-bar,
.novo-window-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 16px;
  color: var(--novo-muted);
  background: #fff;
  border-bottom: 1px solid var(--novo-line-soft);
  font-size: 9px;
}

.novo-window-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.novo-window-title b {
  color: var(--novo-ink-strong);
  font-size: 10px;
}

.novo-ready-pill,
.novo-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--novo-green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.novo-ready-pill {
  padding: 6px 9px;
  background: var(--novo-green-soft);
  border: 1px solid #caeadc;
  border-radius: 999px;
}

.novo-ready-pill i,
.novo-verified i,
.novo-window-footer i {
  width: 6px;
  height: 6px;
  background: var(--novo-green);
  border-radius: 50%;
}

.novo-workspace-visual {
  display: grid;
  grid-template-columns: 1fr .98fr 1.12fr;
  min-height: 390px;
  background: #f5faff;
}

.novo-workspace-visual > section {
  min-width: 0;
  padding: 13px;
}

.novo-workspace-visual > section + section {
  border-left: 1px solid var(--novo-line-soft);
}

.novo-panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  color: var(--novo-subtle);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.novo-panel-label b {
  color: var(--novo-blue-strong);
}

.novo-paper {
  min-height: 320px;
  padding: 31px 22px;
  color: #324a5c;
  background: #fff;
  border: 1px solid var(--novo-line-soft);
  box-shadow: 0 8px 20px rgba(8, 34, 54, .07);
  font-family: Georgia, serif;
  font-size: 7.5px;
}

.novo-paper > span {
  display: block;
  width: 85%;
  height: 3px;
  margin-top: 7px;
  background: #dae6ed;
}

.novo-paper .novo-paper-title {
  width: 60%;
  height: 6px;
  margin: 0 0 15px;
  background: #90a9ba;
}

.novo-paper strong {
  display: block;
  margin: 29px 0 10px;
  color: var(--novo-ink-strong);
  font-size: 12px;
}

.novo-paper p {
  margin: 0 -8px 5px;
  padding: 7px 8px;
  line-height: 1.35;
}

.novo-paper p.is-highlighted {
  color: var(--novo-ink-strong);
  background: #dceeff;
  box-shadow: inset 2px 0 0 var(--novo-blue);
}

.novo-record-panel article {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 9px;
  min-height: 70px;
  align-items: center;
  padding: 11px;
  margin-top: 9px;
  background: #fff;
  border: 1px solid var(--novo-line-soft);
  border-radius: 8px;
}

.novo-record-panel article.is-selected {
  border-color: var(--novo-blue);
  box-shadow: 0 8px 18px rgba(23, 109, 231, .12), inset 3px 0 0 var(--novo-blue);
}

.novo-record-panel article > i,
.novo-library-list article > i {
  width: 6px;
  height: 6px;
  background: var(--novo-blue);
  border-radius: 50%;
}

.novo-record-panel article > i.is-green,
.novo-library-list article > i.is-green { background: var(--novo-green); }
.novo-record-panel article > i.is-red { background: var(--novo-red); }

.novo-record-panel article span,
.novo-record-panel article b,
.novo-record-panel article small {
  display: block;
}

.novo-record-panel article b {
  overflow: hidden;
  color: var(--novo-ink-soft);
  font-size: 8.5px;
  line-height: 1.35;
}

.novo-record-panel article small {
  margin-top: 5px;
  color: var(--novo-subtle);
  font-size: 7px;
}

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

.novo-verified {
  width: fit-content;
  padding: 7px 9px;
  margin: 34px 0 22px;
  background: var(--novo-green-soft);
  border-radius: 5px;
}

.novo-detail-panel dl,
.novo-detail-panel dd {
  margin: 0;
}

.novo-detail-panel dl > div {
  padding: 10px 0;
  border-bottom: 1px solid var(--novo-line-soft);
}

.novo-detail-panel dt {
  margin-bottom: 4px;
  color: var(--novo-subtle);
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.novo-detail-panel dd {
  overflow: hidden;
  color: var(--novo-ink-soft);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.45;
}

.novo-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.novo-detail-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  margin-top: 20px;
  color: #fff;
  background: var(--novo-blue);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 700;
}

.novo-window-footer {
  min-height: 37px;
  border-top: 1px solid var(--novo-line-soft);
  border-bottom: 0;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.novo-window-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.novo-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
  min-height: 59px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid var(--novo-line);
  border-radius: 10px;
  box-shadow: var(--novo-shadow-sm);
}

.novo-floating-card b,
.novo-floating-card small {
  display: block;
}

.novo-floating-card b { color: var(--novo-ink-soft); font-size: 9px; }
.novo-floating-card small { margin-top: 4px; color: var(--novo-subtle); font-size: 7px; }

.novo-floating-card--capture {
  bottom: 0;
  left: -10px;
}

.novo-floating-card--capture > i {
  width: 7px;
  height: 7px;
  margin-left: auto;
  background: var(--novo-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--novo-green-soft);
}

.novo-floating-icon {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--novo-blue);
  background: var(--novo-blue-soft);
  border: 1px solid #cce1fa;
  border-radius: 7px;
  place-items: center;
  font-size: 17px;
}

.novo-floating-card--export {
  right: -24px;
  bottom: 21px;
  min-width: 184px;
}

.novo-export-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: auto;
  color: #fff;
  background: var(--novo-blue);
  border-radius: 7px;
  place-items: center;
  font-size: 14px;
}

/* Cloud library hero */
.novo-hero {
  min-height: 760px;
}

.novo-hero-grid {
  grid-template-columns: minmax(350px, .68fr) minmax(690px, 1.32fr);
  gap: clamp(30px, 4vw, 60px);
  min-height: 720px;
  padding-block: 62px 72px;
}

.novo-hero-copy {
  position: relative;
  z-index: 4;
}

.novo-hero h1 {
  font-size: clamp(56px, 5vw, 76px);
}

.novo-hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 570px;
  padding: 25px 0 0;
  margin: 27px 0 0;
  border-top: 1px solid var(--novo-line-soft);
  list-style: none;
}

.novo-hero-notes li {
  position: relative;
  min-width: 0;
  padding: 0 18px 0 15px;
}

.novo-hero-notes li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--novo-blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(50, 148, 255, .08);
  content: "";
}

.novo-hero-notes span,
.novo-hero-notes small {
  display: block;
}

.novo-hero-notes span {
  color: var(--novo-ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.novo-hero-notes small {
  margin-top: 4px;
  color: var(--novo-subtle);
  font-size: 8px;
  line-height: 1.45;
}

.novo-library-shot {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding-bottom: 34px;
}

.novo-library-shot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 13px;
  color: var(--novo-blue-strong);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.novo-library-shot-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.novo-library-shot-meta i {
  width: 7px;
  height: 7px;
  background: var(--novo-green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(21, 123, 92, .08);
}

.novo-library-shot-meta em {
  color: var(--novo-subtle);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .08em;
}

.novo-library-shot figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid #a9c0d1;
  border-radius: 17px;
  box-shadow: 0 34px 90px rgba(8, 34, 54, .2), 0 12px 32px rgba(23, 109, 231, .1);
}

.novo-library-shot figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.novo-library-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.novo-library-shot-caption {
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 17px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid #c0d4e1;
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(8, 34, 54, .14);
}

.novo-library-shot-caption > span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
}

.novo-library-shot-caption > span:last-child {
  text-align: right;
}

.novo-library-shot-caption i {
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  background: var(--novo-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--novo-green-soft);
}

.novo-library-shot-caption b,
.novo-library-shot-caption small {
  display: block;
}

.novo-library-shot-caption b {
  color: var(--novo-ink-soft);
  font-size: 10px;
}

.novo-library-shot-caption small {
  color: var(--novo-subtle);
  font-size: 7px;
}

.novo-library-scene {
  position: relative;
  min-width: 0;
  padding: 18px 0 52px;
}

.novo-library-glow {
  position: absolute;
  inset: -12% -7% 5% 12%;
  background:
    radial-gradient(circle at 78% 15%, rgba(50, 148, 255, .34), transparent 36%),
    radial-gradient(circle at 32% 80%, rgba(21, 123, 92, .15), transparent 39%);
  filter: blur(8px);
  pointer-events: none;
}

.novo-library-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  border: 1px solid #aac3d5;
  border-radius: 16px;
  box-shadow: 0 32px 85px rgba(8, 34, 54, .18), 0 7px 22px rgba(7, 89, 209, .08);
}

.novo-library-topbar {
  display: grid;
  grid-template-columns: auto auto auto minmax(150px, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 61px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--novo-line-soft);
}

.novo-app-brand,
.novo-status-pill,
.novo-app-add,
.novo-app-search,
.novo-app-tools,
.novo-library-context,
.novo-library-context > div,
.novo-library-nav li,
.novo-library-folders li,
.novo-library-labels li,
.novo-library-section-title,
.novo-library-account,
.novo-library-records article footer,
.novo-folder-chip,
.novo-library-float {
  display: flex;
  align-items: center;
}

.novo-app-brand {
  gap: 7px;
  padding: 0 8px 0 2px;
  color: var(--novo-ink-strong);
  font-family: Manrope, Inter, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.novo-app-brand span {
  color: var(--novo-blue);
  font-size: 12px;
  letter-spacing: -.08em;
}

.novo-status-pill {
  gap: 7px;
  min-height: 39px;
  padding: 0 9px;
  background: #f6faff;
  border: 1px solid #cfdeea;
  border-radius: 8px;
}

.novo-status-pill > i,
.novo-library-float--sync > i {
  width: 6px;
  height: 6px;
  background: var(--novo-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(21, 123, 92, .08);
}

.novo-status-pill span,
.novo-status-pill b,
.novo-status-pill small,
.novo-library-account span,
.novo-library-account b,
.novo-library-account small,
.novo-library-float span,
.novo-library-float b,
.novo-library-float small {
  display: block;
}

.novo-status-pill b {
  color: var(--novo-ink-soft);
  font-size: 7px;
  line-height: 1.2;
}

.novo-status-pill small {
  margin-top: 2px;
  color: var(--novo-subtle);
  font-size: 6px;
}

.novo-app-add {
  min-height: 39px;
  gap: 6px;
  padding: 0 11px;
  color: #fff;
  background: var(--novo-blue);
  border: 0;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
}

.novo-app-add i {
  display: grid;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, .2);
  border-radius: 5px;
  place-items: center;
  font-size: 12px;
  font-style: normal;
}

.novo-app-search {
  justify-content: space-between;
  min-height: 39px;
  padding: 0 11px;
  color: #8aa0b0;
  background: #fff;
  border: 1px solid #c8d9e5;
  border-radius: 8px;
  font-size: 7.5px;
}

.novo-app-search span {
  padding: 3px 5px;
  color: #8fa3b1;
  background: #f5f8fb;
  border: 1px solid #e3ebf1;
  border-radius: 4px;
  font-size: 6px;
}

.novo-app-tools {
  gap: 5px;
}

.novo-app-tools span,
.novo-app-tools b {
  display: grid;
  min-height: 35px;
  padding: 0 9px;
  border: 1px solid #c8d9e5;
  border-radius: 8px;
  place-items: center;
  color: var(--novo-ink-soft);
  background: #fff;
  font-size: 7px;
  font-weight: 700;
}

.novo-app-tools b {
  color: #fff;
  background: var(--novo-ink-strong);
  border-color: var(--novo-ink-strong);
}

.novo-library-context {
  justify-content: space-between;
  min-height: 50px;
  padding: 0 13px 0 174px;
  color: var(--novo-ink-strong);
  background: #fbfdff;
  border-bottom: 1px solid var(--novo-line-soft);
}

.novo-library-context > strong {
  font-size: 8px;
}

.novo-library-context > strong small {
  margin-left: 5px;
  color: var(--novo-subtle);
  font-weight: 600;
}

.novo-library-context > div {
  gap: 5px;
}

.novo-library-context > div span {
  padding: 7px 9px;
  color: var(--novo-muted);
  background: #fff;
  border: 1px solid #d4e1ea;
  border-radius: 7px;
  font-size: 6.5px;
  font-weight: 700;
}

.novo-library-body {
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr);
  min-height: 455px;
}

.novo-library-sidebar {
  position: relative;
  min-width: 0;
  padding: 16px 11px 67px;
  color: var(--novo-muted);
  background: #f5f8fc;
  border-right: 1px solid var(--novo-line-soft);
}

.novo-library-sidebar > p,
.novo-library-section-title {
  margin: 0 0 7px;
  color: #6c8190;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.novo-library-nav,
.novo-library-folders,
.novo-library-labels {
  padding: 0;
  margin: 0;
  list-style: none;
}

.novo-library-nav {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e1eaf1;
}

.novo-library-nav li,
.novo-library-folders li,
.novo-library-labels li {
  min-height: 28px;
  gap: 7px;
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 7px;
}

.novo-library-nav li > span {
  width: 13px;
  color: #4e7086;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.novo-library-nav li b,
.novo-library-folders li b,
.novo-library-labels li b {
  overflow: hidden;
  min-width: 0;
  color: var(--novo-ink-soft);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.novo-library-nav li small,
.novo-library-folders li small {
  margin-left: auto;
  color: #7990a0;
  font-size: 6px;
  font-weight: 700;
}

.novo-library-section-title {
  justify-content: space-between;
  margin-top: 11px;
  padding: 0 6px;
}

.novo-library-section-title b {
  color: #708796;
  font-size: 11px;
}

.novo-library-folders li > span {
  color: #f0ae19;
  font-size: 10px;
}

.novo-library-folders li.is-current {
  color: var(--novo-blue-strong);
  background: #e8f2ff;
  border-color: #a9cdfb;
}

.novo-library-folders li.is-current b,
.novo-library-folders li.is-current small {
  color: var(--novo-blue-strong);
}

.novo-library-labels li > span {
  color: var(--novo-green);
  font-size: 10px;
}

.novo-library-account {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  gap: 7px;
  min-height: 58px;
  padding: 8px 11px;
  background: #ecf2f8;
  border-top: 1px solid #d8e3eb;
}

.novo-library-account > i {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, #0759d1, #3294ff);
  border-radius: 8px;
  place-items: center;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.novo-library-account span {
  overflow: hidden;
  min-width: 0;
}

.novo-library-account b {
  overflow: hidden;
  color: var(--novo-ink-soft);
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.novo-library-account small {
  margin-top: 3px;
  color: #7d93a2;
  font-size: 5.5px;
}

.novo-library-account > em {
  margin-left: auto;
  color: #708796;
  font-size: 9px;
  font-style: normal;
}

.novo-library-records {
  min-width: 0;
  background: #fff;
}

.novo-library-records article {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 18px;
  gap: 9px;
  min-height: 112px;
  padding: 13px 13px 11px;
  border-bottom: 1px solid #e3ebf1;
}

.novo-library-records article:last-child {
  border-bottom: 0;
}

.novo-library-records article.is-selected {
  background: #f0f6ff;
  box-shadow: inset 3px 0 0 var(--novo-blue);
}

.novo-record-check {
  display: grid;
  width: 17px;
  height: 17px;
  color: #fff;
  background: #fff;
  border: 1.4px solid #99afbf;
  border-radius: 5px;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
}

.novo-library-records article.is-selected .novo-record-check {
  background: var(--novo-blue);
  border-color: var(--novo-blue);
}

.novo-library-records article h2 {
  overflow: hidden;
  margin: 0;
  color: var(--novo-ink-strong);
  font-family: Inter, Arial, sans-serif;
  font-size: 9.2px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.novo-library-records article p {
  overflow: hidden;
  margin: 4px 0 5px;
  color: var(--novo-muted);
  font-size: 6.8px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.novo-library-records article > div {
  min-width: 0;
}

.novo-library-records article footer {
  flex-wrap: wrap;
  gap: 5px;
  color: var(--novo-subtle);
  font-size: 6.3px;
}

.novo-library-records article footer b,
.novo-library-records article footer em {
  color: var(--novo-blue-strong);
  font-style: normal;
  font-weight: 800;
}

.novo-library-records article footer span + span::before,
.novo-library-records article footer em::before {
  margin-right: 5px;
  color: #a1b3bf;
  content: "·";
}

.novo-folder-chip {
  width: fit-content;
  min-height: 21px;
  gap: 4px;
  padding: 0 7px;
  margin-top: 8px;
  color: var(--novo-blue-strong);
  background: #eaf4ff;
  border: 1px solid #c6dffb;
  border-radius: 999px;
  font-size: 6px;
  font-weight: 800;
}

.novo-folder-chip--spatial {
  color: #6b48c8;
  background: #f3efff;
  border-color: #d8cef8;
}

.novo-record-star {
  color: #91a6b4;
  font-size: 13px;
  font-style: normal;
}

.novo-library-float {
  position: absolute;
  z-index: 4;
  gap: 9px;
  min-width: 185px;
  min-height: 58px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, .98);
  border: 1px solid #c4d6e2;
  border-radius: 11px;
  box-shadow: 0 17px 36px rgba(8, 34, 54, .14);
}

.novo-library-float b {
  color: var(--novo-ink-soft);
  font-size: 8px;
}

.novo-library-float small {
  margin-top: 4px;
  color: var(--novo-subtle);
  font-size: 6px;
}

.novo-library-float > em {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: auto;
  color: #fff;
  background: var(--novo-blue);
  border-radius: 7px;
  place-items: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.novo-library-float--sync {
  bottom: 0;
  left: -17px;
}

.novo-library-float--sync > em {
  color: var(--novo-green);
  background: var(--novo-green-soft);
}

.novo-library-float--cite {
  right: -20px;
  bottom: 23px;
  min-width: 175px;
}

.novo-trust-strip {
  position: relative;
  z-index: 3;
  background: #fff;
  border-bottom: 1px solid var(--novo-line-soft);
}

.novo-trust-strip .novo-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 0;
  padding-block: 61px;
}

.novo-trust-strip p {
  margin: 0;
  color: var(--novo-blue-strong);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.novo-trust-strip .novo-library-shot-features {
  margin: 0 auto;
}

.novo-section {
  position: relative;
  padding: 122px 0;
  background: #fff;
}

.novo-section-head {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.novo-overline {
  margin: 0 0 22px;
}

.novo-section h2 {
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.03;
}

.novo-section-head > p,
.novo-questions-layout > header > p {
  max-width: 510px;
  margin: 0;
  color: var(--novo-muted);
  font-size: 15px;
  line-height: 1.75;
}

.novo-products {
  background:
    radial-gradient(circle at 10% 70%, rgba(23, 109, 231, .08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fafe 100%);
}

.novo-product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.novo-product-card {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--novo-line);
  border-radius: var(--novo-radius);
  box-shadow: var(--novo-shadow-sm);
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.2, .9, .25, 1);
}

.novo-product-card:hover {
  border-color: #91b6d0;
  box-shadow: var(--novo-shadow-md);
  transform: translateY(-5px);
}

.novo-product-card--extract {
  background:
    linear-gradient(rgba(23, 109, 231, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 109, 231, .055) 1px, transparent 1px),
    linear-gradient(145deg, #fbfdff, #eef7ff);
  background-size: 40px 40px, 40px 40px, auto;
}

.novo-product-card--library {
  background:
    radial-gradient(circle at 100% 0, rgba(23, 109, 231, .12), transparent 32%),
    radial-gradient(circle at 10% 100%, rgba(35, 185, 151, .08), transparent 30%),
    #f9fbfd;
}

.novo-card-meta {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}

.novo-card-meta > span {
  display: grid;
  width: 36px;
  height: 36px;
  color: var(--novo-blue);
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--novo-line);
  border-radius: 8px;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.novo-card-meta b {
  color: var(--novo-ink-soft);
  font-size: 12px;
}

.novo-card-meta > i {
  color: var(--novo-blue-strong);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.novo-product-card h3 {
  margin: 0;
  color: var(--novo-ink-strong);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.novo-product-card > p {
  max-width: 485px;
  min-height: 52px;
  margin: 20px 0 28px;
  color: var(--novo-muted);
  font-size: 13px;
  line-height: 1.65;
}

.novo-extractor-mini,
.novo-library-mini {
  overflow: hidden;
  height: 300px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #9eb6c7;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(8, 34, 54, .11);
}

.novo-mini-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  padding: 0 14px;
  color: var(--novo-ink-soft);
  border-bottom: 1px solid var(--novo-line-soft);
  font-size: 9px;
  font-weight: 700;
}

.novo-mini-toolbar i {
  padding: 5px 8px;
  color: var(--novo-green);
  background: var(--novo-green-soft);
  border-radius: 999px;
  font-size: 7px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.novo-mini-drop {
  display: flex;
  height: 210px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 9px;
  border: 1.5px dashed #7aa1bb;
  border-radius: 8px;
}

.novo-mini-papers {
  position: relative;
  width: 45px;
  height: 48px;
  margin-bottom: 14px;
}

.novo-mini-papers i {
  position: absolute;
  inset: 4px 8px 0;
  background: #fff;
  border: 1px solid var(--novo-line);
  border-radius: 4px;
  box-shadow: 0 5px 12px rgba(8, 34, 54, .07);
}

.novo-mini-papers i:first-child { transform: translate(-5px, 1px) rotate(-6deg); }
.novo-mini-papers i:last-child { transform: translate(5px, 3px) rotate(4deg); }
.novo-mini-drop b { font-size: 11px; }
.novo-mini-drop small { margin: 6px 0 13px; color: var(--novo-subtle); font-size: 7px; text-transform: uppercase; }
.novo-mini-drop > span { padding: 9px 18px; color: #fff; background: var(--novo-blue); border-radius: 6px; font-size: 8px; font-weight: 700; }

.novo-mini-private {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--novo-green);
  background: var(--novo-green-soft);
  border-top: 1px solid #c9e8da;
  font-size: 8px;
}

.novo-mini-private i {
  width: 7px;
  height: 7px;
  background: var(--novo-green);
  border-radius: 50%;
}

.novo-library-mini {
  display: grid;
  grid-template-columns: 128px 1fr;
}

.novo-library-mini aside {
  padding: 18px 14px;
  background: #f2f7fb;
  border-right: 1px solid var(--novo-line-soft);
}

.novo-library-mini aside b {
  display: block;
  margin-bottom: 28px;
  font-size: 9px;
}

.novo-library-mini aside b span {
  margin-right: 4px;
  color: var(--novo-blue);
}

.novo-library-mini aside > i {
  display: block;
  width: 75%;
  height: 7px;
  margin-top: 19px;
  background: #cbdbe6;
  border-radius: 999px;
}

.novo-library-mini aside > i:first-of-type { width: 92%; background: #b8d7f7; }

.novo-library-list {
  min-width: 0;
  padding: 15px;
}

.novo-library-toolbar {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.novo-library-toolbar span { color: var(--novo-ink-strong); font-size: 10px; font-weight: 800; }
.novo-library-toolbar b { padding: 7px 10px; color: #fff; background: var(--novo-blue); border-radius: 5px; font-size: 7px; }

.novo-library-list article {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border-top: 1px solid var(--novo-line-soft);
}

.novo-library-list article span,
.novo-library-list article b,
.novo-library-list article small { display: block; min-width: 0; }
.novo-library-list article b { overflow: hidden; color: var(--novo-ink-soft); font-size: 8px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.novo-library-list article small { margin-top: 4px; color: var(--novo-subtle); font-size: 6.5px; }
.novo-library-list article em { padding: 4px 6px; color: var(--novo-blue-strong); background: var(--novo-blue-soft); border-radius: 4px; font-size: 6px; font-style: normal; }

.novo-card-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 21px 0 0;
  margin: 27px 0 0;
  border-top: 1px solid var(--novo-line);
  list-style: none;
}

.novo-card-points li {
  position: relative;
  padding-left: 15px;
  color: var(--novo-ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.novo-card-points li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--novo-blue);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.novo-workflow {
  overflow: hidden;
  padding-block: 48px;
  color: #fff;
  background:
    linear-gradient(rgba(93, 176, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 176, 255, .1) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(54, 150, 255, .38), transparent 32%),
    linear-gradient(145deg, #061d34 0%, #082f5b 52%, #0a5bc4 100%);
  background-size: 50px 50px, 50px 50px, auto, auto;
}

.novo-workflow .novo-shell {
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(620px, 1.22fr);
  gap: clamp(38px, 4vw, 68px);
  min-height: 470px;
  align-items: center;
}

.novo-workflow-orbit {
  position: absolute;
  top: -330px;
  right: -180px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(165, 215, 255, .16);
  border-radius: 50%;
}

.novo-workflow-orbit::before,
.novo-workflow-orbit::after {
  position: absolute;
  border: 1px solid rgba(165, 215, 255, .12);
  border-radius: 50%;
  content: "";
}

.novo-workflow-orbit::before { inset: 90px; }
.novo-workflow-orbit::after { inset: 190px; }

.novo-section-head--light h2,
.novo-section-head--light .novo-overline {
  color: #fff;
}

.novo-section-head--light > p {
  color: #b9d1e5;
}

.novo-workflow .novo-section-head {
  grid-template-columns: minmax(0, 1fr);
  align-self: center;
  margin-bottom: 0;
}

.novo-workflow .novo-section-head h2 {
  max-width: 520px;
  font-size: clamp(43px, 3.8vw, 58px);
  line-height: 1.02;
}

.novo-workflow-layout {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 30px;
  align-items: stretch;
}

.novo-workflow-steps {
  display: grid;
  gap: 10px;
}

.novo-workflow-steps button {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  grid-template-rows: auto auto;
  gap: 4px 11px;
  min-height: 93px;
  padding: 16px;
  color: #173248;
  text-align: left;
  background: #fcfdfe;
  border: 1px solid #e8edf0;
  border-radius: 10px;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.novo-workflow-steps button:hover {
  background: #f3f8fd;
  border-color: #d4e4f0;
  transform: translateX(3px);
}

.novo-workflow-steps button.is-active {
  color: #173248;
  background: var(--novo-blue-soft);
  border-color: #c9def5;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .13);
}

.novo-workflow-steps button > span {
  display: grid;
  grid-row: 1 / 3;
  width: 37px;
  height: 37px;
  color: var(--novo-blue);
  background: var(--novo-blue-soft);
  border: 1px solid #c9def5;
  border-radius: 8px;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
}

.novo-workflow-steps button.is-active > span {
  color: #fff;
  background: var(--novo-blue);
  border-color: var(--novo-blue);
}

.novo-workflow-steps button b {
  align-self: end;
  font-size: 12px;
}

.novo-workflow-steps button small {
  color: #526b7e;
  font-size: 9px;
  line-height: 1.45;
}

.novo-workflow-steps button.is-active small { color: #526b7e; }
.novo-workflow-steps button > i { grid-column: 3; grid-row: 1 / 3; align-self: center; font-style: normal; }

.novo-workflow-stage {
  min-height: 402px;
  overflow: hidden;
  color: var(--novo-ink);
  background: #fff;
  border: 1px solid #8fb3cf;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .16);
}

.novo-stage-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #45667f;
  background: #f5faff;
  border-bottom: 1px solid #b4ccdd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.novo-stage-head b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--novo-green);
  font-size: 8px;
}

.novo-stage-head b i {
  width: 6px;
  height: 6px;
  background: #51d7ac;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(81, 215, 172, .1);
}

.novo-stage-panel {
  min-height: 353px;
  padding: 25px;
  background: #fff;
  animation: novo-panel-in 280ms ease both;
}

.novo-stage-panel[hidden] { display: none; }

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

.novo-stage-panel > footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 62px;
  padding: 16px 0 0;
  margin-top: 20px;
  border-top: 1px solid #b9ccd9;
}

.novo-stage-panel > footer b { color: var(--novo-ink-strong); font-size: 10px; }
.novo-stage-panel > footer span { color: var(--novo-muted); font-size: 9px; line-height: 1.55; text-align: right; }

.novo-capture-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.novo-capture-input {
  grid-column: 1 / -1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: var(--novo-muted);
  background: #f7fafe;
  border: 1px solid #9fb8ca;
  border-radius: 8px;
  font-size: 9px;
}

.novo-capture-input b { padding: 9px 13px; color: #fff; background: var(--novo-blue); border-radius: 5px; font-size: 8px; }

.novo-capture-source {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  gap: 10px;
  align-items: center;
  min-height: 135px;
  padding: 15px;
  background: #fff;
  border: 1px solid #b8ccda;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(8, 34, 54, .05);
}

.novo-capture-source > i {
  display: grid;
  width: 36px;
  height: 42px;
  color: var(--novo-blue);
  background: var(--novo-blue-soft);
  border: 1px solid #c9def5;
  border-radius: 5px;
  place-items: center;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.novo-capture-source span,
.novo-capture-source b,
.novo-capture-source small { display: block; min-width: 0; }
.novo-capture-source b { overflow: hidden; color: var(--novo-ink-soft); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.novo-capture-source small { margin-top: 5px; color: var(--novo-subtle); font-size: 7px; }
.novo-capture-source > em { display: grid; width: 19px; height: 19px; color: var(--novo-green); background: var(--novo-green-soft); border-radius: 50%; place-items: center; font-size: 9px; font-style: normal; }

.novo-extract-visual {
  display: grid;
  grid-template-columns: .72fr 50px 1.28fr;
  align-items: center;
  min-height: 215px;
}

.novo-extract-paper {
  min-height: 210px;
  padding: 24px 18px;
  background: #fff;
  border: 1px solid #b8ccda;
  border-radius: 6px;
  box-shadow: 10px 10px 0 #eef4f8;
}

.novo-extract-paper > span,
.novo-extract-paper > i { display: block; width: 80%; height: 4px; margin-top: 8px; background: #cfdee8; }
.novo-extract-paper > span:first-child { width: 55%; height: 7px; margin: 0 0 20px; background: #879fb1; }
.novo-extract-paper b { display: block; margin: 27px 0 14px; color: var(--novo-ink); font-family: Georgia, serif; font-size: 12px; }
.novo-extract-paper > i { width: 100%; height: 18px; margin-top: 5px; background: #dcedff; border-left: 2px solid var(--novo-blue); }

.novo-extract-arrow { color: #66b8ff; font-size: 24px; text-align: center; }

.novo-extract-records { display: grid; gap: 8px; }
.novo-extract-records article { display: grid; grid-template-columns: 6px 1fr; gap: 10px; align-items: center; min-height: 60px; padding: 10px 13px; color: var(--novo-ink); background: #fff; border: 1px solid #b8ccda; border-radius: 7px; }
.novo-extract-records article > i { width: 6px; height: 6px; background: var(--novo-blue); border-radius: 50%; }
.novo-extract-records b,.novo-extract-records small { display: block; }
.novo-extract-records b { color: var(--novo-subtle); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.novo-extract-records small { margin-top: 4px; color: var(--novo-ink-soft); font-size: 8px; font-weight: 600; }

.novo-verify-visual {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
}

.novo-verify-score {
  display: flex;
  min-height: 215px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--novo-ink);
  background: #fff;
  border: 1px solid #b8ccda;
  border-radius: 8px;
}

.novo-verify-score > span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 9px; color: var(--novo-green); background: var(--novo-green-soft); border-radius: 999px; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.novo-verify-score > span i { width: 6px; height: 6px; background: var(--novo-green); border-radius: 50%; }
.novo-verify-score strong { margin-top: 14px; color: var(--novo-ink-strong); font-family: Manrope, sans-serif; font-size: 54px; letter-spacing: -.07em; }
.novo-verify-score small { color: var(--novo-subtle); font-size: 8px; }

.novo-verify-visual ul { padding: 0; margin: 0; overflow: hidden; background: #fff; border: 1px solid #b8ccda; border-radius: 8px; list-style: none; }
.novo-verify-visual li { display: flex; min-height: 53px; align-items: center; justify-content: space-between; padding: 0 14px; color: var(--novo-ink-soft); border-bottom: 1px solid #c4d4df; font-size: 8.5px; font-weight: 600; }
.novo-verify-visual li:last-child { border: 0; }
.novo-verify-visual li b { display: grid; width: 20px; height: 20px; color: var(--novo-green); background: var(--novo-green-soft); border-radius: 50%; place-items: center; font-size: 8px; }
.novo-verify-visual li.needs-review { color: #96600b; background: #fff9ed; }
.novo-verify-visual li.needs-review b { color: #96600b; background: #ffedca; }

.novo-cite-visual { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.novo-citation-preview { min-height: 215px; padding: 23px; color: var(--novo-ink); background: #fff; border: 1px solid #b8ccda; border-radius: 8px; }
.novo-citation-preview small { display: inline-block; padding: 5px 7px; color: var(--novo-blue-strong); background: var(--novo-blue-soft); border-radius: 4px; font-size: 7px; font-weight: 800; }
.novo-citation-preview p { margin: 34px 0 0; font-family: Georgia, serif; font-size: 11px; line-height: 1.75; }
.novo-format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.novo-format-grid span { display: grid; min-height: 64px; color: var(--novo-blue-strong); background: var(--novo-blue-pale); border: 1px solid #a9caeb; border-radius: 7px; place-items: center; font-size: 8px; font-weight: 700; }

.novo-device-showcase {
  position: relative;
  width: 100%;
  min-height: 430px;
  margin: 0;
  isolation: isolate;
}

.novo-device-showcase::before {
  position: absolute;
  inset: 11% 7% 2%;
  z-index: -2;
  background: radial-gradient(ellipse at center, rgba(69, 166, 255, .22), rgba(34, 120, 221, .08) 48%, transparent 72%);
  border: 1px solid rgba(150, 209, 255, .12);
  border-radius: 50%;
  content: "";
}

.novo-device-sync {
  position: absolute;
  top: 3px;
  left: 53%;
  z-index: 5;
  display: flex;
  min-width: 142px;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 7px 13px;
  color: #fff;
  background: rgba(5, 29, 53, .9);
  border: 1px solid rgba(154, 213, 255, .38);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 17, 40, .24);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.novo-device-sync::after {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  width: 1px;
  height: 48px;
  background: linear-gradient(rgba(121, 199, 255, .55), transparent);
  content: "";
}

.novo-device-sync > i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #4bd9ac;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(75, 217, 172, .1);
}

.novo-device-sync span,
.novo-device-sync b,
.novo-device-sync small { display: block; }
.novo-device-sync b { font-size: 9px; letter-spacing: .02em; }
.novo-device-sync small { margin-top: 2px; color: #9fc5df; font-size: 7px; }

.novo-device {
  position: absolute;
}

.novo-device-frame {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 13, 32, .3), 0 8px 20px rgba(0, 23, 55, .2);
}

.novo-device-screen {
  height: 100%;
  overflow: hidden;
  color: var(--novo-ink);
  background: #f7fafe;
}

.novo-device--laptop {
  bottom: 14px;
  left: 53%;
  z-index: 1;
  width: min(92%, 620px);
  transform: translateX(-50%);
}

.novo-device--laptop .novo-device-frame {
  aspect-ratio: 1.62;
  padding: 7px;
  background: linear-gradient(145deg, #153d5d, #071a2a 62%);
  border: 1px solid rgba(182, 220, 247, .34);
  border-radius: 18px 18px 10px 10px;
}

.novo-device--laptop .novo-device-screen { border-radius: 10px 10px 5px 5px; }

.novo-device-laptop-base {
  position: relative;
  left: 50%;
  width: 108%;
  height: 14px;
  background: linear-gradient(180deg, #dfeaf2, #91a9ba 70%, #637d90);
  border-radius: 2px 2px 12px 12px;
  box-shadow: 0 15px 24px rgba(0, 9, 23, .24);
  transform: translateX(-50%);
}

.novo-device-laptop-base::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 4px;
  background: #9bb0bf;
  border-radius: 0 0 7px 7px;
  content: "";
  transform: translateX(-50%);
}

.novo-device--tablet {
  bottom: 18px;
  left: -8px;
  z-index: 3;
  width: 196px;
}

.novo-device--tablet .novo-device-frame {
  aspect-ratio: .73;
  padding: 7px;
  background: linear-gradient(145deg, #173d5c, #061827 70%);
  border: 1px solid rgba(166, 215, 250, .32);
  border-radius: 18px;
}

.novo-device--tablet .novo-device-screen { border-radius: 10px; }

.novo-device--phone {
  right: -2px;
  bottom: 19px;
  z-index: 4;
  width: 110px;
}

.novo-device--phone .novo-device-frame {
  aspect-ratio: .5;
  padding: 6px;
  background: linear-gradient(145deg, #173d5c, #061827 70%);
  border: 1px solid rgba(166, 215, 250, .32);
  border-radius: 18px;
}

.novo-device--phone .novo-device-screen { border-radius: 11px; }

.novo-device-camera {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 7px;
  background: #17364d;
  border: 1px solid rgba(127, 178, 213, .55);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.novo-device--phone .novo-device-camera {
  top: 10px;
  width: 32px;
  height: 7px;
  background: #071a2a;
  border: 0;
  border-radius: 999px;
}

.novo-device-topbar {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #d6e3ec;
}

.novo-device-topbar b,
.novo-device-topbar > span {
  display: inline-flex;
  align-items: center;
}

.novo-device-topbar b {
  gap: 7px;
  color: #102d43;
  font-size: 9px;
}

.novo-device-topbar b > i {
  display: grid;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--novo-blue);
  border-radius: 6px;
  place-items: center;
  font-size: 7px;
  font-style: normal;
  letter-spacing: -.02em;
}

.novo-device-topbar > span {
  gap: 6px;
  color: #4c728d;
  font-size: 7px;
  font-weight: 700;
}

.novo-device-topbar > span > i {
  width: 6px;
  height: 6px;
  background: #2fbd91;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 189, 145, .1);
}

.novo-device-desktop-app {
  display: grid;
  grid-template-columns: 82px 1fr;
  height: calc(100% - 39px);
}

.novo-device-desktop-app > aside {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 9px;
  padding: 16px 13px;
  background: #eef5fb;
  border-right: 1px solid #d4e2ec;
}

.novo-device-desktop-app > aside strong,
.novo-device-desktop-app > aside small {
  color: #65849a;
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.novo-device-desktop-app > aside small { margin-top: 7px; }

.novo-device-desktop-app > aside i {
  display: block;
  width: 75%;
  height: 6px;
  background: #cbdce8;
  border-radius: 999px;
}

.novo-device-desktop-app > aside i.is-active {
  width: 100%;
  height: 18px;
  background: linear-gradient(90deg, var(--novo-blue), #69b7ff);
  border-radius: 5px;
}

.novo-device-library {
  min-width: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.novo-device-library-head {
  display: flex;
  min-height: 43px;
  align-items: flex-start;
  justify-content: space-between;
}

.novo-device-library-head span,
.novo-device-library-head b,
.novo-device-library-head small { display: block; }
.novo-device-library-head b { color: #102d43; font-size: 12px; }
.novo-device-library-head small { margin-top: 4px; color: #7690a3; font-size: 7px; }
.novo-device-library-head em { min-width: 118px; padding: 8px 10px; color: #8ba1b1; background: #fff; border: 1px solid #cedde8; border-radius: 7px; font-size: 7px; font-style: normal; }

.novo-device-record {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 63px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid #d6e3ec;
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(10, 42, 67, .04);
}

.novo-device-record + .novo-device-record { margin-top: 8px; }
.novo-device-record > i { display: grid; width: 31px; height: 36px; color: var(--novo-blue); background: var(--novo-blue-soft); border: 1px solid #c9def5; border-radius: 5px; place-items: center; font-size: 6px; font-style: normal; font-weight: 800; }
.novo-device-record span,
.novo-device-record b,
.novo-device-record small { display: block; min-width: 0; }
.novo-device-record b { overflow: hidden; color: #17384f; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.novo-device-record small { overflow: hidden; margin-top: 5px; color: #7890a1; font-size: 6.5px; text-overflow: ellipsis; white-space: nowrap; }
.novo-device-record > em { padding: 5px 7px; color: #18775b; background: #eaf8f2; border-radius: 999px; font-size: 6px; font-style: normal; font-weight: 800; }

.novo-device-library--compact { height: calc(100% - 39px); padding: 15px 12px; }
.novo-device-library--compact .novo-device-record { grid-template-columns: 31px minmax(0, 1fr); gap: 9px; min-height: 62px; padding: 9px; }
.novo-device-library--compact .novo-device-record > i { width: 29px; height: 34px; }

.novo-device--tablet .novo-device-topbar { min-height: 39px; padding: 4px 10px 0; }
.novo-device--tablet .novo-device-topbar > span { font-size: 6px; }

.novo-device--phone .novo-device-topbar { min-height: 35px; padding: 7px 8px 0; }
.novo-device--phone .novo-device-topbar b { gap: 5px; font-size: 7px; }
.novo-device--phone .novo-device-topbar b > i { width: 18px; height: 18px; border-radius: 5px; font-size: 6px; }
.novo-device--phone .novo-device-topbar > span > i { width: 5px; height: 5px; }
.novo-device-library--phone { height: calc(100% - 35px); padding: 10px 7px; }
.novo-device-library--phone .novo-device-library-head { min-height: 36px; }
.novo-device-library--phone .novo-device-library-head b { font-size: 8px; }
.novo-device-library--phone .novo-device-library-head small { margin-top: 2px; font-size: 5.5px; }
.novo-device-library--phone .novo-device-record { grid-template-columns: 24px minmax(0, 1fr); gap: 7px; min-height: 48px; padding: 6px; border-radius: 7px; }
.novo-device-library--phone .novo-device-record + .novo-device-record { margin-top: 6px; }
.novo-device-library--phone .novo-device-record > i { width: 23px; height: 28px; font-size: 5px; }
.novo-device-library--phone .novo-device-record b { font-size: 6px; }
.novo-device-library--phone .novo-device-record small { margin-top: 3px; font-size: 5px; }

@media (max-width: 1120px) {
  .novo-workflow .novo-shell { display: block; min-height: 0; }
  .novo-workflow .novo-section-head { margin-bottom: 26px; }
  .novo-workflow .novo-section-head h2 { max-width: 760px; font-size: clamp(38px, 5vw, 50px); }
  .novo-device-showcase { width: min(100%, 860px); min-height: 380px; margin-inline: auto; }
  .novo-device-sync { top: -4px; left: 50%; }
  .novo-device--laptop { bottom: 2px; left: 50%; width: min(74%, 580px); }
  .novo-device--tablet { bottom: 7px; left: 0; width: 190px; }
  .novo-device--phone { right: 1%; bottom: 8px; width: 104px; }
}

@media (max-width: 860px) {
  .novo-workflow .novo-section-head { margin-bottom: 22px; }
  .novo-workflow .novo-section-head h2 { max-width: 680px; font-size: clamp(35px, 5.4vw, 44px); }
  .novo-device-showcase { min-height: 350px; }
  .novo-device--laptop { width: min(74%, 520px); }
  .novo-device--tablet { width: 168px; }
  .novo-device--phone { width: 92px; }
}

@media (max-width: 620px) {
  .novo-workflow .novo-section-head { margin-bottom: 18px; }
  .novo-workflow .novo-section-head h2 { font-size: clamp(33.6px, 9.2vw, 38px); }
  .novo-device-showcase { min-height: 340px; }
  .novo-device-showcase::before { inset: 5% -12% 0; }
  .novo-device-sync { top: -4px; min-width: 124px; min-height: 38px; }
  .novo-device--laptop { top: 18px; bottom: auto; width: 96%; }
  .novo-device--tablet { bottom: 0; left: 0; width: min(49%, 172px); }
  .novo-device--phone { right: 0; bottom: 0; width: min(24%, 88px); }
  .novo-device-topbar { min-height: 33px; }
  .novo-device-desktop-app { grid-template-columns: 62px 1fr; height: calc(100% - 33px); }
  .novo-device-desktop-app > aside { gap: 6px; padding: 10px 9px; }
  .novo-device-library { padding: 8px; }
  .novo-device-library-head { min-height: 30px; }
  .novo-device-library-head b { font-size: 9px; }
  .novo-device-library-head em { display: none; }
  .novo-device-record { grid-template-columns: 24px minmax(0, 1fr); gap: 6px; min-height: 38px; padding: 4px 6px; }
  .novo-device-record + .novo-device-record { margin-top: 4px; }
  .novo-device-record > i { width: 22px; height: 26px; }
  .novo-device-record > em { display: none; }
  .novo-device-record b { font-size: 6.5px; }
  .novo-device-record small { margin-top: 3px; font-size: 5.5px; }
  .novo-device-library--compact { padding: 9px 7px; }
  .novo-device-library--compact .novo-device-library-head { min-height: 29px; }
  .novo-device-library--compact .novo-device-record { grid-template-columns: 24px minmax(0, 1fr); gap: 6px; min-height: 43px; padding: 5px; }
  .novo-device-library--compact .novo-device-record + .novo-device-record { margin-top: 4px; }
  .novo-device-library--compact .novo-device-record > i { width: 22px; height: 26px; }
  .novo-device-library--phone { padding: 6px 5px; }
  .novo-device-library--phone .novo-device-library-head { min-height: 26px; }
  .novo-device-library--phone .novo-device-record { grid-template-columns: 20px minmax(0, 1fr); gap: 5px; min-height: 32px; padding: 3px 4px; }
  .novo-device-library--phone .novo-device-record + .novo-device-record { margin-top: 3px; }
  .novo-device-library--phone .novo-device-record > i { width: 19px; height: 22px; }
  .novo-device-library--phone .novo-device-record b { font-size: 5.4px; }
  .novo-device-library--phone .novo-device-record small { margin-top: 2px; font-size: 4.5px; }
}

.novo-section.novo-principles {
  padding-block: 48px;
  background:
    radial-gradient(circle at 85% 15%, rgba(23, 109, 231, .08), transparent 30%),
    #f7fafe;
}

.novo-principles-heading {
  margin: 0 0 28px;
  color: var(--novo-blue-strong);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.novo-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--novo-line);
  border: 1px solid var(--novo-line);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(18, 56, 94, .045);
}

.novo-principle-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 15px;
  min-height: 174px;
  padding: 21px 20px 22px;
  align-content: start;
  background: rgba(255, 255, 255, .84);
}

.novo-principle-grid article > span {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  color: var(--novo-subtle);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.novo-principle-grid svg {
  display: block;
  grid-column: 1;
  grid-row: 2 / span 2;
  width: 42px;
  height: 42px;
  margin: 0;
  fill: none;
  stroke: var(--novo-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.novo-principle-grid h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--novo-ink-strong);
  font-family: Manrope, sans-serif;
  font-size: 18px;
  letter-spacing: -.025em;
}

.novo-principle-grid p {
  grid-column: 2;
  grid-row: 3;
  margin: 8px 0 0;
  color: var(--novo-muted);
  font-size: 11px;
  line-height: 1.65;
}

.novo-section.novo-tools {
  padding-block: 61px;
  background: #fff;
}

.novo-tools .novo-section-head {
  grid-template-columns: minmax(0, 1fr);
}

.novo-tools .novo-section-head h2 {
  color: var(--novo-blue);
  font-size: clamp(33.6px, 3.6vw, 49.6px);
}

.novo-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--novo-line);
  border-radius: 14px;
  overflow: hidden;
}

.novo-tool-grid > a {
  display: grid;
  grid-template-columns: 54px 1fr 30px;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid var(--novo-line-soft);
  transition: background-color 180ms ease;
}

.novo-tool-grid > a:nth-child(odd) { border-right: 1px solid var(--novo-line-soft); }
.novo-tool-grid > a:nth-last-child(-n+2) { border-bottom: 0; }
.novo-tool-grid > a:hover { background: var(--novo-blue-pale); }

.novo-tool-grid > a > span {
  display: grid;
  width: 50px;
  height: 50px;
  color: var(--novo-blue-strong);
  background: var(--novo-blue-soft);
  border: 1px solid #cce0f7;
  border-radius: 9px;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.novo-tool-grid > a:hover > span,
.novo-tool-grid > a:focus-visible > span {
  color: #fff;
  background: var(--novo-blue);
  border-color: var(--novo-blue);
}

.novo-tool-grid h3 { margin: 0; color: var(--novo-ink-strong); font-family: Manrope, sans-serif; font-size: 15px; }
.novo-tool-grid p { margin: 7px 0 0; color: var(--novo-muted); font-size: 10px; line-height: 1.5; }
.novo-tool-grid > a > i { color: var(--novo-blue); font-size: 18px; font-style: normal; transition: transform 180ms ease; }
.novo-tool-grid > a:hover > i { transform: translate(3px, -3px); }

.novo-section.novo-questions {
  padding-block: 61px;
  background:
    linear-gradient(rgba(23, 109, 231, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 109, 231, .045) 1px, transparent 1px),
    #f7fafe;
  background-size: 48px 48px, 48px 48px, auto;
}

.novo-questions-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 90px;
}

.novo-questions-layout h2 {
  margin-bottom: 28px;
}

.novo-questions-layout > header > .novo-contact-prompt {
  margin-top: 28px;
  color: var(--novo-muted);
  font-size: 11px;
  font-weight: 500;
}

.novo-contact-prompt a {
  color: var(--novo-blue-strong);
  font-weight: 700;
}

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

.novo-faq details {
  border-bottom: 1px solid var(--novo-line);
}

.novo-faq summary {
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 20px;
  min-height: 75px;
  align-items: center;
  color: var(--novo-ink-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.novo-faq summary::-webkit-details-marker { display: none; }
.novo-faq summary span { position: relative; display: block; width: 16px; height: 16px; }
.novo-faq summary span::before,
.novo-faq summary span::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--novo-blue); border-radius: 999px; content: ""; transform: translate(-50%, -50%); transition: opacity 180ms ease, transform 240ms ease; }
.novo-faq summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.novo-faq details[open] summary { color: var(--novo-blue-strong); }
.novo-faq details[open] summary span::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
.novo-faq details > div { overflow: hidden; }
.novo-faq details p { max-width: 690px; padding: 0 45px 27px 0; margin: 0; color: var(--novo-muted); font-size: 12px; line-height: 1.7; }

.novo-final-cta {
  padding: 90px 0;
  background: #fff;
}

.novo-final-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 62px;
  color: #fff;
  background:
    linear-gradient(rgba(130, 195, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 195, 255, .1) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(68, 166, 255, .7), transparent 36%),
    linear-gradient(130deg, #06449e 0%, #0869dc 55%, #2493ff 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  border-radius: 18px;
  box-shadow: var(--novo-shadow-blue);
}

.novo-final-card .novo-overline,
.novo-final-card h2 { position: relative; z-index: 2; color: #fff; }
.novo-final-card h2 { max-width: 700px; font-size: clamp(48px, 5vw, 70px); }
.novo-final-card > p:not(.novo-overline) { position: relative; z-index: 2; max-width: 590px; margin: 24px 0 0; color: #dceeff; font-size: 14px; line-height: 1.7; }
.novo-final-card > div:last-child { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.novo-button--white { color: var(--novo-blue-strong); background: #fff; border-color: #fff; }
.novo-button--outline-light { color: #fff; background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .54); box-shadow: none; }
.novo-button--outline-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

.novo-final-orbit {
  position: absolute;
  top: -250px;
  right: -110px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 50%;
}

.novo-final-orbit::before,
.novo-final-orbit::after { position: absolute; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; content: ""; }
.novo-final-orbit::before { inset: 90px; }
.novo-final-orbit::after { inset: 190px; }

.novo-footer {
  background: #fff;
  border-top: 1px solid var(--novo-line-soft);
}

.novo-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-block: 70px 64px;
}

.novo-footer .novo-wordmark { font-size: 20px; }
.novo-footer-brand > p { max-width: 245px; margin: 17px 0; color: var(--novo-muted); font-size: 11px; line-height: 1.6; }
.novo-footer-edition { display: inline-flex; padding: 6px 9px; color: var(--novo-blue-strong); background: var(--novo-blue-soft); border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.novo-footer-grid nav { display: grid; align-content: start; gap: 13px; }
.novo-footer-grid nav strong { margin-bottom: 7px; color: var(--novo-ink-strong); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.novo-footer-grid nav a { width: fit-content; color: var(--novo-muted); font-size: 10px; transition: color 160ms ease; }
.novo-footer-grid nav a:hover { color: var(--novo-blue); }

.novo-footer-lower {
  color: #fff;
  background: linear-gradient(90deg, #0759d1, #176de7 52%, #157b5c);
}

.novo-footer-lower .novo-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.novo-footer-lower p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: -.01em; text-transform: none; }
.novo-footer-lower span:last-child { justify-self: end; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 750ms cubic-bezier(.2, .9, .25, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

@media (max-width: 1120px) {
  :root { --novo-shell: min(100% - 48px, 980px); }
  .novo-site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .novo-primary-nav { display: none; }
  .novo-header-actions { grid-column: 2; }
  .novo-hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 70px; }
  .novo-hero-copy { max-width: 750px; }
  .novo-hero-product { width: min(100%, 760px); margin-inline: auto; }
  .novo-hero h1 { font-size: clamp(58px, 8vw, 76px); }
  .novo-workflow-layout { grid-template-columns: 330px 1fr; }
  .novo-workflow-steps button { min-height: 96px; }
  .novo-principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .novo-principle-grid article { min-height: 154px; }
  .novo-footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 860px) {
  :root { --novo-shell: min(100% - 36px, 760px); }
  .novo-site-header { min-height: 66px; padding-inline: 18px; }
  .novo-site-header > .novo-wordmark { font-size: 19px; }
  .novo-site-header > .novo-wordmark svg { width: 35px; height: 35px; }
  .novo-header-actions { display: none; }
  .novo-menu-button { display: grid; width: 42px; height: 42px; padding: 0; background: #fff; border: 1px solid var(--novo-line); border-radius: 8px; cursor: pointer; justify-self: end; place-content: center; gap: 6px; }
  .novo-menu-button span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--novo-ink); border-radius: 999px; transition: transform 180ms ease; }
  .novo-menu-button[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .novo-menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .novo-mobile-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: grid; gap: 0; padding: 10px 18px 18px; background: rgba(255, 255, 255, .98); border-bottom: 1px solid var(--novo-line); box-shadow: var(--novo-shadow-sm); }
  .novo-mobile-nav[hidden] { display: none; }
  .novo-mobile-nav > a:not(.novo-button) { min-height: 48px; padding: 15px 4px; color: var(--novo-ink-soft); border-bottom: 1px solid var(--novo-line-soft); font-size: 13px; font-weight: 600; }
  .novo-mobile-nav .novo-button { margin-top: 12px; color: #fff; background: var(--novo-blue); border-color: var(--novo-blue); }
  .novo-hero { min-height: auto; }
  .novo-hero-grid { min-height: 0; padding-block: 72px 86px; }
  .novo-kicker-row { flex-wrap: wrap; }
  .novo-hero-product { padding-left: 0; }
  .novo-floating-card { display: none; }
  .novo-workspace-visual { grid-template-columns: .92fr 1.08fr; }
  .novo-detail-panel { display: none; }
  .novo-trust-strip .novo-shell { grid-template-columns: 1fr; gap: 32px; padding-block: 46px; }
  .novo-section { padding: 92px 0; }
  .novo-section.novo-principles { padding-block: 38px; }
  .novo-section.novo-tools { padding-block: 46px; }
  .novo-section.novo-questions { padding-block: 46px; }
  .novo-section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .novo-section-head > p { max-width: 660px; }
  .novo-product-cards { grid-template-columns: 1fr; }
  .novo-product-card { min-height: 0; }
  .novo-workflow { padding-block: 38px; }
  .novo-workflow-layout { grid-template-columns: 1fr; }
  .novo-workflow-steps { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .novo-workflow-steps button { display: flex; min-height: 78px; align-items: center; justify-content: center; flex-direction: column; padding: 9px; text-align: center; }
  .novo-workflow-steps button > span { width: 30px; height: 30px; flex: 0 0 auto; }
  .novo-workflow-steps button b { font-size: 10px; }
  .novo-workflow-steps button small,
  .novo-workflow-steps button > i { display: none; }
  .novo-questions-layout { grid-template-columns: 1fr; gap: 52px; }
  .novo-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 35px; }
  .novo-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --novo-shell: calc(100% - 28px); }
  html { scroll-padding-top: 72px; }
  .novo-trust-strip .novo-shell { padding-block: 36px; }
  .novo-hero-grid { padding-block: 54px 72px; }
  .novo-kicker-row { gap: 10px; margin-bottom: 22px; }
  .novo-kicker,
  .novo-private { font-size: 8.5px; letter-spacing: .11em; }
  .novo-private { padding-left: 11px; }
  .novo-hero h1 { font-size: clamp(43px, 13vw, 58px); line-height: 1.01; }
  .novo-lead { margin-top: 22px; font-size: 14px; line-height: 1.68; }
  .novo-hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .novo-hero-actions .novo-button { width: 100%; }
  .novo-proof-list { grid-template-columns: 1fr; gap: 14px; padding-top: 20px; margin-top: 28px; }
  .novo-proof-list li + li { padding-left: 0; border-left: 0; }
  .novo-proof-list strong { font-size: 11px; }
  .novo-hero-product { padding-block: 2px 0; }
  .novo-window-bar { min-height: 42px; padding-inline: 11px; }
  .novo-window-title small { display: none; }
  .novo-workspace-visual { grid-template-columns: 1fr; min-height: 0; }
  .novo-source-panel { display: none; }
  .novo-workspace-visual > section + section { border-left: 0; }
  .novo-record-panel { min-height: 285px; }
  .novo-record-panel article { min-height: 61px; }
  .novo-window-footer span:first-child { display: none; }
  .novo-window-footer { justify-content: space-around; }
  .novo-section { padding: 72px 0; }
  .novo-section.novo-principles { padding-block: 30px; }
  .novo-section.novo-tools { padding-block: 36px; }
  .novo-section.novo-questions { padding-block: 36px; }
  .novo-section h2 { font-size: clamp(36px, 11vw, 48px); }
  .novo-section-head { margin-bottom: 34px; }
  .novo-product-card { padding: 19px; border-radius: 13px; }
  .novo-card-meta { grid-template-columns: 36px 1fr; margin-bottom: 27px; }
  .novo-card-meta > i { grid-column: 2; }
  .novo-product-card h3 { font-size: 31px; }
  .novo-product-card > p { min-height: 0; }
  .novo-extractor-mini,
  .novo-library-mini { height: 270px; }
  .novo-mini-drop { height: 181px; }
  .novo-library-mini { grid-template-columns: 75px 1fr; }
  .novo-library-mini aside { padding-inline: 9px; }
  .novo-library-mini aside b { font-size: 7px; }
  .novo-library-list { padding: 10px; }
  .novo-library-list article { grid-template-columns: 6px 1fr; }
  .novo-library-list article em { display: none; }
  .novo-card-points { grid-template-columns: 1fr; gap: 10px; }
  .novo-workflow { padding-block: 28px; background-size: 38px 38px, 38px 38px, auto, auto; }
  .novo-section-head--light { margin-bottom: 36px; }
  .novo-workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .novo-workflow-stage { min-height: 0; }
  .novo-stage-head { padding-inline: 14px; }
  .novo-stage-panel { min-height: 0; padding: 14px; }
  .novo-stage-panel > footer { grid-template-columns: 1fr; gap: 7px; }
  .novo-stage-panel > footer span { text-align: left; }
  .novo-capture-visual { grid-template-columns: 1fr; }
  .novo-capture-source { min-height: 84px; }
  .novo-extract-visual { grid-template-columns: .8fr 28px 1.2fr; }
  .novo-extract-paper { min-height: 180px; padding: 18px 13px; }
  .novo-extract-records article { min-height: 50px; padding: 8px; }
  .novo-verify-visual { grid-template-columns: 1fr; }
  .novo-verify-score { min-height: 140px; }
  .novo-verify-score strong { font-size: 44px; }
  .novo-cite-visual { grid-template-columns: 1fr; }
  .novo-citation-preview { min-height: 165px; }
  .novo-format-grid { grid-template-columns: repeat(3, 1fr); }
  .novo-format-grid span { min-height: 45px; }
  .novo-principles-heading { margin-bottom: 22px; }
  .novo-principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .novo-principle-grid article {
    display: block;
    min-height: 198px;
    padding: 16px;
  }
  .novo-principle-grid article > span { display: block; margin-bottom: 20px; }
  .novo-principle-grid svg { width: 38px; height: 38px; margin: 0 0 18px; }
  .novo-principle-grid p { margin-top: 9px; }
  .novo-tool-grid { grid-template-columns: 1fr; }
  .novo-tool-grid > a { grid-template-columns: 46px 1fr 20px; min-height: 108px; padding: 17px; }
  .novo-tool-grid > a:nth-child(odd) { border-right: 0; }
  .novo-tool-grid > a:nth-last-child(-n+2) { border-bottom: 1px solid var(--novo-line-soft); }
  .novo-tool-grid > a:last-child { border-bottom: 0; }
  .novo-tool-grid > a > span { width: 43px; height: 43px; }
  .novo-faq summary { min-height: 68px; font-size: 12px; }
  .novo-faq details p { padding-right: 0; }
  .novo-final-cta { padding: 55px 0; }
  .novo-final-card { min-height: 0; padding: 37px 25px; }
  .novo-final-card h2 { font-size: 45px; }
  .novo-final-card > div:last-child { display: grid; grid-template-columns: 1fr; }
  .novo-final-card .novo-button { width: 100%; }
  .novo-footer-grid { grid-template-columns: 1fr; gap: 38px; padding-block: 52px; }
  .novo-footer-brand { grid-column: auto; }
  .novo-footer-lower .novo-shell { grid-template-columns: 1fr auto; }
  .novo-footer-lower p { display: none; }
}

@media (max-width: 1120px) {
  .novo-hero-grid {
    gap: 46px;
    padding-block: 64px 82px;
  }

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

  .novo-library-scene {
    width: min(100%, 880px);
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .novo-hero-copy {
    display: block;
    max-width: 720px;
  }

  .novo-hero-copy .novo-lead {
    margin-top: 25px;
  }

  .novo-hero-copy .novo-hero-notes {
    max-width: 620px;
  }

  .novo-library-shot-caption {
    right: 18px;
    left: 18px;
  }

  .novo-library-topbar {
    grid-template-columns: auto auto minmax(150px, 1fr) auto;
  }

  .novo-status-pill {
    display: none;
  }

  .novo-app-tools span:first-child {
    display: none;
  }

  .novo-library-context {
    padding-left: 162px;
  }

  .novo-library-body {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .novo-library-records article {
    min-height: 106px;
  }
}

@media (max-width: 620px) {
  .novo-hero {
    min-height: auto;
  }

  .novo-hero-notes {
    display: none;
  }

  .novo-library-shot {
    padding-bottom: 23px;
  }

  .novo-library-shot-meta {
    padding-inline: 2px;
    font-size: 7px;
  }

  .novo-library-shot-meta em {
    display: none;
  }

  .novo-library-shot figure {
    height: 344px;
    border-radius: 12px;
  }

  .novo-library-shot img {
    width: 655px;
    max-width: none;
    transform: translateX(-108px);
  }

  .novo-library-shot-caption {
    right: 10px;
    left: 10px;
    min-height: 61px;
    padding: 9px 12px;
  }

  .novo-library-shot-caption > span:last-child {
    display: none;
  }

  .novo-library-scene {
    padding: 4px 0 12px;
  }

  .novo-library-window {
    border-radius: 12px;
  }

  .novo-library-topbar {
    grid-template-columns: auto auto minmax(0, 1fr);
    min-height: 54px;
    padding: 7px;
  }

  .novo-app-brand b,
  .novo-app-search span,
  .novo-app-tools {
    display: none;
  }

  .novo-app-brand {
    padding-right: 2px;
  }

  .novo-app-add {
    min-height: 35px;
  }

  .novo-app-search {
    min-height: 35px;
  }

  .novo-library-context {
    min-height: 48px;
    padding: 0 9px;
  }

  .novo-library-context > div span:not(:first-child) {
    display: none;
  }

  .novo-library-body {
    display: block;
    min-height: 0;
  }

  .novo-library-sidebar {
    display: none;
  }

  .novo-library-records article {
    min-height: 102px;
    padding: 12px 10px;
  }

  .novo-library-records article:nth-child(n+4) {
    display: none;
  }

  .novo-library-records article h2 {
    font-size: 8.4px;
  }

  .novo-library-records article p {
    font-size: 6.2px;
  }

  .novo-library-float {
    display: none;
  }
}

/* Centered cloud-library hero */
.novo-hero {
  min-height: auto;
}

.novo-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  min-height: 0;
  padding-block: 36px 54px;
}

.novo-hero-copy {
  width: min(100%, 920px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.novo-kicker-row,
.novo-hero-actions {
  justify-content: center;
}

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

.novo-hero h1 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(44.8px, 4.8vw, 62.4px);
  line-height: .96;
}

.novo-lead {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 15.5px;
  line-height: 1.62;
}

.novo-hero-actions {
  margin-top: 23px;
}

.novo-library-shot {
  width: 100%;
  max-width: 1240px;
  padding-bottom: 0;
  margin-inline: auto;
}

.novo-library-shot figure {
  width: 89.6%;
  margin-inline: auto;
  border-color: #a8bfd0;
  border-radius: 8px;
  box-shadow: 0 36px 88px rgba(8, 34, 54, .18), 0 12px 28px rgba(23, 109, 231, .08);
}

.novo-library-shot-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1040px);
  padding: 0;
  margin: 28px auto 0;
  list-style: none;
}

.novo-library-shot-features li {
  position: relative;
  min-width: 0;
  padding: 0 22px;
  text-align: center;
}

.novo-library-shot-features li + li {
  border-left: 1px solid var(--novo-line-soft);
}

.novo-library-shot-features li::before {
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto 10px;
  background: var(--novo-blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(50, 148, 255, .08);
  content: "";
}

.novo-library-shot-features li:nth-child(2)::before,
.novo-library-shot-features li:nth-child(4)::before {
  background: var(--novo-green);
  box-shadow: 0 0 0 5px rgba(21, 123, 92, .08);
}

.novo-library-shot-features span,
.novo-library-shot-features small {
  display: block;
}

.novo-library-shot-features span {
  color: var(--novo-ink-soft);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.novo-library-shot-features small {
  margin-top: 4px;
  color: var(--novo-subtle);
  font-size: 18px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .novo-hero-grid {
    gap: 36px;
    padding-block: 56px 48px;
  }

  .novo-hero-copy {
    width: min(100%, 720px);
  }

  .novo-hero h1 {
    font-size: clamp(41.6px, 7.2vw, 54.4px);
  }

  .novo-library-shot figure {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .novo-library-shot-features li {
    padding-inline: 13px;
  }
}

@media (max-width: 620px) {
  .novo-hero-grid {
    gap: 31px;
    padding-block: 45px 43px;
  }

  .novo-kicker-row {
    justify-content: center;
    margin-bottom: 19px;
  }

  .novo-hero h1 {
    font-size: clamp(33.6px, 9.84vw, 42.4px);
    line-height: 1;
  }

  .novo-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.65;
  }

  .novo-hero-actions {
    margin-top: 24px;
  }

  .novo-library-shot figure {
    height: 286.72px;
    border-radius: 6px;
  }

  .novo-library-shot img {
    width: 546.56px;
    max-width: none;
    transform: none;
  }

  .novo-library-shot-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
    margin-top: 25px;
  }

  .novo-library-shot-features li {
    padding-inline: 10px;
  }

  .novo-library-shot-features li:nth-child(3) {
    border-left: 0;
  }

  .novo-library-shot-features span {
    font-size: 20px;
  }

  .novo-library-shot-features small {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
