:root {
  --bg: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #111827;
  --muted: #5f6b7a;
  --soft: #dbe3ee;
  --line: rgba(96, 116, 143, 0.22);
  --blue: #075fd8;
  --blue-dark: #054fb8;
  --blue-soft: #e6f0ff;
  --shadow: 0 22px 70px rgba(31, 48, 76, 0.14);
  --radius: 8px;
  --wide: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(11, 115, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 14px max(24px, calc((100vw - var(--wide)) / 2));
  border-bottom: 1px solid rgba(210, 218, 229, 0.72);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 750;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 79, 180, 0.16);
}

.brand-icon.small {
  width: 28px;
  height: 28px;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 550;
}

.nav-links a,
.site-footer nav a {
  color: #2c3644;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #ffffff;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 24px rgba(11, 115, 255, 0.24);
}

.button.secondary {
  color: #192333;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 56px;
  align-items: center;
  max-width: var(--wide);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 70px 24px 52px;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 56px 24px auto auto;
  width: 58%;
  height: 68%;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 240, 255, 0.44)),
    radial-gradient(circle at 100% 0%, rgba(11, 115, 255, 0.16), transparent 46%);
  filter: blur(0);
  z-index: -1;
}

.hero-copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.42;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 34px;
  color: #243145;
  font-size: 14px;
  font-weight: 650;
}

.hero-points span {
  position: relative;
  padding-left: 20px;
}

.hero-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(162, 177, 198, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.18);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red { background: #ff5f57; }
.yellow { background: #ffbd2e; }
.green { background: #28c840; }

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
  font-size: 13px;
  font-weight: 740;
}

.mini-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.window-action {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.window-toolbar {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.window-toolbar select,
.search-field {
  height: 34px;
  border: 1px solid rgba(149, 164, 186, 0.48);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  color: #313c4c;
  font: inherit;
  font-size: 13px;
}

.window-toolbar select {
  padding: 0 10px;
}

.search-field {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #667085;
}

.window-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.95fr);
  min-height: 372px;
}

.clip-list {
  border-right: 1px solid var(--line);
  background: rgba(247, 249, 252, 0.52);
  min-width: 0;
}

.clip-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  gap: 12px;
  align-items: center;
  margin: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 9px;
}

.clip-row.active {
  border-color: rgba(11, 115, 255, 0.58);
  background: rgba(230, 240, 255, 0.72);
}

.clip-glyph,
.clip-thumb {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(160, 174, 196, 0.32);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.clip-thumb {
  background:
    linear-gradient(90deg, rgba(11, 115, 255, 0.12) 0 35%, transparent 35%),
    repeating-linear-gradient(180deg, #ffffff 0 5px, #eef3fa 5px 8px);
}

.mock-title,
.mock-detail-title {
  margin: 0;
  overflow: hidden;
  color: #172033;
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clip-row p:not(.mock-title),
.clip-row span,
.clip-detail p,
.clip-detail span {
  margin: 2px 0 0;
  color: #5f6b7a;
  font-size: 12px;
}

.clip-row b {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.08);
  color: #4b5563;
  font-size: 11px;
}

.clip-detail {
  min-width: 0;
  padding: 18px 16px;
}

.clip-detail p {
  overflow-wrap: anywhere;
}

.mock-section-title {
  margin: 28px 0 10px;
  color: #172033;
  font-size: 13px;
  font-weight: 760;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.action-grid button,
.window-footer button {
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.74);
  color: #283244;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
}

.window-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.window-footer span {
  margin-right: auto;
}

.window-footer button {
  min-width: 72px;
}

.window-footer .paste {
  color: #ffffff;
  border-color: transparent;
  background: var(--blue);
}

.trust-rail,
.feature-grid,
.pricing,
.site-footer,
.content-page {
  width: min(var(--wide), calc(100% - 48px));
  margin: 0 auto;
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(31, 48, 76, 0.08);
  backdrop-filter: blur(18px);
}

.trust-rail article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-rail article:last-child {
  border-right: 0;
}

.rail-icon {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.trust-rail h2,
.feature-card h2,
.pricing h2,
.policy-body h2,
.support-grid h2,
.contact-panel h2,
.timeline h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.trust-rail p,
.feature-card p,
.feature-card li,
.price-card p,
.price-card li,
.policy-body p,
.support-grid p,
.contact-panel p,
.timeline li {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 26px 0 12px;
}

.feature-card,
.price-card,
.content-hero,
.policy-body,
.support-grid article,
.contact-panel,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(31, 48, 76, 0.08);
  backdrop-filter: blur(18px);
}

.feature-card {
  min-height: 300px;
  padding: 28px;
}

.workflow-card {
  grid-column: 1 / -1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.steps div {
  padding: 20px;
  border: 1px solid rgba(11, 115, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
}

.steps b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue);
}

.steps span {
  display: block;
  color: #172033;
  font-size: 18px;
  font-weight: 760;
}

.card-note {
  margin: 24px 0 0;
}

.editor-preview {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #ffffff;
}

.editor-preview p {
  margin: 0 0 20px;
}

.editor-preview div {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}

.active-tab {
  color: var(--blue-dark);
}

.feature-card ul,
.price-card ul,
.timeline ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.ocr-preview {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 132px;
  margin: 22px 0;
}

.screenshot-stack {
  width: 180px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(11, 115, 255, 0.13) 0 30%, transparent 30%),
    repeating-linear-gradient(180deg, #ffffff 0 8px, #eef3fa 8px 12px);
  box-shadow: 0 20px 42px rgba(31, 48, 76, 0.12);
}

.ocr-note {
  width: 174px;
  margin-left: -28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(31, 48, 76, 0.13);
}

.ocr-note h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.ocr-note p {
  margin: 0;
  font-size: 12px;
}

.pricing {
  padding: 22px 0 66px;
  text-align: center;
}

.section-intro {
  max-width: 640px;
  margin: 12px auto 24px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 18px;
}

.price-card {
  padding: 28px;
  text-align: left;
}

.price-icon,
.plus-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
}

.price-icon {
  box-shadow: 0 14px 28px rgba(0, 79, 180, 0.15);
}

.plus-icon {
  color: #ffffff;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  font-size: 30px;
  font-weight: 800;
}

.price-card h3 {
  margin: 0;
  font-size: 22px;
}

.price-card strong {
  display: block;
  margin: 14px 0;
  font-size: 34px;
}

.price-card strong span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
}

.price-card .button {
  width: 100%;
  margin-top: 22px;
}

.download-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.content-page {
  padding: 70px 0;
}

.content-hero {
  padding: 48px;
}

.content-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.3;
}

