:root {
  --bg-hot: #f40672;
  --panel: #25272b;
  --paper: #efefef;
  --ink: #ffffff;
  --muted: #cfd2d7;
  --hot: #f40672;
  --mint: #4ac282;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--bg-hot);
  color: var(--ink);
}

.brandbar {
  background: #222428;
  padding: 0.9rem 1rem;
  text-align: center;
}

.brandbar h1 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brandbar .hot {
  color: var(--hot);
}

.brandbar .mint {
  color: var(--mint);
}

.brandbar small {
  color: var(--mint);
  font-size: 0.34em;
  font-weight: 700;
}

.stage {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.card {
  width: min(820px, 94vw);
  background: var(--panel);
  border-radius: 28px;
  padding: clamp(1rem, 2.3vw, 2rem);
}

.required,
.step,
.subtitle {
  color: var(--muted);
}

.required {
  margin: 0 0 0.8rem;
}

.step {
  margin: 0.2rem 0 0.35rem;
  font-weight: 700;
}

.progress {
  width: 100%;
  height: 10px;
  background: #3a3c41;
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  width: 9%;
  height: 100%;
  background: var(--hot);
  border-radius: 999px;
  transition: width 0.2s ease;
}

h2 {
  margin: 1.1rem 0 0.35rem;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.03;
}

.question {
  margin: 1.6rem 0 1rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.options {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.option {
  width: 100%;
  border: 2px solid var(--hot);
  border-radius: 0;
  background: var(--paper);
  color: #222428;
  padding: 0.75rem;
  font-size: 1.14rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.option.selected {
  background: #ffd4e7;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.btn,
.pill {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.btn {
  min-width: 110px;
  padding: 0.62rem 1rem;
}

.btn-hot {
  background: var(--hot);
  color: #fff;
}

.btn-light {
  background: #eceef0;
  color: #1e2226;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

label {
  display: block;
  margin: 0.7rem 0 0.2rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid var(--hot);
  background: var(--paper);
  color: #1f2226;
  padding: 0.68rem 0.72rem;
  font: inherit;
}

.score {
  color: var(--hot);
  font-size: 2rem;
  font-weight: 800;
  margin: 0.4rem 0 0.5rem;
}

.choice-stack {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.pill {
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  color: #ff2f88;
  background: #f2f2f2;
  text-align: left;
}

.offer {
  font-style: italic;
  color: #ebeef1;
}

.error {
  color: #ff8db7;
  font-weight: 700;
}

.success {
  color: #9ef0c8;
  font-weight: 700;
}

.hidden {
  display: none;
}

@media (max-width: 680px) {
  .option {
    font-size: 1rem;
  }

  .actions {
    justify-content: flex-start;
  }
}
