﻿@font-face {
  font-family: "Geist";
  src: url("./assets/fonts/geist-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist";
  src: url("./assets/fonts/geist-latin-ext.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

:root {
  --font-sans:
    "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --bg: #f8fafc;
  --paper: #ffffff;
  --paper-soft: #f3f7fa;
  --navy: #0f172a;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dce3ea;
  --line-strong: #cbd5e1;
  --blue: #006b9c;
  --blue-strong: #005f8f;
  --blue-soft: #e8f4fb;
  --green: #0f9f73;
  --green-soft: #dff8ea;
  --amber: #0f9f73;
  --amber-soft: #dff8ea;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-muted: #f3f7fa;
  --surface-border: var(--line);
  --shadow: 0 14px 42px rgba(15, 23, 42, 0.07);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 18px;
  --max: 1360px;
  --wide: 1440px;
  --page-gutter: 80px;
  --section-gutter: 40px;
  --native-icon: 24px;
  --native-action: 32px;
  --native-icon-radius: 7px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
article[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
select {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 227, 234, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--wide), calc(100% - (var(--page-gutter) * 2)));
  height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover,
.login-link:hover {
  color: var(--ink);
}

.nav-links .nav-demo-link {
  border: 1px solid rgba(0, 107, 156, 0.18);
  border-radius: 999px;
  background: var(--blue-soft);
  padding: 7px 11px;
  color: var(--blue);
}

.nav-links .nav-demo-link:hover {
  border-color: rgba(0, 107, 156, 0.32);
  color: var(--blue-strong);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.nav-collapsible {
  display: contents;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.nav-toggle:hover {
  border-color: var(--line-strong);
  background: #ffffff;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.login-link {
  color: var(--muted);
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    background 140ms ease,
    box-shadow 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--blue);
  color: #ffffff;
  box-shadow: none;
}

.button-light {
  border-color: rgba(0, 107, 156, 0.24);
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 13px;
}

.full-width {
  width: 100%;
}

.hero-section {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 56px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.6fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 48px;
  width: min(var(--wide), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  max-width: 520px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.surface-card {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media {
  overflow: hidden;
  margin: 0;
}

.hero-media {
  position: relative;
}

.hero-workflow {
  width: 100%;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.native-hero-workflow {
  background:
    radial-gradient(circle at 54% 50%, rgba(15, 159, 115, 0.07), transparent 25%),
    radial-gradient(circle at 12% 14%, rgba(0, 107, 156, 0.05), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  min-width: 0;
  padding: 0;
}

.native-workflow {
  position: relative;
  width: 100%;
  min-height: 510px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
}

.native-flow-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.native-flow-base,
.native-flow-motion {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.native-flow-base {
  stroke: #c7d4e3;
  stroke-width: 2;
}

.native-flow-base-main {
  stroke: var(--blue);
  stroke-width: 2;
}

.native-flow-motion {
  animation: native-flow 1.8s linear infinite;
  opacity: 0.76;
  stroke: var(--blue);
  stroke-dasharray: 8 24;
  stroke-width: 2.5;
}

.native-flow-delay-1 {
  animation-delay: -0.55s;
}

.native-flow-delay-2 {
  animation-delay: -1.05s;
}

.native-flow-node {
  animation: native-node-pulse 2.3s ease-in-out infinite;
  fill: var(--blue);
  stroke: #ffffff;
  stroke-width: 4;
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(0, 107, 156, 0.28));
}

.native-flow-node-2,
.native-flow-node-4 {
  animation-delay: -0.7s;
}

.native-flow-node-3 {
  animation-delay: -1.3s;
}

.native-flow-node-5 {
  animation-delay: -1.7s;
}

.native-source-stack {
  display: contents;
}

.native-source-card,
.native-score-card,
.native-contact-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.native-source-card {
  left: 3.6%;
  width: 24.6%;
  padding: 12px;
}

.native-source-card-strong {
  border-color: rgba(0, 107, 156, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.native-card-portals {
  top: 5.2%;
}

.native-card-careers {
  top: 39.4%;
}

.native-card-trends {
  top: 73.6%;
}

.native-source-card h3,
.native-score-card h3,
.native-contact-group h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.native-list {
  display: grid;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.native-list span {
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 0 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.native-list span:last-child {
  border-bottom: 0;
}

.native-logo {
  display: inline-flex;
  width: var(--native-icon);
  height: var(--native-icon);
  flex: 0 0 var(--native-icon);
  align-items: center;
  justify-content: center;
  border-radius: var(--native-icon-radius);
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.native-logo-image {
  display: inline-flex;
  width: var(--native-icon);
  height: var(--native-icon);
  flex: 0 0 var(--native-icon);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--native-icon-radius);
}

.native-logo-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.native-logo.linkedin {
  background: #0a66c2;
}

.native-logo.indeed {
  background: #2557a7;
}

.native-symbol {
  display: inline-flex;
  width: var(--native-icon);
  height: var(--native-icon);
  flex: 0 0 var(--native-icon);
  align-items: center;
  justify-content: center;
  border-radius: var(--native-icon-radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.native-symbol-green {
  background: var(--green-soft);
  color: var(--green);
}

.native-symbol-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.native-symbol svg,
.native-job-icon svg,
.native-avatar svg,
.native-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.native-live i {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 159, 115, 0.12);
}

.native-live i::after {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  animation: native-live-pulse 1.7s ease-out infinite;
  background: rgba(15, 159, 115, 0.2);
  content: "";
}

.native-trend-list span {
  color: var(--blue);
}

.native-score-card {
  top: 34.2%;
  left: 36.5%;
  width: 22.6%;
  padding: 24px 20px 21px;
  text-align: center;
}

.native-score-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f8fafc;
}

.native-score-tabs span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #94a3b8;
  font-size: 26px;
  font-weight: 600;
}

.native-score-tabs span:last-child {
  border-right: 0;
}

.native-score-tabs .active {
  background: var(--green-soft);
  color: var(--green);
}

.native-fit-meter {
  overflow: hidden;
  height: 9px;
  margin: 22px 0 14px;
  border-radius: 999px;
  background: #e2e8f0;
}

.native-fit-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.native-score-card p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.native-contact-card {
  top: 10%;
  right: 1.8%;
  width: 35%;
  padding: 18px;
}

.native-job-chip {
  display: flex;
  width: min(100%, 314px);
  min-height: 56px;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  border-radius: 8px;
  background: var(--blue-soft);
  padding: 9px 12px;
  color: var(--blue);
}

.native-job-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.native-job-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.native-job-copy strong {
  overflow: hidden;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-job-copy small {
  display: block;
  min-width: 0;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.native-job-copy small span {
  display: block;
}

.native-contact-group {
  margin-top: 22px;
}

.native-contact-group + .native-contact-group {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.native-contact-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) var(--native-action) var(--native-action);
  gap: 8px;
  align-items: center;
  min-height: 50px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 7px 8px;
}

.native-avatar {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.native-person {
  background: var(--blue-soft);
  color: var(--blue);
}

.native-avatar svg {
  width: 15px;
  height: 15px;
}

.native-contact-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-action {
  display: inline-flex;
  width: var(--native-action);
  height: var(--native-action);
  min-height: var(--native-action);
  flex: 0 0 var(--native-action);
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 107, 156, 0.22);
  border-radius: 8px;
  background: #ffffff;
  padding: 0;
  color: var(--blue);
}

.native-action svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

@keyframes native-flow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes native-live-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.45);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes native-node-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.section {
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2)));
  margin: 0 auto;
  padding: 82px 0;
}

.logo-section {
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2)));
  margin: -22px auto 0;
  padding: 28px 0 34px;
}

.logo-section p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll-right 34s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 54px;
  padding-inline: 27px;
}

.logo-item {
  display: flex;
  width: 168px;
  height: 54px;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  display: block;
  max-width: 160px;
  max-height: 42px;
  object-fit: contain;
}

.logo-item-nelta img {
  max-width: 108px;
  max-height: 24px;
}

.logo-item-momento img {
  max-width: 138px;
  max-height: 34px;
}

.logo-item-abax img {
  max-width: 104px;
  max-height: 30px;
}

.logo-item-ambass img {
  max-width: 124px;
  max-height: 32px;
}

.cv-upload-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(242, 247, 251, 0.96), rgba(255, 255, 255, 0.98)),
    var(--bg);
}

.cv-upload-shell {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: 54px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.cv-upload-copy {
  max-width: 620px;
  min-width: 0;
}

.cv-upload-copy h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cv-upload-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.cv-upload-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.cv-upload-dropzone {
  display: flex;
  min-height: 260px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px dashed rgba(0, 107, 156, 0.34);
  border-radius: 8px;
  background: rgba(246, 250, 253, 0.88);
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.cv-upload-dropzone:hover,
.cv-upload-dropzone.is-dragging {
  border-color: rgba(0, 116, 168, 0.76);
  background: rgba(230, 244, 252, 0.9);
  transform: translateY(-1px);
}

.cv-upload-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.cv-upload-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 116, 168, 0.1);
  color: var(--accent);
}

.cv-upload-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cv-upload-dropzone-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.cv-upload-dropzone-meta {
  max-width: 280px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cv-upload-selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 14px;
}

.cv-upload-selected[hidden] {
  display: none;
}

.cv-upload-selected [data-cv-upload-file-name] {
  min-width: 0;
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cv-upload-selected [data-cv-upload-file-size] {
  flex: 0 0 auto;
  color: var(--muted);
}

.cv-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cv-upload-actions .button {
  min-height: 44px;
}

.cv-upload-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.cv-upload-status[data-tone="success"] {
  color: #0b8f69;
}

.cv-upload-status[data-tone="error"] {
  color: #b42318;
}

.cv-upload-status[data-tone="info"] {
  color: var(--accent);
}

@keyframes logo-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.section-tight {
  padding-top: 54px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2,
.demo-card h2 {
  margin-bottom: 14px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.12;
}

.section-heading p,
.demo-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.flow-card {
  overflow: hidden;
  min-height: 390px;
  padding: 0;
}

.flow-card img {
  display: block;
  width: 100%;
  height: 218px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  object-fit: contain;
}

.flow-card-copy {
  padding: 22px;
}

.flow-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.flow-card h3 {
  margin: 22px 0 10px;
  font-size: 21px;
  font-weight: 600;
}

.flow-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list.compact {
  margin-top: 22px;
}

.check-list.compact li {
  font-size: 16px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 15px;
}

.check-list li a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

.check-list li a:hover {
  color: var(--blue);
}

.check-list li a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  content: "\2713";
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.demo-section {
  width: 100%;
  margin-top: 22px;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--paper-soft) 20%, var(--paper-soft) 80%, var(--bg) 100%);
  padding: 72px var(--section-gutter);
}

.screenshot-section {
  padding-top: 64px;
}

.product-showcase {
  display: grid;
  gap: 72px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.product-feature-reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
}

.product-feature-copy {
  max-width: 560px;
}

.feature-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.product-feature-copy h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
}

.product-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.product-shot {
  overflow: hidden;
  margin: 0;
}

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

.product-shot figcaption {
  padding: 16px 18px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.product-feature-service {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.12fr);
}

.product-feature-service .product-feature-copy {
  order: 1;
}

.service-panel {
  order: 2;
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.78);
  padding: 30px;
}

.service-panel .check-list {
  margin-top: 0;
}

.side-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(0, 107, 156, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 244, 251, 0.9), rgba(255, 255, 255, 0.8)),
    var(--surface-solid);
  padding: 24px 26px;
}

