* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f7fb;
  color: #222;
}
.shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
.title {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
}
.card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.question {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 700;
}
.asterisk { color: #e03a3a; }
.hint {
  margin: 8px 0 20px;
  color: #777;
  font-size: 1rem;
}
.choices {
  display: grid;
  gap: 8px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 1.08rem;
  cursor: pointer;
}
.choice input { width: 22px; height: 22px; }
.button {
  margin-top: 30px;
  border: 0;
  border-radius: 10px;
  background: #5b84ff;
  color: #fff;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.reset-form {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.button-reset {
  min-width: 160px;
}
.muted { color: #888; }
.thanks { padding: 28px 32px 36px; }
.thanks-title { text-align: left; margin-bottom: 10px; }
.shell-thanks { max-width: 820px; }
@media (max-width: 700px) {
  .card { padding: 20px; border-radius: 20px; }
  .title { margin-bottom: 18px; }
}
