:root {
  --bg: #f6f7f5;
  --card: #ffffff;
  --text: #1b1f1d;
  --muted: #5d6662;
  --line: #dde2df;
  --brand: #147a4b;
  --brand-2: #0f5f3a;
  --soft: #e8f4ee;
  --warn: #fff6e0;
  --warn-line: #f0d48a;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111513;
    --card: #1a201d;
    --text: #e8ece9;
    --muted: #9aa5a0;
    --line: #2c3531;
    --brand: #2fa56d;
    --brand-2: #3cbf80;
    --soft: #1d2e25;
    --warn: #2e2a1b;
    --warn-line: #6b5a2a;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
a { color: var(--brand); }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 16px; }
.top { border-bottom: 1px solid var(--line); background: var(--card); }
.top-in { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); text-decoration: none; }
.logo { background: var(--brand); color: #fff; border-radius: 7px; padding: 3px 7px; font-size: 13px; }
.btn {
  display: inline-block; background: var(--brand); color: #fff; border: 0; border-radius: 10px;
  padding: 11px 18px; font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
}
.btn:hover { background: var(--brand-2); }
.btn-sm { padding: 7px 12px; font-size: 14px; }
.btn-lg { padding: 15px 26px; font-size: 18px; }
.hero { text-align: center; padding: 48px 0 24px; }
.hero h1 { font-size: clamp(28px, 5vw, 42px); line-height: 1.15; margin: 0 0 14px; }
.lead { font-size: 18px; color: var(--muted); max-width: 720px; margin: 0 auto 10px; }
.privacy { margin: 0; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; margin: 24px 0; }
.plan { font-size: 14px; margin-bottom: 14px; color: var(--muted); }
.plan strong { color: var(--brand); }
.drop {
  display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer;
  border: 2px dashed var(--line); border-radius: 14px; padding: 42px 16px; text-align: center; background: var(--soft);
}
.drop.over { border-color: var(--brand); }
.drop-icon { font-size: 34px; }
.drop-title { font-weight: 700; font-size: 18px; }
.drop-sub { color: var(--muted); }
.status { margin-top: 14px; color: var(--muted); }
.upsell { margin-top: 14px; background: var(--warn); border: 1px solid var(--warn-line); border-radius: 12px; padding: 14px 16px; }
.result-head { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin: 18px 0 12px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
table { border-collapse: collapse; width: 100%; font-size: 13px; white-space: nowrap; }
th, td { padding: 7px 10px; border-bottom: 1px solid var(--line); text-align: left; }
th { background: var(--soft); }
td.n { text-align: right; font-variant-numeric: tabular-nums; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feat h3 { margin: 0 0 6px; font-size: 17px; }
.feat p { margin: 0; color: var(--muted); }
.pricing { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: center; border-color: var(--brand); }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.tag { margin: 0; color: var(--brand); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; }
.pricing h2 { margin: 4px 0 10px; }
.price { font-size: 38px; }
.once { font-size: 16px; color: var(--muted); font-weight: 400; }
.checks { padding-left: 0; list-style: none; margin: 0; }
.checks li::before { content: "✓ "; color: var(--brand); font-weight: 700; }
.buy { text-align: center; }
.faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin: 8px 0 0; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.foot { padding: 32px 16px 48px; color: var(--muted); text-align: center; }