.side-product h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.side-product p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.side-product .button {
  justify-self: end;
}

.demo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 42px;
  color: var(--ink);
}

.demo-card .eyebrow {
  color: var(--blue);
}

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

.job-alert-demo {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  align-items: center;
  overflow: visible;
  border-color: rgba(15, 23, 42, 0.16);
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 107, 156, 0.2), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(15, 159, 115, 0.14), transparent 30%),
    linear-gradient(135deg, #101827 0%, #132436 54%, #0f172a 100%);
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.18);
}

.job-alert-demo h2 {
  color: #ffffff;
}

.job-alert-demo .eyebrow {
  color: #70d5ff;
}

.job-alert-demo p {
  color: rgba(226, 232, 240, 0.82);
}

.demo-copy {
  max-width: 560px;
}

.demo-card-deck {
  position: relative;
  min-width: 0;
  padding: 0 26px 26px 0;
}

.demo-deck-layer {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.05), transparent 46%),
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.demo-deck-layer-back {
  inset: 28px 0 0 30px;
  border-color: rgba(0, 107, 156, 0.18);
  opacity: 0.58;
}

.demo-deck-layer-mid {
  inset: 14px 14px 14px 14px;
  border-color: rgba(0, 107, 156, 0.22);
  opacity: 0.84;
}

