:root {
  --bg: #2D2A2E;
  --card: #3A3740;
  --muted: #B5B3B7;
  --text: #F5F5F5;
  --accent: #FF6600;
  --good: #16A34A;
  --warn: #F59E0B;
  --bad: #EF4444;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text); background: radial-gradient(1200px 600px at 80% -10%, #2D2A2E 0%, var(--bg) 40%);
}
.hero { padding: 72px 24px; background: linear-gradient(180deg, rgba(255,102,0,0.10), rgba(0,0,0,0)); border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero__content { max-width: 980px; margin: 0 auto; }
h1 { font-size: clamp(28px, 3.6vw, 56px); line-height: 1.05; margin: 0 0 12px; }
.subtitle { color: var(--muted); margin: 0 0 12px; }
.bullets { display: flex; gap: 16px; list-style: none; padding: 0; color: var(--muted); margin: 0; flex-wrap: wrap; }
.container { max-width: 980px; margin: 24px auto; padding: 0 24px; }
.card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 20px 20px 16px; backdrop-filter: blur(6px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
h2 { margin: 8px 0 12px; }
.grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
label { display: grid; gap: 6px; font-weight: 600; }
input, select, textarea { background: #0b1220; color: var(--text); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; font-size: 14px; }
.q-list { display: grid; gap: 10px; margin-top: 8px; }
.q-item { display: grid; grid-template-columns: 1fr 120px; gap: 10px; align-items: center; }
.q-item span { color: var(--muted); font-weight: 600; }
.progress { margin: 18px 0; }
.progress__label { color: var(--muted); margin-bottom: 6px; }
.progress__bar { background: #0b1220; border-radius: 999px; height: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);}
.progress__bar__fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--bad), var(--warn), var(--good)); }
.btn { margin-top: 8px; background: var(--accent); color: #1a1a1a; border: 0; padding: 12px 16px; border-radius: 10px; font-weight: 700; cursor: pointer; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.status { min-height: 20px; color: var(--muted); }
.result { margin-top: 16px; }
.result__score { font-size: 20px; }
.cta { margin-top: 8px; }
.footer { text-align: center; color: var(--muted); padding: 32px 12px; }
.accent { color: var(--accent); }
.consent { margin-top: 10px; color: var(--muted); }
@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  .q-item { grid-template-columns: 1fr; }
}