/* Fuse Sports — vragenlijst (aanmeld-wizard) */

.vl-body {
  background: var(--donker);
  color: var(--creme);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vl-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: rgba(242,240,235,0.12); z-index: 10; }
.vl-progress-bar { height: 100%; width: 0; background: var(--olijf); transition: width 0.6s var(--swoosh); }

.vl-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px var(--rand) 0;
}
.vl-top-logo img { height: 64px; width: 64px; object-fit: contain; display: block; }
.vl-top-count { font-weight: 400; font-size: 12px; letter-spacing: 0.3em; color: rgba(242,240,235,0.55); }
.vl-top-close { font-weight: 400; font-size: 11.5px; letter-spacing: 0.2em; color: rgba(242,240,235,0.55); }
.vl-top-close:hover { color: var(--creme); }

.vl-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px var(--rand); }
.vl-stage { width: 100%; max-width: 780px; }

.vl-step { animation: vl-in 0.85s var(--swoosh) both; }
.vl-step.vl-out { animation: vl-out 0.4s var(--swoosh) both; }
@keyframes vl-in {
  from { opacity: 0; transform: translateY(72px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes vl-out {
  from { opacity: 1; transform: translateY(0); filter: blur(0); }
  to   { opacity: 0; transform: translateY(-56px); filter: blur(6px); }
}

.vl-kicker {
  font-weight: 500; font-size: 11.5px; letter-spacing: 0.4em;
  color: var(--olijf); display: block; margin-bottom: 24px; text-transform: uppercase;
}
.vl-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -0.015em; margin: 0;
}
.vl-text {
  font-weight: 300; font-size: 17px; line-height: 1.75;
  color: var(--tekst-op-donker); max-width: 560px; margin: 22px 0 0;
}

/* Opties */
.vl-options { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.vl-option {
  display: flex; align-items: center; gap: 20px;
  text-align: left; width: 100%;
  background: none; border: 1px solid rgba(242,240,235,0.22); border-radius: 4px;
  color: var(--creme); font-family: var(--sans); font-weight: 300; font-size: 17px;
  padding: 20px 24px; cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.vl-option:hover { border-color: rgba(242,240,235,0.55); background: rgba(242,240,235,0.04); }
.vl-option.is-selected { border-color: var(--creme); background: rgba(242,240,235,0.08); }
.vl-option-nr { font-family: var(--serif); font-weight: 700; font-size: 18px; color: var(--olijf); min-width: 26px; }

/* Invoervelden */
.vl-fields { display: flex; flex-direction: column; gap: 30px; margin-top: 44px; }
.vl-field label {
  display: block; font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.24em; color: rgba(242,240,235,0.6);
  text-transform: uppercase; margin-bottom: 10px;
}
.vl-field input, .vl-field textarea {
  width: 100%; background: none; border: 0; border-bottom: 1px solid rgba(242,240,235,0.3);
  border-radius: 0; color: var(--creme);
  font-family: var(--serif); font-weight: 700; font-size: 26px;
  padding: 6px 0 14px; outline: none;
  transition: border-color 0.25s ease;
}
.vl-field textarea { font-family: var(--sans); font-weight: 300; font-size: 18px; line-height: 1.6; resize: none; }
.vl-field input:focus, .vl-field textarea:focus { border-color: var(--creme); }
.vl-field input::placeholder, .vl-field textarea::placeholder { color: rgba(242,240,235,0.25); font-weight: 300; }
.vl-optional { color: rgba(242,240,235,0.4); letter-spacing: 0.1em; }

/* Sliders */
.vl-scale { margin-top: 52px; }
.vl-scale-value {
  font-family: var(--serif); font-weight: 700; font-size: 72px;
  color: var(--creme); line-height: 1; margin-bottom: 34px;
}
.vl-scale-labels { display: flex; justify-content: space-between; margin-top: 14px; font-weight: 300; font-size: 13px; color: rgba(242,240,235,0.55); }
input[type="range"].vl-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px; background: rgba(242,240,235,0.25); outline: none;
}
input[type="range"].vl-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--creme); border: 0; cursor: pointer;
  transition: transform 0.2s ease;
}
input[type="range"].vl-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"].vl-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--creme); border: 0; cursor: pointer;
}

/* Canvas-stap (meerdere factoren) */
.vl-factors { display: flex; flex-direction: column; gap: 40px; margin-top: 48px; }
.vl-factor-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.vl-factor-name { font-family: var(--serif); font-weight: 700; font-size: 21px; }
.vl-factor-value { font-family: var(--serif); font-weight: 700; font-size: 21px; color: var(--olijf); min-width: 34px; text-align: right; }

/* Waarde-curve */
.vl-curve { margin: 44px 0 8px; }
.vl-curve svg { width: 100%; height: auto; display: block; overflow: visible; }
.vl-curve-labels {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 14px;
  font-weight: 300; font-size: 12px; letter-spacing: 0.06em;
  color: rgba(242,240,235,0.6); text-align: center;
}

/* Knoppen */
.vl-actions { display: flex; align-items: center; gap: 26px; margin-top: 52px; }
.vl-next {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: 0.12em;
  color: var(--donker); background: var(--creme);
  border: 0; border-radius: 100px; padding: 19px 42px; cursor: pointer;
  transition: background 0.25s ease, opacity 0.25s ease;
}
.vl-next:hover { background: #FFFFFF; }
.vl-next:disabled { opacity: 0.35; cursor: default; }
.vl-next svg { display: block; }
.vl-skip {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 400; font-size: 12.5px; letter-spacing: 0.14em;
  color: rgba(242,240,235,0.55);
}
.vl-skip:hover { color: var(--creme); }
.vl-error { margin-top: 20px; font-weight: 400; font-size: 14px; color: #C9A98F; min-height: 20px; }

.vl-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--rand) 30px;
}
.vl-back {
  background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 400; font-size: 11.5px; letter-spacing: 0.2em;
  color: rgba(242,240,235,0.55);
}
.vl-back:hover { color: var(--creme); }
.vl-hint { font-weight: 300; font-size: 12px; letter-spacing: 0.08em; color: rgba(242,240,235,0.35); }

/* Bedankt */
.vl-done { text-align: center; }
.vl-done .vl-title { font-size: clamp(34px, 4.6vw, 56px); }
.vl-done img { height: 84px; width: 84px; object-fit: contain; margin: 0 auto 38px; display: block; }
.vl-done .vl-text { margin-left: auto; margin-right: auto; }

@media (max-width: 640px) {
  .vl-top { padding-top: 20px; }
  .vl-top-logo img { height: 48px; width: 48px; }
  .vl-main { padding: 32px var(--rand); align-items: flex-start; }
  .vl-scale-value { font-size: 56px; }
  .vl-curve-labels { font-size: 10px; }
  .vl-actions { margin-top: 40px; }
}
