.cpdf-page {
  background: #ffffff;
  color: #0f172a;
}

.cpdf-page a {
  color: inherit;
  text-decoration: none;
}

.cpdf-shell {
  width: min(100% - 1.5rem, 1440px);
  margin: 0 auto;
}

.cpdf-hero,
.cpdf-section {
  position: relative;
}

.cpdf-hero {
  overflow: hidden;
  padding: 6rem 0 4.3rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 174, 255, 0.14), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(20, 91, 255, 0.18), transparent 30%),
    linear-gradient(140deg, #031128 0%, #041b49 44%, #062a73 74%, #041539 100%);
  color: #f8fbff;
}

.cpdf-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 60rem;
  height: 60rem;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(20, 91, 255, 0.28) 0%, rgba(42, 174, 255, 0.12) 28%, transparent 64%);
  pointer-events: none;
}

.cpdf-hero__grid,
.cpdf-conversation__grid,
.cpdf-workflow {
  display: grid;
  gap: 2rem;
}

.cpdf-hero__grid {
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
  isolation: isolate;
}

.cpdf-hero__copy {
  position: relative;
  z-index: 2;
}

.cpdf-hero__visual {
  position: relative;
  z-index: 1;
}

.cpdf-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #bfdbfe;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cpdf-eyebrow--soft {
  background: rgba(20, 91, 255, 0.06);
  color: #145bff;
}

.cpdf-eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
}

.cpdf-hero__copy h1,
.cpdf-section__heading h2,
.cpdf-workflow__copy h2 {
  margin-top: 1rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
  font-weight: 900;
}

.cpdf-hero__copy h1 {
  max-width: none;
  font-size: clamp(1.85rem, 2.75vw, 3.1rem);
}

.cpdf-hero__copy h1 > span {
  display: block;
  white-space: nowrap;
}

.cpdf-hero__copy h1 > span + span {
  margin-top: 0.08em;
}

.cpdf-hero__headline-accent {
  background: linear-gradient(90deg, #145bff 0%, rgba(255, 255, 255, 0.92) 52%, #2aaeff 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 12px 34px rgba(20, 91, 255, 0.22);
}

.cpdf-hero__copy h1::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  margin-top: 1.55rem;
  background: linear-gradient(90deg, rgba(42, 174, 255, 0.65), rgba(42, 174, 255, 0));
}

.cpdf-hero__copy p,
.cpdf-section__heading p,
.cpdf-workflow__copy p {
  line-height: 1.8;
}

.cpdf-hero__copy p {
  max-width: 33rem;
  margin-top: 1.45rem;
  color: rgba(226, 232, 240, 0.88);
  font-size: 1.06rem;
}

.cpdf-hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.cpdf-button {
  min-height: 3.35rem;
  padding: 0 1.2rem;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cpdf-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 91, 255, 0.18), rgba(42, 174, 255, 0.26));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cpdf-button > * {
  position: relative;
  z-index: 1;
}

.cpdf-button:hover {
  transform: translateY(-1px);
}

.cpdf-button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #145bff, #2aaeff);
  box-shadow: 0 18px 36px rgba(20, 91, 255, 0.22);
}

.cpdf-button--primary:hover {
  border-color: rgba(191, 219, 254, 0.35);
  box-shadow: 0 22px 44px rgba(20, 91, 255, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.cpdf-button--primary:hover::before {
  opacity: 1;
}

.cpdf-button--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(191, 219, 254, 0.26);
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.18);
}

.cpdf-button--secondary:hover {
  border-color: rgba(191, 219, 254, 0.42);
  box-shadow: 0 18px 36px rgba(20, 91, 255, 0.18);
}

.cpdf-button--secondary:hover::before {
  opacity: 0.85;
}

.cpdf-hero__availability {
  margin-top: 1.75rem;
}

