/* === ONBOARDING LAYOUT === */
.ob-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.ob-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.ob-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}
.ob-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 80px;
}

/* === PROGRESS BAR === */
.ob-progress {
  width: 100%;
  max-width: 560px;
  height: 3px;
  background: var(--border);
  border-radius: 100px;
  margin-bottom: 40px;
  overflow: hidden;
}
.ob-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.35s ease;
  width: 33%;
}

/* === FORM STEPS === */
.ob-form { width: 100%; max-width: 560px; }
.ob-step { display: none; }
.ob-step.active { display: block; }

.ob-step-header { margin-bottom: 32px; }
.ob-step-num {
  font-size: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ob-step-header h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 8px;
}
.ob-step-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === FIELDS === */
.field-group { margin-bottom: 20px; }
.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.req { color: var(--accent); }
.muted { color: var(--fg-muted); font-weight: 400; }
.field-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.15s;
  outline: none;
  box-sizing: border-box;
}
.field-input:focus { border-color: var(--accent); }
.field-input::placeholder { color: var(--fg-muted); }
textarea.field-input { resize: vertical; min-height: 80px; }
.field-hint { font-size: 12px; color: var(--fg-muted); margin-top: 6px; }

/* === TAG INPUT === */
.tag-input-wrap {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  cursor: text;
  transition: border-color 0.15s;
}
.tag-input-wrap:focus-within { border-color: var(--accent); }
.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 100px;
  padding: 4px 12px 4px 12px;
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 600;
}
.tag-chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.1s;
}
.tag-chip-remove:hover { opacity: 1; }
.tag-input {
  border: none;
  background: none;
  padding: 4px 0;
  min-width: 140px;
  flex: 1;
}
.tag-input-wrap .tag-input:focus { border: none; outline: none; }

/* === HOURS GRID === */
.hours-grid {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.hours-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.disabled { opacity: 0.4; }
.hours-day-label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 60px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
  flex-shrink: 0;
}
.day-toggle { accent-color: var(--accent); cursor: pointer; }
.hours-time {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-family: var(--font-display);
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.hours-time:focus { border-color: var(--accent); }
.hours-sep { color: var(--fg-muted); font-size: 14px; }

/* === BUTTONS === */
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  width: 100%;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.ob-step-actions {
  display: flex;
  gap: 12px;
}
.ob-step-actions .btn-ghost {
  flex-shrink: 0;
  width: auto;
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 10px;
}
.ob-step-actions .btn-primary { flex: 1; width: auto; }

/* === RESPONSIVE === */
@media (max-width: 480px) {
  .ob-main { padding: 24px 16px 60px; }
  .hours-time { padding: 6px 8px; font-size: 12px; }
  .hours-day-label { width: 52px; font-size: 13px; }
}
