/* Onboarding S1-01 → S1-03 */

.steps {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}

.stp {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #22303d;
}

.stp.on {
  background: var(--blue);
}

.onboard-shell {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.onboard-shell > .steps,
.onboard-shell > .place-stack,
.onboard-shell > .sess-stack,
.onboard-shell > .boss-stack,
.onboard-shell > .sess-layout,
.onboard-shell > .boss-layout,
.onboard-shell > .onboard-layout {
  position: relative;
  z-index: 2;
}

.onboard-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.onboard-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.inlb {
  font: 700 10px Rajdhani, sans-serif;
  letter-spacing: 0.28em;
  color: var(--t3);
  margin-top: 22px;
  display: block;
}

.inputf-real {
  margin-top: 12px;
  width: 100%;
  background: #141e28;
  border: 1.5px solid var(--hair);
  border-radius: 14px;
  padding: 16px;
  font: 600 17px Rajdhani, sans-serif;
  letter-spacing: 0.06em;
  color: var(--t1);
  outline: none;
  text-transform: uppercase;
}

.inputf-real:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.15);
}

.choice {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 14px;
}

.ch {
  background: var(--card);
  border: 1.5px solid var(--hair);
  border-radius: 16px;
  padding: 14px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.ch .cd {
  font: 700 19px Rajdhani, sans-serif;
  letter-spacing: 0.04em;
  color: var(--t1);
}

.ch .cs {
  font: 10.5px 'Share Tech Mono', monospace;
  color: var(--t3);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--hair);
  border-radius: 50%;
  flex: none;
}

.ch.on {
  border-color: var(--blue);
  background: linear-gradient(180deg, #213448, #1a2a3c);
}

.ch.on .radio {
  border-color: var(--blue);
  background: radial-gradient(circle, var(--blue) 0 5.5px, transparent 6.5px);
}

.days {
  display: flex;
  gap: 7px;
  margin-top: 14px;
}

.day {
  flex: 1;
  height: 44px;
  border: 1.5px solid var(--hair);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 10px Rajdhani, sans-serif;
  letter-spacing: 0.06em;
  color: var(--t3);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.day.on {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(77, 168, 218, 0.08);
}

.typerow {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font: 500 12.5px 'Exo 2', sans-serif;
  color: var(--t2);
}

.typerow b {
  font: 700 10px Rajdhani, sans-serif;
  letter-spacing: 0.2em;
  color: var(--blue);
}

.typerow + .typerow {
  border-top: 1px solid rgba(238, 243, 247, 0.08);
}

.onboard-col-aside {
  margin-top: 15px;
}

.onboard-type-hint {
  margin-top: 11px;
  text-align: center;
  font: 700 10px Rajdhani, sans-serif;
  letter-spacing: 0.26em;
  color: var(--blue);
}

#app.onboarding-mode .tabbar {
  display: none;
}

/* Full-bleed FX: padding lives on the shell so .fx can reach screen edges */
#app.onboarding-mode #view {
  padding: 0;
  min-height: 100dvh;
}

#app.onboarding-mode .onboard-shell {
  width: 100%;
  max-width: none;
  min-height: 100dvh;
  padding: 20px 24px 40px;
  box-sizing: border-box;
  overflow: hidden;
}

#app.onboarding-mode .onboard-shell > .fx {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
}

#app.onboarding-mode .onboard-shell > .fx-layer {
  position: absolute;
  inset: 0;
}

@media (min-width: 768px) {
  #app.onboarding-mode {
    --nav-w: 0px;
  }

  #app.onboarding-mode::before {
    left: 0;
  }

  #app.onboarding-mode #view {
    padding: 0;
    display: block;
    min-height: 0;
    height: 100%;
  }

  #app.onboarding-mode .onboard-shell {
    min-height: 100%;
    padding: 48px 48px 56px;
  }

  #app.onboarding-mode .onboard-shell > .steps,
  #app.onboarding-mode .onboard-layout,
  #app.onboarding-mode .place-stack {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .onboard-layout {
    flex-direction: column;
    margin-top: 8px;
  }

  .onboard-col {
    max-width: none;
  }
}