.cpdf-hero__availability-label {
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cpdf-hero__availability-actions {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cpdf-platform {
  min-height: 2.65rem;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cpdf-platform i {
  font-size: 1.05rem;
  color: rgba(191, 219, 254, 0.9);
}

.cpdf-platform:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 219, 254, 0.44);
  background: rgba(20, 91, 255, 0.12);
  box-shadow: 0 14px 30px rgba(20, 91, 255, 0.18);
}

.cpdf-hero__visual,
.cpdf-conversation__grid,
.cpdf-demo__viewer,
.cpdf-hero-workspace__body {
  min-width: 0;
}

.cpdf-hero-workspace {
  position: relative;
  border-radius: 1.7rem;
  border: 1px solid rgba(191, 219, 254, 0.14);
  background: transparent;
  box-shadow: 0 36px 88px rgba(2, 8, 23, 0.42);
  overflow: hidden;
}

.cpdf-hero-workspace img {
  width: 100%;
  height: auto;
  display: block;
}

.cpdf-hero-workspace__bar {
  min-height: 3.2rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.cpdf-window-dots {
  display: flex;
  gap: 0.38rem;
}

.cpdf-window-dots span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.18);
}

.cpdf-window-dots span:nth-child(1) { background: #fb7185; }
.cpdf-window-dots span:nth-child(2) { background: #fbbf24; }
.cpdf-window-dots span:nth-child(3) { background: #34d399; }

.cpdf-hero-workspace__file {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 700;
}

.cpdf-hero-workspace__body {
  display: grid;
  grid-template-columns: 4.3rem minmax(0, 1fr) minmax(16.5rem, 19rem);
  gap: 1rem;
  padding: 1rem;
}

.cpdf-hero-workspace__thumbs,
.cpdf-demo__thumbs {
  display: grid;
  gap: 0.8rem;
}

.cpdf-hero-workspace__thumbs span,
.cpdf-demo__thumbs span {
  aspect-ratio: 3 / 4;
  border-radius: 0.88rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.9));
}

.cpdf-hero-workspace__thumbs span.is-active,
.cpdf-demo__thumbs span.is-active {
  background: linear-gradient(180deg, rgba(20, 91, 255, 0.6), rgba(42, 174, 255, 0.22));
}

.cpdf-hero-workspace__document,
.cpdf-demo__page {
  position: relative;
  min-height: 33rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.98), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.cpdf-hero-workspace__paper {
  position: relative;
  min-height: 100%;
  border-radius: 1rem;
  padding: 2rem 2rem 1.4rem;
  background:
    linear-gradient(125deg, transparent 0 63%, rgba(59, 130, 246, 0.2) 63% 100%),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.85);
}

.cpdf-hero-workspace__headline {
  max-width: 9ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.cpdf-hero-workspace__summary {
  margin-top: 1rem;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cpdf-hero-workspace__highlight {
  position: absolute;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
}

.cpdf-hero-workspace__highlight--one {
  right: 3rem;
  top: 9.5rem;
  width: 7.5rem;
  height: 0.9rem;
}

.cpdf-hero-workspace__highlight--two {
  right: 4rem;
  top: 12.1rem;
  width: 5rem;
  height: 0.9rem;
}

.cpdf-hero-workspace__chart,
.cpdf-demo__chart {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  height: 7.4rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(42, 174, 255, 0.15), rgba(20, 91, 255, 0.03)),
    linear-gradient(180deg, rgba(226, 232, 240, 0.6), rgba(255, 255, 255, 0.2));
  overflow: hidden;
}

.cpdf-hero-workspace__chart::before,
.cpdf-demo__chart::before {
  content: "";
  position: absolute;
  inset: 1rem 1.1rem auto;
  height: 4rem;
  background: linear-gradient(180deg, rgba(42, 174, 255, 0.42), rgba(20, 91, 255, 0.2));
  clip-path: polygon(0 100%, 16% 68%, 35% 76%, 48% 24%, 66% 42%, 82% 14%, 100% 56%, 100% 100%);
}

.cpdf-hero-workspace__chat,
.cpdf-demo__chat {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(8, 15, 30, 0.92);
  color: #e2e8f0;
}

.cpdf-hero-workspace__chat-title,
.cpdf-demo__chat-title {
  font-size: 0.95rem;
  font-weight: 900;
}

.cpdf-chat-bubble {
  border-radius: 1rem;
  padding: 0.9rem 0.95rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

.cpdf-chat-bubble--question {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.cpdf-chat-bubble--answer {
  background: linear-gradient(180deg, rgba(20, 91, 255, 0.2), rgba(42, 174, 255, 0.08));
  color: #dbeafe;
}

.cpdf-citations,
.cpdf-demo__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cpdf-citations span,
.cpdf-demo__sources span {
  min-height: 1.85rem;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #93c5fd;
  font-size: 0.76rem;
  font-weight: 800;
}

.cpdf-chat-input {
  margin-top: auto;
  min-height: 2.9rem;
  padding: 0 0.95rem;
  display: flex;
  align-items: center;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-size: 0.85rem;
}

.cpdf-section {
  padding: 4.75rem 0;
}

.cpdf-section--tint {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.72), rgba(248, 250, 252, 0.85));
}

.cpdf-section--soft {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(255, 255, 255, 0.96));
}

