/* Overrate site styles. No build step. Friendly palette: fresh lime, sunny yellow, coral, pastel tints. */
:root {
  --bg: #ffffff;
  --soft: #f5f9f0;
  --ink: #14261c;
  --ink-2: #2b3d33;
  --muted: #56675d;
  --line: #e3ebdf;
  --lime: #b7f36d;
  --lime-2: #a6ea57;
  --lime-soft: #effbdc;
  --green: #1d9a50;
  --green-text: #13773c;
  --mint: #e4f7ea;
  --sun: #ffe45e;
  --sun-soft: #fff7cc;
  --coral: #ff6f5b;
  --coral-text: #c2412d;
  --coral-soft: #ffece8;
  --sky: #e6f0ff;
  --sky-ink: #2458c6;
  --lilac: #f0eaff;
  --lilac-ink: #6a45d8;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(20, 38, 28, 0.06);
  --shadow: 0 2px 4px rgba(20, 38, 28, 0.04), 0 12px 32px rgba(20, 38, 28, 0.08);
  --shadow-lg: 0 4px 10px rgba(20, 38, 28, 0.05), 0 28px 64px rgba(20, 38, 28, 0.14);
  --round: ui-rounded, "SF Pro Rounded", "Nunito", "Segoe UI", system-ui, sans-serif;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
a { color: var(--green-text); }
h1, h2, h3 { font-family: var(--round); letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(40px, 5.6vw, 64px); line-height: 1.04; font-weight: 800; margin: 18px 0; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; font-weight: 800; margin: 0 0 12px; }
h3 { font-size: 19px; line-height: 1.3; font-weight: 800; margin: 0 0 6px; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 780px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); margin: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 20; }
a:focus-visible, summary:focus-visible, .button:focus-visible, input:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
.icon { width: 20px; height: 20px; flex: none; }

/* Buttons: chunky and friendly */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--lime); color: var(--ink); text-decoration: none;
  font-family: var(--round); font-weight: 800; font-size: 17px; line-height: 1.2;
  padding: 15px 26px; border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: 0 4px 0 var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.button:hover { background: var(--lime-2); transform: translateY(-1px); box-shadow: 0 5px 0 var(--ink); }
.button:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--ink); }
.button .icon { width: 18px; height: 18px; stroke-width: 2.5; }
.button.ghost { background: #fff; }
.button.small { font-size: 15px; padding: 9px 16px; box-shadow: 0 3px 0 var(--ink); }
.button.wide { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 255, 255, 0.86); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; color: var(--ink); text-decoration: none; font-family: var(--round); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.mark { width: 30px; height: 30px; }
.nav { display: flex; gap: 24px; }
.nav a { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--green-text); }

