:root {
  --brand: #ff5a1f;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #faf8f5;
  --card: #ffffff;
  --border: #e6e0d8;
  --up: #1e8e3e;
  --down: #d93025;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
.site-header {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding: 16px 24px; background: #fff; border-bottom: 1px solid var(--border);
}
.brand { font-size: 22px; font-weight: 800; text-decoration: none; color: var(--ink); }
.brand span { color: var(--brand); }
.tag { color: var(--muted); font-size: 14px; }
main { max-width: 980px; margin: 0 auto; padding: 24px; }
.site-footer {
  max-width: 980px; margin: 40px auto; padding: 20px 24px; text-align: center;
  color: var(--muted); font-size: 13px; border-top: 1px solid var(--border);
}
.hero { text-align: center; padding: 48px 8px 24px; }
.hero h1 { font-size: 34px; line-height: 1.2; margin: 0 0 16px; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero .sub { font-size: 18px; color: var(--muted); max-width: 720px; margin: 0 auto 24px; }
.cta-row { margin: 8px 0 0; }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 8px;
  background: #fff; color: var(--ink); border: 1px solid var(--border);
  font-size: 16px; cursor: pointer; text-decoration: none;
}
.btn.primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn.big { font-size: 18px; padding: 14px 26px; }
.btn.primary:hover { filter: brightness(0.96); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 24px 0; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.card h3 { margin: 0 0 6px; }
.how ol, .what-it-checks ul { padding-left: 22px; }
.audit-form, .gate, .report-hero, .dims, .rewrites, .photos, .reaudit, .pricing, .faq, .delta-dims {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin: 24px 0;
}
form label { display: block; margin: 14px 0; font-weight: 600; }
form input[type=text], form input[type=email], form input[type=url], form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 10px; font-size: 15px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
}
.optional { font-weight: 400; color: var(--muted); font-size: 13px; }
fieldset { border: 1px solid var(--border); border-radius: 8px; margin: 14px 0; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 8px; }
.photo-grid label { font-weight: 400; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.muted { color: var(--muted); font-size: 14px; }
.error { color: var(--down); }
.pricing h2, .faq h2 { text-align: center; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.price-card { border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-align: center; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand); }
.big-score, .ring-score { color: var(--brand); font-weight: 800; }
.score-ring { text-align: center; margin: 16px 0; }
.ring-score { font-size: 72px; line-height: 1; }
.ring-label { color: var(--muted); }
.delta { text-align: center; font-size: 18px; }
.up { color: var(--up); font-weight: 700; }
.down { color: var(--down); font-weight: 700; }
.dim-row { margin: 16px 0; }
.dim-head { display: flex; justify-content: space-between; font-weight: 600; }
.dim-score { color: var(--brand); font-weight: 800; }
.bar { background: var(--border); height: 10px; border-radius: 6px; margin: 6px 0; overflow: hidden; }
.fill { height: 100%; background: var(--brand); }
.findings { list-style: none; padding: 0; margin: 6px 0 0; font-size: 14px; }
.findings li { margin: 2px 0; }
.lvl-ok { color: var(--up); }
.lvl-warn { color: #b26a00; }
.lvl-fail { color: var(--down); }
.delta-list { list-style: none; padding: 0; }
.delta-list li { display: flex; justify-content: space-between; max-width: 340px; margin: 4px 0; }
.copy-block { background: #1f1f1f; color: #eaeaea; padding: 16px; border-radius: 8px; white-space: pre-wrap; font-size: 14px; }
.gate { text-align: center; max-width: 560px; margin: 48px auto; }
.gate-form { display: flex; gap: 10px; justify-content: center; }
.gate-form input { flex: 1; }
.reaudit .photo-grid { margin-bottom: 12px; }
