/* ===============================
   ROOT WRAPPER
   =============================== */
.psc-onebox{
  width:100%;
  max-width:100%;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:20px;
  padding:20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  font-family:Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  align-items:stretch;
}

@media (max-width:860px){
  .psc-onebox{
    grid-template-columns:1fr;
  }
}

/* ===============================
   LEFT / CIRCLE
   =============================== */
.psc-left{
  display:grid;
  place-items:center;
}

.psc-dial{
  width:100%;
  max-width:320px;
  aspect-ratio:1/1;
  position:relative;
}

.psc-dial svg{
  width:100%;
  height:100%;
  display:block;
}

/* Outer track */
.psc-track{
  fill:none;
  stroke:rgba(0,0,0,.06);
  stroke-width:28;
  stroke-linecap:round;
}

/* Arc segments */
.psc-seg{
  fill:none;
  stroke:#d6d6d6;                 /* lighter gray */
  stroke-width:22;
  stroke-linecap:round;
  cursor:pointer;
  transition:stroke .15s ease;
  -webkit-tap-highlight-color: transparent;
}


/* active arc */
.psc-seg.is-active{
  stroke:#203A3B;
}

/* remove ugly focus outline */
.psc-seg:focus,
.psc-seg:focus-visible{
  outline:none;
}

/* Center text (no inner circle) */
.psc-centerText{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  color:#111;
}

.psc-centerLabel{
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.8;
  font-weight:400;
}

.psc-centerNum{
  font-size:56px;
  font-weight:400;
  line-height:1;
  font-family: Cinzel-Regular;
  font-weight: bold;
}

/* ===============================
   RIGHT / TEXT AREA
   =============================== */
.psc-right{
  display:flex;
  flex-direction:column;
  min-height:320px;      /* keeps nav at bottom */
  padding-top:36px;      /* <<< subtle vertical shift down */
}

.psc-stepHeading{
  margin:0 0 10px 0;
}

.psc-stepText{
  font-size:15px;
  line-height:1.6;
  color:#333;
}

/* ===============================
   CONTROLS / NAVIGATION
   =============================== */
.psc-controls{
  margin-top:auto;       /* push to bottom */
  padding-top:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
}

.psc-nav{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-size:18px;
  cursor:pointer;
  font-weight:400;
  line-height:1;
}

.psc-pill{
  font-size:13px;
  color:#444;
  font-weight:400;
}

/* ===============================
   ACCESSIBILITY
   =============================== */
.psc-sr-only{
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