.content-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.content-hero span {
  display: inline-block;
  margin-top: 18px;
  color: #718096;
  font-size: 14px;
}

.policy-body,
.contact-panel,
.timeline article {
  margin-top: 18px;
  padding: 38px 48px;
}

.policy-body h2:not(:first-child) {
  margin-top: 34px;
}

.policy-body p {
  max-width: 840px;
  margin: 10px 0 0;
}

.policy-body a,
.contact-panel a {
  color: var(--blue);
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.support-grid article {
  padding: 30px;
}

.timeline time {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero::before {
    width: calc(100% - 48px);
    height: 48%;
  }

  .product-window {
    max-width: 720px;
    margin: 0 auto;
  }

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

  .trust-rail article:nth-child(2) {
    border-right: 0;
  }

  .trust-rail article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid,
  .pricing-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    padding: 12px 18px;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .trust-rail,
  .feature-grid,
  .pricing,
  .site-footer,
  .content-page {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero {
    padding: 40px 0 32px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: 38px;
    overflow-wrap: break-word;
  }

  .hero-copy p {
    width: 100%;
    max-width: 320px;
    font-size: 18px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-window {
    width: 326px;
    min-width: 0;
    max-width: 100%;
    justify-self: start;
    margin: 0;
    border-radius: 12px;
  }

  .window-bar,
  .window-toolbar,
  .window-grid,
  .clip-list,
  .clip-detail {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .window-toolbar,
  .window-grid {
    grid-template-columns: 1fr;
  }

  .clip-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .clip-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .clip-row b {
    display: none;
  }

  .clip-row:nth-child(n + 3) {
    display: none;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .trust-rail {
    grid-template-columns: 1fr;
  }

  .trust-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-rail article:last-child {
    border-bottom: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .price-card,
  .content-hero,
  .policy-body,
  .support-grid article,
  .contact-panel,
  .timeline article {
    padding: 24px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}
