:root {
  --bg: #0f1117;
  --panel: #171a23;
  --panel-2: #1e2230;
  --border: #2a2f42;
  --text: #e8eaf2;
  --muted: #9aa3b8;
  --accent: #faad4d;
  --accent-2: #ffc97a;
  --green: #2ecc71;
  --yellow: #f1c40f;
  --red: #e74c3c;
  --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--accent-2); text-decoration: none; }
.container { max-width: 960px; margin: 0 auto; padding: 24px 20px 80px; }

header.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.brand { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--text); }
.brand span { color: var(--accent-2); }
.tag { color: var(--muted); font-size: 13px; }

.hero { text-align: center; padding: 56px 0 28px; }
.hero h1 { font-size: 40px; letter-spacing: -0.03em; line-height: 1.15; }
.hero h1 em { color: var(--accent-2); font-style: normal; }
.hero p.sub { color: var(--muted); max-width: 680px; margin: 14px auto 0; font-size: 17px; }
.cta-row { margin-top: 22px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 40px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14px; }

section { margin-top: 56px; }
section h2 { font-size: 26px; letter-spacing: -0.02em; margin-bottom: 8px; }
.how ol { padding-left: 20px; color: var(--muted); }
.how li { margin-bottom: 10px; }
.what-it-checks ul { padding-left: 20px; color: var(--muted); }
.what-it-checks li { margin-bottom: 8px; }

.audit-form {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin: 30px auto 0; max-width: 720px;
}
.audit-form label { display: block; font-size: 14px; margin-bottom: 14px; }
.audit-form .optional { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 3px; }
input[type="text"], input[type="url"], input[type="email"], textarea {
  width: 100%; background: var(--panel-2); border: 1px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 12px 14px; font-size: 15px;
  font-family: inherit; margin-top: 6px;
}
textarea { min-height: 120px; resize: vertical; }

.btn {
  display: inline-block; background: var(--accent); color: #1a1206; border: none;
  border-radius: 8px; padding: 13px 22px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.btn:hover { background: var(--accent-2); }
.btn.primary.big { font-size: 16px; padding: 15px 28px; }
.error { background: rgba(231, 76, 60, 0.12); border: 1px solid var(--red); color: #ffb3a7;
  border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; font-size: 14px; }
.muted { color: var(--muted); }

.pricing .price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.price-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.price-card.featured { border-color: var(--accent); }
.price-card h3 { font-size: 17px; margin-bottom: 8px; }
.price-card p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.note.small { font-size: 12px; color: var(--muted); }

.faq p { color: var(--muted); margin-bottom: 14px; }
.faq b { color: var(--text); }

.site-footer { margin-top: 60px; text-align: center; color: var(--muted); font-size: 13px; padding: 24px 20px 40px; border-top: 1px solid var(--border); }

/* Report page */
.report-hero { text-align: center; padding: 40px 0 20px; }
.warn-note { background: rgba(241,196,15,.07); border: 1px solid var(--yellow); color: #ffe28a;
  border-radius: 10px; padding: 12px 16px; margin: 0 auto 18px; max-width: 640px; font-size: 14px; }
.score-ring { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 14px 0; }
.ring-score { font-size: 72px; font-weight: 800; color: var(--accent-2); }
.ring-label { font-size: 20px; color: var(--muted); }
.delta { margin: 10px 0; }
.delta .up { color: var(--green); font-weight: 700; }
.delta .down { color: var(--red); font-weight: 700; }

.delta-list { list-style: none; }
.delta-list li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--border); }
.delta-list .dim { color: var(--muted); text-transform: capitalize; }

.fix-list { padding-left: 20px; }
.fix-list li { margin-bottom: 10px; }
.prio { display: inline-block; font-weight: 800; font-size: 12px; padding: 2px 8px; border-radius: 12px; }
.prio-p0 { background: rgba(231,76,60,.15); color: var(--red); }
.prio-p1 { background: rgba(241,196,15,.15); color: var(--yellow); }

.dim-row { margin-bottom: 22px; }
.dim-head { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 5px; }
.dim-name { text-transform: capitalize; }
.dim-name small { color: var(--muted); text-transform: none; }
.bar { height: 10px; background: var(--panel-2); border-radius: 6px; overflow: hidden; }
.bar .fill { height: 100%; background: var(--accent); border-radius: 6px; }
.findings { list-style: none; margin-top: 8px; }
.findings li { font-size: 14px; color: var(--muted); padding: 3px 0; }
.lvl-ok { color: var(--green); }
.lvl-warn { color: #ffe28a; }
.lvl-fail { color: #ffb3a7; }

.copy-block {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; white-space: pre-wrap; font-size: 14px; margin: 6px 0 14px;
}
.reaudit form { display: inline; }