.demo-widget {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 16px;
  background: #fbfdfe;
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 20px 56px rgba(2, 8, 23, 0.18);
}

.job-alert-demo-widget {
  display: flex;
  height: 410px;
  flex-direction: column;
  min-width: 0;
}

.demo-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.demo-widget-header > div {
  min-width: 0;
}

.demo-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-widget-header strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.demo-widget button {
  flex: 0 0 auto;
  min-height: 42px;
  border-color: var(--line-strong);
}

.demo-widget button:disabled {
  cursor: progress;
  opacity: 0.66;
}

.demo-result {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  border-radius: 12px;
  background: var(--paper-soft);
  padding: 13px;
  color: var(--ink-soft);
  font-size: 13px;
}

.demo-result strong {
  color: var(--ink);
}

.demo-alert-feed {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  gap: 10px;
  overflow: auto;
  margin: 0 0 16px;
  padding-right: 4px;
}

.demo-alert-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: 100%;
  height: fit-content;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-soft);
  padding: 12px 14px;
  color: var(--ink);
}

.demo-alert-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.demo-alert-badge {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-soft);
  padding: 3px 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

.demo-alert-card h3 {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-alert-meta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.demo-alert-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
}

.demo-alert-meta span,
.demo-alert-link {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 500;
}

.demo-alert-meta span {
  background: #ffffff;
  color: var(--ink-soft);
}

.demo-alert-link {
  flex: 0 0 auto;
  width: fit-content;
  background: #ffffff;
  color: var(--blue);
}

.demo-empty-state {
  min-height: 100%;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.crawler-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.crawler-dot.active {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 107, 156, 0.12);
}

.pricing-section {
  padding-top: 56px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(0, 107, 156, 0.34);
  background: #ffffff;
}

.plan-name {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.price {
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.price-card p {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.price-card .button {
  margin-top: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2)));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
}

.site-footer p {
  margin: 5px 0 0;
}

.site-footer a {
  font-weight: 500;
}

@media (max-width: 1439px) {
  :root {
    --page-gutter: 40px;
  }
}

@media (max-width: 1279px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }
}

@media (max-width: 1120px) {
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cv-upload-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cv-upload-copy {
    max-width: 720px;
  }
}