.cpdf-section--dark {
  background:
    radial-gradient(circle at 20% 16%, rgba(42, 174, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #071126 0%, #071936 44%, #0a1d49 100%);
  color: #f8fafc;
}

.cpdf-section__heading {
  max-width: 56rem;
}

.cpdf-section__heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 0.7fr);
  gap: 1.2rem 2rem;
  align-items: end;
}

.cpdf-section__heading--left {
  max-width: 38rem;
}

.cpdf-section__heading h2,
.cpdf-workflow__copy h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
}

.cpdf-section__heading p {
  margin-top: 1rem;
  color: #475569;
  font-size: 1.02rem;
}

.cpdf-trust-grid,
.cpdf-document-grid,
.cpdf-understanding-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.cpdf-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cpdf-trust-card,
.cpdf-document-card,
.cpdf-understanding-card {
  min-width: 0;
  border-radius: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.cpdf-trust-card,
.cpdf-understanding-card {
  padding: 1.35rem;
}

.cpdf-trust-card__icon,
.cpdf-understanding-card__icon,
.cpdf-workflow-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(148, 163, 184, 0.12);
  color: #334155;
  box-shadow: 0 14px 28px rgba(20, 91, 255, 0.12);
}

.cpdf-trust-card__icon i,
.cpdf-understanding-card__icon i,
.cpdf-workflow-card__icon i {
  font-size: 1.2rem;
}

.cpdf-trust-card--blue .cpdf-trust-card__icon {
  background: linear-gradient(135deg, rgba(20, 91, 255, 0.16), rgba(42, 174, 255, 0.22));
  color: #145bff;
}

.cpdf-trust-card--violet .cpdf-trust-card__icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(192, 132, 252, 0.2));
  color: #8b5cf6;
}

.cpdf-trust-card--emerald .cpdf-trust-card__icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(52, 211, 153, 0.2));
  color: #10b981;
}

.cpdf-trust-card--amber .cpdf-trust-card__icon {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 191, 36, 0.2));
  color: #f59e0b;
}

