:root {
  color-scheme: light;
  --ink: #14211d;
  --muted: #62736d;
  --paper: #f5f2ea;
  --paper-2: #fffdf8;
  --line: rgba(20, 33, 29, .12);
  --green: #0d6d5c;
  --deep: #133a31;
  --aqua: #2db7bd;
  --gold: #d9a441;
  --coral: #d8745a;
  --shadow: 0 24px 70px rgba(20, 33, 29, .14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 183, 189, .2), transparent 30rem),
    radial-gradient(circle at 88% 6%, rgba(217, 164, 65, .18), transparent 28rem),
    linear-gradient(180deg, #faf7f0 0%, #f2efe6 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}
:focus-visible { outline: 3px solid rgba(45, 183, 189, .65); outline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 14px clamp(16px, 4vw, 44px);
  transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.site-header.is-elevated {
  background: rgba(245, 242, 234, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(20, 33, 29, .08);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.brand img { width: 146px; height: auto; }
.nav-links { display: flex; justify-content: center; gap: 20px; color: rgba(20, 33, 29, .72); font-size: 14px; }
.nav-links a { padding: 8px 0; }
.nav-actions { display: flex; align-items: center; gap: 13px; font-weight: 800; font-size: 14px; }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 850;
}
.nav-cta, .btn-primary { background: var(--deep); color: #fffdf8; box-shadow: 0 14px 28px rgba(19, 58, 49, .2); }
.btn-secondary { background: rgba(255, 253, 248, .78); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero, .section, .footer {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 44px);
  padding-right: clamp(18px, 4vw, 44px);
}
.js-ready .section, .js-ready .product-demo, .js-ready .price-card, .js-ready .feature-grid article {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.js-ready .is-visible { opacity: 1; transform: translateY(0); }
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(540px, .9fr) minmax(620px, 1.1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: center;
  padding-top: 36px;
  padding-bottom: 58px;
}
.hero > * { min-width: 0; }
.hero-copy { min-width: 0; max-width: 100%; overflow: hidden; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}
h1 span { display: block; }
h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: 0;
}
h3 { font-size: 20px; line-height: 1.15; margin-bottom: 8px; }
.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
  overflow-wrap: break-word;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 12px; }
.microcopy { margin: 0; color: var(--muted); font-size: 14px; }

.product-demo {
  width: 100%;
  min-width: 0;
  min-height: 500px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  border: 1px solid rgba(20, 33, 29, .1);
  border-radius: 18px;
  background: rgba(255, 253, 248, .82);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.demo-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 12px;
  background: #172720;
  color: rgba(255, 253, 248, .76);
  font-size: 12px;
}
.demo-sidebar img { width: 34px; margin-bottom: 8px; }
.demo-sidebar span { padding: 8px 9px; border-radius: var(--radius); }
.demo-sidebar span:nth-child(2) { background: rgba(255,255,255,.1); color: #fff; }
.demo-main { padding: 18px; min-width: 0; }
.demo-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  margin-bottom: 14px;
}
.demo-top strong { font-size: 22px; }
.demo-top em { font-style: normal; color: var(--muted); font-size: 13px; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-grid-v2 { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); align-items: stretch; }
.demo-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 15px;
}
.demo-attention { grid-row: span 2; }
.mini { display: block; margin-bottom: 12px; color: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.attention-item {
  display: grid;
  gap: 3px;
  padding: 12px;
  margin-bottom: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f2;
}
.attention-item.hot { border-color: rgba(216, 116, 90, .28); background: rgba(216, 116, 90, .08); }
.attention-item small, .demo-handled li, .demo-process p { color: var(--muted); }
.demo-process { display: flex; flex-direction: column; gap: 14px; min-height: 206px; }
.process-file {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fdfbf5;
  box-shadow: 0 10px 22px rgba(20, 33, 29, .08);
}
.process-file b, .process-file small { display: block; overflow-wrap: anywhere; }
.process-file small { color: var(--muted); margin-top: 3px; }
.file-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 74%, rgba(20,33,29,.12) 75%),
    linear-gradient(180deg, #fff, #edf8f5);
  border: 1px solid rgba(20,33,29,.14);
}
.process-stage {
  min-height: 96px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(45, 183, 189, .22);
  border-radius: var(--radius);
  background: rgba(45, 183, 189, .06);
}
.scan-track {
  display: block;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 33, 29, .08);
}
.scan-track i {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  animation: scanTrack 10s ease-in-out infinite;
}
.stage-live {
  margin: 0;
  font-weight: 850;
  min-height: 24px;
  color: var(--muted);
  transition: opacity .18s ease, transform .18s ease;
}
.stage-live.is-changing { opacity: .25; transform: translateY(3px); }
.result-card {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(13, 109, 92, .18);
  border-radius: var(--radius);
  background: rgba(13, 109, 92, .07);
}
.result-card span { color: var(--muted); font-size: 13px; }
.result-card em {
  justify-self: start;
  font-style: normal;
  border-radius: 999px;
  padding: 6px 9px;
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.demo-handled ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.demo-handled li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.demo-handled li::before { content: none; }
.demo-handled li b {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(13, 109, 92, .08);
  color: var(--green);
  padding: 5px 7px;
  font-size: 11px;
}

.section { padding-top: 78px; padding-bottom: 78px; }
.section-head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.section-head.compact { max-width: 880px; }
.section p { color: var(--muted); line-height: 1.6; }
.handles { padding-top: 36px; }
.handle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.handle-grid span, .trust-list span, .chips span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .78);
  padding: 12px;
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.flow-card, .ask-card, .doc-demo, .calendar-ui, .phone-ui, .permissions-ui, .price-card, .security, .faq details, .final-cta {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 16px 48px rgba(20, 33, 29, .08);
}
.flow-card { padding: 18px; }
.flow-card svg rect, .flow-card svg circle { fill: #fffdf8; stroke: rgba(20,33,29,.16); stroke-width: 2; }
.flow-card svg text { text-anchor: middle; dominant-baseline: middle; font-size: 17px; font-weight: 850; fill: var(--ink); }
.flow-path {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  animation: flow 7s linear infinite;
}

.doc-demo {
  display: grid;
  grid-template-columns: .85fr 1.05fr 1fr;
  gap: 14px;
  padding: 14px;
}
.drop-zone, .explain {
  min-height: 260px;
  border: 1px dashed rgba(20, 33, 29, .2);
  border-radius: 12px;
  background: #fff;
  padding: 18px;
}
.drop-zone { display: grid; place-items: center; text-align: center; align-content: center; gap: 8px; }
.drop-zone b { font-size: 19px; }
.drop-zone small { color: var(--muted); }
.explain h3 { font-size: 26px; }
.explain dl { margin: 18px 0; display: grid; gap: 8px; }
.explain dl div { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 8px; }
.explain dt { color: var(--muted); }
.explain dd { margin: 0; font-weight: 850; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { padding: 8px 10px; font-size: 13px; color: var(--green); }

.ask-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  padding: clamp(22px, 4vw, 40px);
}
.command {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 850;
}
.ask-box ul { margin: 16px 0; padding-left: 20px; color: var(--muted); display: grid; gap: 8px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.feature-grid article {
  border-top: 3px solid var(--green);
  background: rgba(255, 253, 248, .74);
  padding: 18px;
  border-radius: 12px;
}
.feature-grid span { color: var(--green); font-weight: 900; }
.calendar-ui { display: grid; gap: 10px; padding: 16px; }
.calendar-ui div, .permissions-ui div {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
}
.calendar-ui em { font-style: normal; color: var(--green); font-weight: 850; }
.phone-ui { max-width: 360px; margin: 0 auto; padding: 18px; background: #172720; }
.bubble { margin: 12px 30px 12px 0; padding: 12px; border-radius: 14px 14px 14px 4px; background: #fff; }
.bubble.alt { margin-left: 46px; margin-right: 0; border-radius: 14px 14px 4px 14px; background: #dff5ee; }
.permissions-ui { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; padding: 14px; }
.permissions-ui div { grid-template-columns: 1fr; }
.permissions-ui span { color: var(--muted); }
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 840px; margin: 0 auto; }
.price-card { padding: 22px; }
.price-card strong { display: block; margin: 10px 0; font-size: 28px; }
.price-card ul { padding-left: 20px; color: var(--muted); display: grid; gap: 8px; margin-bottom: 22px; }
.security { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; padding: clamp(22px, 4vw, 40px); }
.trust-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.faq { display: grid; gap: 10px; }
.faq details { padding: 18px; }
.faq summary { cursor: pointer; font-weight: 850; }
.faq p { margin: 10px 0 0; }
.final-cta { text-align: center; padding: clamp(28px, 5vw, 54px); }
.footer {
  padding-top: 30px;
  padding-bottom: 34px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer nav { display: flex; gap: 16px; font-size: 14px; }

@keyframes scanTrack {
  0%, 100% { transform: translateX(0); }
  45%, 70% { transform: translateX(150%); }
}
@keyframes flow { to { stroke-dashoffset: -48; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; padding-top: 48px; overflow: hidden; }
  .product-demo { max-width: 820px; }
  .handle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .doc-demo, .permissions-ui { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 10px 16px; }
  .nav { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav-actions { grid-column: 1 / -1; justify-content: space-between; display: none; }
  .nav-links {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 253, 248, .96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
  }
  .nav.is-open .nav-links, .nav.is-open .nav-actions { display: flex; }
  h1 { font-size: clamp(32px, 8.4vw, 36px); line-height: 1.08; max-width: 100%; text-wrap: wrap; overflow-wrap: break-word; }
  h1 span { display: block; }
  .lead { font-size: 17px; }
  .hero-copy, .hero-copy h1, .hero-copy .lead { width: min(100%, calc(100vw - 32px), 350px); max-width: min(calc(100vw - 32px), 350px); }
  .hero, .section { padding-top: 52px; padding-bottom: 52px; }
  .product-demo { grid-template-columns: minmax(0, 1fr); min-height: auto; overflow: hidden; width: min(calc(100vw - 32px), 350px); max-width: min(calc(100vw - 32px), 350px); }
  .demo-sidebar { display: flex; align-items: center; overflow-x: auto; }
  .demo-sidebar span { flex: 0 0 auto; }
  .demo-sidebar span:nth-of-type(n+5), .demo-top em { display: none; }
  .demo-sidebar img { display: none; }
  .demo-grid, .split, .ask-card, .security, .price-grid { grid-template-columns: 1fr; }
  .demo-panel { min-height: auto; }
  .handle-grid, .feature-grid, .trust-list { grid-template-columns: 1fr; }
  .calendar-ui div { grid-template-columns: 1fr; }
  .footer { display: grid; }
}

@media (max-width: 430px) {
  .hero, .section, .footer { padding-left: 16px; padding-right: 16px; }
  .product-demo { border-radius: 12px; }
  .demo-main { padding: 12px; }
  .demo-top { display: grid; }
  .demo-top strong { font-size: 18px; }
  .demo-panel { min-height: 150px; padding: 12px; }
  .nav-actions { align-items: stretch; }
  .btn, .nav-cta { width: 100%; }
}