@media (max-width: 1023px) {
  .nav-shell {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-collapsible {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    padding: 18px clamp(16px, 6vw, 32px) 24px;
    box-shadow: 0 24px 36px rgba(15, 23, 42, 0.08);
  }

  .nav-shell.is-open .nav-collapsible {
    display: flex;
  }

  .nav-shell.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-shell.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-shell.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-collapsible .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    font-size: 16px;
  }

  .nav-collapsible .nav-links a {
    padding: 12px 10px;
    border-radius: 10px;
    color: var(--ink);
  }

  .nav-collapsible .nav-links a:hover {
    background: var(--paper-soft);
  }

  .nav-collapsible .nav-links .nav-demo-link {
    align-self: flex-start;
    padding: 10px 14px;
    color: var(--blue);
  }

  .nav-collapsible .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .nav-collapsible .login-link {
    padding: 10px;
    color: var(--ink-soft);
    font-size: 15px;
  }

  .nav-collapsible .nav-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .native-hero-workflow {
    padding: 16px;
  }

  .native-workflow {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    aspect-ratio: auto;
    min-height: auto;
    overflow: visible;
    gap: 14px;
  }

  .native-flow-lines {
    display: none;
  }

  .native-source-stack {
    display: grid;
    width: min(100%, calc(100vw - 60px));
    gap: 14px;
  }

  .native-source-card,
  .native-score-card,
  .native-contact-card {
    position: static;
    inset: auto;
    width: min(100%, calc(100vw - 60px));
    min-width: 0;
  }

  .native-job-chip {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    width: min(var(--max), calc(100vw - 28px));
  }

  .hero-section {
    padding-top: 46px;
  }

  .hero-grid,
  .section,
  .logo-section,
  .cv-upload-shell,
  .site-footer {
    width: min(var(--max), calc(100vw - 28px));
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .cv-upload-shell {
    min-height: auto;
    max-width: calc(100vw - 28px);
    grid-template-columns: minmax(0, 1fr);
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .cv-upload-page {
    overflow-x: hidden;
  }

  .cv-upload-copy,
  .cv-upload-card,
  .cv-upload-dropzone {
    width: 100%;
    max-width: 100%;
  }

  .cv-upload-copy h1 {
    font-size: 38px;
  }

  .cv-upload-copy p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 16px;
  }

  .cv-upload-card {
    padding: 16px;
  }

  .cv-upload-dropzone {
    min-height: 220px;
  }

  .cv-upload-actions {
    flex-direction: column;
  }

  .cv-upload-actions .button {
    width: 100%;
  }

  .flow-grid,
  .demo-card,
  .pricing-grid,
  .product-feature,
  .product-feature-reverse {
    grid-template-columns: 1fr;
  }

  .product-feature-reverse .product-feature-copy {
    order: 2;
  }

  .side-product {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .side-product .button {
    justify-self: start;
  }

  .logo-group {
    gap: 36px;
    padding-inline: 18px;
  }

  .logo-item {
    width: 138px;
  }

  .logo-item img {
    max-width: 132px;
    max-height: 38px;
  }

  .logo-section p {
    max-width: 340px;
    line-height: 1.45;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .demo-card h2 {
    font-size: 32px;
  }

  .demo-card {
    padding: 26px;
  }

  .hero-actions {
    max-width: 420px;
  }

  .demo-card-deck,
  .demo-widget {
    width: 100%;
    max-width: 100%;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  :root {
    --native-icon: 23px;
    --native-action: 28px;
  }

  .nav-shell {
    gap: 16px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .button-small {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero-copy,
  .hero-subtitle {
    max-width: calc(100vw - 28px);
  }

  .hero-subtitle {
    width: 340px;
  }

  h1 {
    width: 330px;
    max-width: 100%;
    font-size: 34px;
  }

  .native-contact-card {
    padding: 18px;
  }

  .native-contact-row {
    grid-template-columns: 28px minmax(0, 1fr) var(--native-action) var(--native-action);
    gap: 5px;
    margin-right: 32px;
    padding: 7px;
  }

  .native-avatar {
    width: 28px;
    height: 28px;
  }

  .native-contact-row strong {
    font-size: 11px;
  }

  .native-action {
    width: var(--native-action);
    height: var(--native-action);
    min-height: var(--native-action);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .demo-widget-header {
    display: grid;
    grid-template-columns: 1fr;
  }

  .job-alert-demo {
    overflow: hidden;
  }

  .demo-deck-layer {
    display: none;
  }

  .demo-widget {
    height: 440px;
    padding: 16px;
  }

  .demo-result {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .demo-result strong {
    grid-column: 2;
  }

  .demo-alert-meta-row {
    display: grid;
    justify-content: stretch;
  }

  .demo-section {
    width: 100%;
    padding: 58px 14px;
  }

  .demo-card {
    width: 100%;
  }
}

.client-demo-page {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, var(--bg) 100%);
}

.client-demo-hero {
  overflow: hidden;
  padding: 54px 0 28px;
}

.client-demo-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 46px;
  width: min(var(--wide), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.client-demo-hero-copy {
  max-width: 560px;
}

.client-demo-hero-copy h1 {
  max-width: 100%;
}

.client-demo-hero-copy h1 span {
  white-space: normal;
}

.client-demo-score {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.client-demo-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  padding: 30px;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 107, 156, 0.1), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(15, 159, 115, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.client-demo-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.client-demo-visual-header strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.client-demo-simple-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 24px;
}

.client-demo-simple-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.client-demo-simple-step::after {
  position: absolute;
  top: 50%;
  right: -20px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  animation: client-demo-flow-line 1.8s ease-in-out infinite;
  content: "";
}

.client-demo-simple-step:nth-child(2)::after {
  animation-delay: -0.9s;
}

.client-demo-simple-step:last-child::after {
  content: none;
}

.client-demo-simple-step.strong {
  border-color: rgba(0, 107, 156, 0.26);
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.06), transparent 52%),
    #ffffff;
}

.client-demo-step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.client-demo-step-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 107, 156, 0.16);
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  animation: client-demo-icon-lift 4.5s ease-in-out infinite;
}

.client-demo-simple-step:nth-child(2) .client-demo-step-icon {
  animation-delay: -1.4s;
}

.client-demo-simple-step:nth-child(3) .client-demo-step-icon {
  animation-delay: -2.8s;
}

.client-demo-step-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.client-demo-simple-step h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
}

.client-demo-simple-step p,
.client-demo-backend-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.client-demo-backend-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 16px;
}

.client-demo-mini-tags,
.client-demo-sync-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.client-demo-mini-tags i,
.client-demo-sync-choice span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.client-demo-mini-tags i {
  background: var(--paper-soft);
  color: var(--ink-soft);
}

.client-demo-sync-choice span {
  background: var(--green-soft);
  color: var(--green);
}

.client-demo-domain-card {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  border: 1px solid rgba(0, 107, 156, 0.18);
  border-radius: 12px;
  background: #ffffff;
  padding: 10px 12px;
}

.client-demo-domain-card span {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.client-demo-domain-card strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

@keyframes client-demo-icon-lift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes client-demo-flow-line {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.7);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.client-demo-audience-section {
  padding-top: 50px;
}

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

.client-demo-audience-card {
  padding: 28px;
}

.client-demo-audience-card-detail {
  border-color: rgba(0, 107, 156, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.06), transparent 44%),
    #ffffff;
}

.client-demo-role {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  padding: 6px 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.client-demo-audience-card h3,
.client-demo-stage-copy h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.16;
}

.client-demo-audience-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.client-demo-metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdfe;
}

.client-demo-metric-row div {
  display: grid;
  gap: 5px;
  min-height: 112px;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 14px;
}

.client-demo-metric-row div:last-child {
  border-right: 0;
}

.client-demo-metric-row strong {
  color: var(--blue);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.client-demo-metric-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

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

.client-demo-control-list span {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(0, 107, 156, 0.16);
  border-radius: 13px;
  background: #ffffff;
  padding: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.client-demo-control-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.client-demo-workflow {
  overflow: hidden;
  padding: 0;
}

.client-demo-stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.client-demo-step {
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 82px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #ffffff;
  padding: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.client-demo-step:last-child {
  border-right: 0;
}

.client-demo-step span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.client-demo-step.is-active {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.client-demo-step.is-active span {
  color: var(--blue);
}

.client-demo-stage-shell {
  position: relative;
  min-height: 500px;
}

.client-demo-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: center;
  padding: 38px;
}

.client-demo-stage[hidden] {
  display: none;
}

.client-demo-stage:not(.is-active) {
  display: none;
}

.client-demo-stage-copy {
  max-width: 500px;
}

.client-demo-stage-copy p,
.client-demo-contract-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.client-demo-mail-ui,
.client-demo-timeline,
.client-demo-lead-stack,
.client-demo-alert-ui,
.client-demo-sync-table,
.client-demo-contract {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdfe;
}

.client-demo-mail-ui,
.client-demo-timeline,
.client-demo-lead-stack,
.client-demo-alert-ui,
.client-demo-sync-table {
  padding: 16px;
}

.client-demo-ui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 14px;
}

.client-demo-ui-bar strong {
  color: var(--ink);
  font-size: 16px;
}

.client-demo-ui-bar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.client-demo-mail-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.client-demo-mail-row:last-child {
  border-bottom: 0;
}

.client-demo-mail-row.strong {
  color: var(--blue);
}

.client-demo-file-icon {
  display: inline-flex;
  width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.client-demo-mail-row strong,
.client-demo-lead-card strong,
.client-demo-experience strong,
.client-demo-sync-row strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.client-demo-mail-row small,
.client-demo-lead-card small {
  display: block;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
}

.client-demo-mail-row b {
  color: var(--blue);
  font-size: 13px;
}

.client-demo-timeline {
  display: grid;
  gap: 12px;
}

.client-demo-experience {
  position: relative;
  border-left: 3px solid var(--green);
  border-radius: 12px;
  background: #ffffff;
  padding: 14px 16px 14px 18px;
}

.client-demo-experience.muted {
  border-left-color: var(--line-strong);
}

.client-demo-experience p,
.client-demo-lead-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.client-demo-score {
  min-height: 24px;
  margin-bottom: 8px;
  padding: 0 9px;
}

.client-demo-score.score-a {
  border-color: rgba(15, 159, 115, 0.26);
  background: var(--green-soft);
  color: var(--green);
}

.client-demo-score.score-b {
  border-color: rgba(0, 107, 156, 0.22);
  background: var(--blue-soft);
  color: var(--blue);
}

.client-demo-score.score-c {
  background: var(--paper-soft);
  color: var(--muted);
}

.client-demo-lead-stack {
  display: grid;
  gap: 12px;
}

.client-demo-lead-card {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 13px;
  background: #ffffff;
  padding: 15px;
}

.client-demo-lead-card.grade-b {
  border-left-color: var(--blue);
}

.client-demo-alert-ui {
  display: grid;
  gap: 12px;
}

.client-demo-sync-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.client-demo-sync-row {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.8fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--ink-soft);
  font-size: 13px;
}

.client-demo-sync-row:last-child {
  border-bottom: 0;
}

.client-demo-sync-row.head {
  background: var(--paper-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.client-demo-sync-row strong {
  color: var(--blue);
  font-size: 13px;
}

.client-demo-integration-section {
  padding-top: 52px;
}

.client-demo-contract {
  display: grid;
  gap: 0;
  padding: 0;
}

.client-demo-contract-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px;
}

.client-demo-contract-step:last-child {
  border-bottom: 0;
}

.client-demo-contract-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.client-demo-contract-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.client-demo-source-section {
  padding-top: 48px;
}

.client-demo-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.client-demo-source-card {
  padding: 24px;
}

.client-demo-source-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 107, 156, 0.16);
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
}

.client-demo-source-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.client-demo-source-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}

.client-demo-source-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.client-demo-source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.client-demo-source-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .client-demo-hero-grid,
  .client-demo-stage {
    grid-template-columns: 1fr;
  }

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

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

  .client-demo-step:nth-child(3) {
    border-right: 0;
  }

  .client-demo-step:nth-child(4),
  .client-demo-step:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .client-demo-hero-grid {
    width: min(var(--max), calc(100vw - 28px));
  }

  .client-demo-audience-grid,
  .client-demo-source-grid {
    grid-template-columns: 1fr;
  }

  .client-demo-hero-visual {
    min-height: auto;
    padding: 16px;
  }

  .client-demo-simple-flow {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .client-demo-simple-step {
    min-height: auto;
  }

  .client-demo-simple-step::after {
    top: auto;
    right: auto;
    bottom: -15px;
    left: 50%;
    width: 2px;
    height: 16px;
  }

  .client-demo-stepper {
    grid-template-columns: 1fr;
  }

  .client-demo-step,
  .client-demo-step:nth-child(3),
  .client-demo-step:nth-child(4),
  .client-demo-step:nth-child(5) {
    min-height: 58px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .client-demo-step:first-child {
    border-top: 0;
  }

  .client-demo-stage {
    gap: 26px;
    padding: 24px;
  }

  .client-demo-sync-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .client-demo-source-card {
    padding: 22px;
  }

  .client-demo-metric-row,
  .client-demo-control-list {
    grid-template-columns: 1fr;
  }

  .client-demo-metric-row div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .client-demo-metric-row div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .client-demo-hero {
    padding-top: 42px;
  }

  .client-demo-visual-header {
    display: grid;
  }

  .client-demo-mail-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .client-demo-mail-row b {
    grid-column: 2;
  }

  .client-demo-audience-card,
  .client-demo-stage,
  .client-demo-source-card {
    padding: 20px;
  }
}

.fel-demo-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 42%, var(--bg) 100%);
}