.cpdf-understanding-card__icon {
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.cpdf-understanding-card__icon--blue {
  color: #145bff;
}

.cpdf-understanding-card__icon--violet {
  color: #8b5cf6;
}

.cpdf-understanding-card__icon--emerald {
  color: #10b981;
}

.cpdf-understanding-card__icon--amber {
  color: #f59e0b;
}

.cpdf-understanding-card__icon--indigo {
  color: #4f46e5;
}

.cpdf-trust-card h3,
.cpdf-document-card h3,
.cpdf-understanding-card h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cpdf-trust-card p,
.cpdf-understanding-card p {
  margin-top: 0.65rem;
  color: #64748b;
  line-height: 1.68;
}

.cpdf-conversation__grid {
  margin-top: 2rem;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
}

.cpdf-intelligence-headline h2 {
  margin-top: 0;
  font-size: clamp(2.4rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 900;
  white-space: nowrap;
}

.cpdf-intelligence-copy {
  max-width: 27rem;
}

.cpdf-intelligence-copy p {
  margin-top: 0;
  color: #64748b;
  line-height: 1.78;
}

.cpdf-intelligence-steps {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.cpdf-intelligence-step {
  display: grid;
  grid-template-columns: 3.15rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.cpdf-intelligence-step + .cpdf-intelligence-step {
  position: relative;
}

.cpdf-intelligence-step + .cpdf-intelligence-step::before {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: -1rem;
  width: 1px;
  height: 1rem;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.18), rgba(148, 163, 184, 0.42));
}

.cpdf-intelligence-step__icon {
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.12);
}

.cpdf-intelligence-step__icon i {
  font-size: 1.18rem;
}

.cpdf-intelligence-step--blue .cpdf-intelligence-step__icon {
  color: #2563eb;
}

.cpdf-intelligence-step--emerald .cpdf-intelligence-step__icon {
  color: #10b981;
}

.cpdf-intelligence-step--violet .cpdf-intelligence-step__icon {
  color: #8b5cf6;
}

.cpdf-intelligence-step--amber .cpdf-intelligence-step__icon {
  color: #f59e0b;
}

.cpdf-intelligence-step__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cpdf-intelligence-step__badge {
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.32rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, #145bff, #2aaeff);
}

.cpdf-intelligence-step--emerald .cpdf-intelligence-step__badge {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.cpdf-intelligence-step--violet .cpdf-intelligence-step__badge {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
}

.cpdf-intelligence-step--amber .cpdf-intelligence-step__badge {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.cpdf-intelligence-step__title strong {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.cpdf-intelligence-step__content p {
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.cpdf-intelligence-showcase {
  min-width: 0;
}

.cpdf-intelligence-window {
  border-radius: 1.6rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 56px rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.cpdf-intelligence-window__bar,
.cpdf-intelligence-window__toolbar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1rem;
}

.cpdf-intelligence-window__bar {
  min-height: 3rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  color: #475569;
}

.cpdf-intelligence-window__file {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
}

.cpdf-intelligence-window__actions {
  display: flex;
  gap: 0.8rem;
  color: #64748b;
  font-size: 0.78rem;
}

.cpdf-intelligence-window__toolbar {
  min-height: 2.8rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.cpdf-intelligence-window__toolbar .is-active {
  color: #145bff;
}

.cpdf-intelligence-window__body {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(15rem, 17rem);
  gap: 1rem;
  padding: 1rem;
}

.cpdf-intelligence-window__thumbs {
  display: grid;
  gap: 0.85rem;
}

.cpdf-intelligence-window__thumbs span {
  aspect-ratio: 3 / 4;
  border-radius: 0.88rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.cpdf-intelligence-window__thumbs .is-active {
  border-color: rgba(20, 91, 255, 0.46);
  box-shadow: 0 0 0 2px rgba(20, 91, 255, 0.08);
}

.cpdf-intelligence-window__doc {
  min-width: 0;
}

.cpdf-intelligence-window__page {
  min-height: 31rem;
  padding: 2rem 2.1rem 1.6rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.92);
}

.cpdf-intelligence-window__page h3 {
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.cpdf-intelligence-window__page > p {
  margin-top: 0.9rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.7;
}

.cpdf-intelligence-window__section {
  position: relative;
  margin-top: 1.55rem;
  padding-right: 2rem;
}

.cpdf-intelligence-window__section strong {
  display: block;
  font-size: 1rem;
}

.cpdf-intelligence-window__section p {
  margin-top: 0.4rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.75;
}

.cpdf-intelligence-window__section:nth-child(3) p {
  background: rgba(59, 130, 246, 0.15);
  border-radius: 0.55rem;
  padding: 0.08rem 0.24rem;
}

.cpdf-intelligence-window__pin {
  position: absolute;
  right: 0;
  top: 2.45rem;
  min-width: 1.22rem;
  height: 1.22rem;
  padding: 0 0.22rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.38rem;
  background: linear-gradient(135deg, #145bff, #2aaeff);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
}

.cpdf-intelligence-window__chat {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.96);
}

.cpdf-intelligence-window__chat-title {
  font-size: 1rem;
  font-weight: 900;
}

.cpdf-intelligence-window__prompt,
.cpdf-intelligence-window__response {
  border-radius: 1rem;
  padding: 0.95rem;
  font-size: 0.88rem;
  line-height: 1.7;
}

.cpdf-intelligence-window__prompt {
  background: rgba(248, 250, 252, 0.98);
  color: #334155;
}

.cpdf-intelligence-window__response {
  background: rgba(241, 245, 249, 0.92);
  color: #334155;
}

.cpdf-intelligence-window__response strong {
  display: block;
  font-size: 0.88rem;
}

.cpdf-intelligence-window__response ul {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cpdf-intelligence-window__response li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.cpdf-intelligence-window__response li em {
  min-width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  background: rgba(20, 91, 255, 0.12);
  color: #145bff;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
}

.cpdf-intelligence-window__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cpdf-intelligence-window__sources span {
  min-height: 1.8rem;
  padding: 0 0.65rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(20, 91, 255, 0.08);
  color: #145bff;
  font-size: 0.75rem;
  font-weight: 800;
}

.cpdf-intelligence-window__input {
  margin-top: auto;
  min-height: 2.8rem;
  padding: 0 0.95rem;
  display: flex;
  align-items: center;
  border-radius: 0.95rem;
  background: rgba(248, 250, 252, 0.98);
  color: #94a3b8;
  font-size: 0.84rem;
}

.cpdf-intelligence-proof {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(148, 163, 184, 0.12);
}

.cpdf-intelligence-proof__item {
  min-width: 0;
  display: grid;
  grid-template-columns: 3.05rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
}

.cpdf-intelligence-proof__icon {
  width: 3.05rem;
  height: 3.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.cpdf-intelligence-proof__icon i {
  font-size: 1.2rem;
}

.cpdf-intelligence-proof__item--blue .cpdf-intelligence-proof__icon {
  color: #2563eb;
  background: linear-gradient(135deg, rgba(20, 91, 255, 0.16), rgba(42, 174, 255, 0.2));
}

.cpdf-intelligence-proof__item--indigo .cpdf-intelligence-proof__icon {
  color: #4f46e5;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.16), rgba(129, 140, 248, 0.18));
}

.cpdf-intelligence-proof__item--emerald .cpdf-intelligence-proof__icon {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16), rgba(52, 211, 153, 0.18));
}

.cpdf-intelligence-proof__item--violet .cpdf-intelligence-proof__icon {
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(196, 181, 253, 0.2));
}

.cpdf-intelligence-proof__item h3 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cpdf-intelligence-proof__item p {
  margin-top: 0.35rem;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.65;
}

.cpdf-document-marquee {
  --cpdf-doc-gap: 1rem;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.cpdf-document-marquee::before,
.cpdf-document-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 1;
  pointer-events: none;
}

.cpdf-document-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.cpdf-document-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.cpdf-document-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: var(--cpdf-doc-gap);
  animation: cpdf-document-scroll 28s linear infinite;
  will-change: transform;
}

.cpdf-document-marquee:hover .cpdf-document-track {
  animation-play-state: paused;
}

.cpdf-document-card {
  flex: 0 0 clamp(10.5rem, 14vw, 12rem);
  padding: 0.8rem 0.8rem 1rem;
}

.cpdf-document-card__thumb {
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  background: #e2e8f0;
}

.cpdf-document-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cpdf-document-card h3 {
  font-size: 0.98rem;
  text-align: center;
}

@keyframes cpdf-document-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--cpdf-doc-gap) / 2)));
  }
}

