:root {
  --blue: #2563eb;
  --blue-hover: #3b82f6;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --emerald: #059669;
  --amber: #d97706;
  --rose: #e11d48;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--slate-900);
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  left: 0;
  padding: 0.875rem clamp(1rem, 3vw, 2.5rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  color: var(--slate-900);
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 800;
  gap: 0.625rem;
}

.brand-mark {
  align-items: center;
  background: var(--slate-900);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  width: 2rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 2.5rem;
  padding: 0.5rem;
  width: 2.5rem;
}

.nav-toggle span {
  background: var(--slate-900);
  display: block;
  height: 2px;
  margin: 0.35rem 0;
  width: 100%;
}

.button {
  align-items: center;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.button:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--white);
  border-color: var(--slate-200);
  color: var(--slate-900);
}

.button-secondary:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
  color: var(--slate-900);
}

.button-small {
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
}

.hero {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(28rem, 1.05fr);
  min-height: calc(100vh - 70px);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 5vw, 5rem) 3rem;
}

.hero-copy {
  align-self: center;
  max-width: 42rem;
}

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

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

h1 {
  font-size: clamp(2.7rem, 6vw, 5.75rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.hero-text,
.section-heading p,
.steps p,
.feature-list p,
.benefits p,
.price-card p,
.faq p {
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-text {
  font-size: 1.18rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2rem;
}

.hero-stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 34rem;
}

.hero-stats div {
  border-left: 2px solid var(--slate-200);
  padding-left: 0.8rem;
}

.hero-stats dt {
  font-size: 1rem;
  font-weight: 800;
}

.hero-stats dd {
  color: var(--slate-500);
  font-size: 0.83rem;
  margin: 0.15rem 0 0;
}

.product-frame {
  align-self: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}

.mock-toolbar {
  align-items: center;
  background: var(--slate-900);
  color: var(--slate-300);
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
}

.dot {
  border-radius: 50%;
  display: inline-block;
  height: 0.72rem;
  margin-right: 0.3rem;
  width: 0.72rem;
}

.dot-red {
  background: #fb7185;
}

.dot-amber {
  background: #f59e0b;
}

.dot-green {
  background: #10b981;
}

.mock-pill {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
}

.mock-grid {
  background: linear-gradient(135deg, var(--slate-100), var(--white));
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.8fr);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.document-preview {
  background: var(--slate-200);
  border-radius: 14px;
  min-height: 34rem;
  padding: 1.25rem;
}

.paper {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  height: 100%;
  min-height: 31rem;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.paper-head,
.paper-row,
.paper-table span {
  background: var(--slate-200);
  border-radius: 999px;
}

.paper-head {
  height: 2rem;
  margin-bottom: 1.6rem;
  width: 45%;
}

.paper-row {
  height: 0.75rem;
  margin: 0.75rem 0;
  width: 78%;
}

.paper-row.short {
  width: 38%;
}

.paper-table {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5.5rem;
}

.paper-table span {
  height: 1.25rem;
}

.highlight {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.45);
  border-radius: 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.45rem;
  position: absolute;
}

.highlight-one {
  left: 11%;
  top: 31%;
}

.highlight-two {
  bottom: 16%;
  right: 11%;
}

.field-panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.panel-head,
.field-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.panel-head {
  border-bottom: 1px solid var(--slate-200);
  font-weight: 800;
  padding-bottom: 0.8rem;
}

.panel-head strong {
  color: var(--emerald);
  font-size: 0.8rem;
}

.field-row {
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 0.85rem;
}

.field-row.selected {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field-row span {
  color: var(--slate-500);
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
}

.field-row strong {
  display: block;
  font-size: 0.92rem;
}

.field-row em {
  color: var(--emerald);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.field-row.warning em,
.field-row.warning strong {
  color: var(--amber);
}

.logo-strip {
  align-items: center;
  background: var(--slate-900);
  color: var(--slate-300);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 750;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}

.logo-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}

.section,
.split-section {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 54rem;
  text-align: center;
}

.section-heading.compact {
  margin-left: 0;
  max-width: 42rem;
  text-align: left;
}

.steps,
.pricing-grid,
.benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article,
.price-card,
.benefits div,
.feature-list article {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 1.25rem;
}

.steps span {
  color: var(--blue);
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.split-section {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

.band {
  background: var(--white);
  border-block: 1px solid var(--slate-200);
}

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

.benefits strong {
  font-size: 1.1rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  position: relative;
}

.price-card.featured {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.12);
}

.badge {
  align-self: flex-start;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 999px;
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 850;
  margin-bottom: 1rem;
  padding: 0.35rem 0.6rem;
}

.price {
  color: var(--slate-900);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.price span {
  color: var(--slate-500);
  font-size: 1rem;
  font-weight: 700;
}

.price-card a {
  color: var(--blue);
  font-weight: 850;
  margin-top: auto;
}

.pricing-table-wrap {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  overflow-x: auto;
}

.pricing-table {
  border-collapse: collapse;
  min-width: 920px;
  width: 100%;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid var(--slate-200);
  padding: 1rem;
  text-align: right;
  vertical-align: top;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
}

.pricing-table thead th {
  background: var(--slate-100);
  color: var(--slate-500);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-table tbody th {
  font-weight: 850;
  min-width: 12rem;
  color: var(--slate-900);
}

.pricing-table .check {
  color: var(--emerald);
  font-size: 1.05rem;
  font-weight: 900;
}

.pricing-table .check::before {
  content: "✓";
}

.pricing-table .check span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table .featured-row {
  background: rgba(37, 99, 235, 0.05);
}

.enterprise-callout {
  align-items: center;
  background: var(--slate-900);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
}

.enterprise-callout h3 {
  margin-bottom: 0.25rem;
}

.enterprise-callout p {
  color: var(--slate-300);
  margin: 0;
}

.pricing-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.faq {
  background: var(--slate-100);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin: 0 auto;
  max-width: 54rem;
}

details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 1rem 1.15rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0.75rem 0 0;
}

.final-cta {
  background: var(--slate-900);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 1rem;
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 50rem;
}

.site-footer {
  align-items: center;
  background: var(--slate-950);
  color: var(--slate-300);
  display: flex;
  justify-content: space-between;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
}

.site-footer span {
  color: var(--white);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .product-frame {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .button {
    width: 100%;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-stats,
  .mock-grid,
  .steps,
  .feature-list,
  .benefits,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .document-preview {
    min-height: 24rem;
  }

  .paper {
    min-height: 21rem;
  }

  .section-heading.compact {
    text-align: center;
  }

  .enterprise-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}