.fel-demo-hero {
  padding-bottom: 42px;
}

.fel-demo-hero-grid {
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
}

.fel-demo-hero-visual {
  min-height: 510px;
  background:
    linear-gradient(135deg, rgba(0, 107, 156, 0.08), transparent 46%),
    linear-gradient(315deg, rgba(15, 159, 115, 0.12), transparent 52%),
    #ffffff;
}

.fel-demo-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(15, 159, 115, 0.24);
  border-radius: 999px;
  background: var(--green-soft);
  padding: 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.fel-demo-radar {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  margin: 28px 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(0, 107, 156, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(0, 107, 156, 0.06) 0 1px, transparent 1px 100%),
    #fbfdfe;
  background-size: 34px 34px;
}

.fel-demo-radar-main {
  position: relative;
  z-index: 1;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 12px solid rgba(15, 159, 115, 0.18);
  border-top-color: var(--green);
  border-right-color: var(--green);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.fel-demo-radar-main span {
  display: block;
  color: var(--green);
  font-size: 44px;
  font-weight: 700;
  line-height: 0.9;
}

.fel-demo-radar-main strong {
  display: block;
  max-width: 105px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.fel-demo-radar-ring {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(0, 107, 156, 0.24);
  border-radius: 16px;
}

.fel-demo-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fel-demo-signal-grid div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #ffffff;
  padding: 14px;
}

.fel-demo-signal-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.fel-demo-signal-grid strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.fel-demo-signal-grid small {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
}

.fel-demo-pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fel-demo-pipeline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 107, 156, 0.16);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.fel-demo-pipeline svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.fel-demo-positioning-section,
.fel-demo-method-section {
  padding-top: 52px;
}