.cpdf-understanding-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.cpdf-workflow {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
}

.cpdf-workflow__copy p {
  max-width: 30rem;
  margin-top: 1rem;
  color: rgba(226, 232, 240, 0.82);
}

.cpdf-workflow__copy h2 {
  font-size: clamp(1.72rem, 2.45vw, 2.55rem);
  white-space: nowrap;
}

.cpdf-workflow__copy .cpdf-button {
  margin-top: 1.9rem;
}

.cpdf-workflow__rail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.6rem;
}

.cpdf-workflow-card {
  width: 8.55rem;
  min-height: 11.5rem;
  padding: 1.2rem 0.9rem;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 0.8rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.34);
  box-shadow: 0 16px 36px rgba(2, 8, 23, 0.16);
}

.cpdf-workflow-card__icon {
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.cpdf-workflow-card__icon--blue {
  background: linear-gradient(135deg, #145bff, #2aaeff);
  box-shadow: 0 18px 38px rgba(20, 91, 255, 0.32), 0 0 18px rgba(42, 174, 255, 0.24);
}

.cpdf-workflow-card__icon--emerald {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.28), 0 0 18px rgba(52, 211, 153, 0.22);
}

.cpdf-workflow-card__icon--violet {
  background: linear-gradient(135deg, #8b5cf6, #c084fc);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.3), 0 0 18px rgba(192, 132, 252, 0.24);
}

.cpdf-workflow-card__icon--amber {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.28), 0 0 18px rgba(251, 191, 36, 0.22);
}

.cpdf-workflow-card__icon--indigo {
  background: linear-gradient(135deg, #2563eb, #818cf8);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.3), 0 0 18px rgba(129, 140, 248, 0.24);
}

.cpdf-workflow-card strong {
  font-size: 1rem;
}

.cpdf-workflow-card span {
  color: #cbd5e1;
  font-size: 0.79rem;
  line-height: 1.45;
  white-space: nowrap;
}

.cpdf-workflow__arrow {
  width: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(147, 197, 253, 0.74);
  font-size: 0.98rem;
}

@media (max-width: 1279px) {
  .cpdf-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cpdf-intelligence-proof,
  .cpdf-understanding-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cpdf-intelligence-window__body {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .cpdf-intelligence-window__chat {
    grid-column: 1 / -1;
  }

  .cpdf-hero-workspace__body {
    grid-template-columns: 4rem minmax(0, 1fr);
  }
}

@media (max-width: 1023px) {
  .cpdf-hero {
    padding-top: 5.4rem;
  }

  .cpdf-hero__grid,
  .cpdf-conversation__grid,
  .cpdf-workflow,
  .cpdf-section__heading--split {
    grid-template-columns: 1fr;
  }

  .cpdf-workflow__rail {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .cpdf-workflow__copy h2 {
    white-space: normal;
  }

  .cpdf-intelligence-headline h2 {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .cpdf-section {
    padding: 3.65rem 0;
  }

  .cpdf-hero__copy h1 {
    max-width: none;
    font-size: clamp(1.7rem, 6vw, 2.35rem);
  }

  .cpdf-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cpdf-hero__availability-actions {
    gap: 0.55rem;
  }

  .cpdf-trust-grid,
  .cpdf-intelligence-proof,
  .cpdf-understanding-grid {
    grid-template-columns: 1fr;
  }

  .cpdf-document-marquee::before,
  .cpdf-document-marquee::after {
    width: 2rem;
  }

  .cpdf-document-track {
    animation-duration: 24s;
  }


  .cpdf-intelligence-window__body,
  .cpdf-hero-workspace__body {
    grid-template-columns: 1fr;
  }

  .cpdf-hero-workspace__thumbs,
  .cpdf-intelligence-window__thumbs {
    display: none;
  }

  .cpdf-intelligence-window__page {
    min-height: auto;
    padding: 1.4rem 1.2rem 1.2rem;
  }

  .cpdf-workflow__rail {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
  }

  .cpdf-workflow-card {
    width: 100%;
    min-height: auto;
  }

  .cpdf-workflow__arrow {
    width: auto;
    height: 1.8rem;
  }

  .cpdf-workflow__arrow i {
    transform: rotate(90deg);
  }
}
