:root {
  --ink: #18382d;
  --muted: #63726a;
  --green: #214f3c;
  --lime: #d7e8a2;
  --paper: #f8f8f1;
  --line: #dce1d7;
  --orange: #ba572c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #ad4c25;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 5.3vw, 76px);
}
h2 {
  font-size: clamp(36px, 4vw, 52px);
}
h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 36px;
}
.skip {
  position: absolute;
  top: -80px;
  left: 10px;
  background: white;
  padding: 8px;
  z-index: 10;
}
.skip:focus {
  top: 10px;
}
header {
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  font-size: 25px;
  letter-spacing: -1.2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
}
.brand img {
  width: 32px;
  height: 36px;
}
.navlinks {
  display: flex;
  gap: 29px;
  align-items: center;
  font-size: 14px;
}
.nav-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  background: var(--green);
  color: white;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--green);
  line-height: 1.5;
  cursor: pointer;
}
.button:hover {
  background: #163d2c;
  color: white;
}
.button.light {
  background: transparent;
  color: var(--ink);
  border-color: #bdc8be;
}
.button.light:hover {
  background: #ecf0e6;
}
.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.hero {
  padding: 86px 0 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.hero h1 em {
  color: #648150;
  font-style: normal;
}
.hero .lead {
  font-size: 18px;
  line-height: 1.65;
  margin: 26px 0 30px;
  max-width: 480px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.micro {
  font-size: 12px;
  margin-top: 16px;
}
.hero-art {
  position: relative;
  padding: 28px 0 34px 22px;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: 0 -12px 0 5px;
  border-radius: 16px;
  background: #e8ecdf;
  background-image: radial-gradient(#afbea8 1px, transparent 1px);
  background-size: 16px 16px;
  transform: rotate(-2deg);
}
.app-window {
  position: relative;
  background: #fff;
  border: 1px solid #cdd6c9;
  border-radius: 10px;
  box-shadow: 0 18px 50px #253c2910;
  overflow: hidden;
}
.window-head {
  padding: 14px 19px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9faf6;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.dots {
  display: flex;
  gap: 4px;
  margin-right: 9px;
}
.dots i {
  width: 5px;
  height: 5px;
  background: #c8d1c3;
  border-radius: 50%;
}
.window-title {
  font-weight: 700;
}
.pill {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background: #eaf0df;
  color: #456633;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.window-head .pill {
  margin-left: auto;
}
.document {
  margin: 22px;
  background: #fcfcf8;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 22px;
}
.doc-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.doc-top h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
}
.doc-top span {
  font-size: 10px;
  color: var(--muted);
}
.doc-company {
  font-size: 9px;
  margin-top: 6px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.doc-meta {
  display: flex;
  gap: 42px;
  font-size: 9px;
  margin: 22px 0 14px;
}
.doc-meta b {
  display: block;
  font-size: 11px;
}
.mini-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 10px;
}
.mini-table th {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b8478;
  background: #f0f3e9;
}
.mini-table td,
.mini-table th {
  padding: 9px 7px;
  border-bottom: 1px solid #e9ece2;
}
.doc-total {
  text-align: right;
  font-size: 10px;
  font-weight: bold;
  margin-top: 14px;
}
.extract-card {
  margin: -6px 18px 22px 48px;
  background: #fff;
  border: 1px solid #becdb6;
  border-radius: 7px;
  box-shadow: 0 7px 18px #1936220b;
  position: relative;
}
.extract-top {
  padding: 12px 15px;
  background: #eff4e7;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  border-bottom: 1px solid #d9e2cf;
}
.extract-bottom {
  font-size: 10px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  color: #65785e;
}
.extract-card table {
  width: calc(100% - 24px);
  margin: 6px 12px;
}
.art-caption {
  position: absolute;
  bottom: 2px;
  left: 46px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #73836a;
}
.benefit-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 23px 0;
  margin-bottom: 10px;
}
.benefit-bar div {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.benefit-bar div + div {
  border-left: 1px solid var(--line);
}
.tick {
  color: #758b43;
  margin-right: 10px;
}
.section {
  padding: 85px 0;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-title p {
  max-width: 360px;
  font-size: 15px;
}
.section-title .eyebrow {
  margin-bottom: 16px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfcf7;
}
.feature-num {
  display: block;
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--orange);
  font-family: monospace;
}
.feature p {
  font-size: 14px;
  margin-top: 14px;
}
.soft {
  background: #edf0e6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.demo {
  border: 1px solid #cdd6c6;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 24px;
  background: #f8f9f4;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}
.demo-source {
  background: #f0f2e9;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.demo-source .document {
  margin: 0;
  background: #fff;
  min-height: 305px;
  padding: 27px;
}
.demo-source .mini-table {
  font-size: 11px;
}
.demo-source .doc-meta {
  margin: 30px 0 18px;
}
.demo-source .doc-top h3 {
  font-size: 16px;
}
.demo-result {
  padding: 28px;
}
.result-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}
.data-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.data-value {
  font-size: 13px;
  margin-top: 4px;
}
.demo-result table {
  font-size: 12px;
}
.demo-result th {
  font-size: 9px;
}
.notice {
  font-size: 12px;
  background: #faf2dc;
  border: 1px solid #eddfb6;
  color: #7d6229;
  padding: 12px 14px;
  border-radius: 5px;
  margin-top: 18px;
}
.upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  gap: 20px;
}
.upload p {
  font-size: 12px;
}
.upload b {
  display: block;
  font-size: 13px;
  color: var(--ink);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split p {
  margin-top: 22px;
}
.field-map {
  padding: 30px;
  background: #e9eee1;
  border: 1px solid #d6dfcc;
  border-radius: 10px;
}
.field-map header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mapping {
  display: grid;
  grid-template-columns: 1fr 25px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  font-size: 12px;
}
.mapping span:not(:nth-child(2)) {
  padding: 12px;
  background: #fff;
  border: 1px solid #d9e1d1;
  border-radius: 5px;
}
.mapping span:last-child {
  font-family: monospace;
  color: #65804a;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.check-list li {
  padding: 7px 0;
  font-size: 14px;
}
.check-list li:before {
  content: "✓";
  color: #6e843f;
  margin-right: 12px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #829a70;
  padding-bottom: 3px;
}
.dark {
  background: #1d3d2f;
  color: #fff;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}
.dark h2 {
  max-width: 560px;
  font-size: 43px;
}
.dark p {
  color: #b9c9b9;
  margin-top: 15px;
  max-width: 480px;
}
.dark .button {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
  white-space: nowrap;
}
.dark .eyebrow {
  color: #c3d692;
  margin-bottom: 18px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.faq h2 {
  font-size: 44px;
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  padding: 20px 22px 20px 0;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
}
details p {
  padding: 0 0 22px;
  font-size: 14px;
}
.footer {
  margin-top: 65px;
  border-top: 1px solid var(--line);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer .brand {
  margin-bottom: 16px;
}
.footer p {
  font-size: 13px;
  max-width: 260px;
}
.footer h3 {
  font-size: 12px;
  margin: 8px 0 16px;
}
.footer a:not(.brand) {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0;
}
.footer a:hover {
  color: var(--orange);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 11px;
  color: var(--muted);
}
.page-hero {
  padding: 75px 0 46px;
  max-width: 780px;
}
.page-hero h1 {
  font-size: 60px;
}
.page-hero p {
  font-size: 18px;
  margin-top: 22px;
}
.price-card {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 9px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--green);
  background: #f0f3e8;
}
.price-card h3 {
  font-size: 22px;
}
.price-card p {
  font-size: 13px;
  margin-top: 9px;
}
.price {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-top: 26px;
}
.price small {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
}
.price-card .button {
  margin-top: auto;
}
.price-card .check-list {
  margin: 24px 0 28px;
}
.price-card .check-list li {
  font-size: 13px;
}
.recommended {
  position: absolute;
  top: -13px;
  right: 22px;
  background: var(--green);
  color: white;
  padding: 3px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}
.fine {
  font-size: 12px;
  margin-top: 18px;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 32px;
}
.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 19px 12px;
  text-align: left;
}
.comparison th {
  font-size: 12px;
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 70px 0 10px;
  align-items: start;
}
.form-layout h1 {
  font-size: 61px;
}
.form-layout .lead {
  margin: 25px 0;
  font-size: 17px;
}
.form-card {
  background: white;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 10px;
}
.form-card h2 {
  font-size: 30px;
  margin-bottom: 24px;
}
.form-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #d0d9cc;
  border-radius: 5px;
  background: #fff;
  padding: 11px 13px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 20px;
}
.form-card textarea {
  height: 110px;
  resize: vertical;
}
.form-card .button {
  width: 100%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sign-in-page {
  max-width: 450px;
  margin: 70px auto;
}
.sign-in-intro {
  text-align: center;
  margin-bottom: 26px;
}
.sign-in-intro h1 {
  font-size: 43px;
}
.sign-in-intro p {
  font-size: 14px;
  margin-top: 12px;
}
.form-foot {
  text-align: center;
  font-size: 12px;
  margin-top: 22px;
}
.article {
  max-width: 770px;
  margin: 0 auto;
  padding: 70px 0;
}
.article h1 {
  font-size: 56px;
}
.article .intro {
  font-size: 19px;
  margin: 26px 0 36px;
}
.article h2 {
  font-size: 31px;
  letter-spacing: -0.02em;
  margin: 36px 0 15px;
}
.article p,
.article li {
  font-size: 15px;
  margin-bottom: 16px;
}
.article ul,
.article ol {
  padding-left: 24px;
}
.article a {
  color: #375f32;
  text-decoration: underline;
}
.article .eyebrow {
  margin-bottom: 22px;
}
.resources {
  margin-top: 30px;
}
.resource-card {
  display: block;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.resource-card .eyebrow {
  margin-bottom: 25px;
}
.resource-card h2 {
  font-size: 31px;
}
.resource-card p {
  font-size: 14px;
  margin: 18px 0;
}
.table-scroll {
  overflow-x: auto;
}
.no-top {
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .nav {
    gap: 20px;
  }
  .navlinks {
    gap: 18px;
  }
  .hero {
    gap: 30px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .wrap {
    padding: 0 25px;
  }
  .hero-art {
    padding-left: 0;
  }
  .document {
    margin: 16px;
    padding: 16px;
  }
  .hero-art:before {
    inset: 0;
  }
  .split,
  .faq,
  .form-layout {
    gap: 40px;
  }
  .nav-actions {
    gap: 16px;
  }
  .nav-actions .button {
    padding: 10px 14px;
  }
  .mini-table td,
  .mini-table th {
    padding: 8px 4px;
  }
  .feature,
  .price-card {
    padding: 25px;
  }
  .doc-meta {
    gap: 25px;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding: 0 21px;
  }
  .nav {
    height: auto;
    min-height: 80px;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 19px;
    padding-bottom: 16px;
  }
  .brand {
    font-size: 23px;
  }
  .navlinks {
    order: 3;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 13px;
    gap: 12px;
    font-size: 12px;
  }
  .nav-actions {
    font-size: 12px;
    gap: 14px;
  }
  .nav-actions .button {
    padding: 8px 10px;
    font-size: 11px;
    gap: 8px;
  }
  .nav-actions .sign-in {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 52px 0 38px;
    gap: 37px;
  }
  .hero h1 {
    font-size: 58px;
    max-width: 550px;
  }
  .hero .lead {
    font-size: 16px;
    max-width: 540px;
  }
  .hero-art {
    max-width: 520px;
    width: 100%;
    margin: auto;
    padding: 21px 12px 32px;
  }
  .benefit-bar {
    padding: 18px 0;
    gap: 8px;
  }
  .benefit-bar div {
    font-size: 10px;
    padding: 0 5px;
  }
  .tick {
    display: block;
    margin: 0 0 4px;
  }
  .section {
    padding: 55px 0;
  }
  .section-title {
    display: block;
  }
  .section-title p {
    margin-top: 20px;
  }
  .grid3,
  .split,
  .faq,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-num {
    margin-bottom: 16px;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .demo-source {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }
  .demo-source .document {
    min-height: 280px;
  }
  .demo-result {
    padding: 22px;
  }
  .demo-toolbar {
    font-size: 11px;
    padding: 15px;
  }
  .upload {
    align-items: start;
    flex-direction: column;
    padding: 20px;
  }
  .split {
    gap: 30px;
  }
  .dark {
    padding: 32px 26px;
    flex-direction: column;
    align-items: start;
  }
  .dark h2 {
    font-size: 37px;
  }
  .dark p {
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    gap: 20px;
    font-size: 10px;
  }
  .footer {
    margin-top: 35px;
    padding-top: 35px;
  }
  .faq {
    gap: 24px;
  }
  .page-hero {
    padding-top: 50px;
  }
  .page-hero h1,
  .form-layout h1 {
    font-size: 48px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .price-card {
    padding: 30px;
  }
  .price-card.featured {
    margin-top: 10px;
  }
  .form-layout {
    padding-top: 45px;
    gap: 30px;
  }
  .form-card {
    padding: 26px;
  }
  .article {
    padding: 48px 0;
  }
  .article h1 {
    font-size: 43px;
  }
  .article .intro {
    font-size: 17px;
  }
  .comparison {
    font-size: 12px;
  }
  .comparison th,
  .comparison td {
    padding: 15px 10px;
  }
  .sign-in-page {
    margin: 48px auto;
  }
  .section.no-top {
    padding-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.file-picker {
  min-width: 0;
  max-width: 100%;
}
.file-picker label {
  display: block;
  font-size: 12px;
  margin-bottom: 8px;
}
.file-picker input {
  max-width: 100%;
  font-size: 13px;
}
.file-picker input::file-selector-button {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  margin-right: 10px;
  cursor: pointer;
}