.fel-demo-positioning-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fel-demo-positioning-card {
  padding: 24px;
}

.fel-demo-positioning-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
}

.fel-demo-positioning-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.fel-demo-audit-section,
.fel-demo-sample-section {
  padding-top: 58px;
}

.fel-demo-audit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.fel-demo-audit-card,
.fel-demo-product-card {
  padding: 28px;
}

.fel-demo-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.fel-demo-card-header .client-demo-source-icon {
  flex: 0 0 auto;
  margin: 0;
}

.fel-demo-card-header h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
}

.fel-demo-stackbar {
  display: flex;
  overflow: hidden;
  height: 16px;
  border-radius: 999px;
  background: var(--paper-soft);
}

.fel-demo-stackbar span {
  min-width: 6px;
}

.fel-demo-stackbar .ready,
.fel-demo-legend .ready {
  background: var(--green);
}

.fel-demo-stackbar .partial,
.fel-demo-legend .partial {
  background: #c48a10;
}

.fel-demo-stackbar .blocked,
.fel-demo-legend .blocked {
  background: #c94d4d;
}

.fel-demo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.fel-demo-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.fel-demo-legend i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.fel-demo-insight-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.fel-demo-insight-list div {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfdfe;
  padding: 16px;
}

.fel-demo-insight-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
}

.fel-demo-insight-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fel-demo-product-card {
  overflow: hidden;
}

.fel-demo-product-card img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.fel-demo-sample-shell {
  overflow: hidden;
  padding: 0;
}

.fel-demo-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 16px;
}

