/* -----------------------
   Core variables
-------------------------*/
:root {
  --clr-purple: #8f2ee9;
  --clr-grey:   #d8d8d8;
  --clr-green:  #4ab18a;
  --clr-green-light: #d9f4e9;
  --radius: 8px;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter',   sans-serif;
}

/* -----------------------
   Layout & Typography
-------------------------*/
.vr-wizard { max-width: none; width: 100%; margin: 0; font-family: var(--font-body); }
.vr-head h1 { font-family: var(--font-head); font-size: 2.2rem; line-height: 1.2; margin-bottom: .75rem; color:#2f3741 }
.accent { color: var(--clr-purple); }
.sub { margin-bottom: 2.5rem; color:#414141; line-height: 1.4; }

.vr-step { animation: fade .4s ease; }
@keyframes fade { from{opacity:0;transform:translateY(12px)} to{opacity:1} }

.vr-step h2 { font-weight: 600; font-size: 1.25rem; margin-bottom: 1.5rem; color:#2f3741 }
.vr-step h2 span:first-child { font-weight: 700; color:#6c6c6c; margin-right:.35rem }

/* fields ------------------------------------------------*/
.vr-field { margin-bottom: 1rem; }
.vr-field label { display:block; font-size: .75rem; font-weight:600; text-transform: uppercase; margin-bottom:.25rem; color:#6f6f6f }
.vr-field input,
.vr-field textarea {
  width:100%; padding:.65rem .8rem; border:1px solid var(--clr-grey); border-radius: var(--radius); background:#f2f2f2; font-size:.9rem;
}
.vr-field textarea{ resize:vertical; min-height:140px; }

/* Reward checkboxes */
.vr-options { display: grid; gap: .75rem; margin-bottom: 2rem; }
.vr-option { display:flex; align-items:center; gap:.5rem; font-size:1rem; color:#2f3741 }
.vr-option input { width:18px; height:18px; accent-color: var(--clr-purple); }

/* nav buttons -------------------------------------------*/
.vr-nav { display:flex; justify-content:space-between; gap:1rem; margin-top:2.5rem }
.vr-btn {
  appearance:none; border:2px solid var(--clr-green); border-radius:var(--radius); padding:.6rem 1.75rem; font-weight:600; font-size:1rem; cursor:pointer; transition:all .25s cubic-bezier(.2,1,.3,1); background:#fff; color:var(--clr-green);
  box-shadow:0 2px 5px rgba(0,0,0,.04);
}
.vr-btn:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 6px 18px rgba(0,0,0,.08); }
.vr-btn:focus-visible { outline:2px solid var(--clr-purple); }
.vr-btn.accent { background:var(--clr-green); color:#fff; }
.vr-btn.accent:hover { background:transparent; color:var(--clr-green); }

/* progress ----------------------------------------------*/
.vr-progress { margin-top:3rem }
.vr-progress-bar { height:10px; background:var(--clr-grey); border-radius:var(--radius); overflow:hidden }
.vr-progress-bar span { display:block; height:100%; width:0; background:var(--clr-green); transition:width .35s ease-in-out }
.vr-progress-text { font-weight:600; text-align:center; margin-top:.5rem; color:var(--clr-purple) }

/* responsive tweaks -------------------------------------*/
@media(max-width:480px){
  .vr-nav{ flex-direction:column; }
  .vr-btn{ width:100%; text-align:center; }
}


.vr-head { 
    width: 100vw!important;
    left: 50%!important;
    right: 50%!important;
    padding: 0!important;
    box-sizing: border-box!important;
}