/* Hero */
.hero {
  padding: 60px 0 84px;
  background:
    radial-gradient(640px 420px at 88% 8%, #e9fbd2 0%, transparent 62%),
    radial-gradient(520px 380px at 4% 96%, #fff3bd 0%, transparent 60%),
    radial-gradient(440px 340px at 58% 104%, #efe8ff 0%, transparent 60%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.pill {
  display: inline-block; margin: 0; padding: 6px 14px; border-radius: 999px;
  background: var(--lime-soft); border: 1px solid #d3f1ab; color: var(--green-text); font-weight: 700; font-size: 14px;
}
.marker { background: linear-gradient(transparent 60%, var(--sun) 60%, var(--sun) 92%, transparent 92%); padding: 0 0.06em; }
.lede { font-size: 20px; color: var(--ink-2); max-width: 31em; margin: 0 0 26px; }

/* "Pay nothing unless we recover money" */
.promise {
  max-width: 560px; margin: 0 0 28px; padding: 18px 20px;
  background: var(--sun-soft); border: 2px solid var(--sun); border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(255, 196, 0, 0.16);
}
.promise-main { display: flex; align-items: center; gap: 12px; margin: 0 0 10px; font-family: var(--round); font-weight: 800; font-size: 23px; line-height: 1.2; }
.promise-icon { width: 36px; height: 36px; padding: 7px; border-radius: 50%; background: var(--ink); color: var(--lime); stroke-width: 3.2; animation: pulse-ring 1.8s ease-out infinite, pulse-pop 1.8s ease-in-out infinite; }
.promise-points { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-weight: 700; font-size: 15px; }
.promise-points li { display: inline-flex; align-items: center; gap: 6px; }
.promise-points .icon { width: 18px; height: 18px; color: var(--green-text); stroke-width: 3; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero animation: invoice being checked */
.scanner {
  position: relative; margin: 0; padding: 18px; background: #fff;
  border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-lg); font-variant-numeric: tabular-nums;
}
.scanner-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.scanner-title { margin: 0; font-family: var(--round); font-weight: 800; font-size: 18px; }
.scanner-sub { margin: 1px 0 0; color: var(--muted); font-size: 14px; }
.status { white-space: nowrap; font-size: 13px; font-weight: 800; padding: 5px 11px; border-radius: 999px; background: var(--mint); color: var(--green-text); }
.status.checking { background: var(--sky); color: var(--sky-ink); }
.status.checking::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 6px; border-radius: 50%; background: currentColor; animation: blink 0.9s infinite; }
.progress { height: 5px; margin: 0 0 12px; border-radius: 999px; background: #eef3ea; overflow: hidden; }
.progress span { display: block; height: 100%; width: var(--p, 100%); background: var(--green); border-radius: inherit; transition: width 0.45s ease; }
.lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.line {
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "name amount" "sub back"; gap: 2px 12px;
  padding: 10px 12px; border-radius: 12px; background: #f6f8f4; border: 1.5px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.line-name { grid-area: name; font-weight: 700; font-size: 15px; }
.line-amount { grid-area: amount; font-weight: 700; font-size: 15px; text-align: right; }
.line-sub { grid-area: sub; display: flex; flex-wrap: wrap; align-items: center; gap: 2px 10px; font-size: 13px; color: var(--muted); min-width: 0; }
.line-flag { font-weight: 800; color: var(--coral-text); }
.line-ok { display: inline-flex; align-items: center; gap: 3px; font-weight: 700; color: var(--green-text); }
.line-ok .icon { width: 14px; height: 14px; stroke-width: 3; }
.line-back { grid-area: back; align-self: center; justify-self: end; padding: 2px 10px; border-radius: 999px; background: var(--mint); color: var(--green-text); font-weight: 800; font-size: 14px; }
.line-flag, .line-ok, .line-back { transition: opacity 0.3s ease, transform 0.3s ease; }
.line.flagged { background: var(--coral-soft); border-color: #ffc6bb; }
.line.scanning { background: var(--sky); border-color: #b7cffb; }
.line.pending .line-flag, .line.pending .line-ok, .line.pending .line-back,
.line.scanning .line-flag, .line.scanning .line-ok, .line.scanning .line-back { opacity: 0; transform: translateY(3px); }
.scanner-total {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 14px; padding: 14px 16px; border-radius: 16px; background: var(--lime);
}
.scanner-total span { font-weight: 800; font-size: 15px; }
.scanner-total strong { font-family: var(--round); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; line-height: 1; }
.scanner.is-done .scanner-total { animation: pop 0.5s ease; }
.scanner figcaption { margin: 10px 0 0; text-align: center; font-size: 12px; color: var(--muted); }

/* Savings estimator */
.section { padding: 88px 0; }
.soft { background: var(--soft); }
.estimate-section { padding-top: 72px; background: var(--soft); }
.kicker { margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; font-size: 13px; color: var(--green-text); }
.section-lede { color: var(--muted); font-size: 18px; max-width: 38em; }
.estimate {
  display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-lg);
}
.estimate-inputs { padding: 40px; }
.estimate-result { display: flex; flex-direction: column; justify-content: center; padding: 40px; background: var(--mint); }
.field-label { display: block; margin: 24px 0 8px; padding: 0; font-weight: 800; font-size: 17px; }
.money-input {
  display: flex; align-items: center; gap: 6px; max-width: 340px; padding: 8px 16px;
  border: 2px solid var(--ink); border-radius: 16px; background: #fff;
  font-family: var(--round); font-weight: 800; font-size: 30px;
}
.money-input:focus-within { box-shadow: 0 0 0 5px rgba(183, 243, 109, 0.65); }
.money-input input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; }
.range { display: block; width: 100%; max-width: 440px; margin: 16px 0 4px; accent-color: var(--green); }
.help { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.months { margin: 26px 0 0; padding: 0; border: 0; }
.months .field-label { margin-top: 0; }
.segmented { display: flex; flex-wrap: wrap; gap: 8px; }
.segmented label { position: relative; }
.segmented input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.segmented span { display: inline-block; padding: 8px 14px; border: 2px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800; font-size: 15px; cursor: pointer; }
.segmented input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--lime); }
.segmented input:focus-visible + span { outline: 3px solid var(--sun); outline-offset: 2px; }
.result-label { margin: 0; font-weight: 800; font-size: 18px; }
.result-big { margin: 6px 0 8px; font-family: var(--round); font-weight: 800; font-size: clamp(52px, 7vw, 76px); letter-spacing: -0.03em; line-height: 1; color: var(--green-text); font-variant-numeric: tabular-nums; }
.result-range, .result-year { margin: 4px 0; font-size: 16px; }
.result-promises { list-style: none; margin: 18px 0 22px; padding: 16px 18px; display: grid; gap: 8px; background: #fff; border-radius: 16px; font-weight: 700; font-size: 15px; }
.result-promises li { display: flex; align-items: center; gap: 8px; }
.result-promises .icon { width: 20px; height: 20px; color: var(--green-text); stroke-width: 3; }
.fine { margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }

/* What we find */
.cards { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon { display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 14px; border-radius: 15px; }
.card-icon .icon { width: 25px; height: 25px; }
.tint-0 .card-icon { background: var(--coral-soft); color: var(--coral-text); }
.tint-1 .card-icon { background: var(--sky); color: var(--sky-ink); }
.tint-2 .card-icon { background: var(--lilac); color: var(--lilac-ink); }
.card p { margin: 0; color: var(--muted); }

/* Benefits */
.benefits { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.benefit-icon { display: grid; place-items: center; flex: none; width: 50px; height: 50px; border-radius: 15px; background: var(--mint); color: var(--green-text); }
.benefit-icon .icon { width: 25px; height: 25px; }
.benefit h3 { margin-top: 2px; }
.benefit p { margin: 0; color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: 10px; margin-top: 32px; }
.faq details { padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.faq summary { display: flex; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-weight: 800; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-family: var(--round); font-weight: 800; font-size: 24px; line-height: 1; color: var(--green-text); }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 10px 0 0; color: var(--muted); }

/* Closing band: "Pay nothing" lands like a rubber stamp, once, when the section scrolls in */
.closing { background: var(--ink); overflow: hidden; }
.closing h2 { color: #fff; }
.stamp-wrap { position: relative; display: table; margin: 14px auto 32px; }
.stamp {
  margin: 0; padding: 12px 24px; transform: rotate(-3deg);
  background-color: var(--sun);
  background-image: radial-gradient(rgba(20, 38, 28, 0.09) 1px, transparent 1.6px);
  background-size: 7px 7px;
  color: var(--ink); border: 3px solid var(--ink); border-radius: 12px;
  box-shadow: inset 0 0 0 3px var(--sun), inset 0 0 0 5px var(--ink), 0 10px 30px rgba(0, 0, 0, 0.35);
  font-family: var(--round); font-weight: 900; font-size: 22px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.stamp-wrap::after {
  content: ""; position: absolute; inset: -8px; border: 3px solid var(--sun); border-radius: 18px;
  opacity: 0; transform: rotate(-3deg); pointer-events: none;
}
.js .stamp:not(.stamped) { opacity: 0; }
.stamp.stamped { animation: stamp-in 0.55s cubic-bezier(0.25, 1.4, 0.5, 1) both; }
.stamp-wrap.hit::after { animation: stamp-ring 0.8s ease-out 0.3s both; }
.closing.hit .wrap { animation: thud 0.35s ease-out 0.3s; }
.closing .button { border-color: var(--lime); box-shadow: 0 4px 0 #07120c; }

/* "Built for brands that sell on" */
.platforms { padding: 26px 0 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.platforms-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 34px; text-align: center; }
.platforms-label, .platforms-note { margin: 0; color: var(--muted); font-weight: 700; font-size: 14px; }
.platforms-label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 12.5px; }
.platform-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 34px; }
.platform-list li { font-family: var(--round); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: #7d8c83; }

/* The long invoice */
.tedious-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 22px; }
.outcome { padding: 20px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.outcome-2 { background: var(--mint); border-color: #cdeed7; }
.outcome-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 10px; border-radius: 14px; background: var(--sky); color: var(--sky-ink); }
.outcome-2 .outcome-icon { background: var(--lime); color: var(--ink); }
.outcome-q { margin: 0; font-weight: 800; color: var(--muted); }
.outcome-big { margin: 2px 0 6px; font-family: var(--round); font-weight: 800; font-size: 26px; line-height: 1.15; letter-spacing: -0.02em; }
.outcome-2 .outcome-big { color: var(--green-text); }
.outcome-detail { margin: 0; color: var(--ink-2); font-size: 15px; }
.either-way { margin: 0; font-family: var(--round); font-weight: 800; font-size: 24px; letter-spacing: -0.01em; }

.stack { position: relative; margin: 0; padding: 18px 18px 0; }
.sheets { position: relative; }
.sheets::before, .sheets::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
}
.sheets::before { transform: rotate(-4deg) translate(-12px, 14px); }
.sheets::after { transform: rotate(2.5deg) translate(14px, 8px); }
.paper { position: relative; z-index: 1; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); }
.paper-head, .paper-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 16px; font-weight: 800; font-size: 14px; }
.paper-head { border-bottom: 1px dashed var(--line); }
.paper-head span:first-child { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.paper-head .icon { width: 18px; height: 18px; color: var(--green-text); }
.page-count { min-width: 124px; text-align: center; padding: 3px 10px; border-radius: 999px; background: var(--coral-soft); color: var(--coral-text); white-space: nowrap; font-variant-numeric: tabular-nums; }
.paper-foot { border-top: 1px dashed var(--line); background: #fbfcfa; color: var(--ink-2); }
.by-hand { display: inline-flex; align-items: center; gap: 6px; color: var(--coral-text); }
.by-hand .icon { width: 16px; height: 16px; }
.paper-window {
  position: relative; height: 380px; overflow: hidden;
  -webkit-mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(transparent, #000 10%, #000 90%, transparent);
}
.paper-rows { animation: scroll-rows 42s linear infinite; }
.prows { list-style: none; margin: 0; padding: 0; }
.prow {
  display: grid; grid-template-columns: 44px 70px 1fr 30px 70px; gap: 8px; align-items: baseline;
  padding: 7px 16px; border-bottom: 1px solid #eef2ec; font-size: 12.5px; color: var(--ink-2); font-variant-numeric: tabular-nums;
}
.p-date, .p-code { color: var(--muted); }
.p-code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11.5px; }
.p-qty, .p-amt { text-align: right; }
.prow.flag { background: var(--coral-soft); color: var(--ink); }
.prow.flag em { display: inline-block; margin-left: 4px; padding: 0 7px; border-radius: 999px; background: #fff; color: var(--coral-text); font-style: normal; font-weight: 800; font-size: 11px; }
.lens {
  position: absolute; z-index: 2; right: -6px; top: 34%; display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%; background: var(--lime); color: var(--ink);
  border: 3px solid var(--ink); box-shadow: 0 5px 0 var(--ink); animation: float 4s ease-in-out infinite;
}
.lens .icon { width: 34px; height: 34px; stroke-width: 2.5; }
.stack figcaption { position: relative; z-index: 2; margin: 44px 0 0; text-align: center; font-size: 12px; color: var(--muted); }

/* We do the work: your 5 minutes vs. our checklist */
.effort-grid { display: grid; grid-template-columns: 0.85fr auto 1.25fr; gap: 20px; align-items: stretch; margin-top: 40px; }
.part { padding: 28px; border-radius: 22px; }
.yours { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.ours { background: var(--ink); color: #fff; }
.part-label { margin: 0; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; font-size: 13px; color: var(--green-text); }
.ours .part-label { color: var(--lime); }
.part-time { display: flex; align-items: center; gap: 8px; margin: 6px 0 20px; font-family: var(--round); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.part-time .icon { width: 26px; height: 26px; }
.ours .part-time { color: #fff; }
.your-steps { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 14px; }
.your-steps li { display: grid; gap: 6px; }
.file-chip { display: inline-flex; align-items: center; justify-self: start; gap: 8px; padding: 8px 14px; border-radius: 12px; background: var(--sky); color: var(--sky-ink); font-weight: 800; }
.file-chip .icon { width: 18px; height: 18px; }
.your-steps li > span:last-child { color: var(--muted); font-size: 15px; }
.part-done { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-weight: 800; color: var(--green-text); }
.part-done .icon { width: 24px; height: 24px; padding: 3px; border-radius: 50%; background: var(--mint); stroke-width: 3; }
.handoff { align-self: center; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--lime); color: var(--ink); border: 2px solid var(--ink); box-shadow: 0 3px 0 var(--ink); }
.our-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.our-steps li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 15px; color: #e6eee8; }
.our-steps .icon {
  flex: none; width: 22px; height: 22px; margin-top: 1px; padding: 3px; border-radius: 50%;
  background: var(--lime); color: var(--ink); stroke-width: 3.2;
  transition: transform 0.35s cubic-bezier(0.3, 1.6, 0.5, 1), opacity 0.3s ease;
}
.our-steps li span { transition: opacity 0.3s ease; }
.js .our-steps:not(.run) .icon { transform: scale(0); opacity: 0; }
.js .our-steps:not(.run) li span { opacity: 0.45; }
.effort-result {
  display: flex; align-items: center; justify-content: center; gap: 24px; max-width: 760px; margin: 34px auto 0;
  padding: 22px 28px; border-radius: 22px; background: var(--sun-soft); border: 2px solid var(--sun);
}
.stat { display: grid; text-align: center; }
.stat span { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.stat strong { font-family: var(--round); font-weight: 800; font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; }
.stat.money strong { color: var(--green-text); }
.stat.money strong span { font: inherit; color: inherit; text-transform: none; letter-spacing: inherit; }
.stat-arrow { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--lime); }
.effort .fine { margin-top: 12px; }

/* Data safety */
.trust-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px 56px; align-items: start; }
.trust-badge {
  display: inline-grid; place-items: center; width: 76px; height: 76px; margin-bottom: 18px;
  border-radius: 24px; background: var(--ink); color: var(--lime);
}
.trust-badge .icon { width: 40px; height: 40px; }
.promises { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.trust-icon { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 13px; background: var(--lilac); color: var(--lilac-ink); }
.trust-item h3 { font-size: 17px; margin: 1px 0 3px; }
.trust-item p { margin: 0; color: var(--muted); font-size: 15px; }
.trust-fine { grid-column: 2; margin-top: -30px; }

/* Footer links */
.footer-links a { color: #dfe8e2; }

/* Free check: upload form */
.check-section { background: var(--soft); }
.check-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 40px; align-items: start; }
.check-title { font-size: clamp(34px, 4.4vw, 52px); margin: 6px 0 14px; }
.check-form { display: grid; gap: 16px; margin-top: 24px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; font-weight: 700; font-size: 15px; }
.field em, .drop-title em { font-style: normal; font-weight: 600; color: var(--muted); font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 2px solid var(--line); border-radius: 12px; background: #fff;
  font: inherit; font-weight: 500; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(183, 243, 109, 0.6); }
.narrow-field { max-width: 320px; }
.money-input.small { font-size: 17px; padding: 4px 12px; border-width: 2px; border-color: var(--line); }
.money-input.small input { padding: 7px 0; border: 0; box-shadow: none; }
.drop { padding: 18px; border: 2px dashed #cfdcc9; border-radius: 16px; background: #fbfdf9; }
.drop-title { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 800; }
.drop-title .icon { color: var(--green-text); }
.drop .help { margin: 4px 0 12px; }
.drop input[type="file"] { width: 100%; font: inherit; font-size: 15px; }
.file-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 4px; font-size: 14px; color: var(--ink-2); }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.check input { flex: none; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--green); }
.form-error { margin: 18px 0 0; padding: 12px 16px; border-radius: 12px; background: var(--coral-soft); color: var(--coral-text); font-weight: 700; }
.notice { margin: 18px 0; padding: 14px 18px; border-radius: 14px; background: var(--sun-soft); border: 2px solid var(--sun); }
.notice.ok { background: var(--mint); border-color: #bfe8cc; }
.check-side { display: grid; gap: 16px; position: sticky; top: 90px; }
.side-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.side-card h2 { font-size: 20px; margin: 0 0 10px; }
.soft-card { background: var(--mint); border-color: #cdeed7; }
.next-steps { margin: 0; padding-left: 20px; display: grid; gap: 8px; color: var(--ink-2); }
.side-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-weight: 600; font-size: 15px; }
.side-list li { display: flex; gap: 10px; align-items: center; }
.side-list .icon { color: var(--green-text); }

/* Free check: result */
.result-section { background: var(--soft); min-height: 60vh; }
.result-card { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-lg); text-align: center; }
.result-card h1 { font-size: clamp(30px, 4vw, 44px); margin: 6px 0 12px; }
.spinner { display: inline-block; width: 46px; height: 46px; border-radius: 50%; border: 5px solid var(--mint); border-top-color: var(--green); animation: spin 0.9s linear infinite; }
.progress-steps { display: grid; gap: 8px; max-width: 420px; margin: 18px auto; padding: 0 0 0 20px; text-align: left; color: var(--ink-2); }
.found-range { margin: 0 0 6px; font-size: 22px; }
.found-range strong { font-family: var(--round); font-size: 34px; color: var(--green-text); }
.locked-list { list-style: none; margin: 24px 0 10px; padding: 0; display: grid; gap: 10px; text-align: left; }
.locked { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; background: var(--coral-soft); border: 1px solid #ffc6bb; }
.locked-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: #fff; color: var(--coral-text); }
.locked-label { font-weight: 800; }
.locked-count { font-weight: 700; color: var(--coral-text); font-size: 14px; }
.locked-amount { font-family: var(--round); font-weight: 800; letter-spacing: 0.08em; color: #d9a79c; filter: blur(1.5px); user-select: none; }
.locked-note { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.locked.to-check { grid-template-columns: auto 1fr auto; background: var(--sky); border-color: #cddcf7; }
.locked.to-check .locked-icon { color: var(--sky-ink); }
.locked.to-check .locked-count { color: var(--sky-ink); }
.sent { display: flex; gap: 12px; align-items: flex-start; margin: 10px 0; padding: 16px 18px; border-radius: 14px; background: var(--mint); text-align: left; }
.sent .icon { flex: none; width: 26px; height: 26px; padding: 4px; border-radius: 50%; background: var(--green-text); color: #fff; stroke-width: 3; }
.promise-line { display: inline-flex; align-items: center; gap: 8px; margin: 16px 0 0; font-weight: 800; }
.promise-line .icon { color: var(--green-text); stroke-width: 3; }
.monitor-offer { margin-top: 22px; padding: 22px; border-radius: 18px; background: var(--sun-soft); border: 2px solid var(--sun); }
.monitor-offer h2 { font-size: 24px; margin: 0 0 6px; }
.result-fine { text-align: center; margin-top: 18px; }

/* Legal pages */
.legal h1 { font-size: clamp(34px, 4.4vw, 48px); margin: 6px 0 4px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 22px; display: grid; gap: 8px; }
.legal-summary { margin: 22px 0 8px; padding: 18px 22px; border-radius: 16px; background: var(--mint); border: 1px solid #cdeed7; }
.legal-summary p { margin: 0 0 6px; }
.caps { text-transform: uppercase; font-size: 14px; letter-spacing: 0.01em; }

/* Admin */
body.admin { background: var(--soft); }
.admin-header { background: #fff; border-bottom: 1px solid var(--line); }
.admin-row { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.admin-main { padding-top: 26px; padding-bottom: 60px; }
.admin-card { margin: 0 0 18px; padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.admin-card h2 { font-size: 19px; margin: 0 0 12px; }
.admin-card h2 + .table-wrap, .admin-card .table-wrap + h2 { margin-top: 12px; }
.admin-card.narrow, .login-card { max-width: 440px; margin: 40px auto; display: grid; gap: 14px; }
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.tab { padding: 9px 14px; border-radius: 999px; border: 2px solid var(--line); background: #fff; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px; }
.tab.active { background: var(--ink); border-color: var(--ink); color: var(--lime); }
.tab .count { margin-left: 4px; opacity: 0.7; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.admin-table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--line); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table a { color: var(--ink); text-decoration: none; }
.admin-table .quote { max-width: 360px; color: var(--ink-2); font-style: italic; }
.pill-mini { display: inline-block; padding: 2px 9px; border-radius: 999px; background: var(--sky); color: var(--sky-ink); font-weight: 800; font-size: 12px; }
.pill-mini.hot { background: var(--coral-soft); color: var(--coral-text); }
.pill-mini.warm { background: var(--sun-soft); color: #7a5a00; }
.kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; font-size: 15px; }
.kv dt { color: var(--muted); font-weight: 700; }
.kv dd { margin: 0; }
.issues, .files, .events { margin: 0; padding-left: 20px; display: grid; gap: 6px; font-size: 14px; }
.events { list-style: none; padding: 0; }
.empty { padding: 30px 0; }
.link-button { background: none; border: 0; padding: 0; font: inherit; font-weight: 700; color: var(--green-text); cursor: pointer; text-decoration: none; }
.admin-card.danger { border-color: #ffc6bb; }
.inline-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; }
.alert-status { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; margin: 0 0 16px; }
.alert-status .inline-form { display: inline-flex; }
.danger-button { background: var(--coral-soft); border-color: var(--coral-text); color: var(--coral-text); box-shadow: 0 3px 0 var(--coral-text); }

/* Admin: one lead (everything prefixed lead- so nothing collides with site styles) */
.lead-top { margin: 0 0 18px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.lead-heading { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; }
.lead-heading h1 { font-size: 30px; margin: 0 6px 0 0; }
.lead-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-weight: 800; font-size: 13px; }
.lead-pill.tone-hot { background: var(--coral-soft); color: var(--coral-text); }
.lead-pill.tone-warm { background: var(--sun-soft); color: #7a5a00; }
.lead-pill.tone-calm { background: var(--sky); color: var(--sky-ink); }
.lead-pill.tone-done { background: var(--mint); color: var(--green-text); }
.lead-contact { margin: 8px 0 18px; color: var(--muted); font-size: 15px; }
.lead-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0; }
.lead-stat { padding: 12px 14px; border-radius: 14px; background: var(--soft); }
.lead-stat dt { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.lead-stat dd { margin: 4px 0 0; font-family: var(--round); font-weight: 800; font-size: 20px; line-height: 1.2; overflow-wrap: anywhere; }
.lead-stat dd small { display: block; margin-top: 3px; font-family: var(--font); font-weight: 600; font-size: 13px; color: var(--muted); }
.lead-stat.money { background: var(--lime-soft); }
.lead-stat.money dd { color: var(--green-text); font-size: 26px; }
.lead-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; gap: 18px; margin: 0 0 18px; }
.lead-next { padding: 22px 24px; border-radius: 18px; border: 2px solid var(--line); background: #fff; }
.lead-next.tone-hot { background: var(--coral-soft); border-color: #ffc6bb; }
.lead-next.tone-warm { background: var(--sun-soft); border-color: var(--sun); }
.lead-next.tone-done { background: var(--mint); border-color: #bfe8cc; }
.lead-next h2 { font-size: 22px; margin: 2px 0 6px; }
.lead-next p { margin: 0 0 14px; }
.lead-next .lead-hint { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.lead-label { margin: 0; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.lead-pipeline { margin: 0; }
.lead-pipeline form { display: grid; gap: 12px; }
.lead-h2 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; }
.lead-h2 .muted { font-family: var(--font); font-size: 14px; font-weight: 600; letter-spacing: 0; }
.lead-note { margin: -4px 0 14px; font-size: 13px; color: var(--muted); }
.lead-findings { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.lead-finding { padding: 16px 18px; border-radius: 14px; border: 1px solid #ffc6bb; background: #fff8f6; }
.lead-finding.to-review { border-color: #cddcf7; background: #f6f9ff; }
.lead-finding-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.lead-finding h3 { margin: 0; font-size: 17px; }
.lead-kind { margin: 0 0 2px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--coral-text); }
.lead-finding.to-review .lead-kind { color: var(--sky-ink); }
.lead-amount { margin: 0; font-family: var(--round); font-weight: 800; font-size: 22px; white-space: nowrap; }
.lead-pattern { margin: 8px 0; font-size: 15px; }
.lead-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 14px; margin: 0; font-size: 13px; color: var(--muted); }
.lead-resolves { margin: 8px 0 0; font-size: 13px; color: var(--ink-2); }
.lead-fold { margin: 0 0 12px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.lead-fold > summary { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 4px 16px; padding: 16px 22px; cursor: pointer; list-style: none; }
.lead-fold > summary::-webkit-details-marker { display: none; }
.lead-fold > summary .muted { font-size: 14px; }
.lead-fold-title { font-family: var(--round); font-weight: 800; font-size: 17px; }
.lead-fold-title::before { content: "\25B8"; display: inline-block; width: 1.1em; color: var(--muted); transition: transform 0.15s ease; }
.lead-fold[open] .lead-fold-title::before { transform: rotate(90deg); }
.lead-fold > :not(summary) { margin-left: 22px; margin-right: 22px; }
.lead-fold > :not(summary):last-child { margin-bottom: 18px; }
.lead-fold.danger { border-color: #ffc6bb; }
.lead-list { list-style: none; margin: 0; padding: 0; display: grid; }
.lead-list li { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.lead-list q { display: block; margin-top: 2px; color: var(--ink-2); font-style: italic; }
.lead-warn { color: var(--coral-text); font-weight: 800; }
.lead-ok { color: var(--green-text); font-weight: 800; white-space: nowrap; }
.lead-clause { font-size: 14px; color: var(--muted); }
.lead-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lead-columns h3 { font-size: 15px; margin: 0 0 8px; }
.lead-small { margin-top: 10px; font-size: 13px; }
@media (max-width: 760px) {
  .lead-stats { grid-template-columns: 1fr 1fr; }
  .lead-grid, .lead-columns { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { padding: 28px 0 40px; background: var(--ink); color: #b9c7bf; font-size: 14px; border-top: 1px solid #25382d; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; }
.footer-row p { margin: 0; }
.footer-row strong { color: #fff; }

@keyframes blink { 50% { opacity: 0.25; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(183, 243, 109, 0.95); }
  70% { box-shadow: 0 0 0 14px rgba(183, 243, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(183, 243, 109, 0); }
}
@keyframes pulse-pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes stamp-in {
  0% { opacity: 0; transform: scale(2.6) rotate(-12deg); filter: blur(3px); }
  55% { opacity: 1; transform: scale(0.93) rotate(-3deg); filter: blur(0); }
  75% { transform: scale(1.04) rotate(-3deg); }
  100% { opacity: 1; transform: scale(1) rotate(-3deg); }
}
@keyframes stamp-ring { 0% { opacity: 0.9; transform: rotate(-3deg) scale(0.96); } 100% { opacity: 0; transform: rotate(-3deg) scale(1.3); } }
@keyframes thud { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-3px, 3px); } 50% { transform: translate(3px, -2px); } 75% { transform: translate(-1px, 1px); } }
@keyframes scroll-rows { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes float { 0%, 100% { transform: translate(0, 0) rotate(-6deg); } 50% { transform: translate(-6px, -12px) rotate(4deg); } }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(1.035); } 100% { transform: scale(1); } }

@media (max-width: 980px) {
  .hero-grid, .estimate, .tedious-grid, .trust-grid { grid-template-columns: 1fr; }
  .tedious-grid, .trust-grid { gap: 40px; }
  .effort-grid, .check-grid { grid-template-columns: 1fr; }
  .check-side { position: static; }
  .handoff { justify-self: center; transform: rotate(90deg); }
  .trust-fine { grid-column: 1; margin-top: 0; }
  .hero-grid { gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .lens { display: none; }
  .outcomes, .promises, .our-steps, .field-row { grid-template-columns: 1fr; }
  .check-form, .result-card { padding: 22px; }
  .locked, .locked.to-check { grid-template-columns: auto 1fr; }
  .locked.to-check .locked-count { grid-column: 2; }
  .effort-result { flex-direction: column; gap: 10px; }
  .stat-arrow { transform: rotate(90deg); }
  .platform-list li { font-size: 19px; }
  .stamp { font-size: 17px; padding: 10px 16px; }
  .section { padding: 64px 0; }
  .benefits, .cards { grid-template-columns: 1fr; }
  .estimate-inputs, .estimate-result { padding: 28px 22px; }
  .lede { font-size: 18px; }
  .promise-main { font-size: 20px; }
}
@media (max-width: 420px) {
  .header-row .button.small { padding: 8px 12px; font-size: 14px; }
  .prow { grid-template-columns: 40px 1fr 60px; }
  .p-code, .p-qty { display: none; }
  .paper-head { font-size: 13px; }
  .page-count { min-width: 104px; }
  .scanner { padding: 14px; }
  .line-name, .line-amount { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