.fel-demo-filter-bar button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 13px;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.fel-demo-filter-bar button:hover,
.fel-demo-filter-bar button.is-active {
  border-color: rgba(0, 107, 156, 0.26);
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.fel-demo-sample-summary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.fel-demo-sample-summary strong {
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.fel-demo-sample-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.fel-demo-table {
  display: grid;
}

.fel-demo-table-row {
  display: grid;
  grid-template-columns: 0.78fr 1fr 0.5fr 1fr 1.24fr;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  padding: 13px 18px;
  color: var(--ink-soft);
  text-decoration: none;
}

.fel-demo-table-row:last-child {
  border-bottom: 0;
}

.fel-demo-table-row:not(.head):hover {
  background: #fbfdfe;
}

.fel-demo-table-row.head {
  min-height: 44px;
  background: var(--paper-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fel-demo-table-row span {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.fel-demo-table-row span:nth-child(2) {
  color: var(--ink);
  font-weight: 700;
}

.fel-demo-table-row strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.fel-demo-table-row.ready strong {
  background: var(--green-soft);
  color: var(--green);
}

.fel-demo-table-row.partial strong {
  background: #fff6df;
  color: #936000;
}

.fel-demo-table-row.blocked strong {
  background: #fff0f0;
  color: #b63b3b;
}

.fel-demo-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.fel-demo-row-actions a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(0, 107, 156, 0.2);
  border-radius: 999px;
  background: #ffffff;
  padding: 0 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.fel-demo-row-actions a:hover {
  background: var(--blue-soft);
}

.fel-demo-row-actions code {
  display: block;
  flex: 1 1 100%;
  overflow-wrap: anywhere;
  border-radius: 8px;
  background: var(--paper-soft);
  padding: 6px 8px;
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  line-height: 1.35;
}

.fel-demo-talktrack-section {
  padding-top: 54px;
}

@media (max-width: 1120px) {
  .fel-demo-hero-grid,
  .fel-demo-audit-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .fel-demo-signal-grid,
  .fel-demo-positioning-grid {
    grid-template-columns: 1fr;
  }

  .fel-demo-card-header {
    display: grid;
  }

  .fel-demo-table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 18px;
  }

  .fel-demo-table-row.head {
    display: none;
  }

  .fel-demo-table-row strong {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .fel-demo-hero-visual,
  .fel-demo-audit-card,
  .fel-demo-product-card,
  .fel-demo-positioning-card {
    padding: 20px;
  }

  .fel-demo-filter-bar {
    padding: 12px;
  }

  .fel-demo-filter-bar button {
    flex: 1 1 auto;
    justify-content: center;
  }
}
/* CRM automation page */

.crm-page {
  overflow-x: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 18%, var(--bg) 100%);
}

.crm-hero-section {
  padding-bottom: 54px;
}

.crm-hero-grid {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.38fr);
}

.crm-hero-copy {
  max-width: 560px;
}

.crm-hero-copy h1 {
  max-width: 560px;
  margin-bottom: 22px;
}

.crm-workflow-card {
  min-width: 0;
  padding: 0;
  background:
    radial-gradient(circle at 58% 50%, rgba(15, 159, 115, 0.07), transparent 26%),
    radial-gradient(circle at 10% 16%, rgba(0, 107, 156, 0.05), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.crm-workflow {
  position: relative;
  width: 100%;
  min-height: 560px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.crm-flow-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.crm-source-stack {
  display: contents;
}

.crm-source-card,
.crm-automation-card,
.crm-result-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.crm-source-card {
  left: 3.6%;
  width: 25.2%;
  padding: 12px;
}

.crm-card-data {
  top: 5.2%;
}

.crm-card-forms {
  top: 39.4%;
  border-color: rgba(0, 107, 156, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.crm-card-replies {
  top: 69.8%;
}

.crm-source-card h3,
.crm-automation-card h3,
.crm-result-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.crm-native-list {
  display: grid;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.crm-native-list span {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 0 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
}

.crm-native-list span:last-child {
  border-bottom: 0;
}

.crm-automation-card {
  top: 34.2%;
  left: 35.8%;
  width: 23.8%;
  padding: 23px 18px 20px;
  text-align: center;
}

.crm-automation-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f8fafc;
}

.crm-automation-tabs span {
  display: flex;
  min-height: 46px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.crm-automation-tabs span:last-child {
  border-right: 0;
}

.crm-automation-tabs .active {
  position: relative;
  z-index: 2;
  background: var(--green-soft);
  color: var(--green);
}

.crm-automation-card p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.crm-result-card {
  top: 10%;
  right: 1.8%;
  width: 35.4%;
  padding: 18px;
}

.crm-result-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.crm-result-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
}

.crm-result-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.crm-result-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.crm-result-list {
  display: grid;
  gap: 10px;
}

.crm-result-row {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--line-strong);
  border-radius: 10px;
  background: #ffffff;
  padding: 12px 13px;
}

.crm-result-row.active {
  border-left-color: var(--green);
  background: #fbfffd;
}

.crm-result-row strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.crm-result-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.crm-page .section,
.crm-page .site-footer {
  width: min(var(--wide), calc(100% - (var(--page-gutter) * 2)));
}

.crm-customer-section {
  border-top: 1px solid var(--line);
  padding-top: 54px;
  padding-bottom: 58px;
}

.crm-customer-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.82fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}

.crm-customer-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.crm-customer-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
}

.crm-customer-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.56;
}

.crm-customer-marquee {
  margin-inline: calc(var(--page-gutter) * -0.25);
}

.crm-customer-marquee .logo-group {
  gap: 58px;
  padding-inline: 29px;
}

.crm-customer-marquee .logo-item {
  width: 180px;
  height: 58px;
}

.crm-customer-marquee .logo-item img {
  display: block;
  width: auto;
  max-width: 168px;
  max-height: 42px;
  object-fit: contain;
}

.crm-customer-logo-interimaid img {
  max-width: 144px;
  max-height: 38px;
}

.crm-customer-logo-ambass img {
  max-width: 118px;
  max-height: 32px;
}

.crm-customer-logo-abax img {
  max-width: 96px;
  max-height: 28px;
}

.crm-customer-logo-addendum img {
  max-width: 152px;
  max-height: 34px;
}

.crm-customer-logo-newlife img {
  max-width: 164px;
  max-height: 38px;
}

.crm-customer-logo-payone img {
  max-width: 158px;
  max-height: 40px;
}

.crm-customer-logo-gf img {
  max-width: 94px;
  max-height: 42px;
}

.crm-customer-logo-ugg img {
  max-width: 172px;
  max-height: 48px;
}

.crm-customer-logo-skyworth img {
  max-width: 164px;
  max-height: 34px;
}

.crm-problem-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1.44fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 72px;
  padding-bottom: 52px;
}

.crm-problem-copy {
  max-width: 660px;
}

.crm-problem-copy h2,
.crm-timeline-heading h2,
.crm-system-copy h2,
.crm-cta-card h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
}

.crm-problem-copy p:not(.eyebrow),
.crm-timeline-heading p,
.crm-system-copy p,
.crm-cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.crm-problem-visual,
.crm-timeline-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.crm-problem-visual img,
.crm-timeline-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.crm-problem-tags {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

.crm-problem-tag {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 136px;
  border: 1px solid rgba(166, 186, 211, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 10px 15px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.crm-problem-tag strong {
  font-weight: 700;
}

.crm-problem-tag span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.crm-problem-tag-old {
  top: 17%;
  left: 10%;
}

.crm-problem-tag-duplicate {
  top: 18%;
  left: 42%;
}

.crm-problem-tag-thin {
  top: 17%;
  right: 8%;
}

.crm-timeline-section {
  --crm-line-progress: 0;
  padding-top: 54px;
  padding-bottom: 72px;
}

.crm-timeline-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.crm-timeline {
  position: relative;
  display: grid;
  gap: 78px;
}

.crm-timeline-line {
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 50%;
  width: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #d6e7ef;
  transform: translateX(-50%);
}

.crm-timeline-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #006b9c;
  box-shadow: 0 0 18px rgba(0, 107, 156, 0.18);
  transform: scaleY(var(--crm-line-progress));
  transform-origin: top;
  transition: transform 120ms linear;
}

.crm-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  min-height: 380px;
}

.crm-timeline-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 4px solid var(--bg);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(0, 107, 156, 0.16);
  transform: translateX(-50%);
}

.crm-timeline-copy {
  grid-column: 1;
  max-width: 520px;
  padding-top: 2px;
}

.crm-timeline-visual {
  grid-column: 3;
}

.crm-timeline-step-reverse .crm-timeline-copy {
  grid-column: 3;
}

.crm-timeline-step-reverse .crm-timeline-visual {
  grid-column: 1;
  grid-row: 1;
}

.crm-step-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 107, 156, 0.1);
  border-radius: 999px;
  background: #e6f4fb;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.crm-step-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crm-timeline-copy h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.12;
}

.crm-timeline-copy p:not(.crm-step-label) {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.58;
}

.crm-timeline-copy strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.crm-system-section {
  padding-top: 78px;
}

.crm-system-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 58px;
}

.crm-system-copy {
  max-width: 640px;
}

.crm-system-orbit {
  position: relative;
  min-height: 360px;
}

.crm-system-logo {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1;
}

.crm-system-logo strong {
  font-weight: 700;
}

.crm-system-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(0, 107, 156, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.crm-system-logo img {
  display: block;
  width: 66%;
  max-height: 66%;
  object-fit: contain;
}

.crm-logo-salesforce img {
  width: 86%;
  max-height: 86%;
}

.crm-logo-hubspot img,
.crm-logo-pipedrive img,
.crm-logo-zoho img {
  width: 72%;
  max-height: 72%;
}

.crm-logo-zendesk img,
.crm-logo-mailchimp img {
  width: 66%;
  max-height: 66%;
}

.crm-logo-salesforce {
  top: 12px;
  left: 4%;
}

.crm-logo-salesforce .crm-system-logo-mark {
  width: 98px;
  height: 98px;
}

.crm-logo-hubspot {
  top: 126px;
  left: 18%;
}

.crm-logo-dynamics {
  top: 24px;
  left: 36%;
}

.crm-logo-pipedrive {
  top: 44px;
  right: 24%;
}

.crm-logo-pipedrive .crm-system-logo-mark {
  width: 64px;
  height: 64px;
}

.crm-logo-zoho {
  top: 142px;
  left: 49%;
}

.crm-logo-zendesk {
  top: 148px;
  right: 5%;
}

.crm-logo-shopify {
  bottom: 24px;
  left: 10%;
}

.crm-logo-mailchimp {
  bottom: 20px;
  right: 33%;
}

.crm-cta-section {
  padding-top: 36px;
}

.crm-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(232, 244, 251, 0.72), rgba(255, 255, 255, 0.96)),
    var(--surface);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.crm-cta-card > div {
  max-width: 780px;
}

.crm-cta-card .button {
  flex: 0 0 auto;
}

@media (max-width: 1279px) {
  .crm-hero-grid,
  .crm-customer-heading,
  .crm-problem-section,
  .crm-system-panel {
    grid-template-columns: 1fr;
  }

  .crm-problem-copy,
  .crm-system-copy {
    max-width: 760px;
  }

  .crm-customer-heading {
    gap: 14px;
  }

  .crm-system-orbit {
    min-height: 340px;
  }
}

@media (max-width: 1023px) {
  .crm-workflow-card {
    padding: 16px;
  }

  .crm-workflow {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    aspect-ratio: auto;
    min-height: auto;
    overflow: visible;
    gap: 14px;
  }

  .crm-flow-lines {
    display: none;
  }

  .crm-source-stack {
    display: grid;
    width: min(100%, calc(100vw - 60px));
    gap: 14px;
  }

  .crm-source-card,
  .crm-automation-card,
  .crm-result-card {
    position: static;
    inset: auto;
    width: min(100%, calc(100vw - 60px));
    min-width: 0;
  }

  .crm-timeline {
    gap: 72px;
  }

  .crm-timeline-line {
    left: 24px;
  }

  .crm-timeline-step,
  .crm-timeline-step-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding-left: 64px;
  }

  .crm-timeline-step::before {
    top: 18px;
    left: 24px;
    transform: translateX(-50%);
  }

  .crm-timeline-copy,
  .crm-timeline-visual,
  .crm-timeline-step-reverse .crm-timeline-copy,
  .crm-timeline-step-reverse .crm-timeline-visual {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .crm-page .section,
  .crm-page .site-footer {
    width: min(var(--max), calc(100vw - 28px));
  }

  .crm-problem-copy h2,
  .crm-timeline-heading h2,
  .crm-system-copy h2,
  .crm-cta-card h2 {
    font-size: 30px;
  }

  .crm-customer-heading h2 {
    font-size: 30px;
  }

  .crm-customer-marquee {
    margin-inline: 0;
  }

  .crm-timeline-heading {
    margin-bottom: 44px;
    text-align: left;
  }

  .crm-timeline-copy h3 {
    font-size: 27px;
  }

  .crm-cta-card {
    display: grid;
    justify-items: start;
    padding: 24px;
  }

  .crm-problem-tag {
    min-width: auto;
    padding: 8px 10px;
    font-size: 11px;
  }

  .crm-problem-tag span {
    display: none;
  }

  .crm-problem-tag-old {
    left: 7%;
  }

  .crm-problem-tag-duplicate {
    left: 39%;
  }

  .crm-problem-tag-thin {
    right: 5%;
  }

  .crm-system-orbit {
    display: grid;
    grid-template-columns: repeat(5, minmax(72px, 1fr));
    gap: 22px 16px;
    min-height: 0;
    padding-top: 8px;
  }

  .crm-system-logo,
  .crm-logo-salesforce,
  .crm-logo-hubspot,
  .crm-logo-dynamics,
  .crm-logo-pipedrive,
  .crm-logo-zoho,
  .crm-logo-zendesk,
  .crm-logo-shopify,
  .crm-logo-mailchimp {
    position: static;
  }

  .crm-system-logo-mark,
  .crm-logo-salesforce .crm-system-logo-mark,
  .crm-logo-pipedrive .crm-system-logo-mark {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 520px) {
  .crm-page .section,
  .crm-page .nav-shell,
  .crm-hero-grid,
  .crm-page .site-footer {
    width: min(340px, calc(100% - 28px));
    max-width: calc(100% - 28px);
  }

  .crm-page h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 28px;
    line-height: 1.08;
  }

  .crm-hero-copy,
  .crm-hero-copy .hero-subtitle {
    width: 100%;
    max-width: 100%;
  }

  .crm-source-stack,
  .crm-source-card,
  .crm-automation-card,
  .crm-result-card {
    width: 100%;
  }

  .crm-customer-marquee .logo-group {
    gap: 34px;
    padding-inline: 17px;
  }

  .crm-customer-marquee .logo-item {
    width: 150px;
    height: 50px;
  }

  .crm-problem-visual,
  .crm-timeline-visual,
  .crm-cta-card {
    border-radius: 14px;
  }

  .crm-timeline-step,
  .crm-timeline-step-reverse {
    padding-left: 52px;
  }

  .crm-timeline-line {
    left: 20px;
  }

  .crm-timeline-step::before {
    left: 20px;
  }

  .crm-step-number {
    width: 42px;
    height: 42px;
  }

  .crm-system-orbit {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 20px 12px;
  }

  .crm-system-logo-mark,
  .crm-logo-salesforce .crm-system-logo-mark,
  .crm-logo-pipedrive .crm-system-logo-mark {
    width: 62px;
    height: 62px;
  }
}
